This file contains 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
//Prints: | |
// | |
//Get filenames | |
//Progress 100000/2000000 | |
//Progress 200000/2000000 | |
//Progress 300000/2000000 | |
//... | |
//Progress 2000000/2000000 | |
//Completed | |
//Time taken to get filenames: 100 secs |
This file contains 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
<? | |
//Using IP Sidekick for geolocation in PHP | |
//[email protected] | |
//https://ipsidekick.com | |
//This uses the free plan which limits you to 1440 lookups/day. | |
//For a higher rate limit, look at our paid plans at https://ipsidekick.com | |
function resolveIP($ip) { | |
$string = file_get_contents("https://ipsidekick.com/{$ip}"); | |
$json = json_decode($string); |
This file contains 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
//Using appledevicenames.com in Swift | |
//[email protected] | |
//http://appledevicenames.com | |
//Stick this somewhere | |
private func deviceModel() -> String? { | |
var keys = [CTL_HW, HW_MACHINE] | |
var requiredSize = 0 | |
let fetchSizeResult = sysctl(&keys, UInt32(keys.count), nil, &requiredSize, nil, 0) | |
guard fetchSizeResult == 0 else { return nil } |
This file contains 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
//Using IP Sidekick for geolocation in Google Sheets | |
//[email protected] | |
//https://ipsidekick.com | |
//Instructions: | |
//1. In Google Sheets, under `Tools`, click `Script editor...`. | |
//2. Paste the contents of this file. | |
//3. Hit the `Save` button. You may be asked to give the project a name. | |
//4. In your spreadsheet, click on the desired cell and enter something like | |
//... `=resolveIP(A1)` where A1 is the cell you want to lookup. |
This file contains 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
//Using IP Sidekick for geolocation in Numbers.app | |
//[email protected] | |
//https://ipsidekick.com | |
//Instructions: | |
//1. Save this file as using-ipsidekick-with-numbers-app.scpt in Script Editor.app | |
//2. In Numbers app, open your spreadsheet and select the cells with IP address | |
//..you want to lookup and run this script in Script Editor.app | |
This file contains 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
/** | |
* loadJSONP( url, hollaback [, context] ) -> Null | |
* - url (String): URL to data resource. | |
* - hollaback (Function): Function to call when data is successfully loaded, | |
* it receives one argument: the data. | |
* - context (Object): Context to invoke the hollaback function in. | |
* | |
* Load external data through a JSONP interface. | |
* | |
* ### Examples |
This file contains 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
// an example of using CommonCrypto's PBKDF2 function | |
// | |
// build with: | |
// | |
// clang -o pbkdf2test pbkdf2test.c | |
// | |
// test with: | |
// | |
// ./pbkdf2test <some plaintext password here> |
This file contains 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
def build_path | |
"build/iPhoneOS-7.0-Release/" | |
end | |
def ipa_name | |
"APP_FILE_NAME.ipa" | |
end | |
def dsym_name | |
"APP_FILE_NAME.app.dSYM" |
This file contains 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
Library not loaded: @rpath/libswiftos.dylib | |
Referenced from: /Applications/zXcode-8beta4.app/Contents/SharedFrameworks/libswiftFoundation.dylib |
This file contains 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 | |
killall Messages | |
killall Dock | |
open -a Messages |