View hyper-sync-settings.txt
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
blah |
View test-gist.js
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
function disableButton(el) { | |
$(el).prop('disabled', true); | |
} | |
function enableButton(el) { | |
$(el).prop('disabled', false); | |
} |
View History|-11935f79|EBio.json
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
{ | |
"episodeId": null, | |
"episodes": [ | |
{ | |
"canRenderBuyButtons": true, | |
"canWatch": false, | |
"canWatchEko": null, | |
"canWatchWithAds": false, | |
"cc": true, | |
"contentId": "2214295", |
View atomFindReplaceCrash.json
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
{"path":"/listservice/v2/list/recent-movies?pageNumber=0&pageCount=50&loggedIn=false&device=pc","headers":{"Authorization":"Bearer guest","accept":"application/json","user-agent":"restify/2.8.5 (x64-darwin; v8/3.14.5.9; OpenSSL/1.0.1s) node/0.10.44","date":"Fri, 10 Jun 2016 20:08:14 GMT"}} response: "{\"title\":\"Recent Movies\",\"template\":\"defaultList\",\"description\":\"The best movies to watch on FandangoNOW.\",\"items\":[{\"title\":\"Zootopia\",\"description\":\"\",\"template\":\"defaultItem\",\"id\":\"MMVEC37E818F952B271D5F511A07684BF20C\",\"detailUrl\":\"https://int.mgo.com/listservice/v2/item/MMVEC37E818F952B271D5F511A07684BF20C/details\",\"slugId\":\"zootopia-2016\",\"contentType\":\"MOVIE\"},{\"title\":\"The Martian (Extended Edition)\",\"description\":\"\",\"template\":\"defaultItem\",\"id\":\"MMV42C6A87556618E9670284A81434433A6D\",\"detailUrl\":\"https://int.mgo.com/listservice/v2/item/MMV42C6A87556618E9670284A81434433A6D/details\",\"slugId\":\"the-martian-extended-edition-2016\",\"contentType\" |
View init.coffee
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |