View launch.json | with npm script
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Serverless Offline", | |
"type": "node", | |
"request": "launch", | |
"cwd": "${workspaceRoot}/backend", | |
"runtimeExecutable": "npm", | |
"runtimeArgs": ["run-script", "debug"] |
View string-keys.type.ts
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
/* | |
If you try to do `keyof SomeType`, and `SomeType` has an interface of `[key: string]: x` | |
TypeScript will infer that to a union of `string | number` because JavaScript coerces numeric | |
indexes to strings. | |
Example: obj[0] -> obj["0"] | |
This can make it annoying to try to create an interface for interacting with one of these | |
types when we know we only want to accept string values, or that's a rule we want to enforce. | |
View scatter-gather.go
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
// Scatter | |
c := make(chan result, 10) | |
for i := 0; i < cap(c); i++ { | |
go func() { | |
val, err := process() | |
c <- result{val, err} | |
}() | |
} | |
// Gather |
View async-await.go
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
c := make(chan User, 1) | |
go func() { c <- getUser() }() // async | |
user := <-c // await |
View .vimrc
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
" Show line numbers | |
set nu | |
" Enable filetype plugins | |
filetype plugin on | |
filetype indent on | |
"Always show current position | |
set ruler |
View nginx_Dockerfile
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
FROM nginx:1.19.4-alpine | |
COPY default.conf /etc/nginx/conf.d/ | |
WORKDIR /var/www/html |
View main.go
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
package main | |
import ( | |
"fmt" | |
"net/http" | |
) | |
func IndexHandler(w http.ResponseWriter, r *http.Request) { | |
fmt.Fprint(w, "Hello World") | |
} |
View settings.json
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
{ | |
// -> Files | |
"files.trimTrailingWhitespace": true, | |
// -> Editor | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.renderWhitespace": "all", | |
"editor.formatOnPaste": true, | |
"editor.codeActionsOnSave": { |
View actions.php
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
add_action( 'init', function() { | |
// Remove the REST API endpoint. | |
remove_action('rest_api_init', 'wp_oembed_register_route'); | |
// Turn off oEmbed auto discovery. | |
// Don't filter oEmbed results. | |
remove_filter('oembed_dataparse', 'wp_filter_oembed_result', 10); | |
// Remove oEmbed discovery links. |
View certgen.sh
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
#!/bin/bash | |
source /usr/bin/cprintf.sh | |
########################################################### | |
# Generate a new SSL | |
# @param string $1 domain | |
if [ -n "$1" ]; then | |
domain="$1" |
NewerOlder