기본 콘텐츠로 건너뛰기

7월, 2012의 게시물 표시

coffeescript로 만들어보는 html(jade/ejs 아님)사용 boilerplate

express = require 'express' gzippo = require 'gzippo' app = express.createServer express.logger() store = new express.session.MemoryStore api = require './api/apis' tmpl = compile: (source, options)->     (locals)->       source app.configure ()->   app.set 'views', "#{__dirname}/public"   app.use express.cookieParser()   app.use express.session secret: '<sessionkey>', store: store   app.use gzippo.staticGzip "#{__dirname}/public"   app.set 'view options', layout: false   app.set 'view engine', 'html'   app.register '.html',     tmpl # APIs app.post '/api/auth/login', api.login app.get '/api/auth/logout', api.logout app.get '*', (request, response) ->   response.render "index.html" port = process.env.PORT || 3000 app.listen port, ()->     console.log "Listening on " + port

Chrome Tip : Cmd+Q 실수로 크롬이 종료되는 걸 막자

OSX 에서 Chrome 을 쓰다보면 빈번히 겪게 되는 짜증나는 상황이 있는데 창닫기 단축키인 Cmd+W 를 누르다가 실수로 Cmd+Q 를 눌러버려서 Chrome 전체를 닫아버리는 경우이다. 예전엔 about:flags 에서 설정을 바꿨다고 하는데 원성이 많았는지 메뉴에 아예 들어갔다. 크롬 메뉴에서 "종료하기 전 경고"를 체크하면   Cmd+Q를 눌렀을 때 종료하려면 cmd+Q를 길게 누릅니다. 라는 메시지를 볼 수 있다. 더 이상 글쓰다가 실수로 크롬을 종료하여 가슴치는 일이 없도록 하자 :)

ubuntu 에서 cloud9 설치

버전문제 때문에 설치할 수 없었던 cloud9이 업데이트가 되었다는 소식을 듣고 ubuntu 12.10에 설치 https://github.com/ajaxorg/cloud9 에 보면 # Be sure you have sourcemint installed: npm install -g sm # Then: sm clone --dev https://github.com/ajaxorg/cloud9/tree/master cloud9 # or git clone https://github.com/ajaxorg/cloud9.git cloud9 cd cloud9 sm install 로 설치하는데 잘 안된다. 의존성 문제인데 // Super important for Linux users! If you are having issues with installing the o3/libxml dependency, be sure to check this issue for possible solutions: https://github.com/ajaxorg/node-libxml/issues/3 라고 언급해 놓았다. sudo apt-get install libxml2-dev 를 실행하여 libxml2 를 설치하자. 어렵지 않게 설치가 가능했다. 로컬에서 쓸게 아니라 외부에서 들어올거라서 port와 IP를 변경해주고 작업경로를 지정했다. 보통이라면 ~/cloud9/bin/cloud9.sh & 하고 실행하겠지만 기왕 node.js 인거 forever 를 써서 깔끔하게 관리하고 싶었다. forever start server.js -p 8123 -l 0.0.0.0 -w ~/workspace 아이 좋아 +_+