- Limit the amount of memory used with
export NODE_OPTIONS='--max_old_space_size=2096'
- Build
// vars to keep track of the "mouse" during touchmove | |
var mouseX; | |
var mouseY; | |
// create the custom events so you can dispatch them later | |
var touchover = new Event("touchover"); | |
var touchout = new Event("touchout"); | |
var touchup = new Event("touchup"); | |
var element = document.getElementById("dropTargetDivName"); |
## Configuration with additional popup keys (swipe up from an extra key) | |
extra-keys = [ \ | |
[ \ | |
{key: ESC, display: ""}, \ | |
{key: ESC, popup: {macro: "CTRL f d", display: "tmux exit"}}, \ | |
{key: CTRL, popup: {macro: "CTRL f BKSP", display: "tmux ←"}}, \ | |
{macro: "ESC :q ENTER", display: ":q", popup: {macro: "ALT g", display: A-g}}, \ | |
{macro: ",t", display: "tree", popup: {macro: ", n", display: "focus"}}, \ | |
{macro: 'y :%s/ CTRL r " //gic LEFT LEFT LEFT LEFT', display: ":%s"}, \ | |
{macro: "exa SPACE --long SPACE --tree ENTER", display: "exa", popup: {macro: "lsd SPACE --long SPACE --tree ENTER", display: "lsd"}}, \ |
## Configuration with additional popup keys (swipe up from an extra key) | |
extra-keys = [ \ | |
[ \ | |
{key: ESC, display: ""}, \ | |
{key: ESC, popup: {macro: "CTRL f d", display: "tmux exit"}}, \ | |
{key: CTRL, popup: {macro: "CTRL f BKSP", display: "tmux ←"}}, \ | |
{macro: "ESC :q ENTER", display: ":q", popup: {macro: "ALT g", display: A-g}}, \ | |
{macro: 'y :%s/ CTRL r " //gic LEFT LEFT LEFT LEFT', display: ":%s"}, \ | |
{macro: "cd SPACE TAB", display: "cd", popup: {macro: "ALT g", display: A-g}}, \ | |
{macro: 'CTRL r', display: "<C-r>"}, \ |
#!/usr/bin/env python | |
import sys | |
# DOT = '.' | |
DOT = '·' | |
args = sys.argv[1:] | |
dotted = [DOT.join(arg).upper() for arg in args] |
#!/usr/bin/env zsh | |
# This script prints a bell character when a command finishes | |
# if it has been running for longer than $zbell_duration seconds. | |
# If there are programs that you know run long that you don't | |
# want to bell after, then add them to $zbell_ignore. | |
# | |
# This script uses only zsh builtins so its fast, there's no needless | |
# forking, and its only dependency is zsh and its standard modules | |
# |
## Configuration with additional popup keys (swipe up from an extra key) | |
extra-keys = [[ \ | |
{key: KEYBOARD, popup: {macro: "CTRL d", display: exit}}, \ | |
{key: ESC, popup: {macro: "CTRL f d", display: "tmux exit"}}, \ | |
{key: CTRL, popup: {macro: "CTRL f BKSP", display: "tmux ←"}}, \ | |
{key: ALT, popup: {macro: "CTRL f TAB", display: "tmux →"}}, \ | |
{macro: "ALT c", display: "cd", popup: {macro: "ALT g", display: A-g}}, \ | |
{macro: "vim SPACE $(fzf) ENTER", display: "vim", popup: {macro: "ALT g", display: A-g}}, \ | |
{macro: "ESC :w ENTER", display: ":w", popup: {macro: "ALT g", display: A-g}}, \ | |
{macro: "ESC :q ENTER", display: ":q", popup: {macro: "ALT g", display: A-g}}, \ |
# https://wiki.archlinux.org/title/android | |
# Command-Line Tools - https://developer.android.com/studio/releases/cmdline-tools | |
export PATH="~/Android/Sdk/tools/bin/:$PATH" | |
# SDK Build-Tools - https://developer.android.com/studio/releases/build-tools | |
export PATH="~/Sdk/build-tools/30.0.3/:$PATH" | |
# SDK Platform-Tools - https://developer.android.com/studio/releases/platform-tools | |
export PATH="~/Sdk/platform-tools/:$PATH" |