Skip to content

Instantly share code, notes, and snippets.

@DrMoriarty
DrMoriarty / buildozer log (gcc 4.2.1)
Created December 8, 2014 14:28
Buildozer log (gcc 4.2.1)
/bin/sh: dpkg: command not found
# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
# Search for Git (git)
# -> found at /opt/local/bin/git
@DrMoriarty
DrMoriarty / build log (gcc 4.9.2)
Created December 8, 2014 14:24
Buildozer compile log (gcc 4.9.2)
/bin/sh: dpkg: command not found
# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
# Search for Git (git)
# -> found at /opt/local/bin/git
@DrMoriarty
DrMoriarty / buildozer log file
Last active August 29, 2015 14:10
Buildozer log file (can't verify SSL certificate for python.org)
bash-3.2$ LANG=C; buildozer -v android release
# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
/bin/sh: dpkg: command not found
# Search for Git (git)
var keystone = require('keystone'),
Types = keystone.Field.Types;
var SingleMail = new keystone.List('SingleMail', {
map: { name: 'title' },
autokey: {path: 'key', from: 'title' },
defaultSort: '-sendAt'
});
SingleMail.add({
@DrMoriarty
DrMoriarty / first_request.log
Last active August 29, 2015 13:57
Status 304 & Safari
{ _readableState:
{ highWaterMark: 16384,
buffer: [],
length: 0,
pipes: null,
pipesCount: 0,
flowing: false,
ended: true,
endEmitted: false,
reading: false,
@DrMoriarty
DrMoriarty / thrift-mode.el
Created April 23, 2012 13:24 — forked from bakkdoor/thrift-mode.el
Simple thrift mode (taken from https://github.com/kragen/stevej-emacs/blob/master/thrift-mode/thrift.el) and adjusted to highlight self-defined types, unions & namespaces nicely. (fixed comments)
(require 'font-lock)
(defvar thrift-mode-hook nil)
(add-to-list 'auto-mode-alist '("\\.thrift\\'" . thrift-mode))
(defvar thrift-indent-level 2
"Defines 2 spaces for thrift indentation.")
;; syntax coloring