I hereby claim:
- I am pathologicalhandwaving on github.
- I am unmary (https://keybase.io/unmary) on keybase.
- I have a public key ASCAS_jVdYyaQguFgXtW13Q8jnNn-D3R0BzcbHtDQtCaJwo
To claim this, I am signing this object:
#!python3 | |
''' | |
NOTE: Modified for all the characters i hate using the number pad to get to. | |
This shows a scrolling row or grid of special characters in the Pythonista Keyboard. The view supports both the 'minimized' mode (above the QWERTY keyboard) and the 'expanded' mode with the grid filling most of the keyboard. | |
Note: This script is designed for the Pythonista Keyboard. You can enable it in the Settings app (under General > Keyboard > Keyboards > Add New Keyboard...). Please check the documentation for more information. | |
''' |
I hereby claim:
To claim this, I am signing this object:
# batch change extension | |
chgext() { | |
for file in *.$1 ; do mv $file `echo $file | sed "s/\(.*\.\)$1/\1$2/"` ; done | |
} |
#copies the piped input onto the clipboard | |
alias copy="xclip -selection c" | |
#pastes the clipboards contents into the terminal | |
alias paste="xclip -selection clipboard -o" |
Root | |
To Change from LTS to NORMAL edit | |
/etc/update-manager/release-upgrades | |
change | |
Prompt=lts | |
to: | |
Prompt=normal | |
reset terminal | |
sudo do-release-upgrade |
// Resolution | |
$fa = 1; | |
$fs = 0.4; | |
// Cube | |
//cube(size=10); | |
// Cube centered at origin | |
//cube(size=20,center=true); | |
// Rectangular Cuboid |