Skip to main content

Posts

Showing posts with the label research

Control Hotkeys

Image Credits VNAMedia This weekend I plan to learn coding hotkeys and sending them to Winforms, basically for fun. I was testing the Control + N hotkeys and came up with some really useful text book material. This particular code was made to test things and worked great. I was happy and posted it here to ease the work for you. Public Const MOD_CTRL As Integer = & H2 'Control key     Public Const WM_HOTKEY As Integer = & H312     <DllImport ( "User32.dll" ) > _     Public Shared Function RegisterHotKey ( ByVal hwnd As IntPtr, _                         ByVal id As Integer , ByVal fsModifiers As Integer , _                         ByVal vk As Integer ) As Integer     End Function     <DllImport ( "User32.dll" ) > _     Public Shared Function UnregisterHotKey ( ByVal hwnd As IntPtr, _                         ByVal id As Integer ) As Integer     End Function     Private Sub Form1_Load (

Secrets Revealed Part I

There are many secrets to the world. Many more are there to the world of computers. I will share a really stunning secrets with you. Star Wars If you live on Earth you must have heard of Star Wars if not seen any of the series. It was the dawn of special effects, animation and computer generated simulations. But now you can watch it again on the Internet. The guys at Blinkenlights have gone a step further and made a full Star Wars movie using nothing but ASCII. Ridiculous? Crazy? May be, but it is great. Oh by the way if you were wondering what is the video player, it is the Command Prompt. Seriously. All right so here is how you can watch the film. First make sure you have TELNET installed. If it is installed you can go to Step 2 To install TELNET in Windows Vista and Windows 7 follow the steps: To install Telnet Client Click the Start button , click Control Panel, click Programs, and then click Turn Windows features on or off. If you are prompted for an administrator passwo

Trace your IP

Tracing your IP and the hops made is easy. Remember this is different from finding your IP address. You can easily get your IP address by simply running the ‘ping’ command. This tutorial will show you the geographical locations travelled by the data between your system and some remote address. What is an IP address? An Internet Protocol address ( IP address ) is usually a numerical label assigned to each device (e.g., computer, printer) participating in a computer network that uses the Internet Protocol for communication. How to trace your IP?   Windows Press Win + R', the Run Dialog box opens Type ‘cmd’ and press Enter Type tracert www.google.com (or any other site) You will find many entries with their respective IP addresses. These actually denote the path travelled by the packets of data between your machine and www.google.com (or any other site)         I have blurred some data to protect my privacy.   Unix/Linux First let me admit, this method is

Biomimicry to the Rescue

  We have a tendency to name software entities after biological creatures whose behaviors they remind us of – think of viruses in general, or worms. Now a bunch of computer security geeks are coming from the other direction, taking inspiration from nature’s creatures for the next weapon in the never-ending war against malware and viruses… few species are more effective at responding to intrusions into their system than the ant, after all. Unlike traditional security devices, which are static, these “digital ants” wander through computer networks looking for threats, such as “computer worms” – self-replicating programs designed to steal information or facilitate unauthorized use of machines. When a digital ant detects a threat, it doesn’t take long for an army of ants to converge at that location, drawing the attention of human operators who step in to investigate. The concept, called “swarm intelligence,” promises to transform cyber security because it adapts readily to changing thr