Author: Mithun
Apple’s Custom 30 year font which works with regular alphabets
Apple left an easter egg in its new 30 years of Mac tribute website today: A custom font that depicts each Mac model from the past three decades of its history as a maker of personal computers. The original font which is found in the apple website uses special private characters so once installed, you…
Install OpenCV for python in OSX Mavericks 10.9
#Assuming that you have installed Xcode, Command Line Tools, CMake, and Python #Install ScipySuperpack ~$ curl https://raw.github.com/fonnesbeck/ScipySuperpack/master/install_superpack.sh > install_superpack.sh ~$ sh install_superpack.sh #Download OpenCV 2.4.2 #Extract OpenCV-2.4.2.tar.bz2 #Open Terminal at the extracted directory #At OpenCV-2.4.2 directory: ~$ echo “#define GTEST_USE_OWN_TR1_TUPLE 1” | cat > temp1 ~$ cat modules/ts/include/opencv2/ts/ts_gtest.h > temp2 ~$ cat temp1 temp2 >…
Installing pygame in OSX Mavericks
pip install numpy brew install sdl sdl_ttf sdl_image sdl_mixer Download the pygame source. It’s one of the top links. Extract it somewhere and go to that directory in a terminal. Run python config.py. Open “Setup” file that will be found after running the above command . Change the lines starting SDL, FONT, IMAGE, and MIXER…
Jumble by Bookworm Goa
Bookworm Goa is organizing Jumble where in which they are raising money for raising readers. You can donate toys, books, household items, electronics, art, furniture etc. You can find more details in the poster below
.htaccess redirect from old domain to new domain
Htaccess is a powerful tool. Simplest mistake in syntax can cause problems. In this post i am talking about the permanent redirect, ie 301 redirect of old domain to new domain. Case 1: if you need to keep the url structure of old domain in the new one eg: http://olddomain.com/hello gets redirected to http://newdomain.com/hello Do…