Pages

Categories

Category: Archive

Fundamentals of Physics and Python

2014 07.22 Fundamentals of Physics and Python Category: Uncategorized / Tags: no tag / Add Comment There’s ~lots~ of programming resources out there. Many books (good and bad), and many websites (good and just don’t ever go there). In my experience of almost 10 years now, it’s finally time...

SSD Data Recovery Article

SSD Data Recovery Article Published on 13 April, 2014 This is an article I wrote about how SSD storage devices can be difficult for forensic analysis. How SSD Technology Has Made Digital Forensics Difficult Filed in Uncategorized | No replies...

Cryptography – One Time Pad

Cryptography – One Time Pad Published on 29 March, 2014 Currently in the process of making a simple application that can encrypt and decrypt data using the one time pad method. I’ve been working on it in my spare time and so far it can encrypt/decrypt a string, as...

Graph Theory

Graph Theory Published on 24 March, 2014 Graph theory is studying the connections/relation between entities to produce a model. A basic graph contains vertices/nodes and edges that show the relation between them. they can be used to visualise how a network (roads, cables, rooms/doors) is connected. Each graph contains...

Cryptography

Cryptography Published on 22 March, 2014 Cryptography is a technique used to securely communicate a message between two parties without a third party being able to decipher the true message. Definitions:  Alice & Bob – The parties that wishes to send/receive a message securely.  Eve – The...

C++ Obfuscated code

C++ Obfuscated code Published on 11 March, 2014 while on IRC, some one linked this piece of C++ code: Selec All Code: 1 int main()<%<:]{%>();%> It’s a perfectly valid piece of code too! It compiles, and as expected has no output. But how does it work? It was puzzling...

Android Development

Android Development Published on 5 February, 2012 I recently got an ASUS Slider android tablet, it’s essentially a 10.1inch touch screen tablet with a slide out keyboard. This morning I gave a shot at making a small application for it. Setting up the development software was very time consuming,...

C++

C++ Published on 19 October, 2011 Well I’ve started college and we’re learning C++. So recently I’ve been playing around creating many toy applications to get to grip with the language. What I particularly enjoy about the language is that it’s so easy to compile code for on the...

C# Dev Blog

2011 05.25 C# Dev Blog Category: Uncategorized / Tags: no tag / Add Comment Well I haven’t updated in a while, but that doesn’t mean I haven’t been unproductive. Instead of jumping back into the game with a new design, I went back to reading C# 4.0 Pocket Reference,...