Programming

Jannich Brendle on March 25th, 2013

As I wrote a couple of days ago, I’ve started solving the wargames on overthewire.org – so far it’s going great! I just finished the leviathan wargame a couple of minutes ago, and it’s been quite fun. The only level giving me any real trouble is level 2, I failed to read a manual page [...]

Continue reading about Learning computer security with overthewire.org – part 2

Tags: ,

Jannich Brendle on July 11th, 2012

Sometimes, you have two lists in python and you need too know the difference between two lists. With a quick list comprehension, this is easy to find out: numbers = [1,2,3,4,5,6,7,8] even = [2,4,6,8,10] difference = [ a for a in numbers if not a in even ] print difference The output should be: [1, [...]

Continue reading about Difference between two lists in python – a simple solution

Tags: ,

Jannich Brendle on March 23rd, 2012

If you at some point or another have installed the keywordluv plugin on your blog, people most likely started to use it’s functionality when commenting. Keywordluv is great, since it lets people get backlinks to their websites with their desired keywords instead of a name, and you get comments with a name instead of keywords! [...]

Continue reading about Cleaning up after the keywordluv plugin

Tags: , ,