Skip to content

Instantly share code, notes, and snippets.

View clobrano's full-sized avatar
:octocat:

Carlo Lobrano clobrano

:octocat:
View GitHub Profile
@clobrano
clobrano / ubuntu-post-install.sh
Last active December 28, 2015 03:49
This is a script to install common utilities on a (K)Ubuntu machine just after installed the OS (Tested on Elementary OS)
#!/bin/bash
Author="Carlo Lobrano"
Email="bytefalls@gmail.com"
Version="2.2"
Date="2014-05-25"
Project="Ubuntu-derived OS post install script"
# Changelog
# 2014-06-07 Added indicator-cpufreq to eos (remember to copy the icons)
# 2014-05-25 Separated package installation from ppa add.
@clobrano
clobrano / fedora-post-install.sh
Created September 8, 2013 14:13
Post installer script for Fedora 19
#!/bin/bash
# Post installer scritp for Fedora 19
# author: Carlo Lobrano
# e-mail: c.lobrano@gmail.com
# blog: www.bytefalls.com
################################
## Base functions
################################
log()
@clobrano
clobrano / f-spot-crash.txt
Created August 22, 2013 17:10
F-spot crash while fuzz testing it
** Running f-spot in Debug Mode **
** Running Mono with --debug **
[1 Info 19:04:17.425] Initializing Mono.Addins
[1 Debug 19:04:17.654] Mono.Addins Initialization took 0,206363
(f-spot:9665): Gtk-WARNING **: Impossibile trovare il motore del tema in module_path: «pixmap»,
(f-spot:9665): Gtk-WARNING **: Impossibile trovare il motore del tema in module_path: «pixmap»,
(f-spot:9665): Gtk-WARNING **: Impossibile trovare il motore del tema in module_path: «pixmap»,
@clobrano
clobrano / fuzz-photo-test.py
Last active December 21, 2015 12:59
Random test exercise for 'Software test' course at Udacity. Here I apply the Charlie Miller python script to try find bugs in linux software to show photos (Gthumb, F-Spot and Shotwell)
#!/usr/bin/env python
# List of files to use as initial seed
file_list = [
'/home/carlo/Immagini/2013/08/15/IMG_20130815_154000.jpg',
'/home/carlo/Immagini/2013/08/15/IMG_20130815_154023.jpg',
'/home/carlo/Immagini/2013/08/15/IMG_20130815_154029.jpg',
'/home/carlo/Immagini/2013/08/15/PANO_20130815_095210.jpg'
]