Computer Networking Tutorial (Playlist)This is a tutorial on Computer Networking from The New Boston. Watch it and see if it helps. There is a complete series on YouTube.Computer Networks (Playlist)This is a lecture series on Computer Networks by… Read more »
20 Things That Java Developers Must Concentrate On
College Graduates: A college graduate is a fresh mind waiting to become a true Java developer. There are certain things that you need to understand as a fresher in the industry to find a job.1. How the JVM works: You have to understand things lik… Read more »
Top 5 Facts You Need To Know About Magnetism
Nature of Magnetisms Magnets are found in a natural state in the form of a magnetic ore with two main types – Magnetite and Lodestone. These two magnets are highly effective and if they are suspended from a piece of string then they take their p… Read more »
10 Cool Arduino Projects That Require Hacking
1. Tongueduino: Hackable, High-bandwidth Sensory AugmentationIn a bid to move beyond simple vision replacement toward greater sensory augmentation, MIT researcher Gershon Dublon has made use of the fact that electrotactile tongue displays can be … Read more »
10 Ubuntu Flavours You Should Know
1. MintThe purpose of Linux Mint is to produce a modern, elegant and comfortable operating system which is both powerful and easy to use. Started in 2006, Linux Mint is now the 4th most widely used home operating system behind Microsoft Windows,… Read more »
Google Can Be Used For Hacking Too! Here's How
1.Hacking Security Cameras!You might have noticed many security cameras monitoring places like parking lots, college campus, road traffic etc (and yes, some of them work!). Did you know you can use Google to hack into these cameras to view image… Read more »
Assembly Program to Draw Flowers
.MODEL SMALL .STACK 100H ;DRAW A LINE IN ROW DRAW_ROW MACRO X LOCAL L1 MOV AH,0CH ;DRAW PIX MOV AL,02 ;COLR MOV CX,10 ;COL 10 MOV DX , X ;RW X L1: INT 10H INC CX ;NXT COL CMP CX,301 ;BYND COL 300 JL L1 ENDM ;DRAW A LINE IN COL DRAW_COLUMN … Read more »