Upgrade Internet Explorer to V 7 8 or 9! Rumi, July 6, 2011 XP users are having bundled version 6.0 with SP2, but if you're worried on updating this IE, then you must pass of the Windows Genuinity test… after googling a better solution came up. All you need is to download the setup file GENUINELY and DIRECTLY from Microsoft- Get Internet Explorer… Continue Reading
Table alternate row background color using javascript Rumi, July 4, 2011January 12, 2016 The code itself speaks….!!! <html> <head> <title>Alternative table row color using javascript.</title> <script language=”javascript”> function setcolor() { var tbl = document.getElementById(“tblCountry”); tbl.style.color = “white”; tbl.rows[0].style.backgroundColor = “green”; for (var i = 1; i < tbl.rows.length; i++) { if (i % 2 == 0) tbl.rows[i].style.backgroundColor = “gray”; else tbl.rows[i].style.backgroundColor = “brown”; } } </script> </head> <body onload=”setcolor();”> <table align=”center” width=”300px” id=”tblCountry”> <tr> <th> Country </th> </tr> <tr> <td> Australia </td> </tr> <tr> <td> China </td> </tr> <tr> <td> Denmark </td> </tr> <tr> <td> India </td> </tr> <tr> <td>… Continue Reading
রিকশা চালিয়ে হাসপাতা Rumi, July 3, 2011 প্রসঙ্গ কথা ফেসবুকের লিংক থেকে পাওয়া এ নিউজটি একটি ছোট্ট কাজ করেছে- রিকশাচালকদের প্রতি অসম্ভব খেদ এবং বলা যয় 'ঘৃণা' বোধটা বোধকরি চকছুটা কমবে… ঢাকায় রিকশা চালান তিনি। রোদে পোড়েন। বৃষ্টিতে ভেজেন। কাঁপেন কনকনে শীতে। তবু থামে না রিকশার চাকা। এ যে তাঁর স্বপ্নেরও চাকা। তিনি মো. জয়নাল আবেদিন। বয়স কত… Continue Reading
Linux Rescue Mode, recovering from boot Rumi, July 2, 2011 When things go wrong, there are ways to fix problems. However, these methods require that you understand the system well. This chapter will describe the ways that you can boot into rescue mode and single user mode, where you can use your own knowledge to repair the system. What is… Continue Reading
Linux ISO and DR Solution- Mondo Rescue Rumi, July 1, 2011July 1, 2011 Mondo Rescue is a GPL disaster recovery solution. It supports Linux (i386, x86_64, ia64) and FreeBSD (i386). It's packaged for multiple distributions (RedHat, RHEL, SuSE, SLES, Mandriva, Debian, Gentoo). It supports tapes, disks, network and CD/DVD as backup media, multiple filesystems, LVM, software and hardware Raid. You need it to be… Continue Reading
Migrate existing Windows installations to VirtualBox Rumi, June 28, 2011June 28, 2011 Windows installations, unlike Linux, cannot easily be moved from one hardware to another. This is not just due to Microsoft's activation mechanism but the fact that the installed kernel and drivers depend on the actual hardware. This document explains the common pitfalls and how to workaround these. We assume that… Continue Reading
MySQL Tidbits Rumi, June 27, 2011 Allow Slave to connect master: C:\mysql>create user 'replica'@'192.168.0.110' identified by '<YOUR PASSWORD>'; NOTE: 192.168.0.110 which is the SLAVE machine‟s address. i. mysql>grant create,insert,select,update,delete on ejbca.* to 'replica'@'192.168.0.110'; Checking if Slave can connect to Master: C:\>mysql –u replica –h 192.168.0.100 –p C:\>Enter password: <YOUR VALUES> NOTE: If the mysql prompt opens then the Master… Continue Reading
MySQL Replication by MySQL Rumi, June 27, 2011 The easiest and most straightforward method for setting up replication is to use new master and slave servers. You can also use this method if you are setting up new servers but have an existing dump of the databases from a different server that you want to load into your… Continue Reading
MySQL Replication Rumi, June 27, 2011 MySQL is the relational database system of choice for open sourcers. Replication is the process of replicating data from one MySQL database server (the master) into another (the slave). We’ll go into why you would want to replicate a MySQL database in another article. MySQL Replication Using the master-slave configuration… Continue Reading
আমের দেশে- রাজশাহী… Rumi, June 22, 2011 আমের এখন ভরা মৌসুম। চাঁপাইনবাবগঞ্জের হাটে, বাজারে, গাছের ডালে ডালে সর্বত্রই আম আর আম। দেশের সবচেয়ে বেশি আমের উত্পাদন এ জেলাতেই। এ ছাড়া প্রাচীন গৌড়ের নানান ঐতিহাসিক স্থাপনাও আছে এ জেলাতে। আমের এ মৌসুমে চলুন ঘুরে আসি উত্তর বঙ্গের জেলা চাঁপাইনবাবগঞ্জ থেকে। চাঁপাইনবাবগঞ্জ জেলা শহর :মহানন্দা নদীর তীরে বেশ পুরোনো… Continue Reading