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
From 279e53c3abe39970f6cf946baec95a36f99d95d2 Mon Sep 17 00:00:00 2001 | |
From: Chih-Wei Lee <[email protected]> | |
Date: Thu, 10 Jun 2010 14:39:35 -0700 | |
Subject: [UI|UICommon] remove the 3.2 keyboard APIs due to dyld errors on older OS versions | |
--- | |
src/Three20UI/Sources/UIViewAdditions.m | 38 ++++++-------------- | |
src/Three20UICommon/Sources/TTBaseViewController.m | 30 +++++----------- | |
2 files changed, 20 insertions(+), 48 deletions(-) |
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
Wed Oct 6 00:13:15 unknown UIKitApplication:com.quanganhdo.cyberspace[0xfbb9][488] <Notice>: dyld: Symbol not found: _OBJC_CLASS_$_UIMenuItem | |
Wed Oct 6 00:13:15 unknown UIKitApplication:com.quanganhdo.cyberspace[0xfbb9][488] <Notice>: Referenced from: /Applications/Cyberspace.app/Cyberspace | |
Wed Oct 6 00:13:15 unknown UIKitApplication:com.quanganhdo.cyberspace[0xfbb9][488] <Notice>: Expected in: /System/Library/Frameworks/UIKit.framework/UIKit | |
Wed Oct 6 00:13:15 unknown UIKitApplication:com.quanganhdo.cyberspace[0xfbb9][488] <Notice>: in /Applications/Cyberspace.app/Cyberspace | |
Wed Oct 6 00:13:17 unknown ReportCrash[489] <Notice>: Formulating crash report for process Cyberspace[488] | |
Wed Oct 6 00:13:18 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:com.quanganhdo.cyberspace[0xfbb9]) Job appears to have crashed: Trace/BPT trap | |
Wed Oct 6 00:13:18 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:com.quanganhdo.cyberspace[0xfbb9]) Throttling respawn: Will start in 2147483645 seconds | |
W |
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
var baseurl = 'http://mp3.zing.vn'; | |
var token = 'fb01753add840692df1029d5508a8ee6'; | |
var params = document.querySelectorAll('param[value*="mp3.zing.vn"]'); | |
if (params.length > 0) { | |
for (var i=0; i < params.length; i++) | |
{ | |
var zingPlaylist = new Array(); | |
var object = params[i].parentNode; | |
var xmlurl = baseurl + object.querySelector('param[name=flashvars]').value.replace('xmlURL=', ''); | |
var xmlhttp = new XMLHttpRequest(); |
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
buck install //:antennapod -v 10 | |
Using buckd. | |
[-] PARSING BUCK FILES...FINISHED 0.2s | |
Creating a build with 10 threads. | |
rm -r -f /Users/mrnhim/Desktop/AntennaPod/buck-out/bin/__unpack_appcompat#aar_unzip__ && mkdir -p /Users/mrnhim/Desktop/AntennaPod/buck-out/bin/__unpack_appcompat#aar_unzip__ | |
unzip /Users/mrnhim/Desktop/AntennaPod/libs/appcompat-v7-19.1.0.aar -d /Users/mrnhim/Desktop/AntennaPod/buck-out/bin/__unpack_appcompat#aar_unzip__ | |
rm -r -f /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__dslv-res_text_symbols__ && mkdir -p /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__dslv-res_text_symbols__ | |
rm -r -f /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__antennapod#gen_java_android_build_config_de_danoeh_antennapod__ && mkdir -p /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__antennapod#gen_java_android_build_config_de_danoeh_antennapod__ | |
rm -r -f /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__build-config#gen_java_android_build_config__ && mkdir -p /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__build-conf |
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
#!/usr/bin/env bash | |
set -e | |
if [[ ! -d "${HOME}/.eh" ]]; then | |
git clone --recursive -j4 [email protected]:Thinkei/dev-env.git ${HOME}/.eh | |
else | |
(cd ${HOME}/.eh && git fetch --all && git reset --hard origin/master) | |
fi |
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
Verifying my Blockstack ID is secured with the address 192WVK6hX8xVsFZQrB3bDU7YnR1z3VVr4i https://explorer.blockstack.org/address/192WVK6hX8xVsFZQrB3bDU7YnR1z3VVr4i |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
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
import { useMountDebug } from './useMountDebug'; | |
function SignInForm(props) { | |
useMountDebug('SignInForm'); | |
return (<div></div>) | |
} |
OlderNewer