├── .gitignore ├── README.md ├── legacy ├── README.md ├── check_wifi.sh └── tumblr.py ├── photos └── .DS_Store ├── sample_script.sh ├── tutorial ├── automator.png └── security.png └── wifidiary.plist /.gitignore: -------------------------------------------------------------------------------- 1 | photos/* 2 | SSID.txt 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/README.md -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/check_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/legacy/check_wifi.sh -------------------------------------------------------------------------------- /legacy/tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/legacy/tumblr.py -------------------------------------------------------------------------------- /photos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/photos/.DS_Store -------------------------------------------------------------------------------- /sample_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/sample_script.sh -------------------------------------------------------------------------------- /tutorial/automator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/tutorial/automator.png -------------------------------------------------------------------------------- /tutorial/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/tutorial/security.png -------------------------------------------------------------------------------- /wifidiary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binx/WiFiDiary/HEAD/wifidiary.plist --------------------------------------------------------------------------------