Skip to content

Instantly share code, notes, and snippets.

@thzinc
thzinc / react-native-on-vs-emulator-and-win10.md
Last active February 5, 2019 21:58 — forked from taras-d/react-native-on-vs-emulator-and-win10.md
React native on VS Emulator and Windows 10
@thzinc
thzinc / PackageApplication
Created October 9, 2017 20:57
PackageApplication script from Xcode 8.2.1
#!/usr/bin/perl
#
# PackageApplication
#
# Copyright (c) 2009-2012 Apple Inc. All rights reserved.
#
# Package an iPhone Application into an .ipa wrapper
#
use Pod::Usage;
@thzinc
thzinc / gzip.js
Created June 3, 2016 00:40 — forked from kig/gzip.js
TarGZ = function(){};
// Load and parse archive, calls onload after loading all files.
TarGZ.load = function(url, onload, onstream, onerror) {
var o = new TarGZ();
o.onload = onload;
o.onerror = onerror;
o.onstream = onstream;
o.load(url);
return o;