댓글 0개
클라이언트 소스(브라우저) [code js (highlight:2)] $.ajax({ url : "192.168.48.123/api/client", type : "POST", cache : false, dataType:"json", succe...
댓글 0개
Linux에서 사용중인 실제 사용중인 메모리 구하기 설명 Linux "free" 실행 결과 [root@redjini script]# free -m total used free shared buffers cachedMem...
댓글 0개
TinyMCE Downlod : ▷ http://www.tinymce.com/download/download.php 언어팩 다운로드▷ http://www.tinymce.com/i18n/index.php 다운받은 파일을 압축 해제...
댓글 0개
소스코드 [code js] $(function() { $( "#datepicker" ).datepicker({ dayNames : ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"...
댓글 0개
문법 [code bash (highlight:1,3)]COMMAND << DIV_STRING...DIV_STRING[/code] 셈플 소스 [code bash (highlight:2,4)]#!/bin/shcat << EOFNow ...
댓글 0개
[code bash]#!/bin/shif [ -d "$DIRECTORY" ]; then echo "$DIRECTORY exists." fi[/code] [code bash]#!/bin/shif [ ! -d "$DIRECTORY" ]; then echo "$DIR...
댓글 0개
[code bash (highlight:2)]#!/bin/shEXE_PATH=$(readlink -f $(dirname "$0"))echo ${EXE_PATH}[/code]
댓글 0개
셈플 [code node.js]var express = require("express" );var http = require("http" );var cluster = require("cluster" );var os = require("os" );if( clu...