Skip to content

Instantly share code, notes, and snippets.

View fabianosarracco's full-sized avatar

Fabiano Sarracco fabianosarracco

  • Civitavecchia, Rome, Italy
View GitHub Profile
@fabianosarracco
fabianosarracco / nodejs-install.sh
Created September 23, 2015 09:52
NodeJS installation script for Raspbian.
#!/bin/sh
mkdir /tmp/src
cd /tmp/src
rm node-v0.12.7.tar.gz
rm -rf node-v0.12.7
wget http://nodejs.org/dist/v0.12.7/node-v0.12.7.tar.gz
tar -xzvf node-v0.12.7.tar.gz
cd node-v0.12.7
./configure
@fabianosarracco
fabianosarracco / festivaltts-install-sh
Last active March 16, 2023 00:26
Festival/Mbrola installation on Raspberry Pi (with english and italian voices)
#!/bin/sh
#
# festivaltts-install.sh
# -----
#
# Installation and setup of a Festival based TTS system.
# Following instructions from:
# - [http://ubuntuforums.org/showthread.php?t=751169]
#
# -*- coding: utf-8 -*-
"""
jarpis_finder.py
~~~~~~~~~
This module allows to find and return the IP address of Jarpis
if it is found in the current LAN.
"""
import grequests
@fabianosarracco
fabianosarracco / software.json
Last active August 29, 2015 14:19
Links to the commonly used software
[
{
"name": "ScanTailor",
"link": "http://scantailor.org/",
"downloadLink": "https://github.com/scantailor/scantailor/releases/latest",
"license": "GPLv3",
"description": "Scan Tailor is an interactive post-processing tool for scanned pages. It performs operations such as page splitting, deskewing, adding/removing borders, and others. You give it raw scans, and you get pages ready to be printed or assembled into a PDF or DJVU file. Scanning, optical character recognition, and assembling multi-page documents are out of scope of this project",
"tags": ["scanner", "ocr", "post-processing"]
},
{