Friday, July 8, 2022

Comparison of Sorting Algorithms at a Glance

I have compiled a comparison of major sorting algorithms. Hope, this will help in your upcoming interview. 

Tuesday, February 22, 2022

Some Projects to Showcase Your Portfolio

Most of us find it difficult to select projects for showcasing our portfolio. Following Youtube video can be a good resource for them. 

Thursday, December 2, 2021

Some Useful Resources To Learn Data Structures By Yourself

Before moving on to the Data Structure lessons please go through this link and make sure you have known all the basic concepts of a programming language. 

Friday, May 14, 2021

A Guide to Prepare yourself as a Programmer (Using C)

I believe that if anyone knows one structural and one object-oriented language very deeply he/she can migrate to any language at any time.

Thursday, February 11, 2021

English 1: A Vs An

কোন একটা শব্দের আগে A হবে না an হবে? এই কথা আসলেই আমরা vowel/consonent এর কচকচানি শুরু করি এর পর ব্যাতিক্রম গুলো বলে থাকি। কিন্তু ক্লাস ৫/৬ এ থাকার সময়ে এক স্যারের থেকে একটা রূল শিখেছিলাম যাতে এত সব কিছু মনে রাখতে হত না। সেই রূল কিছুতেই মনে করতে পারছিলাম না। অনেক খুঁজে youtube থেকে সেই রূলটা আবার বের করলাম এবং যেন ভুলে না যাই তাই এখানে লিখে রাখা। 

Tuesday, December 15, 2020

How to access any Linux terminal from windows

 If you want to access any Linux terminal within your network you can follow the following 

Step 1(on Linux)

    Execute the following command on the terminal

hostname –I

    to see the IP address/ hostname of your Linux 

    If you don't get the address then execute the following two commands

sudo apt install net-tools

Ifconfig

    From the texts find the inet number

Step 2(on Linux)

Check the ssh Status by executing the following command 

service -- status-all

Find if there is [-] ssh is in the list where the - before ssh indicates it is not running.

Try to execute the following command 

service ssh start

If you couldn't succeed to execute the above command then install ssh by executing the following command and try to start ssh again

sudo apt-get install ssh

Step 3(on windows):

    Download and Install PuTTY software. After running putty you will see the following

    
    Provide the IP you get from step 1 and place it in the PuTTY software's IP address field. Press okay and enjoy


Wednesday, December 2, 2020

How I customize my Acrobat Reader DC for myself

For the last several years I have been using Foxit Reader as a pdf reader. But in recent times Foxit Reader crashes so frequently that I can't strict to that. Another thing that attracts me a lot is the Adobe document cloud. After scanning anything using my mobile Adobe Scanner, I can access the file using my PC. After migrating I feel some issues with the new Adobe Acrobat Reader DC and I fixed them according to my preference. Here, I am writing this blog to keep a trace of the changes I have made for my further use.
  1. Enable PDF thumbnail previews in Windows Explorer
    • Edit > Preferences > General > Check the box Enable PDF thumbnail previews in Windows Explorer
  2. Restore last view settings when reopening documents
    • Edit > Preferences > Documents > Check the box Restore last view settings when reopening documents
  3. Adding the Comment bar
    • View > Tools > Comment > open
  4. Save the changes on the same pdf
    • Edit > Preferences > Security (Enhanced) > Uncheck the box Enable Protected Mode at Startup


For now, I am signing off. This list might grow with time, keep in touch.

Featured Post

Comparison of Sorting Algorithms at a Glance

I have compiled a comparison of major sorting algorithms. Hope, this will help in your upcoming interview.