iconv -f euc-kr -t utf-8 EUC-KR.SMI > UTF-8.SMI
Simple? Isn’t it?
iconv -f euc-kr -t utf-8 EUC-KR.SMI > UTF-8.SMI
Simple? Isn’t it?
Powered by Twitter Tools
Powered by Twitter Tools
Powered by Twitter Tools
While using git with https, sometimes, in someplace, I encounter like this error:
Initialized empty Git repository in /xxxx/xxxx/.git/ Password: error: server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none while accessing https://xxxx@xxxx.xxxx/xxxx/xxxx.git/info/refs fatal: HTTP request failed
It might be a bug from Ubuntu’s git, but I’m not sure at this time.
For workaround of it, set GIT_SSL_NO_VERIFY=1 in environment variables in the shell.
export GIT_SSL_NO_VERIFY=1
* Referred by http://osdir.com/ml/debian-bugs-dist/2010-03/msg09092.html
Powered by Twitter Tools
Powered by Twitter Tools
* refer to http://xaviesteve.com/disable-multitasking-in-ios4-no-jailbreaking-needed/
Simply change the property of multitasking as false in /System/Library/CoreServices/SpringBoard.app/NxxAP.plist. The reference web page shows N82AP.plist, but currently it’s N88AP.plist. I didn’t look further, but I could guess its name would be changed in time.
Using ssh/scp, you can copy it from/to Mac and manipulate it.
* referred by http://www.karan.org/blog/index.php/2009/08/25/multiple-ssh-private-keys
In .ssh directory, if there is a config file, ssh keys can be controlled by it.
For example, ~/.ssh/config would be
Host *.home.lan IdentityFile ~/.ssh/id_dsa.home User kbsingh Host *.vpn IdentityFile ~/.ssh/id_rsa.work User karanbir Port 44787 Host *.d0.karan.org IdentityFile ~/.ssh/id_rsa.d0 User admin Port 21871
id_rsa.xx is the private key.
First, you need to know your http proxy server. You probably have $http_proxy environmental variable in bash. Using this, you can specify the http proxy to git. It’s simple.
git config --global http.proxy $http_proxy
That’s it.
Powered by Twitter Tools
Powered by Twitter Tools
This is also cool feature from jailbreak for iPhone. It switches the number based locking system to geographical way to unlock. It is iLock.
To install of iLock, the iPhone has to be jailbroken and you can purchase it via Cydia.
After configuring of it, you need to do respring. Otherwise, lock screen won’t work at all.
If there is a problem with the iLock, there are couple of things to recover. The easiest way is to make a call from other phone to the problematic iPhone. After answering of the call, you can press home button to navigate iPhone apps. Then, you can reconfigure of it. If it is not working, do ssh and do “rm -f /var/mobile/Library/Preferences/com.sicmobile.ilock.*.plist; killall SpringBoard” to remove all, which eliminate all configuration from iLock.
