This file contains 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
;; org-export-generic.el --- Export frameworg with custom backends | |
;; Copyright (C) 2009-2012 Free Software Foundation, Inc. | |
;; Author: Wes Hardaker <hardaker at users dot sourceforge dot net> | |
;; Keywords: outlines, hypermedia, calendar, wp, export | |
;; Homepage: http://orgmode.org | |
;; Version: 6.25trans | |
;; Acks: Much of this code was stolen form the ascii export from Carsten | |
;; |
This file contains 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
import zlib | |
""" | |
zlib.compressobj(...) ⇒ deflateInit(...) | |
compressobj.compress(...) ⇒ deflate(...) | |
zlib.decompressobj(...) ⇒ inflateInit(...) | |
decompressobj.decompress(...) ⇒ inflate(...) | |
""" | |
def deflate(data, compresslevel=9): | |
compress = zlib.compressobj( | |
compresslevel, # level: 0-9 |
This file contains 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
/** | |
* Bit set(vector) macros | |
*/ | |
#ifndef BITSET_H_ | |
#define BITSET_H_ | |
/* | |
Taken from comp.lang.c FAQ list · Question 20.8 | |
Don't forget to include <limits.h> for CHAR_BIT. |
This file contains 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
#print all locals / globals but try to get rid off the builtin clutter | |
{k: v for k,v in locals().iteritems() if '__' not in k and 'pdb' not in k} | |
#something better for messy locals | |
def debug_nice(locals_dict, keys=[]): | |
globals()['types'] = __import__('types') | |
exclude_keys = ['copyright', 'credits', 'False', | |
'True', 'None', 'Ellipsis', 'quit'] | |
exclude_valuetypes = [types.BuiltinFunctionType, | |
types.BuiltinMethodType, |
This file contains 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
char * | |
strdup (const char *s) | |
{ | |
size_t len = strlen (s) + 1; | |
void *new = malloc (len); | |
if(NULL == new) return NULL; | |
return (char *) memcpy (new, s, len); | |
} |
This file contains 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
#include <stdlib.h> | |
#include <assert.h> | |
#include <string.h> | |
#include <wchar.h> | |
/* | |
* Swap string | |
* Returns copy of the given string in the reverse order. | |
*/ | |
char * |
This file contains 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
import BaseHTTPServer | |
from SimpleHTTPServer import SimpleHTTPRequestHandler | |
import sys | |
import base64 | |
key = "" | |
class AuthHandler(SimpleHTTPRequestHandler): | |
''' Main class to present webpages and authentication. ''' | |
def do_HEAD(self): |
This file contains 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
Index: Makefile.all.am | |
=================================================================== | |
--- Makefile.all.am (revision 13905) | |
+++ Makefile.all.am (working copy) | |
@@ -100,7 +100,7 @@ | |
# into (and through) the preloads. | |
if VGCONF_OS_IS_DARWIN | |
AM_CFLAGS_PIC = -dynamic -O -g -fno-omit-frame-pointer -fno-strict-aliasing \ | |
- -mno-dynamic-no-pic -fpic -fPIC \ | |
+ -fpic -fPIC \ |
This file contains 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: https://github.com/thehunmonkgroup/node-base62-c/blob/master/base62.cc | |
static const char base62_vals[] = "0123456789" | |
"abcdefghijklmnopqrstuvwxyz" | |
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"; | |
static const int base62_index[] = { | |
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
This file contains 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
package main | |
import ( | |
"log" | |
"net/mail" | |
"encoding/base64" | |
"net/smtp" | |
"fmt" | |
"strings" |
OlderNewer