Bdhacker's Blogs

Subscribe to Bdhacker's Blogs feed Bdhacker's Blogs
Anything but "Hacking"
Updated: 12 hours 28 min ago

Flex & Bison in Ubuntu

Sat, 05/05/2012 - 19:05
Instruction for flex & bison in Debian Linux (Ubuntu/Linux Mint) PRE-REQUISITE (A) Install flex from terminal: sudo apt-get install flex (B) Install bison from terminal: sudo apt-get install bison (C) If you dont have gcc installed, you can get it using sudo apt-get install gcc + +++++++++++++++++++++ + + PROCESSING + + +++++++++++++++++++++ + (1) [...]

Ubuntu 12.04 Quick User Review

Mon, 04/30/2012 - 18:41
Using Ubuntu 12.04 and quite satisfactory so far! I’ll update this post regularly as I continue using it! It’s cool! My Notebook was getting extremely hot and was getting turned off in Ubuntu 11.10. The notebook (Dell Inspiron 14z) is remaining cool most of the time. Even if when it get’s hot, it cools down [...]

Collaborating using git: make merging less painful!

Mon, 04/30/2012 - 00:51
Hi, I’m Shafiul! Me along with Ibrahim & Sifat are working in a project which we maintain using git. We’ve decided to follow a simple protocol to merge our works effeciently in a painless way! All of us will work in our own branches (learn first about branching if you’re not familiar with it). At [...]

Install PHPUnit in Windows, Wamp using PEAR

Sat, 02/18/2012 - 12:00
Go to the directory where PHP is located. Typically, this is <PATH-TO-YOUR-WAMP-INSTALLATION>\bin\php\php5.3.8 We’ll call this path “PHP’s location” throughout this article.   Now, install PEAR following instructions in this tutorial.   Open a command-prompt, go to PHP’s location using cd, and type:   pear channel-discover components.ez.no pear channel-discover pear.phpunit.de pear channel-discover pear.symfony-project.com pear install –alldeps [...]

Installing PEAR in Windows, Wamp

Sat, 02/18/2012 - 11:48
Go to the directory where PHP is located. Typically, this is <PATH-TO-YOUR-WAMP-INSTALLATION>\bin\php\php5.3.8 We’ll call this path “PHP’s location” throughout this article. Download “go-pear.phar” from this location: pear.php.net/go-pear.phar Create a folder “pear” in your PHP’s location Put the downloaded “go-pear.phar” file in this location. Open a command prompt with administrative privilege. For this, click on start [...]

Failed to convert @drawable/ into a drawable Error in eclipse

Wed, 02/15/2012 - 20:44
If it’s an issue with rendering, Close and then restart Ecplise :p  

Source code of Android tutorials at thenewboston

Wed, 02/15/2012 - 18:40
Get sources of tutorials of individual videos I’m  just learning android from the awesome tutorials made by Travis (available for FREE at here) and decided to code them in hand. Just pushing them to this repo if anyone needs them.   One interesting point, I’ll make a commit after every tutorial! So you can browse [...]

Type Bangla/Bengali in Google Chrome

Tue, 01/31/2012 - 16:16
You can write Bangla in Google Chrome installing Automatic Bangla Typing extension I’ve developed! Previously, it had full support for Firefox, but the thing was not working in Google Chrome. Now I’ve fixed some bugs & it’s fully compatible in Google Chrome (16.0.912.77) If you’re familiar with “Phonetic” layout, you can easily type Bangla. How [...]

Fix Bangla Font in Google Chrome in Ubuntu

Tue, 01/31/2012 - 12:30
You need Solaimanlipi 2.0 for rendering font correctly in Google Chrome. You can download a copy of the font (customized by Saif Hassan) from the link below:   Download SolaimanLipi 2.0   The font above was “customized for Linux” – I don’t know much about this customization. So If you’re interested visit Saif Hassan’s post [...]

Python Tutorial: Dictionaries (Key-value pair Maps) Basics

Tue, 01/31/2012 - 10:34
Reblogged from Shafiul Azam's Weblog: Dictionaries are also known as maps. In fact they are collection of objects, but unlike Lists, each individual value of a map is accessed by an unique key, and so they are known as key-value pairs. Dictionaries are not sequences, hence maintains no left-to-right order. Operations You can create a [...]

Python Tutorial: Dictionaries (Key-value pair Maps) Basics

Tue, 01/31/2012 - 10:34
Reblogged from Shafiul Azam's Weblog: Dictionaries are also known as maps. In fact they are collection of objects, but unlike Lists, each individual value of a map is accessed by an unique key, and so they are known as key-value pairs. Dictionaries are not sequences, hence maintains no left-to-right order. Operations You can create a [...]