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
'use strict'; | |
var Q = require('q'); | |
var util = require('util'); | |
var http = require('http'); | |
var express = require('express'); | |
var router = express.Router(); | |
var queryString = require('querystring'); | |
var name = 'reittiopas'; |
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
'use strict'; | |
var _ = require('underscore'); | |
module.exports = function () { | |
var noop = function () {}; | |
var args = [ | |
"log", "info", "warn", "error", "debug", "trace", "dir", "group", "groupCollapsed", | |
"groupEnd", "time", "timeEnd", "profile", "profileEnd", "dirxml", "assert", |
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 noop = function () {}; | |
if (!('console' in window)) | |
window.console = {}; | |
_([ | |
"log", "info", "warn", "error", "debug", "trace", "dir", "group", "groupCollapsed", | |
"groupEnd", "time", "timeEnd", "profile", "profileEnd", "dirxml", "assert", | |
"count", "markTimeline", "timeStamp", "clear" | |
]).each(function (it) { |
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
<!-- build:js scripts/vendor.js --> | |
<!-- bower:js --> | |
<script src="bower_components/modernizr/modernizr.js"></script> | |
<script src="bower_components/jquery/dist/jquery.js"></script> | |
<script src="bower_components/angular/angular.js"></script> | |
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script> | |
<script src="bower_components/angular-resource/angular-resource.js"></script> | |
<script src="bower_components/angular-cookies/angular-cookies.js"></script> | |
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script> | |
<script src="bower_components/angular-route/angular-route.js"></script> |
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
describe('a test', function() { | |
it('passes', function() { | |
expect(true).toBe(true); | |
}); | |
}); |
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
// window.app is initialized as: window.app = window.app || angular.module('appName', []); | |
window.app.directive( | |
'soluSlideshow', | |
function () { | |
'use strict'; | |
var defaultConfig = { | |
infiniteLoop: false | |
}; |
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 | |
# Appearance | |
caption always "%{= bW}[%{+b}%n: %t%{-}][%{+b}%-Lw%50>%n%f*%t%+Lw%<%{-}]%-=%?%?[%{+b}Mail: %2%{-}]%?%?[%{+b}%H%{-}]%?[%{+b}%Y.%m.%d %c%{-}]" | |
shelltitle "$ |bash" | |
defnonblock 1 | |
nonblock 5 | |
vbell off | |
termcapinfo rxvt* hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007 |
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
10 PRINT "Hello World!" | |
20 GOTO 10 |
NewerOlder