How to create a virtual host in apache on ubuntu

Ever feel the need to create a virtual host on ur local development machine? Are you tired of putting your sites into sub-directories under the apache document root? Well, apache can help u, by letting u to setup a virtual host on ur local pc.

So, what is a virtual host? First what is a “host”? A host is server identified by a domain name or IP address, which can be located on a PC somewhere in the globe. So, when we reuest some page on google.com, we are requesting them from google server. We don’t know the server, except its … Continue Reading

Setting up a device (Virtual/Real) for testing the app

While developing an android app you need to test it on a virtual device or on a real device. Let’s see how to set up both.
Continue Reading

Setup eclipse and ADT for android development

This post explains the process of setting up an eclipse installation with ADT (Android Development Tool) plug-in.
Continue Reading

গ্রামীনফোন ক্রীষ্টাল অ্যান্ড্রয়েড ফোন যেভাবে রুট করবেন

যারা অ্যাডভান্সড অ্যান্ড্রয়েড ইউজার না, বা সেট ইউজ করেন ভয়ে ভয়ে তার প্লীজ এই পোষ্টটি পড়বেন না। আর আপনি এই পোষ্ট ফলো করে সেট রুট করলে সম্পুর্ন নিজ দায়িত্বে করবেন :)

আমি বেশ অনেক দিন ধরে আমার গ্রামীনফোন অ্যান্ড্রয়েড ফোনটি রুটিং করার চেষ্টা করছিলাম, কিন্তু প্রতি বারই বিফল হতে হচ্ছিল। এর কারন হল প্রতিবারই আমি ফোনে সফটওয়্যার ইন্সটল করে চেষ্টা করছিলাম। এরপর পেলাম SuperOneClick যেটি কম্পিউটার থেকে রুট করার সুযোগ করে দেয়।
Continue Reading

এইচটিএমএল চেকবক্স/রেডিওবাটন কাষ্টোমাইজেশন

এটা শুধু কিভাবে চেকবক্স/রেডিওবাটন এর কাষ্টম স্টাইলিং হয় সেটা বোঝাবার জন্য লিখা। যেহেতু চেকবক্স/রেডিওবাটন কাষ্টমাইজেশন/রিপ্লেসমেন্টের জন্য বেশ কিছু jQuery প্লাগিন আছে, সেহেতু কাজটা কিভাবে করা হয় তার একটা ধারনা দেয়াই এই পোষ্টের একমাত্র উদ্দেশ্য, এর বেশী কিছু না

এইচটিএমএল ফর্মে চেকবক্স আর রেডিও বাটনের ব্যবহার খুবই সাধারন ব্যাপার। যে কোন এইচটিএমএল ফর্ম তৈরী করতে গেলে চেকবক্স বা রেডিও বাটনের ব্যবহার করতে হয় প্রায় সব ক্ষেত্রেই। ডিজাইন থেকে এইচটিএমএল এ কনভার্সনের দিক থেকে এই চেকবক্স বা রেডিও বাটন একটা চ্যালেঞ্জ :) কারন অন্য সব ফর্ম এলেমেন্ট স্টাইলিং করা গেলেও এই চেকবক্স বা রেডিও বাটনে সিএসএস স্টাইলিং অ্যাপ্লাই করা যায় না। … Continue Reading

List of U.S. States

Frequently as web developers, we need to have a drop down box containing the list of U.S. states. Since, it’s static data, it is “copy/paste” friendly :D

For this reason, i have decided to put the state list here, so next time I need it, i can simply copy/paste from here :) did i mention, i m super lazy?

You will see below the sql command for the state list table and all 50 state name and code. It also has a php solution :)
Continue Reading

পিএইচপি তে ইমেজ বা ফাইল আপলোড করে ফাইল সিস্টেম বা ডাটাবেজে সেভ করা

ফাইল আপলোড ওয়েব অ্যাপ্লিকেশান ডেভেলপমেন্টের একটা কমন রিকয়ারমেন্ট। আমি এই পোষ্টে কীভাবে পিএইচপি দিয়ে ফাইল আপলোড করা যায় সেটা দেখাব ইমেজ আপলোড উদাহরনের মাধ্যমে। তাই, বোঝতেই পারছেন যে আমার এই পোষ্ট নতুন প্রোগ্রামারদের জন্য :D কিন্তু যে কেউ কোন ভূল খুজে পেলে বা কোন বেটার সাজেশান দিলে খুশি হব :)
Continue Reading

jQuery basic plugin development tutorial in Bengali

এই ব্লগ পোস্টে আমি jQuery প্লাগিন ডেভেলপমেন্ট সম্পর্কে প্রাথমিক ধারনা দেবার চেষ্টা করব। এটা আমার প্রথম প্রচেষ্টা, তাই ভূল কিছু হলে (আমি নিশ্চিত যে মোটামোটি বেশ কিছু ভূল থাকবে) প্লিজ শুদ্ধ করে দেবেন :D প্লিজ মনে রাখবেন এটা শুধুই প্রাথমিক ধারনা।
Continue Reading

Add JavaScript data at page header using wp_localize_script()

At times some piece of data need to added to the page, so client side scripts can access them and go on with whatever actions they are destined to perform.
Continue Reading

How to recursively delete all .svn hidden folders?

At times when project gets bigger (like onlyfreelancer i m working on) and you use SVN to have version controlling, you will have double or more of the actual project files! As SVN keeps track of all the file with all modification made to them.

So, when u later need to export the folder, you wouldn’t want the hidden .svn folders.

So, upon searching the net a bit i have found out a solution, for both windows and linux :D

Windows Solution: Create a batch file “remove_svn.bat” in the root of the project’s folder. In that batch … Continue Reading