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
GIT_BRANCH='`git branch 2> /dev/null | sed -e "/^[^*]/d" -e "s/^* \(.*\)$/(\1)/"`' | |
PS1="[\u@\h \W$GIT_BRANCH]\$ " |
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
name = WPA2-PEAP-MSCHARPv2 | |
author = saidie | |
version = 1 | |
require identity *Username password *Password | |
protected password *Password | |
----- | |
ctrl_interface=/var/run/wpa_supplicant | |
network={ | |
ssid="$_ESSID" | |
proto=RSN |
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
function nextArticle(articles){ | |
if(articles.length == 0) return(null); | |
var date = new Date(); | |
return(articles[date.getMinutes() % articles.length]); | |
} |
NewerOlder