I hereby claim:
- I am kartben on github.
- I am kartben (https://keybase.io/kartben) on keybase.
- I have a public key whose fingerprint is E487 65B2 B96F 1453 7F4F 5D37 40EB 756C 6519 8F79
To claim this, I am signing this object:
// ==UserScript== | |
// @name git.eclipse.org bug reference detector | |
// @version 0.1.0 | |
// @licence EPL v1.0 - http://www.eclipse.org/legal/epl-v10.html | |
// @namespace http://www.github.com/kartben | |
// @description Make references to Eclipse bugs clickable in git.eclipse.org Web UI | |
// @include http://git.eclipse.org/* | |
// ==/UserScript== | |
var nodes = document.evaluate( |
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import java.io.IOException; | |
import javax.imageio.ImageIO; | |
public class Main { | |
/** | |
* @param args |
#!/usr/bin/env ruby | |
require 'pp' | |
require 'date' | |
content = STDIN.read() | |
REGEX = %r{ | |
(?: |
require 'rss' | |
require 'pp' | |
require 'rss/dublincore' | |
$totals = Hash.new(0) | |
$authors = Hash.new(0) | |
FORUM_ID = 221 # replace this with your frm_id | |
def calculate(feed) |
package org.wikipedia; | |
import java.io.IOException; | |
import java.io.PrintWriter; | |
import java.text.DateFormat; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.wikipedia.Wiki.Revision; |
var mqtt = require('mqtt'); | |
var client = mqtt.createClient(1883, "m2m.eclipse.org"); | |
var b = require('bonescript'); | |
var i2c = require('i2c'); | |
var luminosity_pin = 'P9_40'; | |
var led_pin = 'P8_13'; | |
var servo_pin = 'P9_14'; | |
var readSensors = function() { |
/******************************************************************************* | |
* Copyright (c) 2013, 2014 Benjamin Cabé and others. | |
* All rights reserved. This program and the accompanying materials | |
* are made available under the terms of the Eclipse Public License v1.0 | |
* which accompanies this distribution, and is available at | |
* http://www.eclipse.org/legal/epl-v10.html | |
* | |
* Contributors: | |
* Benjamin Cabé - initial API and implementation | |
*******************************************************************************/ |
#!/usr/bin/env python | |
# -*- coding: latin-1 -*- | |
# ----------------------------------------------------------------------------- | |
# Copyright 2010-2013 Stephen Tiedemann <[email protected]> | |
# | |
# Licensed under the EUPL, Version 1.1 or - as soon they | |
# will be approved by the European Commission - subsequent | |
# versions of the EUPL (the "Licence"); | |
# You may not use this work except in compliance with the | |
# Licence. |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
S3_LOG_LOCATION="s3://thelogbucket/logdir" | |
LOCAL_LOG_LOCATION="/tmp/log/" | |
REPORT_TITLE="My report title" | |
HTML_OUTPUT_DIR="/tmp/reporthtml" | |
REPORT="/tmp/report.ps" | |
# Sync log files to a local directory | |
s3cmd -v sync ${S3_LOG_LOCATION} ${LOCAL_LOG_LOCATION} |