This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=2.9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# stty -echo; turn off echoing on the tty | |
# read password; read input silently | |
# stty echo; turn on echoing on the tty | |
# echo \$password; echo password to be captured by php | |
$password = `stty -echo; read password; stty echo; echo \$password;`; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
random.seed() | |
#this global variable is just for testing | |
#please don't mind it for now | |
ERROR = "NAH UH NOT TODAY" | |
class Syllable: | |
#syllables need to have one vowel at least and probably should be pronounceable | |
def __init__(self): |