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
| // | |
| // UIImage+Additions.m | |
| // SteveJobsTribute | |
| // | |
| // Created by Zachry Thayer on 10/11/11. | |
| // Copyright (c) 2011 Yoshimi Robotics. All rights reserved. | |
| // | |
| #import "UIImage+Additions.h" |
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
| // | |
| // OfflineReverseGeocoder.h | |
| // OfflineReverseGeocoder | |
| // | |
| // Created by Zachry Thayer on 11/4/11. | |
| // Copyright (c) 2011 Zachry Thayer. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> | |
| #import <CoreLocation/CoreLocation.h> |
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
| territory,,AU-ACT,12471,15,AU,AUS | |
| state,,AU-NSW,12477,15,AU,AUS | |
| territory,,AU-NT,12475,15,AU,AUS | |
| state,,AU-QLD,12476,15,AU,AUS | |
| state,,AU-SA,12472,15,AU,AUS | |
| state,,AU-TAS,12474,15,AU,AUS | |
| state,,AU-VIC,12473,15,AU,AUS | |
| state,,AU-WA,12470,15,AU,AUS | |
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
| Australia,AU-ACT,Australian Capital Territory | |
| Australia,AU-NSW,New South Wales | |
| Australia,AU-NT,Northern Territory | |
| Australia,AU-QLD,Queensland | |
| Australia,AU-SA,South Australia | |
| Australia,AU-TAS,Tasmania | |
| Australia,AU-VIC,Victoria | |
| Australia,AU-WA,Western Australia | |
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
| - (float)randomFloatBetween:(float)smallNumber and:(float)bigNumber { | |
| float diff = bigNumber - smallNumber; | |
| return (((float) (arc4random() % ((unsigned) 0x100000000 + 1)) / 0x100000000) * diff) + smallNumber; | |
| } |
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
| regionCodes = {"United States":{ | |
| "Alabama":"AL", | |
| "Alaska":"AK", | |
| "Arizona":"AZ", | |
| "Arkansas":"AR", | |
| "California":"CA", | |
| "Colorado":"CO", | |
| "Connecticut":"CT", | |
| "Delaware":"DE", | |
| "Florida":"FL", |
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
| var http = require('http'); | |
| http.createServer(function (req, res) { | |
| res.writeHead(200, {'Content-Type': 'text/plain'}); | |
| res.end('Hello World\n'); | |
| }).listen(1337, "127.0.0.1"); | |
| console.log('Server running at http://127.0.0.1:1337/'); |
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
| enum FCCIndexes{ | |
| Callsign = 0, | |
| Frequency, | |
| Service, | |
| Channel, | |
| DirectionalAntennaDAorNonDirectionalND, | |
| NotUsedforFM, | |
| FMStationClass, | |
| NotUsedforFM2, | |
| FMStatus, |
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
| |KROQ-FM |106.7 MHz |FS |294 |DA |- |B |- |LIC |PASADENA |CA |US |BXLH -20051128AES |6.5 kW |6.5 kW |204.0 |204.0 |28622 |N |34 |9 |50.00 |W |118 |11 |46.00 |CBS RADIO INC. OF LOS ANGELES | 0.00 km | 0.00 mi | 0.00 deg |617. m|617.0 m|68129 |0. |- |41. m|1123789 | | |
| |KROQ-FM1 |106.7 MHz |FB |294 |DA |- |D |- |CP MOD |SANTA CLARITA |CA |US |BMPFTB -20090721AAJ |0. kW |0.05 kW |0.0 |0.0 |180881 |N |34 |19 |46.90 |W |118 |35 |53.80 |CBS RADIO INC. OF LOS ANGELES | 0.00 km | 0.00 mi | 0.00 deg |0.0 m|1132. m|94182 |30. |- |3. m|1324175 | | |
| |KROQ-FM1 |106.7 MHz |FB |294 |DA |- |D |- |LIC |SANTA CLARITA |CA |US |BLFTB -20100122ABN |0. kW |0.05 kW |0.0 |0.0 |180881 |N |34 |19 |46.90 |W |118 |35 |53.80 |CB |
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
| // | |
| // main.m | |
| // fccRadioListParser | |
| // | |
| // Created by Zachry Thayer on 11/14/11. | |
| // Copyright (c) 2011 Zachry Thayer. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |