Projects

I am an IT admin that love programming random useful (and useless) script in my free or paid time. Those following are project or script I’ve created:

Touei

Writen in C and Python (I didn’t wrote the C part). It was developped for G-Anime projections rooms by 3 developpers.

Launchpad Ohloh Project Site

Upload.py

I needed a script to upload file to my web server. I found one that was more of a proof of concept so I rewrote most of it. It written in python.

While I rewrote it I created a separated file called tokenDB.py to manage access. It’s a simple one time token generated and manager. It can be use as a stand alone class for our own project (either web based or CLI based).

Launchpad branch

One Liner collection

Not a project in itself put this a a collection of small oneliner and other bash, python script I’ve created for my company or personal use. I though of created a repository for it. It might come on the future, for now it’s not even online.

For now enjoy this little script I use to stream Giant Bomb video outside of their website (sorry guy, but it’s better):

  1. #!/bin/bash
  2. # 2 liner to watch Giant Bomb video with mplayer Just give the video page url as the argument.
  3. ID=`echo $1 | awk ‘{split($1,a,"/"); split(a[5],b,"-"); print b[2] }’`
  4. mplayer -aspect 16:9 `wget -q http://www.giantbomb.com/video/params/$ID -O| grep bitRate=\"1500\" | awk ‘{split ($0,a,">"); split(a[2],b,"< "); print b[1]}’`

You can check my project site for other crap and more detail over those one.

This post is also available in: French