Skip to main content

About

 


   The Name of the blog has given in Bengali. In English it may be translated as "My Scribble Exercise Book".

   Everyone needs some space to speak for himself without any condition, or any obstruction or any contradiction, that he can say anything about anything as he thinks as he wants to say. It is spoken among oldies that "Pen-n-Papers" is the perfect place in this case. But in modern age these are unobvious and in future they may be out of production. Todays and in future Digital Media is taking the place to be obvious and idiosyncratic option in this regard. So, I choose this blog.

   The above written delirium may not an acceptable reason to some of the readers. May be. So, What? Here I am for saying such type of delirium or different in sometimes. Here I am as me. Here, I don't care about anyone's opinion. But sometimes I do ( When I need it for myself). So, anyone can read my such incoherent writings. But don't take it as sentimental. You are also free on this blog as me. If you want to comment, you do. If you don't, then don't. As you wish.

   So, Enjoy the blog. Navigate freely.

Popular posts from this blog

Online Compiler

1. Simple online Compiler 2. Advance online Compiler

Class Point:: It holds co-ordinates of a point in format (x,y)

A class Named "Point" which stores the Co-ordinates of a point in (x,y) Format. This Class Contains:: O Constructor with default arguments O Copy Constructor O Function to display which Co-ordinate a Point belongs to O Function to get value of x of a point O Function to get value of y of a point O Function to get the Radious Vector (r) of a point O Function to get the Theta of a point O Overloaded Operator - to find out distance between two points O Overloaded Operator >> to take input O Overloaded operator O Destructor #include<iostream.h> #include<math.h> class point{ //Data Members int x,y; //They hold the value of X and Y co-ordinate of a Point. public: //Member Functions point(int t1=0, int t2=0) //Constructor with default arguments. { x=t1; y=t2; } point(point &t) //Copy Constructor { x=t.x; y=t.y; } int coordinate(void); //It returns the point's Co-ordinate, e.g., 1, 2, 3, or 4th. int getx(...

How to set Set-Top Box to Resume automatically to last Channel after switch on?

How to set customised automatic Resume Channel to last viewed in Set-Top Box?  Introduction In the era of Digitally fast growing life WiFi enabled smart devices and also voice controlled smart devices are trying to be companion of every human being. But, all human do not change their habit at the same time. It may be cause of mental attachment or financial limits or unwillingness or though as unnecessary. What ever the reason may be, there exists the old technology, like IR(Infrared), RF(Radio Frequency), etc. So, this article for them who are using "Un-smart" TV like me in this time of Smart World. I was searching for a solution to set my Set-top Box of Videocon DTH (controlled by a RF Remote) to resume the last viewed channel when I power on my TV anytime. Suppose, I was watching NAT-Geo and switch off my (Un-smart) TV, even switch off the plug power at board. Now, after some time / on the next day, when I switch on my TV it will directly tune to the last viewed channel, i....