Posts

Showing posts with the label amazing

Coding : A to Z

Image
Let's learn, how to draw A to Z alphabets using python 3.6: #function for drawing alphabets def alphabet(data): str = "O" dot = " " j = -1 #for drawing A if data == "A": for a in range(4,5): print(str) * a for a in range(1,2): print(str) + (dot)*2 + str for a in range(1,2): print(str) + (str)*2 + str for a in range(1,3): print(str) + (dot)*2 + str #for drawing B elif data == "B": for a in range(4,5): print(str) * a for a in range(1,2): print(str) + (dot)*2 + str for a in range(1,2): print(str) + (str)*3 for a in range(1,2): print(str) + (dot)*2 + str for a in range(1,2): print(str) + (str)*3 #for drawing C elif data == "C": for a in range(4,5): print(str) * a for a in range(1,4): print(str) for a in range(1,2): print(str) + (str)*3 #for drawing D elif data == "D": for a in range(4,5): print(str) * a for a in ra...

How to Become the Best Software Engineer

Image
The word "the best" is the 3rd form of Good. We use "the best" for the thing that is incomparable . So do you want to be "the best" ? if yes...then read below... Do you know who invented the wheel ? Probably not. But you are using this invention. There is hardly any machine that is not using "the wheel". The concept of machine is vague without the existence of wheel.  Again I am asking you the question... Do you know who invented the bulb? Probably yes. Obviously yes. His name was "Thomas Alva Edison" . Edison made many inventions and bulb is one of his best. "We" use bulb in our daily lives, without this invention our nights would be the same dark (physically). Pay attention to the word "We" in the above paragraph. so yes, my friends if you want to be the best software engineer, then you need or you should create/invent something that is for the whole mankind till the doomsday ....

Brain (A Computer Virus)

Image
Brain, a computer virus? who wrote this? when? Pakistani? How? Who? ? ? ? Ohh please calm down, I am giving the answers... Just Listen.. I mean Just Read.. Brain is one of the Boot Sector Computer Virus. Boot sector is the area of the hard disk, CD, DVD, CD-ROM and other storage devices that contains the machine code. The machine code is the one that is loaded into the computer RAM by the built-in firmware of computing system. The main purpose of Boot sector is to boot (start) the computer program loading process into the computer system.🔥🔥🔥 where was I, ya..  Brain ! so brain is the First Computer Virus, that is written in September 1986 by Two Pakistani Brothers Amjad Farooq Alvi and Basit Farooq Alvi . They wrote this virus in Lahore, Pakistan. Brain is sometimes called as "First Virus". This is written for the MS-DOS (Microsoft Disk Operating System). The language used for this virus is Assembly Language. Brain is also the first stealth viru...