Skip to content

Instantly share code, notes, and snippets.

View tatic0's full-sized avatar

fran varas tatic0

View GitHub Profile
@tatic0
tatic0 / snap-pi.sh
Created August 11, 2013 10:23
script to take pictures from the CLI with Raspberry-pi + camera module
#!/bin/bash
pictname=`date +%s`
raspistill -o $pictname.jpg -q 100 -v -ex auto -awb sun -mm matrix -t 300
@tatic0
tatic0 / tl-rstill.sh
Created August 15, 2013 07:34
simple bash script to do a time lapse with raspistill
#!/bin/bash
echo "how long do you want to take pictures? (in seconds)"
read hlong
echo "at which interval (in seconds)"
read interval
echo "please provide a prefix to name the pictures"
read prefix
hlongms=$(($hlong*1000))
@tatic0
tatic0 / tl-pi.sh
Created August 26, 2013 20:41
shell script to generate pictures for a timelapse with RaspberryPi camera module using raspistill
#!/bin/bash
echo "how many pictures you want to take?"
read hmany
echo "at which interval"
read interval
counter=1
while [ $counter -le $hmany ]
@tatic0
tatic0 / import-screen.sh
Created April 29, 2014 13:48
screenshot using imagemagik (useful with minimalist desktops like i3)
#!/bin/bash
# you can copy this to /usr/local/bin
# and then chmod 775 it
now=`date +%Y-%m-%d:%H:%M%s`
echo "saving: ~/Pictures/screenshot-$now.jpg"
import ~/Pictures/screenshot-"$now".jpg
@tatic0
tatic0 / .vimrc
Created May 11, 2014 17:05
python-friendly .vimrc file
syn on
set number
set tabstop=2
set expandtab
set shiftwidth=2
@tatic0
tatic0 / .iftoprc
Created August 14, 2014 14:01
iftop config file
log-scale:yes
@tatic0
tatic0 / .vimrc
Created August 14, 2014 14:02
python, ino and json friendly vimrc file
syn on
set number
set tabstop=2
set expandtab
set shiftwidth=2
set bg=dark
map <leader>jt <Esc>:%!json_xs -f json -t json-pretty<CR>
au BufRead,BufNewFile *.json set filetype=json
@tatic0
tatic0 / fcfgg.s
Created July 28, 2015 16:12
generates false color images from grayscale images from Flir Dev Kit (Lepton) infrared sensor
#!/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
@tatic0
tatic0 / pyreference.py
Created September 10, 2015 11:34
ugly scritp to search for Wordreference translations from the command line
#!/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
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()