Saturday, December 31, 2011

Beginner's Typing Test !


I was supposed to take a typing test of my two little student. I thought how shall I make it !!!
Its not a matter of pen & pencil !! Finally I decide to write my own code. Its finished and
I am so happy now. : )


I am very thankful to Muntasir Muzahid Chowdhury, my senior and FORTH-RIGHT for
helping me and showing me the right path....

Credit: Muntasir Muzahid Chowdhury
          & FORTH-RIGHT 
Project Description:
This test uses "a s d f j k l ;" these eight buttons. You can add as much as you can. It has 5 levels
and each level contains 5 sub-levels. Total score is 5*5=25. A timer is included and all result is
written in a text file named "Result.txt" where the .exe file belongs.
So, here is the code...
#include<stdio.h>
#include<string.h>
#include<time.h>
#include<stdlib.h>
#include<math.h>
#include <time.h>

int score=0;
int length=3;

int flevel()
{
int sublevel=5,sub_score=0;;
char arr[20]={'R','U','E','I','i','u','r','e','T','A',';','F','J','Y','L','G','H','\0'};
    char tmp[10];
char tmp2[10];clock_t start=clock();
while(sublevel--)
{
int j=0;
for(int i=0;i<length;i++)
{
   tmp[i]=arr[rand()%17];
   tmp[++j]=' ';
}
tmp[j]=NULL;
puts("");
printf("\t%s\n\t",tmp);
scanf("%s",tmp2);
if(strcmp(tmp2,tmp)==0){
sub_score++;score++;}
else
puts("\a\a\tWrong Answer\a\a!");
}
length++;
printf("Score: %d",sub_score);
printf("\nTime = %.2f secondes\n", (double)(clock()-start)/CLOCKS_PER_SEC);
return 0;
}
int writefile(char name[],double &a)
{
FILE *fp;
fp=fopen("Result.txt","a+");
fputs("\n==========================\n",fp);
fputs(" Beginner's Typing Test 4 \n",fp);
fputs("==========================\n",fp);
time_t timer = time(NULL);
fprintf(fp,"TIME: %s\n", ctime(&timer));
fputs("\n============================",fp);fflush(fp);
fprintf(fp,"\nName: %s",name);
fprintf(fp,"\nTotal Score: %d",score);
fprintf(fp,"\nTotal time = %.2f secondes\n", a);
fputs("============================\n",fp);
fclose(fp);
return 0;
}
int main()
{
    puts("==========================");
    puts(" Beginner's Typing Test 4 ");
    puts("==========================");
    puts("LEVELS 5 : SCORE (5*5)=25");
puts("==========================");
    int cases;
    printf("How Many Examinee(s)?: ");
    scanf("%d",&cases);
    while(cases--)
    {
char name[30];score=0;length=3;
puts("");puts("");
puts("===============================");
printf("Enter Your Name: ");
scanf("%s",name);
puts("===============================");
printf("\nGet Ready %s !!!\n",name);
system("pause");
        int level=5,levelcase=1;
clock_t start=clock();
        while(levelcase<=level)
        {
            printf("\n\tLEVEL: %d\n",levelcase++);
puts("============================");
            flevel();
        }
puts("");puts("");
puts("============================");
printf("Total Score: %d\n",score);
double a=(double)(clock()-start)/CLOCKS_PER_SEC;
printf("\nTotal time = %.2f secondes\n", a);
puts("============================\n\n");
        writefile(name,a);system("pause");
    }
system("pause"); return 0;

}
The Code is working fine as a Beginner's TYPING Test !!! Obviously you can change or upgrade this and Please give me the upgraded code...  :D
If you want your own app then send me a mail with your requirements.
This sample can be used as a COMPLEX TYPING TEST.... 

Thank you for reading this post. I am so beginner also and if you have any questions or suggestions please post a comment or mail me.
Enjoy Safe Computing.

Sunday, December 25, 2011

Data Type (View Size)

Credit : FORTH-RIGHT (http://forth-right.blogspot.com)
Using this code you can check your size of data types in your compiler.

#include<stdio.h>
#include<string.h>

int main ()
{
    int A[10];

    A[0]= sizeof(int);
    A[1]= sizeof (short int);
    A[2]= sizeof(long);
    A[3]= sizeof(float);
    A[4]= sizeof(double);
    A[5]= sizeof(long double);
    A[6]= sizeof(char);
    A[7]= sizeof(unsigned long);
    A[8]= sizeof(long long int);

    printf("Default\t\t%d\n",A[0]);
    printf("Short\t\t%d\n",A[1]);
    printf("long\t\t%d\n",A[2]);
    printf("float\t\t%d\n",A[3]);
    printf("double\t\t%d\n",A[4]);
    printf("long double\t%d\n",A[5]);
    printf("char\t\t%d\n",A[6]);
    printf("unsigned long\t%d\n",A[7]);
    printf("long long int\t%d\n",A[8]);

    getchar ();
    return 0;
}

OUTPUT:
Visual Studio 2010


Forth-Right: How to Pass Arguments to Functions Using "Call By Reference"

Click This Button To Read The Main Article:

"When learning C many people face problem with pointers. "Call by Pointers" seem complicated to some people. So for those, who are looking for easier way to get by (though they both seem same to me), here is details of passing arguments using "Call by Reference"......."


Forth-Right.blogspot.com



Saturday, December 17, 2011

The Oxford Thesaurus

An A-Z Dictionary of Synonyms


C Programming



Finally, I have decided to start again with C programming. I will discuss about things some other day but now I want to share Digit Conversion Program using function & case control structure.


***The continue_exit function does not directly exit.


Digit Conversion: (using Function & Case Control)

Friday, December 16, 2011

Make your own Folder Locker/Folder Guard



After a long gap, I am on blogger again! This time I am here with Folder locker!!

Firstly,I found this content on internet but can not remember the site name. So I apologize to the coder!

There's a lot of "Folder Lockers / Folder Guards / Folder Protectors" etc software over the internet. But the problem is that most of them are not secured and most of the time can be broken easily.


Why need of a Folder locker?
Its important for you to have some privacy on your PC you don't want to show others. That's why these applications keep protects your folders could not be seen by anyone.


So, why this?
Imagine, you need a Folder Locker software and to get full protection you need to buy that!
On the other hand you have your own codes and you make your 
1. Own Folder Lockers every time. 
2. No need to buy.
3. You can change the codes.
4. You can change the Title.
5. Give you full protection.
6. Finally you are the master of that. (I think you got understand what I am saying)


Here it is....
Just follow the instructions. Trust me it's simpler than you think.

Instructions:
1. Open notepad (start>all programs>accessories>notepad or C://windows/notepad.exe)
2. Copy the code below into notepad.
3. Replace "type your password here" with your Password.
4. Save as "Name.bat"
Complete!!! See I told you its too easy.

Now, how will it work?
Double clicking on "Name.bat" you will get a folder named "Locker". Put your private files or folders inside this "Locker". Again clicking on "Name.bat" a command prompt will open. Type 'y' to lock and see the magic.

Windows XP
Windows Seven
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure and want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%=="type your password here" goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
cls
@ECHO OFF
title Folder Locker
if EXIST "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure and want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
attrib +h +s "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%=="type your password here" goto FAIL
attrib -h -s "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
ren "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

Sunday, July 24, 2011

Newton's Cradle



Newton's Cradle

embed code :


embed code for wordpress.com :

Monday, June 20, 2011

Bangla Song Obak Hoye Jai by Jewel

Song Name : Obak Hoye Jai (অবাক হয়ে যাই)
Artist : Jewel (জুয়েল)
Album : TumiHina SaraBela (তুমিহীনা সারাবেলা)

Play Song

One of my favourite evergreen song. I was searching for 
this song for a long time and now I have it : ).
I have a great feeling about this song. And I did a little 
amateur work on esnips_player!!! 
Thanks a lot for supporting...

Saturday, April 16, 2011

Document Converter (Office to PDF and PDF ot Office)

Lots of softwares are available on the internet to convert document. 
But I refer to use Microsoft Office Doc converter. Go through the link
and download the app (934 kb). Read the brief and instructions and install it.
Now its easier to convert any document. Open any office document 
then file > save as > pdf. See, its very easy now.

You can  also convert PDF files to Office files. See this post.

BANGLA TO ENGLISH TRANSLATOR (online)

Click on the link and put your English paragraph there or write in English and translate it into Bangla.
It is very easy. You can change the word meaning.

http://bengalinux.sourceforge.net/cgi-bin/anubadok/index.pl

Tuesday, April 12, 2011

Tin Tin Bangla free Books Download

The Adventures of TIN TIN... see WikiPedia

Download Tin Tin bangla e-Books from http://www.rahi4u.com/.

Tin Tin Bangla comics books (pdf) download from: Click to go to the download page.
Its totally free.

MEENA Cartoon & Books Free Download

MEENA is a fictional character who stars in the South Asian children's television show Meena. The lead character, Meena educates the children of South Asia on issues of gender, health, and social inequality through her stories in comic books, animated films, and radio series (affiliated with the BBC). The secondary characters of her stories include her brother Raju, and her pet parrot Mithu. Her audience goes on her adventures as she attempts to get an education, have an equal share of food as Raju, and learns about the HIV virus. All of her stories advocate change in social and cultural practices.
[Reference: http://en.wikipedia.org/wiki/Meena_(cartoon_character)]
Read more here.

***Download MEENA Cartoon (Bangla) PDF books from here.

Sunday, February 20, 2011

Change WinRAR Theme

At frist download winrar themes from this address:
http://www.rarlab.com/themes.htm

Follow the steps...

STEP 1....
Open winRAR then option>Themes>organize themes.
















STEP 2...
click on add.















STEP 3...
Browse and open the theme...















STEP 4...
Install it.









STEP 5...
Then go option>themes>organize themes, select it and click ok.


Friday, February 18, 2011

error code : 80072efe ( Fix Windows Update error )

I faced the problem i.e error code : 80072efe couple of months ago and coudnt update my Microsoft Security Essentials. Now I have fixed the problem and securely updated my Windows.

I found this on this link :
http://social.technet.microsoft.com/Forums/en/itprovistaie/thread/0ce7c1e6-7ef2-48e1-b7c9-c8f1e97c71d5
Thanks a lot to "abuadnan76" .
or,
Follow the instructions below...

It's something to do with the rootkit files, follow the following steps: 
1) Download this file from the following link http://support.kaspersky.com/downloads/utils/tdsskiller.exe .
2) Run it, follow the steps (start scam>reboot).
3) Reboot you computer...
4) check for updates ... good luck...












Hope this will help you.
"ENJOY SAFE COMPUTING"

Friday, February 11, 2011

Designers Fonts Collection

Design your own work, make variation in your typing with important and enjoyable
over eight hundreds of Fonts...

Click the image below to download...


200 Amazing & Awesome Distorted Styled Fonts (For Windows & MAC)

Download 200 Amaizing and Awesome styled Fonts for Windows and MAC.
Create variation in your documents, create enjoyable documents with distorted styled Fonts.

Click the image below to download :



Sunday, January 30, 2011

LIVE CRICKET SCORE BOARD


Wednesday, January 26, 2011

Monday, January 24, 2011

ENGLISH NEWSPAPERS




M A G A Z I N E S

BANGLA NEWSPAPERS




Friday, January 21, 2011

Wednesday, January 5, 2011

Bangla eBooks PDF Free Download

This is a copy-paste post from 
http://www.somewhereinblog.net By 

অন্ধকারের রাজপুএ



বিখ্যাত অনেক বিদেশী বইয়ের বাংলা অনুবাদ


১।The Vinchi Code-Part 1 ......  
২।জুর্লস ভার্ণ সমগ্র
৩।লস্ট হরাইজন-জেমস হিলটন 
৪।দি আলকেমিষ্ট 
৫।ক্যাট্রিওনা - আলেক্সান্ডার দ্যুমা 
৬।ট্রেন টু পাকিস্তান - খুশবন্ত সিং 
৭।টারজানের গল্প-এডগার রাইস বারোজ 
৮।আরব্য রজনি... পার্ট-১ ----পার্ট-২ ----পার্ট-৩ 
৯।হ্যারি পটার এন্ড দা চেম্বার অব সিক্রেটস-১ ---- হ্যারি পটার এন্ড দা চেম্বার অব সিক্রেটস-২ 
১০।হ্যারি পটার এন্ড দা অডার অব ফিনিক্স 

টিনটিন

১।মমির অভিশাপ 
২।কানভাঙ্গা মুর্তি
৩।কালো সোনার দেশে 
৪।ফ্লাইট ৭১৪ 
৫।লাল বোম্বেটের গুপ্তধন 
৬।চাঁদে টিনটিন 
৭।ফারাওয়ের চুরুট 
৮।তিব্বতে টিনটিন 
৯।চন্দ্রলোকে টিনটিন 
১০।নীলকমল 
১১। বোম্বেটে জাহাজ 
১২।বিপ্লবীদের দঙ্গলে 
১৩।আশ্চর্য উল্কা 
১৪।আমেরিকায় টিনটিন 
১৫।ওটোকারের রাজদন্ড 
১৬।কঙ্গয় টিনটিন 
১৭।কাঁকড়া রহস্য 

ধ্রুব এষ

১।নিমফুল হাওয়া 

২০/০৬/১১
জা্ফর ইকবাল:

১.বৃষ্টির ঠিকানা 
২.২০৩০ সালের একদিন ও অন্যান্য 
৩.আমি তপু 
৪.অবনীল 
৫.আধ ডজন স্কুল 
৬.আমার বন্ধু রাশেদ 
৭.অন্ধকারের গ্রহ 
৮.বৈশাখের হাহাকার 
৯.দলের নাম ব্লাক ড্রাগন 
১০.দুষ্টু দুষ্টু ছেলের দল 
১১.ইরন 
১২.একজন অতিমানবি 
১৩.একটি মৃত্যুদন্ড (ছোট গল্প) 
১৪.Hহাত কাটা রবিন 
১৫.ইকারাস 
১৬.জল মানব 
১৭.নয় নয় শুন্য তিন 
১৮.জন্মদিন (ছোট গল্প) 
১৯.অমিক্রনিক রুপান্তর 
২০.কপোট্রনিক সুখ দুঃখ 
২১.নিসঃঙ বাচন 
২২.নাট বল্টু 
২৩.ফিনিক্স 
২৪.বিজ্ঞানী সফরদ আলির মহা মহা আবিষ্কার 
২৫.সপ্ন (ছুট গল্প) 
২৬.অক্টোপাসের চোখ 
২৭.মহাকাশে মহাত্রাশ 
২৮. 
২৯.টুকুনজিল 
৩০.কাবিল কুহকাফি 
৩১.মুক্তিযুদ্ধের ইতিহাস 
৩২.দিপু নাম্বার ২ 
৩৩.আমড়া ও ক্রাব নেবুলা 
৩৪.বিজ্ঞানি আনিক লুম্বা 
৩৫.প্রেত 
৩৬.মেতসিস 
৩৭.লিটু ব্রিত্তান্ত 
৩৮.ত্রাতুলের জগত 
৩৯.পৃ 
৪০.পিশাচিনি 
৪১.তিন্নি ও বন্যা 
৪২.কাজলের দিনরাত্রি 
৪৩.যারা বায়োবট 
৪৪.টি-রেক্সের সন্ধানে 
৪৫.ক্রুগু 
৪৬.রাশা 
৪৭.রবো নিশি 
৪৮.টুকি ও ঝায়ের (প্রায়) দুঃসাহসিক অভিযান
৪৯।প্রোগ্রামার 
৫০।সিস্টেম এডিফাস 
৫১।ট্রাইটন একটি গ্রহের নাম 
৫২।প্রডিজি 


হুমায়ুন আহমেদ:

১.আমার প্রিয় ভৌতিক গল্প(খন্ড ১) ২য় খন্ড ৩য় খন্ড 
২.আজ চিত্রার বিয়ে 
৩.আজ আমি কোথাও যাবনা 
৪.কুটু মিয়া 
৫.১৯৭১ 
৬.অনিল বাগচির একদিন 
৭.সৌরভ 
৮.অন্যদিন 
৯.শুভ্র গেছে বনে 
১০.অপরাঞ্ছ 
১১.বাসর 
১২.কুহক 
১৩.হুমায়ুন আহমেদের প্রেমের গল্প 
১৪.নীল হাতি 
১৫.নলিনি বাবু বি.এসসি 
১৬.নীল মানুষ 
১৭.শব যাত্রা (ছোট গল্প) 
১৮.বলপয়েন্ট
১৯.কাঠপেন্সিল 
২০.মাজিক মুনশি 
২১।এই মেঘ রুদ্র ছায়া 
২২।বাদশাহ নামদার 
২৩।যদিও সন্ধ্যা 
২৪।একটি সাইকেল এবং কয়েকটি ডাহুক পাখি 
২৫।রূপার পালঙ্ক 
২৬।উড়াল পঙ্খি 
২৭।রাবনের দেশে আমি এবং আমরা 
২৮।আমার ছেলেবেলা 
২৯।সবাই গেছে বনে 
৩০।রুপা 
৩১।তেতুল বনে জুছনা 
৩২।উঠুন পেরিয়ে দুইপা 
৩৩।মাতাল হাওয়া 
৩৪।উড়ালপঙ্খি 
৩৫।উঠোন পেরিয়ে দুই পা 
৩৬।আয়নাঘর 
৩৭।বহুব্রিহি 
৩৮।ব্রিহন্নলা 
৩৯।চাদের আলয় কয়েকজন যুবক 
৪০।বৃষ্টি বিলাস 
৪১।দুই দুয়ারী 
৪২।কিছুক্ষন 
৪৩।কিছু শৈশব 
৪৪।ম্রিন্ময়ির মন ভাল নেই 
৪৫।সে ও নর্তকী 
৪৬।সাজঘর 
৪৭।ইরিনা 
৪৮।জলিল সাহেবের পিটিশন 
৪৯।লিলুয়া বাতাস 
৫০।মিরার গ্রামের বাড়ী 
৫১।পুফি 

জাহানারা ইমাম:

১.একাত্তরের দিনগুলি 

আহসান হাবিবঃ

১.টাইগারস জাম্পিং ক্লাব ও অন্যান্য রম্ম্য গল্প 
২.সমুদ্রের ডাক 

আনিসুল হক:

১.খেয়া 
২.আবার তোরা কিপ্টে হ 
৩.নন্দিনি 
৪.আলো অন্ধকারে যাই 
৫.ফিরে এসো সুন্দরিতমা 
৬.এতদিন কোথায় ছিলেন 
৭.ভালবাসা মন্দবাসা 
৮.স্বপ্ন 

জীবনান্দন দাশ

১.রুপসী বাংলা

জহির রায়হান

১.বরফ গলা নদী 
২.হাজার বছর ধরে 

সমরেশ মজুমদার

১.আয় সুখ যায় সুখ 
২.অসুখলতার ফুল 
৩.কালবেলা part1 & কালবেলা part2 
৪।আট কঠুরি নয় দরজা 
৫।জোছনায় বরষার মেঘ 
৬।তারায় গ্রহন হয়না 
৭।মনের মতো মন 
৮।ইর্ষা করি 
৯।আয়না ভেঙ্গে গেলে 
১০।তিন জালিয়াত এবং এক মিথ্যেবাদী 
১১।সিংহবাহিনী 
১২।দায়বন্ধন 
১৩।সীতাহরন রহস্য 
১৪।উজান গঙ্গা 
১৫।খরার পরে বৃষ্টি 
১৬।কুলকুন্ডলিনী 
১৭।৫টি রহস্য উপন্যাস 
১৮।আত্নপক্ষ 
১৯।আত্নীয়সজন 
২০।জলছবির সিংহ 
২১।এখনো সময় আছে 
২২।মেঘ মাটিতে মাখামাখি 
২৩।কালপুরুষ 
২৪।উত্তরাধিকার 

ইমদাদুল হক মিলন
১.পিতা এবং স্বামীর ম্রিত্যুর পর 
২.গোপনে 
৩.প্রেমে পড়ার সময় 
৪.প্রিয় সহচর 
৫.সে ভালবাসে নাকি বাসে না 
৬।কিশোরী 

শরৎচন্দ্র চট্টোপাধ্যায়
১.অনুরাধা 
২.অরক্ষণীয়া 
৩.বামুনের মেয়ে 
৪.বিরাজ বউ 
৫.বড় দিদি 
৬.চন্দ্রনাথ 
৭.দেবদাস 
৮.অভাগীর স্বর্গ 
৯.নিষ্কৃতি 

শীর্ষেন্দু মুখোপাধ্যায়

১।গতি 
২।৫০টি প্রিয় গল্প 
৩।কাল বেড়াল সাদা বেড়াল 
৪।পিদিমের আলো 
৫।হরিপুরের হরেক কান্ড 
৬।পার্থিব 
৭।হেমন্তপুরের গুপ্তধন 
৮।মানবজমিন 
৯।দুরবিন 

সুনীল গঙ্গোপাধ্যায়

১।সেই সময়-১ সেই সময়-২ 
২।প্রথম আলো -১ প্রথম আলো -২ 
৩।সাত সমুদ্র তের নদী 
৪।মিশর রহস্য 
৫।বৃষ্টি পতনের শব্দ 
৬।হলদে বাড়ির রহস্য 
৭।মনের মানুষ 
৮।পূর্ব-পশ্চিম 
৯।পঞ্ছশরের একটি কম 
১০।রাকা 
১১।ছায়া দর্শন 

সত্যজিৎ রায়

১।অনুকূল (ফেলুদা) 
২।সোনার কেল্লা (ফেলুদা) 
৩।গুলকধাম রহস্য (ফেলুদা) 
৪।রয়েল বেঙ্গাল রহস্য (ফেলুদা) 
৫।ডাঃ মুনশির ডায়েরি (ফেলুদা) 
৬।সুন্দরবনের শয়তান (ফেলুদা) 
৭।রবার্টসনের রুবি (ফেলুদা) 
৮।বোসপুকুরে খুনখারাপি (ফেলুদা) 
৯।গোরস্তানে সাবধান (ফেলুদা) 
১০।জয় বাবা ফেলুনাথ (ফেলুদা) 
১১।শেয়াল দেবতা রহস্য (ফেলুদা) 
১২।ডাবল ফেলুদা (ফেলুদা) 
১৩।ফেলুদার গোয়েন্দাগিরি (ফেলুদা) 
১৪।শেঠ গঙ্গারামের ধনদউলত 
১৫।সাধনবাবুর সন্দেহ 
১৬।যখন ছোট ছিলাম 
১৭।সেরা সত্যজিৎ 
১৮।গুপী গাইন বাঘা বাইন 
১৯।অপুর প্যাচালি 
২০।তারিণীখুড়োর কিরতিকালাপ 
২১।ছিন্নমস্তার অভিশাপ 
২২।ঘুরঘুটিয়ার ঘটনা (ফেলুদা) 
২৩।জাহাঙ্গিরের স্বর্ণমুদ্রা (ফেলুদা) 
২৪।লন্ডনে ফেলুদা 
২৫।প্রফেসর শঙ্কুর ডায়েরি (ফেলুদা) 

বেগম রোকেয়া

১।অবরোধ বাসিনী 
২।মতিচূর 

কাজী নজরুল ইসলাম

১।সর্বহারা 
২। সিন্দু-হিন্দোল 
৩।চক্রবাক 
৪।বাদল বরিষনে 
৫।বনগীতি 
৬।বিশের বাশী 
৭।ঘুমের ঘোরে 
৮।অগ্নিবীনা 
৯।জিঞ্জির 
১০।ব্যথার দান 
১১।বুলবুল 
১২।ঝড় 
১৩।শিউলি মালা 
১৪।মরু-ভাস্কর 
১৫।সন্ধ্যা
Thanks - Jajabor, 2014