Skip to content

Instantly share code, notes, and snippets.

View codehearted's full-sized avatar

Paul Jacobs codehearted

  • Oak Park, CA
  • 16:12 (UTC -07:00)
View GitHub Profile
@riccardomurri
riccardomurri / requirements.txt
Last active April 27, 2022 17:36
SHA-256 implementation using TensorFlow (Eager)
absl-py==0.3.0
apipkg==1.5
astor==0.7.1
atomicwrites==1.1.5
attrs==18.1.0
backports.weakref==1.0.post1
enum34==1.1.6
execnet==1.5.0
funcsigs==1.0.2
futures==3.2.0
@alexc7018
alexc7018 / dvorak_remap.sh
Created January 25, 2017 14:24
Remap keyboard layout to Dvorak in Kali 2016.2
#!/bin/bash
xmodmap -e "keycode 38 = a A"
xmodmap -e "keycode 56 = x X"
xmodmap -e "keycode 54 = j J"
xmodmap -e "keycode 40 = e E"
xmodmap -e "keycode 26 = period greater"
xmodmap -e "keycode 41 = u U"
xmodmap -e "keycode 42 = i I"
xmodmap -e "keycode 43 = d D"
xmodmap -e "keycode 31 = c C"