BPMN editorhttp://gojs.net/latest/extensions/BPMN.html# parsinghttp://www.pleus.net/blog/?p=2142python parser : https://github.com/knipknap/SpiffWorkflow Passion/Algorithm 2016.01.28
Progress bar Progress Indicatorhttp://codepen.io/allusis/pen/GhgcD ProgressStephttps://github.com/mateagar/progressStep Passion/javascript 2016.01.25
json loop var json = [{ "id" : "1", "msg" : "hi", "tid" : "2013-05-05 23:35", "fromWho": "hello1@email.se" }, { "id" : "2", "msg" : "there", "tid" : "2013-05-05 23:45", "fromWho": "hello2@email.se" }];You can loop over the Array like this:for(var i = 0; i Passion/javascript 2016.01.23
python-pip in CentOS 7 Add additional repository yum install epel-release Install python-pip package yum install python-pip Passion/Python 2016.01.14
javascript loop var myStringArray = [ "Hello", "World" ]; myStringArray.forEach( function(s) { // ... do something with s ... } ); Passion/javascript 2016.01.09
Simple Web server python -m SimpleHTTPServer default port: 8000 If you want to change service port? python -m SimpleHTTPServer 9090 Passion/Python 2015.10.21
bash script 실행하기 import osscript = """echo $0ls -lecho done"""os.system("bash -c '%s'" % script) Passion/Python 2015.08.19
linux wifi 설정 iwconfig eth1 essid MY_ESSID iwconfig eth1 key open 1234567890 Passion/Network 2015.05.29
[VIM] 폴더 별로 다른 설정을 로드하고 싶을 때 ~/.vimrc에 다음과 같은 내용을 입력한다.if filereadable(".vimrc_local") so .vimrc_local else if filereadable("../.vimrc_local") so ../.vimrc_local endif endif 프로젝트 디렉토리에 '.vimrc_local'파일을 생성하고 아래 코드를 입력한다.set tabstop=2 set shiftwidth=2 set softtabstop=2 Passion/Programming 2015.04.01
struct python 에서는 binary packing 을 위해서 struct 라는 모듈을 제공한다. 문자 바이트 순서 크기와 정렬 @ 시스템에 따름 = 시스템에 따름 없음 Big endian 없음 ! 네트워크 (Big endian) 없음 FormatC TypePython typeStandard sizeNotesxpad byteno value ccharstring of length 11 bsigned charinteger1(3)Bunsigned charinteger1(3)?_Boolbool1(1)hshortinteger2(3)Hunsigned shortinteger2(3)iintinteger4(3)Iunsigned intinteger4(3)llonginteger4(3)Lunsigned longinteger4(3).. Passion/Python 2015.03.23