My Pok3r bindings. Posting in case I ever lose them.
Capslock -> Fn (Dip switch 3, original Fn key stays in normal position)
Right Ctrl -> Capslock
Right Alt -> Right Ctrl
Left Ctrl -> Left Alt
Left Alt -> Left Ctrl
/* | |
* ,--------------------------------------------------------------------------------------. | |
* | | | | | | | | | | | | | | | | |
* |--------------------------------------------------------------------------------------| | |
* | | | | | | | | | | | | | | | | |
* |--------------------------------------------------------------------------------------| | |
* | | | | | | | | | | | | | | | |
* |--------------------------------------------------------------------------------------| | |
* | | | | | | | | | | | | | | |
* |--------------------------------------------------------------------------------------| |
#!/bin/bash | |
# | |
# Build and deploy stand-alone production-optimized React Native project to device for testing | |
# | |
# WARNING: This can take a long time (~10 minutes) to complete | |
# | |
[[ -f .env ]] && source .env | |
if [[ -z ${XCODE_SCHEME} ]] ; then |
[ | |
{ "name": "Priority: Important", "color": "#eb6420" }, | |
{ "name": "Priority: Critical", "color": "#e11d21" }, | |
{ "name": "Status: Abandoned", "color": "#000000" }, | |
{ "name": "Status: Accepted", "color": "#009800" }, | |
{ "name": "Status: Available", "color": "#bfe5bf" }, | |
{ "name": "Status: Blocked", "color": "#e11d21" }, | |
{ "name": "Status: Completed", "color": "#006b75" }, | |
{ "name": "Status: In Progress", "color": "#cccccc" }, | |
{ "name": "Status: On Hold", "color": "#e11d21" }, |
country=us | |
update_config=1 | |
ctrl_interface=/var/run/wpa_supplicant | |
network={ | |
scan_ssid=1 | |
ssid="MyNetworkSSID" | |
psk="Pa55w0rd1234" | |
} |
L = ['value', 'value2', 'value3'] | |
L2 = ['value', 'value2', 'value3'] | |
# Old-Old way | |
for index in range(len(L)): | |
item = L[index] | |
item2 = L2[index] | |
print(item, item2) | |
# Old way |
# -*- coding: utf-8 -*- | |
import sys | |
class ProgressBar(): | |
"""Printable progress bar. | |
""" | |
def __init__( | |
self, total, iterator=0, prefix='Progress', |
#!/bin/bash | |
# | |
# Created: 2017-07-02 22:44 | |
# Updated: 2018-04-17 10:38 | |
# Creator: Ryan Miller | |
# Website: http://devopsmachine.com/ | |
# File: ~/.bashrc (Add to file) | |
# | |
# Add git information to end of yor bash command prompt while inside a git directory! | |
# + Will show current branch as either green (clean) or yellow (uncommited changes) |
#!/bin/bash | |
# | |
# Created: 2017-07-02 16:20 | |
# Updated: 2018-02-09 12:23 | |
# Creator: Ryan Miller | |
# Website: http://devopsmachine.com/ | |
# File: /usr/local/bin/set-primary-monitor-pantheon-greeter | |
# | |
# Set correct primary monitor for login screen when lightdm greeter starts up on Elementary OS. | |
# |