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- -*- | |
# from: http://piao-tech.blogspot.no/2010/03/get-offlineimap-working-with-non-ascii.html#resources | |
import binascii | |
import codecs | |
# encoding | |
def modified_base64 (s): |
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 | |
# A module for lbdb (http://www.spinnaker.de/lbdb/) for the sup address | |
# book (http://sup.rubyforge.org) | |
# Copyright (C) 2009 Gaute Hope <[email protected]> | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or |
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
/* Based on: http://stackoverflow.com/questions/8571089/how-can-i-find-endian-ness-of-my-pc-programmatically-using-c | |
* | |
* Build: gcc -o whatendianness whatendianness.c | |
* | |
*/ | |
# include <stdio.h> | |
int main (int argc, char **argv) { | |
int num = 1; |
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 | |
# Wrapper for curl, posting to the sprunge.us pastebin | |
cat $1 | curl -F 'sprunge=<-' http://sprunge.us | |
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
#! python | |
# Format: (y, x, [userdata], ..) | |
# Sorterer i stigande rekkefølge | |
positions = [ (1.0 , 1.1, 1), | |
(10.0 , 50.0, 2), | |
(9.0 , 39.0, 3), | |
(30.0 , 5.0, 4), | |
(40.0 , 10.0, 5), | |
] |
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
*.json | |
*.xml | |
token* | |
oauth* |
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/python2 | |
# | |
# Gaute Hope <[email protected]> 2011 | |
# | |
# Extract full-size photos from photos.live.com using rss feed | |
# | |
# Requires: - feedparser: http://feedparser.org/ - Python 2 | |
VERSION = 1 |
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 | |
# 2010-11-15 | |
# Combines pdf's | |
# http://polybori.blogspot.com/2010/10/combining-pdfs.html | |
out=$1 | |
shift | |
echo "Creating pdf: ${out} of: $@" |
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
/* | |
* crypttest.cs: Demonstrates how to serialize and encrypt any object | |
* | |
* Gaute Hope <[email protected]> | |
* | |
* To deserialize it you need to know the unencrypted serialized length. | |
* So to store or send also pass the length, e.g. create a struct like this: | |
* | |
* public struct EncryptedObject { | |
* public int length; |