I hereby claim:
- I am arix on github.
- I am arix (https://keybase.io/arix) on keybase.
- I have a public key whose fingerprint is E631 293E B114 9D75 6889 DE54 DC8C 5999 DD54 E8D4
To claim this, I am signing this object:
Directory of C:\Program Files\Common Files\Apple\Apple Application Support | |
12/25/2014 02:42 PM <DIR> . | |
12/25/2014 02:42 PM <DIR> .. | |
07/31/2014 12:15 PM 47,400 ApplePushService.dll | |
04/23/2014 03:04 PM 17,736 AppleVersions.dll | |
07/31/2014 12:15 PM 43,816 APSDaemon.exe | |
07/31/2014 12:15 PM 678,696 APSDaemon_main.dll | |
04/23/2014 03:04 PM 62,792 ASL.dll | |
07/31/2014 12:15 PM 299,816 AVFoundationCF.dll |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
while true; do | |
if curl -silent -A "iMacAppStore/1.0.1 (Macintosh; U; Intel Mac OS X 10.6.7; en) AppleWebKit/533.20.25" 'http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMultiRoom?fcId=489264329&mt=12&s=143461' | grep -i "mountain lion" ; then | |
echo "Available" | |
growlnotify -m "Mountain Lion is available" -t "App Store" | |
say "MOUNTAIN LION MAY BE AVAILABLE" | |
break | |
else | |
echo "Nada" | |
fi |
#! /bin/csh | |
while (1) | |
curl -silent -A "iMacAppStore/1.0.1 (Macintosh; U; Intel Mac OS X 10.6.7; en) AppleWebKit/533.20.25" 'http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewGrouping?id=29526&mt=12' | grep -i "mountain lion" > /dev/null | |
if ($? == 0) then | |
echo "Available" | |
say "MOUNTAIN LION MAY BE AVAILABLE" | |
else | |
echo "Nada" | |
endif | |
sleep 600 |