Skip to content

Instantly share code, notes, and snippets.

View ahastudio's full-sized avatar

Ashal aka JOKER ahastudio

View GitHub Profile
@wagurano
wagurano / ruby3x3.md
Last active December 11, 2015 16:46
미리 만나는 루비 3

Ruby3x3

저자

@wagurano 줄여서 와그, 루비니언, 평화를 사랑하며 코딩하는 프로그래머

시작하며

서울 펄 몽거스의 펄 크리스마스 달력을 참고하여 루비 크리스마스 달력(Advent Calendar)에 참여하는 글입니다.

지난 9월말쯤 트위터에 마츠모토 유키히로(이하 마츠)씨가 루비 3.0에 대해 발표하였습니다. 그리고 얼마전 11월 루비 컨퍼런스에서 Ruby3 challenges 라는 제목으로 루비 2.3.0과 루비3.0에 대해 소개하였습니다. 여기서는 11월 컨퍼런스 동영상, 모두발언 및 질의응답을 토대로 일부 재구성하여 요약 전달해드리겠습니다.

@kimdwkimdw
kimdwkimdw / guide.md
Last active July 25, 2017 14:11
Python 2.x Encoding cheatsheet
@cmer
cmer / cjax.js.coffee
Created March 9, 2012 20:54
CJAX - History.js-PJAX hybrid that doesn't suck in IE
# This is a work in progress. I use it in production and it works very well, but use at your own risk!
@initCJAX = () ->
History = @History
$ = @jQuery
document = @document
return false unless @History.enabled
$ ->
contentSelector = ".main"
@dahlia
dahlia / lisp.rb
Created September 2, 2010 07:52
30 minutes Lisp in Ruby
# 30 minutes Lisp in Ruby
# Hong Minhee <http://dahlia.kr/>
#
# This Lisp implementation does not provide a s-expression reader.
# Instead, it uses Ruby syntax like following code:
#
# [:def, :factorial,
# [:lambda, [:n],
# [:if, [:"=", :n, 1],
# 1,