Skip to content

Instantly share code, notes, and snippets.

@lomereiter
lomereiter / auto_brightness.py
Created May 23, 2015 19:59
automatic brightness adjustment on external monitor
import cv
import commands
import time
from PIL import Image
from collections import deque
camera = cv.CreateCameraCapture(-1)
prev_brightness_values = deque([], 5)
prev_brighness = None
// building suffix trees in linear time using the Ukkonen's algorithm
//
// with -debug flag, LOTS of output is printed during construction
// so that each step of the algorithm can be studied
import std.stdio;
import std.array, std.range, std.algorithm;
class SuffixTree {
static struct Node {
import std.stdio, std.range, std.algorithm, std.conv, std.string, std.file;
immutable letters = "abcdefghijklmnopqrstuvwxyz"d;
auto replaces(S)(S word) {
return word.length.iota.map!(i =>
letters.length.iota.map!(j =>
word[0 .. i].chain(letters[j .. j+1], word[i+1 .. $])))
.joiner;
}
import bio.bam.reader;
import bio.bam.pileup;
import bio.core.base;
import bio.core.tinymap;
import std.stdio, std.parallelism, std.algorithm, std.array, std.range;
void main(string[] args) {
defaultPoolThreads = 4;
@lomereiter
lomereiter / markov.rb
Created May 6, 2013 11:34
Markov algorithm interpreter
# -*- coding: utf-8 -*-
Rule = Struct.new :from, :to, :exit
def parseSingleRule(rule_src)
rule_src =~ /^\s*([^\s]*)\s*=>\s*([\.]?)([^\s]*)\s*$/
r = Rule.new($1, $3)
r.exit = $2 == '.'
r
end
unittest {
import std.conv;
import bio.gff3.reader;
import bio.gtf.reader;
import bio.gff3.writer;
import bio.gff3.validator;
void main() {
// Keeps all comments and pragmas -- this is cheap.
// If user doesn't need them -- std.algorithm.filter to the rescue!
@lomereiter
lomereiter / fac_gmp.rs
Created January 14, 2013 01:22
Fibonacci and factorial functions in Rust using GMP bindings
extern mod gmp;
extern mod std;
use std::getopts::*;
use gmp::Mpz;
use num::Num::from_int;
use std::time::precise_time_s;
fn factorial(n: uint) -> Mpz
{
@lomereiter
lomereiter / ldc-O3-release-inline.s
Created December 20, 2012 20:13
D: vector operation vs manual loop
...
movl $239, %edi
movq %r14, %rsi
movl $1, %edx
callq _arrayExpSliceAddass_k
...
LBB0_14:
xorl %eax, %eax
@lomereiter
lomereiter / jb.R
Created November 20, 2012 14:34
JB statistic
jb.statistic <- function(x) {
x.mean <- mean(x)
deltas <- x - x.mean
len <- length(x)
cm2 <- sum(deltas ** 2) / len
cm3 <- sum(deltas ** 3) / len
cm4 <- sum(deltas ** 4) / len
skew <- cm3 / cm2 ** 1.5
require 'benchmark'
require 'zlib'
require 'msgpack'
Genotype = Struct.new :location, :ref, :alleles, :prob
class Genotype
def to_msgpack(buf='')
[location, ref, alleles, prob].to_msgpack(buf)
end