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
ERROR: Failed to load font at "file:///Users/datysho/Git/shootq/shootq-base/pdf_api_v1/templates/pdf/examples/low_dpi/fonts/fontawesome-webfont.eot#iefix&v=4.7.0" | |
ERROR: Failed to load font at "file:///Users/datysho/Git/shootq/shootq-base/pdf_api_v1/templates/pdf/examples/low_dpi/fonts/fontawesome-webfont.woff2?v=4.7.0" (URLError: <urlopen error [Errno 2] No such file or directory: '/Users/datysho/Git/shootq/shootq-base/pdf_api_v1/templates/pdf/examples/low_dpi/fonts/fontawesome-webfont.woff2?v=4.7.0'>) | |
ERROR: Failed to load font at "file:///Users/datysho/Git/shootq/shootq-base/pdf_api_v1/templates/pdf/examples/low_dpi/fonts/fontawesome-webfont.woff?v=4.7.0" (URLError: <urlopen error [Errno 2] No such file or directory: '/Users/datysho/Git/shootq/shootq-base/pdf_api_v1/templates/pdf/examples/low_dpi/fonts/fontawesome-webfont.woff?v=4.7.0'>) | |
ERROR: Failed to load font at "file:///Users/datysho/Git/shootq/shootq-base/pdf_api_v1/templates/pdf/examples/low_dpi/fonts/fontawesome-webfont.ttf?v=4.7.0" (URLError: <ur |
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
// Start Toggle Explorer View | |
{ "key": "cmd+1", "command": "workbench.view.explorer" }, | |
{ "key": "cmd+2", "command": "workbench.view.search" }, | |
{ "key": "cmd+3", "command": "workbench.view.scm" }, | |
{ "key": "cmd+4", "command": "workbench.view.debug" }, | |
{ "key": "cmd+5", "command": "workbench.view.extensions" }, | |
{ "key": "cmd+b", "command": "workbench.action.toggleSidebarVisibility" }, | |
// End Toggle Explorer View |
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
{ | |
// Start Window Settins | |
"window.restoreWindows": "none", | |
"window.zoomLevel": 0, | |
// End Window Settins | |
// Start Files Settings | |
"files.autoSave": "off", | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"files.exclude": { |
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
import digitalocean | |
droplet = digitalocean.Droplet(token="secretspecialuniquesnowflake", | |
name='Example', | |
region='nyc2', # New York 2 | |
image='ubuntu-14-04-x64', # Ubuntu 14.04 x64 | |
size_slug='512mb', # 512MB | |
backups=True) | |
droplet.create() |
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
import digitalocean | |
droplet = digitalocean.Droplet(token="secretspecialuniquesnowflake", | |
name='Example', | |
region='nyc2', # New York 2 | |
image='ubuntu-14-04-x64', # Ubuntu 14.04 x64 | |
size_slug='512mb', # 512MB | |
backups=True) | |
droplet.create() |
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 Pasted pastebin is the original next generation tool for sharing text. We offer a full suite of tools and a affiliate program for users to make money. Formerly ... |
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 Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |