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
| {"schema": 5,"addons": [{"id": "forcefull@shdon.com","icons": {"32": "https://addons.cdn.mozilla.net/user-media/addon_icons/879/879822-32.png?modified=1518726526","64": "https://addons.cdn.mozilla.net/user-media/addon_icons/879/879822-64.png?modified=1518726526","128": "https://addons.cdn.mozilla.net/user-media/addon_icons/879/879822-128.png?modified=1518726526"},"name": "ForceFull","version": "1.0.2","sourceURI": "https://addons.mozilla.org/firefox/downloads/file/775544/forcefull-1.0.2-an+fx-mac.xpi?src=","homepageURL": null,"supportURL": "https://www.shdon.com/software/plugins","description": "An extremely simple extension which maximises the Firefox window on program startup and switches to fullscreen mode.","fullDescription": "An extremely simple extension which maximises the Firefox window on program startup and switches to fullscreen mode. To exit full-screen mode simply press F11 or forgo switching to fullscreen mode by disabling or removing the extension.\n\nPlease note that this works only on program |
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
| For | |
| * ES5 | |
| * ES6 | |
| * CoffeeScript |
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
| // app/adapters/application.js | |
| import RESTAdapter from 'ember-data/adapters/rest'; | |
| export default RESTAdapter.extend({ | |
| host: 'https://api.github.com' | |
| }); | |
| console.log('application adapter...'); |
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
| var BrowserDetect = { | |
| init: function () { | |
| this.browser = this.searchString(this.dataBrowser) || "An unknown browser"; | |
| this.version = this.searchVersion(navigator.userAgent) | |
| || this.searchVersion(navigator.appVersion) | |
| || "an unknown version"; | |
| this.OS = this.searchString(this.dataOS) || "an unknown OS"; | |
| this.isApproved = this.searchList(this.browser, this.version); | |
| if(this.OS == "iPad")document.documentElement.className += ' iOS'; |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am carlossless on github. | |
| * I am carlossless (https://keybase.io/carlossless) on keybase. | |
| * I have a public key ASDIyuZFuUxZrqPFmPDfiqKO-TZGi4cp6eKiKWJIKYzJ1Qo | |
| To claim this, I am signing this object: |
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
| import json | |
| import flask | |
| import httplib2 | |
| from apiclient import discovery | |
| from oauth2client import client | |
| app = flask.Flask(__name__) |