BUFSIZ http://www.cplusplus.com/reference/cstdio/BUFSIZ/ constant BUFSIZ Buffer size This macro constant expands to an integral expression with the size of the buffer used by the setbuf function. See also setbufSet stream buffer (function ) Programming 2013.11.24
C: Linux Socket Programming, TCP, a simple HTTP client http://coding.debuntu.org/c-linux-socket-programming-tcp-simple-http-client Linux provide a high level socket API that will allow programmer to easily connect to any TCP or UDP services. In this tutorial, we will see how this works by implementing a simple HTTP client which will get request a web page given the hostname and the page name, then read the server answer and output the HTML content o.. Programming 2013.11.23
(Clojure) How to display Clojure version in REPL? http://stackoverflow.com/questions/3560649/how-to-display-clojure-version-in-repl user> (clojure-version) "1.2.0-beta1" user> *clojure-version* => {:major 1, :minor 3, :incremental 0, :qualifier nil} Programming 2013.11.13
C++ stringstream은 정말 느리다. paren 의 to_string 함수에서 stringstream 을 사용하지 않고 sprintf 로 바꾸니 2배 빨라졌다. 숫자를 문자열로 변환시 stringstream 은 사용하면 안 된다. Programming 2013.11.10
quicklisp 을 사용한 common lisp 라이브러리 설치 http://lisperie.tistory.com/entry/quicklisp-%EC%9D%84-%EC%82%AC%EC%9A%A9%ED%95%9C-common-lisp-%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC-%EC%84%A4%EC%B9%98 참고 자료 : http://www.quicklisp.org/beta/ 1. quicklisp.lisp 파일을 다운로드 2. 파일 로드 (load "d:/lang/lisp/lib/quicklisp/quicklisp.lisp") 3. quicklisp 설치 (quicklisp-quickstart:install) 4. 라이브러리 확인 (ql:system-apropos "cl-ppcre") 5. 라이브러리 설치 (ql:quicklo.. Programming 2013.11.05
Java to C# Converter http://www.tangiblesoftwaresolutions.com/Product_Details/Java_to_CSharp_Converter.html Programming 2013.11.02
Compile newLISP on AIX Method 1: make -f makefile_aixLP64_utf8_gcc ./newlisp newLISP v.10.5.4 64-bit on AIX IPv4/6 UTF-8, options: newlisp -h > (+ 1 2) 3 newLISP AIX Binary: Method 2: ./configure make Programming 2013.10.31
regular expression # web page title # perl perl -MLWP::Simple -e '$t=get shift;$t=~m{(.*)}i && print $1' http://www.perl.org Programming 2013.10.04