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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Serverless Offline", | |
"type": "node", | |
"request": "launch", | |
"cwd": "${workspaceRoot}/backend", | |
"runtimeExecutable": "npm", | |
"runtimeArgs": ["run-script", "debug"] |
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
############################################################################################## | |
# This helps unblock me on following a long with materials for learning Ansible and Kubernetes | |
# locally, which rely on a VM service. | |
# | |
# I did not want to use VirtualBox, because on Linux it requires tainting the kernel. I also | |
# already have Docker installed and it's said to have better performance/less overhead. | |
# | |
# This Dockerfile will setup an Ubuntu container and configure it to support SSH, which is | |
# required for testing Ansible locally with Vagrant. | |
# |
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
# Copy last command | |
alias copy_last_cmd="fc -ln -1 | tr -d '\n' | xclip -selection clipboard" | |
# Disk usage | |
alias usage='du -ch | grep total' | |
# Permissions | |
alias perm='stat -c "%a %n" *' | |
# Print $PATH entries on newlines |
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
# Desktop | |
www.google.com##div[class="g"]:has(a[href*="example.com"]) | |
# Mobile | |
www.google.com##div[lang="en"]:has(a[href*="example.com"]) |
OlderNewer