This file contains 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
startup_message off | |
# if we accidentally hangup, don't be all attached when we come back. | |
autodetach on | |
# more scrollbacks! | |
defscrollback 10000 | |
# disable use of the "alternate" terminal | |
# thus allowing scrollbars to function as normal in |
This file contains 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
var gulp = require('gulp'), | |
takana = require('takana'); | |
gulp.task('takana', function() { | |
takana.run({ | |
path: __dirname, | |
includePaths: [] // Optional | |
}); | |
}); |
This file contains 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
# | |
# | |
# Compile & execute Ruby as bytecode | |
# | |
# | |
require 'rbconfig' | |
require 'dl' | |
require 'fiddle' | |
require 'strscan' |