View USBChristmasTree.ino
/* | |
The MIT License (MIT) | |
Copyright (c) 2013 thomasfredericks | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, |
View duply.service
[Unit] | |
Description=Duply backup | |
After=network.target | |
Wants=network.target | |
[Service] | |
Type=oneshot | |
ExecStart=/bin/true | |
ExecReload=/bin/true |
View wc0030a.config
# OpenWRT build config for LogiLink WC0030A IP camera | |
# Automatically generated file; DO NOT EDIT. | |
# OpenWrt Configuration | |
# | |
CONFIG_MODULES=y | |
CONFIG_HAVE_DOT_CONFIG=y | |
# CONFIG_TARGET_ppc44x is not set | |
# CONFIG_TARGET_realview is not set | |
# CONFIG_TARGET_arm64 is not set | |
# CONFIG_TARGET_sunxi is not set |
View uboot-log.txt
U-Boot 1.1.3 (Nov 18 2012 - 20:35:15) | |
Board: Ralink APSoC DRAM: 32 MB | |
relocate_code Pointer at: 81fb4000 | |
spi_wait_nsec: 42 | |
spi device id: ef 40 17 0 0 (40170000) | |
find flash: W25Q64BV | |
raspi_read: from:20000 len:1000 | |
.raspi_read: from:20000 len:1000 | |
.============================================ |
View gist:e258ac127d8d7f9647aa
require "redis" | |
client = Redis.new | |
# Basisfunktionen eines Key-Value Stores: | |
client.set("my_key", "my_value") | |
=> "OK" | |
client.get("my_key") | |
=> "my_value" |
View gist:0d3b86ec5bf8d75a8fb2
wireshark-on () { | |
SERVER=$1 | |
shift | |
if [ $# -gt 0 ] | |
then | |
FILTER="$@" | |
else | |
FILTER="not tcp port ssh" | |
fi | |
wireshark -k -i <(ssh $SERVER $WIRESHARK_SUDO tcpdump -i any -s 0 -w - "$FILTER") |
View gist:8732473
javascript:var date=window.prompt('Datum');$('#reiseForm\\:journeyStartDateInput').val(date);$('#reiseForm\\:journeyEndDateInput').val(date);$('#reiseForm\\:journeyTitle').val("Kundenbesuch Fuchs Gewürze GmbH"); |
View airbrake.rb
# Don't verify SSL certificates | |
# Needed for https://exceptions.zweitagapps.com on Heroku | |
module Airbrake | |
class Sender | |
alias orig_setup_http_connection setup_http_connection | |
def setup_http_connection | |
orig_setup_http_connection.tap do |http| | |
http.verify_mode = OpenSSL::SSL::VERIFY_NONE if secure? | |
end |
View .zshrc
# Activate vim mode | |
bindkey -v | |
bindkey "^e" emacs-editing-mode | |
# Map history backward search (Ctrl-R in emacs mode) to [command-mode]? | |
bindkey -M vicmd '?' history-incremental-search-backward | |
# Present a nice prompt | |
vim_ins_mode="%{%F{white}%}⎆" | |
vim_cmd_mode="%{%F{red}%}⌘" |
View ssltool.patch
From dfa54b947815fdf1ba957c64bb4e489d041bbf3e Mon Sep 17 00:00:00 2001 | |
From: Thomas Hollstegge <thomas.hollstegge@zweitag.de> | |
Date: Mon, 2 Sep 2013 18:07:47 +0200 | |
Subject: [PATCH 1/2] Check all CNs when testing for domain name | |
--- | |
lib/ssltool/certificate.rb | 6 +++++- | |
1 file changed, 5 insertions(+), 1 deletion(-) | |
diff --git a/lib/ssltool/certificate.rb b/lib/ssltool/certificate.rb |
NewerOlder