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
Exception in thread "main" java.lang.VerifyError: (class: cljs/util$last_modified, method: invokeStatic signature: (Ljava/lang/Object;)Ljava/l | |
ang/Object;) Can only throw Throwable objects, compiling:(util.cljc:142:1) | |
at clojure.lang.Compiler$DefExpr.eval(Compiler.java:463) | |
at clojure.lang.Compiler.eval(Compiler.java:6918) | |
at clojure.lang.Compiler.load(Compiler.java:7360) | |
at clojure.lang.RT.loadResourceScript(RT.java:372) | |
at clojure.lang.RT.loadResourceScript(RT.java:363) | |
at clojure.lang.RT.load(RT.java:453) | |
at clojure.lang.RT.load(RT.java:419) | |
at clojure.core$load$fn__5669.invoke(core.clj:5885) |
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
rooms | |
1 Opera House Foyer | |
1 You are in the Foyer of the Opera House. This room has doors to the south and | |
1 west, also an unusable exit to the north. The room is quiet and you don't see | |
1 anyone around. | |
2 Cloak Room | |
2 You are in the cloak room. The room resembles a large walk in closet. You see | |
2 a brass hook on the wall. | |
3 The Bar | |
3 You are in the bar and it is extremely dark, you cannot see anything right |
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
text | |
1 You are in the Foyer of the Opera House. This room has doors to the south and | |
1 west, also an unusable exit to the north. The room is quiet and you don't see | |
1 anyone around. | |
2 You are in the cloak room. The room resembles a large walk in closet. You see | |
2 a brass hook on the wall. | |
3 You are in the bar and it is extremely dark, you cannot see anything right | |
3 now. You can't even see if there is a light switch. | |
4 You take off your cloak and hang it up on the hook. | |
6 Because you disturbed the room while moving around in the dark you made the |
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
- Gonna try to add screenshots to this gist |
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
Look mom, I made a IRC client... |
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
EDM Sets { | |
Trance mix 2014 - Armin Van BuurenW&WPaul Oakenfold : p68MTskBUnM | |
Progressive Trance Top 10 (February 2014) / New Trance Mix / Paradise : g2L0OWterVg | |
Goodbye 2013 Mix (Progressive Trance House Trouse Uplifting Melodic Vocal) : RLVs7Csdmf8 | |
Best of Progressive & Melodic Trance 2013 Yearmix [5 Hour Set] [HD] - Shane Collins - APJ #32 : seBS2MEtALE | |
Arctic Moon Megamix - best tracks & remixes : aX00On-X7K8 | |
Seven Lions Mix (Hour Long Melodic Dubstep / Trancestep Mix) : 7KfKft2lcog | |
BEST OF VOCAL TRANCE | MIX#4 : VZT9HGsv01A | |
This Was The Summer Of Hardstyle 2013 : kQko_qnKoW4 | |
Incredible Emotional Vocal Trance Mix l April 2015 (Vol 26) : 3l2FHxVd71o |
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 querystring = require('querystring') | |
var xhr = require('xhr') | |
if (!xhr.open) xhr = require('request') | |
var allowedProperties = [ | |
'fields', | |
'channelId', | |
'channelType', | |
'eventType', |
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
const moment = require("moment"), | |
_ = require("lodash"); | |
function getWeeksOfYearList(startDate, endDate) { | |
let dates = [], | |
keepGoing = true, | |
start = moment(startDate), | |
end = moment(endDate), | |
rolling = start; |
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
***The 'properties' property is for anything that is game specific*** | |
-IF SCHEMA BELOW- | |
Player | |
- current room | |
- moves | |
- score | |
- items | |
- properties (eg. health, gold, etc...) |
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
const util = require("util"); | |
const search = require("youtube-search"); | |
const _ = require("lodash"); | |
var xhr = require("xhr"); | |
if (!xhr.open) xhr = require("request"); | |
var opts = { | |
maxResults: 1, | |
key: "<YOUR_KEY_HERE>" | |
}; |