It's twilight.
The sun escorts the moon to the night.
The sun sleeps
, the wind howls.
My sweetheart smiles.
Autumn chill
, Sweetheart's warm feel
, Sultry looks
, Heart be still.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var fs = require('fs'), | |
path = require('path'), | |
options = { | |
verbose: false, | |
directories: ['.'] | |
}; | |
var includeFollowing = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Code: | |
# | |
namespace = (target, name, block) -> | |
[target, name, block] = [exports ? window, arguments...] if arguments.length < 3 | |
top = target | |
target = target[item] or= {} for item in name.split '.' | |
block target, top | |
# Usage: | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make -B -f Make_cyg.mak GUI=yes PYTHON=c:/bin/tools/python/2.7 PYTHON_VER=27 RUBY=c:/bin/tools/ruby/1.8.7 RUBY_VER=18 RUBY_VER_LONG=1.8 RUBY_PLATFORM=i386-mingw32 OLE=yes ARCH=i386 FEATURES=HUGE NETBEANS=no gvim.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Sun extends Star | |
@attr 'mass' | |
private = 'private' | |
@public = 'public' | |
@instance_method = -> | |
Sun.static_method = -> | |
# or perhaps @@ for Sun |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT = (map, results) -> map.call each for each in results | |
FROM = (list, reduce) -> each for each in list when reduce each | |
WHERE = (reduce) -> (each) -> reduce.call each |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% coffee test.py | |
Hello | |
% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BOLD="\033[1m" | |
_BOLD="\033[22m" | |
RED="\033[31m" | |
YELLOW="\033[33m" | |
GREEN="\033[32m" | |
RESET="\033[39m" | |
range=$1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version = 4 | |
Booleans = {'caretLineVisible': True, 'preferFixed': 1, 'useSelFore': False} | |
CommonStyles = {'attribute name': {'fore': 8904824}, | |
'attribute value': {'fore': 13676752}, | |
'bracebad': {'back': 0, 'bold': 1, 'fore': 13421823}, | |
'bracehighlight': {'bold': 1, 'fore': 6710886}, | |
'classes': {'fore': 16761856}, | |
'comments': {'bold': False, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% sass page.scss page.css | |
Errno::ENOENT: No such file or directory - page.scss | |
Use --trace for backtrace. |