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
# -*- coding: utf-8 -*- | |
"""Test using the InfluxDB client.""" | |
import time | |
import colorsys | |
import os | |
import sys | |
import socket | |
import ST7735 | |
import ltr559 |
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
file=`basename $1` | |
ffmpeg -i "$1" -c:v mpeg4 -q:v 5 -c:a pcm_s16le "${file%.*}.mov" |
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
for i in $(ls *.mov); do echo "$i --> `ls ${i%.*}.MP4`"; done | |
for i in $(ls *.mov); do echo "$i --> `rm -vf ${i%.*}.MP4`"; done |
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
# it will calculate the md5sum of | |
# all files in the arborescence | |
from threading import Thread | |
import subprocess | |
import os | |
def slowthing(i): | |
cmd = ["md5sum", i] | |
print(cmd) |
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
udp(){ | |
if [ ! -z "$2" ] ; then | |
vlc udp://@$1:$2 | |
else | |
vlc udp://@$1:1234 | |
fi | |
} |
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/bash | |
filename=file.png | |
echo "${filename:0:(-4)} <--> ${filename:(-4)}" |
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/ptyhon | |
# coding: utf-8 | |
import sys | |
from TwitterFollowBot import TwitterBot | |
say = sys.argv[1] + " #RaspberryPi powered" | |
my_bot = TwitterBot() |
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
from twython import Twython | |
import linecache | |
import os | |
import sys | |
HOME = os.path.expanduser('~/') | |
passfile= HOME + '.passfile.text' | |
APP_KEY = linecache.getline(passfile,1).strip() | |
APP_SECRET = linecache.getline(passfile,2).strip() |
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 python | |
# -*- coding=utf-8 -*- | |
# F Varas 09 2015 | |
# works: | |
# wget --user-agent="User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" "http://www.wordreference.com/fres/sournois" -O sournois2.html | |
import sys |
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/bash | |
# put all grayscale images on ~/gs | |
# and create ~/fc for new false color images from this script | |
# needs imagemagick installed | |
function gradientgen { | |
#convert xc:white xc:yellow xc:red xc:green xc:cyan xc:blue xc:violet xc:black +append -filter Cubic -rotate 90 -resize 20x80\! gradient_IR_4-rainbow.jpg |
NewerOlder