일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- error
- mysql
- HaProxy
- javascript
- node
- socket.io
- PHP
- ASP
- vim
- Eclipse
- 안드로이드
- 구글
- network
- Gmail
- ubuntu
- Mac
- HTML
- SVN
- install
- CSS
- 리눅스
- nodejs
- java
- 기본문법
- Linux
- JS
- windows
- 우분투
- Android
- Today
- 221
- Total
- 1,087,760
목록Language (179)
Blue Breeze
Performance of non-blocking writes to files via PHP What is Apache log4php? - Apache log4php $fp = fopen($file, 'a+'); while($count > $loop) { fwrite($fp, $text); } fclose($fp); ... ... ... 전체 요청이 진행되는 동안 파일을 열어두고 다음 로그 이벤트가 발생할 때 flock으로 풀고..
How to Switch between Multiple PHP Version on Ubuntu 저장소 등록 apt-get install -y python-software-properties add-apt-repository -y ppa:ondrej/php apt-get update -y 7.2 설치 sudo apt-cache search php7.2 sudo apt-get install php7.2 php7.2 libapache2-mod-..
Node.js v9.6.1 Documentation #Common System Errors Common System Errors This list is not exhaustive, but enumerates many of the common system errors encountered when writing a Node.js program. An exhaustive list may be found here. 이 목록은 전..
express-socket.io-session public Install npm install express-socket.io-session Example var app = require('express')(), server = require("http").createServer(app), io = require("socket.io")(server), session = require("express-session")({ ..
Node.js Buffer Module nodejs write 64bit unsigned integer to buffer Converting a double to an int in Javascript without rounding Node.js 에서 64bit INT형을 다루는 버퍼는 없다. 이를 해결하기 위해서 32bit INT와 >>(비트계산)을 이용해서 64bit INT형으로 사용한다. var i = 99999; ..
convert '1' to '0001' in JavaScript [duplicate] var str = '1234'; str = ('00000000'+str).substring(str.length); // 00001234 var str = '12345678'; str = ('00000000'+str).substring(str.length); // 12345678
Node.js :: Buffer :: 바이너리 데이터의 조작, 인코딩, 디코딩을 위한 버퍼 활용 :: Usi nodejs에서 버퍼데이터 처리하기 Using Buffers in Node.js - w3resource var buf = new Buffer('my buffer content'); // accessing the 10th position of buf console.log(buf.toString()); my buffer content var..