Skip to content

Instantly share code, notes, and snippets.

View hboon's full-sized avatar
Indie hacking

Hwee-Boon Yar hboon

Indie hacking
View GitHub Profile
@hboon
hboon / ProgressReporter.swift
Last active November 1, 2017 15:35
Track how long a function takes to run and report progress
//Prints:
//
//Get filenames
//Progress 100000/2000000
//Progress 200000/2000000
//Progress 300000/2000000
//...
//Progress 2000000/2000000
//Completed
//Time taken to get filenames: 100 secs
@hboon
hboon / using-ipsidekick-with-php.php
Created October 15, 2017 15:37
Using IP Sidekick for geolocation in PHP
<?
//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);
@hboon
hboon / AppleDeviceNamesInEmail.swift
Last active October 15, 2017 06:11
Use appledevicenames.com API to include the device name in support emails
//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 }
@hboon
hboon / using-ipsidekick-with-google-sheets.js
Last active April 23, 2021 03:09
Using IP Sidekick for geolocation in Google Sheets
//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.
@hboon
hboon / using-ipsidekick-with-numbers-app.scpt
Last active October 15, 2017 14:49
Using IP Sidekick for geolocation in Numbers.app
//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
@hboon
hboon / jsonp.js
Created July 14, 2017 07:42 — forked from gf3/jsonp.js
Simple JSONP in vanilla JS
/**
* 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
@hboon
hboon / pbkdf2test.c
Created November 11, 2016 21:05 — forked from lukhnos/pbkdf2test.c
An example of using CommonCrypto's PBKDF2 function
// an example of using CommonCrypto's PBKDF2 function
//
// build with:
//
// clang -o pbkdf2test pbkdf2test.c
//
// test with:
//
// ./pbkdf2test <some plaintext password here>
@hboon
hboon / custom.rb
Created November 2, 2016 06:25 — forked from gnestor/custom.rb
RubyMotion: Custom rake tasks for New Relic, Testflight (old), and Crittercism
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"
Library not loaded: @rpath/libswiftos.dylib
Referenced from: /Applications/zXcode-8beta4.app/Contents/SharedFrameworks/libswiftFoundation.dylib
@hboon
hboon / fix-message
Created July 24, 2016 08:05
Reset iMessage badge when it's stuck at 1
#!/bin/bash
killall Messages
killall Dock
open -a Messages