Nitratine Blog Feed

Thumbnail

Quick Script

A small GUI that displays home-made scripts to be executed. The scripts will appear in a scrolling window and on selection they will run and the window will then close (can be configured). Sample scripts included.

Read More →
Thumbnail

Simulate Keypresses In Python

This demonstrates how to press keys with Python. Using pynput we are able to simulate key presses into any window. This will show you how to press and release a key, type special keys and type a sentence.

Read More →
Thumbnail

Python Keylogger

This is a Python keylogger which will work on Windows, Mac and Linux. This script uses the pynput module. This python keylogger will store typed keys in a file in order of when they were typed.

Read More →
Thumbnail

How To Get Mouse Clicks With Python

This demonstration shows you how to track mouse clicks, movements and even scrolls using the pynput module. These can then be logged to a file as no console is displayed. This is very similar to a mouse logger.

Read More →
Thumbnail

How To Setup Python's PIP

This tutorial demonstrates how to set up Python's PIP. PIP is a package manager for pip that allows you to download third-party modules easily. I explain how to find your scripts folder and how to find pip.

Read More →
Thumbnail

Get WiFi Passwords With Python

This script searches windows for wifi passwords with python already known and displays them alongside the network name. It will not find passwords that your computer doesn't already know. This is useful for the occasions that you forget your WiFi password.

Read More →
Thumbnail

Convert .py to .exe

A demonstration of how to package a python script into an executable file. This tutorial includes compiling to one file, no console, how to add an icon and adding other files to the final package.

Read More →
Thumbnail

Randomly Generating Numbers to Fulfil an Integer Range

This experiment looks at how many randoms numbers will need to be generated to fulfil an integer range. I use python to generate random numbers and simulate thousands of tests. This was conducted to find the range of 16,777,216 for an app I had developed.

Read More →
Thumbnail

Interesting Sites

A list of the most interesting and engaging sites I have discovered which I recommend you to visit. I found them while on the hunt for colours and designs for projects.

Read More →
Thumbnail

Finding Emotion In Music With Python

This investigation looks at detecting emotion in music. Using data from Spotify I attempted to predict mood in music using Python. The script looks at valence and energy to determine where it lies on an emotional plane.

Read More →