Opinionated Template
npx degit https://gist.github.com/5a48a8afd9377b0dd3523f68af512f98.git my-new-worker
mkdir src; mv _src_worker.ts src/worker.ts
npm install
/* | |
* Copyright (c) 2010 Tobias Schneider | |
* This script is freely distributable under the terms of the MIT license. | |
*/ | |
(function(){ | |
var UPC_SET = { | |
"3211": '0', | |
"2221": '1', | |
"2122": '2', |
#!/usr/bin/env python3 | |
# encoding: utf-8 | |
# By Joonas Kuorilehto 2011, MIT license | |
# | |
# The script combines .ssh/known_hosts so that each fingerprint is only | |
# listed once. | |
import re | |
import sys | |
import os |
import pycurl | |
import json | |
import time | |
from StringIO import StringIO | |
i = 0 | |
bnums = [] | |
while True : | |
print(str(i)) |
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"arrowFunctions": false, // enable arrow functions | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"classes": false, // enable classes | |
"defaultParams": false, // enable default function parameters | |
"destructuring": false, // enable destructuring |
<?php | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
error_reporting(E_ALL); | |
$database = 'db'; | |
$user = 'user'; | |
$pass = 'pass'; | |
$host = 'localhost'; |
"indentRainbow.colors": [ | |
"rgba(28, 40, 51, 0.05)", | |
"rgba(33, 47, 60, 0.05)", | |
"rgba(81, 90, 90, 0.05)", | |
"rgba(95, 106, 106, 0.05)", | |
"rgba(121, 125, 127,0.05)", | |
"rgba(151, 154, 154,0.05)" | |
], |
A regularly updated collection of SVG resources
.env
file for me sparing me the need to pollute my session with environment variables.
I've been using Fish shell for years which is great and all, but one thing that has got me frustrated is using it with .env
files.
When attempting to run source .env
in a project, I usually encounter this problem: