- Limit the amount of memory used with
export NODE_OPTIONS='--max_old_space_size=2096'
- Build
| #!/usr/bin/env bash | |
| # Generate RSA private key | |
| openssl genrsa -out private_key.pem 1024 | 
| #!/usr/bin/env python | |
| """Extract the public key from the private key and write to a file. | |
| """ | |
| from Crypto.Hash import SHA256 | |
| from Crypto.Signature import PKCS1_v1_5 | |
| from Crypto.PublicKey import RSA | |
| with open("private_key.pem", "r") as src: | |
| private_key = RSA.importKey(src.read()) | 
| // 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"); | 
| #!/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 | |
| # | 
References:
http://www.muktware.io/arch-linux-guide-the-always-up-to-date-arch-linux-tutorial/ (Link is broken)There are 2 choices:
I tried to install in UEFI mode, but my laptop (Acer E5-475-336H) had problems with it, and didn't boot after installation.
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 | 
| # Use xinput to find your keyboards. | |
| $ xinput | |
| ⎡ Virtual core pointer id=2 [master pointer (3)] | |
| ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] | |
| ⎜ ↳ SynPS/2 Synaptics TouchPad id=11 [slave pointer (2)] | |
| ⎜ ↳ TPPS/2 IBM TrackPoint id=12 [slave pointer (2)] | |
| ⎜ ↳ Logitech Performance MX id=14 [slave pointer (2)] | |
| ⎜ ↳ E-Signal USB Gaming Keyboard id=16 [slave pointer (2)] | |
| ⎣ Virtual core keyboard id=3 [master keyboard (2)] |