This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;; | |
| ;;; COLOGRAM.SCM -*-scheme-*- This File is written by Friedemann Wolpert 2010 | |
| ;;; You can contact the Author using the following eMail: Friedemann@MedienKunstOnline.De | |
| ;;; Project Entry for "Mach Flott den Schrott 2", Heise Magazin | |
| ; | |
| ; Found on MedienKunstOnline.De thanks to the Wayback Machine : | |
| ; https://web.archive.org/web/20150502123253/http://medienkunstonline.de:80/Cologram_Uk.scm | |
| (define (script-fu-cologram image layer rows-per-sec dpi-setting img-resize want-sharpen want-grid want-adjframe frameforecolor framerearcolor adjframedist adjframewidth want-cutframe cutframedist cutframewidth | |
| ;anchor-top anchor-down anchor-left anchor-right format |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| if [ _$1 == _ ] | |
| then | |
| echo "Usage: $0 <output_if>" | |
| exit 1 | |
| fi | |
| sysctl -w net.ipv4.ip_forward=1 | |
| iptables -t nat -A POSTROUTING -o $1 -j MASQUERADE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2 | |
| # This script uses mido <https://pypi.python.org/pypi/mido/1.1.3> to | |
| # transform a midi file into a C structure to be played by a | |
| # microcontroller firmware for example | |
| from mido import MidiFile | |
| import sys | |
| if len(sys.argv) != 2: |
NewerOlder