- Chris Dickinson
- TJ Fontaine
- Julien Gilli
- Colin Ihrig
- Steven R. Loomis
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBGDbpnUBEAC8QtPrT998i/sntnzSxW/41qGOEdGzlR6Mfzdhdp7mepk43A16 | |
cUTpfDBH2R6KFunFO4u5ajdDivKSuUZy2xvNr5A2WYqtYSVAaB0Mg/TWF0voUXmj | |
Ii3p4hN9pPp1tK1gc0vG9Meb/wbkjkelUWaai1rWr8SrYOaE5MncOmYwc3rahCCj | |
+BkgTQGDdg8zqFw/bsrLE+Dbfy5rC+2MF0dU9vOBbvb6B/jcJYaQeiwQ7hQG0dzl | |
HbecZ0CxDDRWpAQz8I2igQONGqaFREUE15FgFobaurXPqkdidU3fqmbPQin9DYkh | |
txbqOkiey5fpths2nauzlmZT+mIV+caChoE08b0LukOhbWewUX8+Umic8kztBxhV | |
wP1L2EKH2gPNjRxtEIIMXerf2eY6V0qes8EWlLpQqiBfnMgBHhr7gLDNUHSVFgsU | |
bJhAYzokvFNdMVLR4tbWwLPhI75qFxZ8RbNWoZgK3hYRcJk5b4mpyf0yBqs8s1Jr |
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
graph wg { | |
build -- docker [color=green]; | |
build -- website [color=green]; | |
build -- tsc [color=green]; | |
build -- smoketest; | |
build -- lts [color=green]; | |
build -- native; | |
build -- documentation; | |
build -- benchmarking; |
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
Node resources and loading discussion | |
=== | |
Participants: | |
Bradley Meck | |
James Snell | |
Steve Atkin | |
TJ Fontaine | |
Steven R. Loomis [scribe] |
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
From 11123cd57ad1a6628e93c6c8095bad490eac749e Mon Sep 17 00:00:00 2001 | |
From: Jessica Hamilton <[email protected]> | |
Date: Sun, 5 Oct 2014 01:39:07 +1300 | |
Subject: [PATCH] synergy: redo keyboard support | |
--- | |
.../devices/synergy/haiku-usynergy.cpp | 65 ++++++++-------------- | |
.../input_server/devices/synergy/haiku-usynergy.h | 2 +- | |
.../input_server/devices/synergy/uSynergy.c | 21 +++---- | |
.../input_server/devices/synergy/uSynergy.h | 2 +- |
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/python | |
# -*- coding: utf-8 -*- | |
# Python script to find the largest files in a git repository. | |
# The general method is based on the script in this blog post: | |
# http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/ | |
# | |
# The above script worked for me, but was very slow on my 11GB repository. This version has a bunch | |
# of changes to speed things up to a more reasonable time. It takes less than a minute on repos with 250K objects. | |
# |
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
from __future__ import division | |
import cv, cv2, time | |
image_scale = 2 | |
HAAR_CASCADE_PATH = "/usr/share/opencv/haarcascades/haarcascade_frontalface_default.xml" | |
def detect_faces(image): | |
gray = cv.CreateImage((image.width,image.height), 8, 1) | |
small_img = cv.CreateImage((cv.Round(image.width / image_scale), | |
cv.Round (image.height / image_scale)), 8, 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
#/usr/bin/bash | |
opt=$1 | |
root=`hg root` | |
stash=$root/.stash | |
if [ -z $opt ] | |
then | |
opt='save' | |
fi |
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
hg clone http://hg.openjdk.java.net/jdk7u/jdk7u-osx | |
cd jdk7u-osx | |
hg fpull -u | |
unset LC_ALL LANG CLASSPATH JAVA_HOME LD_LIBRARY_PATH; make ALLOW_DOWNLOADS=true SA_APPLE_BOOT_JAVA=true ALWAYS_PASS_TEST_GAMMA=true ALT_BOOTDIR=`/usr/libexec/java_home -v 1.6` | |
# ... | |
# Running javac: | |
/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java -XX:-PrintVMOptions -XX:+UnlockDiagnosticVMOptions -XX:-LogVMOutput -Djava.awt.headless=true -Xmx512m -Xms512m -XX:PermSize=32m -XX:MaxPermSize=160m -Xbootclasspath/p:/Users/stephen/dev/java/src/jdk7u-osx/build/macosx-amd64/langtools/dist/bootstrap/lib/javac.jar -jar /Users/stephen/dev/java/src/jdk7u-osx/build/macosx-amd64/langtools/dist/bootstrap/lib/javac.jar -source 7 -target 7 -encoding ascii -Xbootclasspath:/Users/stephen/dev/java/src/jdk7u-osx/build/macosx-amd64/classes -sourcepath /Users/stephen/dev/java/src/jdk7u-osx/build/macosx-amd64/gensrc:::/Users/stephen/dev/java/src/jdk7u-osx/jdk/src/macosx/classes:/Users/stephen/dev/java/src/jdk7u-osx/jdk/src/solar |
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
# Patterns matching CSS files that should be minified. Files with a -min.css | |
# suffix will be ignored. | |
CSS_FILES = $(filter-out %-min.css,$(wildcard \ | |
public/css/*.css \ | |
public/css/**/*.css \ | |
)) | |
# Patterns matching JS files that should be minified. Files with a -min.js | |
# suffix will be ignored. | |
JS_FILES = $(filter-out %-min.js,$(wildcard \ |
NewerOlder