Skip to content

Instantly share code, notes, and snippets.

View datysho's full-sized avatar

Mihail Andreev datysho

View GitHub Profile
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
@datysho
datysho / keybindings.json
Created October 22, 2017 12:22
VSCode Keybindings
// 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
@datysho
datysho / settings.json
Created October 22, 2017 12:22
VSCode Settings
{
// 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": {
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()
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()
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 ...
@datysho
datysho / 0_reuse_code.js
Created March 4, 2017 18:49
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console