Requirements:

wget https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.12.24.tar.xz
wget http://hydra.azilian.net/3.12.24-config
cp 3.12.24-config .config
tar xfj linux-3.12.24.tar.xz
cd linux-3.12.24
git init
git add .
git commit -a -m ‘initial’

Tasks:

Patch /proc/cpuinfo, so when you are not in the main CGroup, it will show you only the CPU cores you are allowed to use.
[...]

Posted by HackMan
Dated: 21st July 2014
Filled Under: Teaching, Technology
Comments: Post the 1st one!

I needed an easy way to download videos I streamed to Twitch.tv, so I created this small script which downloads all parts of the video, converts them to mpegts and then combines them into a single mpeg flv video, ready for upload to YouTube.

#!/bin/bash

video_dir=~/twitch

if [ $# -ne 1 ]; then
[...]

Posted by HackMan
Dated: 10th October 2013
Filled Under: Teaching, Technology
Comments: Post the 1st one!

Yesterday we(Me, Vasil Kolev and Peter Pentchev) were examining the last students from the NetSec course and while we were waiting for the last student to come we started talking about the need of courses explaining software packaging in general.

We discussed that one can find really good documentation on RPM and DEB packaging systems, [...]

Posted by HackMan
Dated: 13th February 2011
Filled Under: Teaching
Comments: Post the 1st one!

Next semester we will start teaching Network Security II - Secure codding.
This will be my second time helping for this course, however this will be my first time as the main lecturer for the course Since we will teach this course for a second time it will be a little bit easier as we [...]

Posted by HackMan
Dated: 14th January 2011
Filled Under: Teaching
Comments: 2 Comments