Thursday, April 26, 2007
Thursday, March 22, 2007
Ajke amader BUET life er last din gelo. 2001 e hsc er por 2002 te amader class shuru hoisilo. Er majhe onek kisu hoise, onek din gese, onek bosor gese, onek ghotona hoise, onek durghotona hoise, amader onek friend ke haraisi, abar onek notun notun friend hoise, onek er prem hoise,onek er prem vangse, onek er gpa komse, onek er gpa barse, onek er life ta change hoya gese, onek er shopno shofol hoise, onek er shopno venge gese onek er onek kisu hoise, But amra buet life ta voyanok enjoy kortesilam. Class korar anondo r Exam er voy shob e chilo. Abar PL er moddhe shobai mile porashuna, cinema dekha, adda deya khube mojar silo. Amra bujhtei pari nai je kotogula din choila gese. Din gula je kivabe jay kisui bojha jay na.
Mone hoy je matro koyekdin age buet e dhuklam, Kemne je time ta gelo. Khub e arame silam, Ekhon abar job khujte hobe. Vablei kharap lage, Shob bondhu gula ke koi jabe jani na.
Abar kobe dekha hobe tar nai thik, But i really will miss this life, Everybody of Us will miss this life, this was the amazing stage of our life. We shared out thoughts we shared our loves, we shared our hates, we shared everything , But still a lot of things of us are still hidden, Kotota poth perole bolo pothik chena jay??
Jai hok i will miss everything, Kono shundori ke dekhe tar dike bokar moto cheye thaka, kono shundor couple ke dekhle mone dukkho jaga, kauke tease kora, kono friend ke bash deya abar kokhon o bash khawa, All were life. Shohid minar e boisha thaka, Rat dupur e boxshi bazar e khaite jawa, Full volume e gan saira nacha nachi,Mobile e kono meyer shathe faizlami kora,Abar faizlami korar pore tar premik er hate jhari khawa,Class er fake toilet e biri khawa,Kimba cormochari canteen e khawa, Kimba alam's er shamne cha birir adda,Hall er mathe boshe moner dukkho bola, Kimba kokhona ba out of mind hoye jawa, aro koto kiiiiiii, all were life. Shomoy eto druto jay keno??????
Mon ta khube kharap.Jibon er ekta shundro part shesh hoye gelo, Another journey will now begin, Some of us will become great, amra kokhon o onnoder shamne gorbo kore bolbo dekh eita amar friend silo, Ore ami ekdin ekta mair disilam or ore ami ek cup cha khawaisilam, Kimbar or shathe amar ekta chobi ase, Abar kokhon o mone mone hoyto mon kharap korbo nijeke boro der majhe na pawar dukkhe.
Ashole eigula kono bepar na, Everybody will miss it, Amar lekha ta khub e kharp hoya jaitese, ashole abek thakle lekha koshto,
Tobuo mone porbe, gun gun kore gabo, "COffee house er sei addata aj ar nei, kothay harieo gelo shonali bikel gulo sei".
I love u all my friends. I will miss you. Always and Every time .
Aro onek kisu likhte iccha kortese, ei koy bosor er pura kahini likhte iccha kortese, Thak onek kotha mone thakai valo. Bye, Bondhu valo thakish tora
The poem which left as a comment of this blog tells it all, GURU who was the greatest people of my whole BUET life whom i wish to follow,i feel proud that i met him in BUET.
"Dure Shore Jawa Kono Ek Bondhu k.."
Dekha hobe r?
Hoteo to pare..
Asha rekhe dei buker kotore...
Dekha jodi hoye jai ojuter vire..
Othoba fele asha chena chottore..
Didha vule daak dish hothat sojore..
Daan haate daan Haat-purono adore..
Vashbo dujone mile sritir joaare..
Dekha hobe r?
Hoteo to pare...
Asha rekhe dei buker nibire..
Dekha jodi hoye jai pronoyer ghore..
sosta shopner holde basore..
kingba kolahole-adda-ashore...
vul gulo vule giye hashi ta odhore..
kotha hobe du-jona te mridu-toro shore..
Dekha hobe r?
Hotei to pare...
Asha r hotasha ra buker govire..
Protidin protiraate shohobaash kore..
Monday, February 26, 2007
Every year in February month, bangladesh er bangla academy te ekushe boi mela hoy. Onek onek boi pawa jay. Sara bosor dhoira writer ra lekhe r boi mela te prokash kore. Onek onek vir hoy. Onek onek boi kena becha hoy. Pray shobai boi melay jay. Even picchi polapain beshi jay . :D .. Amio jai, eibar jawa hoy nai . Boi melar link ta na dile kemon hoy, tai banglaacademy er address
Sunday, February 25, 2007
In c++ u can generate random numbers by calling rand() function which is built in stdlib.h . But if u use this function without setting any seed then it gives the same random value whenever u run the code again. To solve this u can give a seed to generate random number. The best seed can be the time. A seed is set up by srand(somevalue) function. So use time u have to include time.h. Now u initialize the seed in main and use rand() fucntions else where. Now u will get different random value in different time.
A sample code can be
#include < stdio.h >
#include < math.h >
#include < stdlib.h >
#include < time.h >
void printSomeRand()
{
for(int i=0;i<10;i++)
{
printf("%d \n",rand());///use rand to generate a random number
}
}
void main()
{
srand((unsigned) time(NULL)); ///give a seed, dont give seed whenever u call rand
printSomeRand();
}
Monday, February 12, 2007
Friday, January 26, 2007
I am building a website for my own in google pages. Not a website still. My friend said i shouldn't not use something made by google for my own web page. What ever i'm continuing. u can take a look here.
Sunday, January 14, 2007
Here is a code which will guide u through this.
The bad thing is the file is not still posted :D
import java.io.File;
import javax.swing.*;
import java.io.*;
public class dir
{
FileWriter fr;
dir()
{
try
{
fr=new FileWriter("c:/outputDir.txt");
}
catch (Exception ex)
{
}
}
public static void main(String args[])
{
dir d=new dir();
d.getDirectoryStructure();
//showFileTree("a");
/*FileDescriptor fd=new FileDescriptor();
String location="a";
File f=new File(location);
String[] s=f.list();
File[] ff=f.listFiles();
for(int j=0;j
{
System.out.println (ff[j].getName());
}
for(int i=0;i
System.out.println (s[i]+"Directory: "+new File(location+"/"+s[i]).isDirectory()+"\n");*/
}
void getDirectoryStructure()
{
String str=JOptionPane.showInputDialog("Enter the directory of which u want to get info");
File f=new File(str);
if(f.exists())
{
showFileTree(str);
}
else
{
try
{
this.fr.write("File does not exist");
//this.fr.close();
}
catch (Exception ex) {
}
}
try
{
this.fr.close();
}
catch (Exception ex) {
}
}
int printTab=0;
int count=0;
void showFileTree(String directory)
{
File f=new File(directory);
File[] allFiles=f.listFiles();
for(int i=0;i
{
for(int j=0;j
{
try
{
fr.write("\t");
}
catch (Exception ex) {
}
System.out.print("\t");
}
try
{
String temp=allFiles[i].getName();
temp=temp.substring(0,temp.indexOf("."));
count++;
fr.write("insert into pinyin values("+count+",'"+temp+"');\n");
}
catch (Exception ex) {
}
//System.out.print("Name: "+allFiles[i].getName()+" +length: "+allFiles[i].length()+ "\n");
if(allFiles[i].isDirectory())
{
printTab++;
showFileTree(allFiles[i].getPath());
}
}
printTab--;
}
}


