I hereby claim:
- I am FredrikWendt on github.
- I am wendt (https://keybase.io/wendt) on keybase.
- I have a public key whose fingerprint is 8B75 ED00 EC85 5DE4 0C6E 86EB 8215 6248 9B1E 4234
To claim this, I am signing this object:
--- | |
- hosts: all | |
become: yes | |
tasks: | |
# Sensu, agents run on dom0 | |
- name: PGP signing key for Sensu packages | |
apt_key: |
window.addEventListener('keydown', function(event) { | |
if ((event.metaKey || event.ctrlKey) && event.key === 'Enter') { | |
let buttons = document.getElementsByClassName("uiButton"); | |
for (let i = 0; i < buttons.length; i++) { | |
let button = buttons[i]; | |
if (button.attributes && button.attributes["data-selenium-test"]) { | |
if (button.attributes["data-selenium-test"].value === "UniversalSaveBar-button-primary") { | |
button.click(); | |
break; | |
} |
<html> | |
<head> | |
<title>Very nice web page</title> | |
</head> | |
<body background="white"> | |
<h1>Welcome!</h1> | |
<p>This is a paragraph. It rocks!</p> | |
</body> | |
</html> |
#!/usr/bin/env python | |
# | |
# Watches the dropfolder, and kicks off the dropfolder-scanner when a file is closed | |
# | |
import pyinotify, os, logging | |
logging.basicConfig(filename='/tmp/dropfolder.log') | |
logger = logging.getLogger('watcher') | |
logger.setLevel(logging.INFO) |
#!/usr/bin/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" | |
__version__ = "0.1" | |
__all__ = ["SimpleHTTPRequestHandler"] |
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Adapt ScrumGuides | |
// @namespace se.wendt.scrumguides | |
// @include http://scrumguides.org/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var a = function () { | |
var getURLParam = function(name) { | |
var search = window.location.search; |
var Child = function(name) { | |
this.nextChild = null; | |
this.name = name; | |
} | |
var DisneyClub = function() { | |
this.toppen = null; | |
this.shift = function(newTop) { | |
newTop.nextChild = this.toppen; |
// higher order "method" (class) | |
public abstract class UseSafely<T> { | |
public abstract T with(AccountConnection connection); | |
public T runWith(AccountConnection connection) { | |
synchronized (connection) { | |
try { | |
connection.open(); | |
return with(connection); |
#################################### | |
# BASIC REQUIREMENTS | |
# http://graphite.wikidot.com/installation | |
# http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
# Last tested & updated 10/13/2011 | |
#################################### | |
cd | |
sudo apt-get update | |
sudo apt-get upgrade |