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
package main | |
import ( | |
"fmt" | |
"image/jpeg" | |
"io/ioutil" | |
"math/rand" | |
"os" | |
"strings" | |
"time" |
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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.colorTheme": "One Dark Pro", | |
"editor.tabSize": 2, | |
"eslint.validate": ["javascript", "javascriptreact", "vue"], | |
"prettier.eslintIntegration": true, | |
"editor.formatOnSave": true, | |
"window.zoomLevel": 0, | |
"editor.minimap.enabled": false, | |
"editor.wordWrap": "on", |
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
// Uses dracula Theme | |
{ | |
"Ansi 6 Color" : { | |
"Green Component" : 0.9137254901960784, | |
"Red Component" : 0.5450980392156862, | |
"Blue Component" : 0.9921568627450981 | |
}, | |
"Tags" : [ |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "scotch/box" | |
# config.vm.network "private_network", ip: "192.168.33.10" | |
config.vm.network "public_network" | |
config.vm.hostname = "vagrantbox" | |
config.vm.synced_folder ".", "/var/www", :mount_options => ["dmode=777", "fmode=666"] |
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
'.source.php': | |
'var_dump with <pre>': | |
'prefix': 'pvd' | |
'body': 'echo \'<pre>\';\nvar_dump($1);\necho \'</pre>\';$0' | |
'.source.js': | |
'console.log() shortcut': | |
'prefix': 'cl' | |
'body': 'console.log($1);$0' | |
'console.table() shortcut': |