Skip to content

Instantly share code, notes, and snippets.

alias ls 'ls -F'
set number
set encoding=utf-8
// spec はこんな感じで2番目を意図的に失敗させている
describe("A suite is just a function", function() {
var a;
it("and so is a spec", function() {
a = true;
expect(a).toBe(true);
});
@haushinka2dx
haushinka2dx / chocolatey_capistrano
Created March 20, 2014 08:50
Windowsマシンで chocolatey 入れて、rubyインストールしてcapistranoまで入れてみた
Windows 向けのパッケージマネージャーがあるということなのでインストールしてみる。
ただ、本来の目的はcapistranoをWindowsで使いたいというだけ。
## Windows向けのパッケージマネージャー
いくつかある感じ。
1. [Chocolatey](http://chocolatey.org/)
2. [npackd](https://code.google.com/p/windows-package-manager/)
3. [nuget](http://www.nuget.org/)
@haushinka2dx
haushinka2dx / nginx.conf
Created February 8, 2014 22:29
nginx.conf for image-filter
# 前半は省略
http {
# この辺も省略
server {
listen 80;
location / {
@haushinka2dx
haushinka2dx / gist:8102585
Last active January 1, 2016 05:59
nginx conf for atmosphere
server {
listen 80;
# server_name localhost;
#charset koi8-r;
access_log logs/host.access.log main;
location / {
root html;