Skip to content

Instantly share code, notes, and snippets.

View tutkun's full-sized avatar
👨‍💻

Samet Tutkun tutkun

👨‍💻
View GitHub Profile

Crystal vs Node.js Websocket Benchmark

Crystal 0.9.1 with Kemal

require "kemal"

ws "/" do |socket|
  socket.on_message do |message|
 end
@sapegin
sapegin / Gruntfile.coffee
Last active January 29, 2016 13:35
How to use Autoprefixer plugin for Stylus with grunt-contrib-stylus
grunt.initConfig
stylus:
options:
use: [
() -> require('autoprefixer-stylus')('last 2 versions', 'ie 8')
]
compile:
files:
'build/styles.css': 'styles/index.styl'