Skip to content

Instantly share code, notes, and snippets.

View fasmide's full-sized avatar

Kristian Mide fasmide

  • Aalborg, Denmark
View GitHub Profile
@fasmide
fasmide / gist:1497684
Created December 19, 2011 15:28
Tank_Api Capture output example
<?xml version="1.0" encoding="UTF-8"?>
<Tank_Api generator="zend" version="1.0">
<capture>
<message>Der er trukket -10.00 kr. på kortet. Ny Balance: 109.00 kr.</message>
<balance>10900</balance>
<status>success</status>
</capture>
</Tank_Api>
@fasmide
fasmide / dropfeed.php
Created January 23, 2012 10:32
Use this feed togeather with GeekTool - allows you to monitor your dropbox's activity
<?php
/**
* You can find your feed url at http://dropbox.com/events
* The buttom of the page has a Subscribe to feed feature.
*
* Copyright (c) 2012 Kristian Mide
*
* MIT License
* 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,
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<string name="KEY_DEVICE_IDENTIFIER">08c24947.. muh ..95cd3</string>
</map>
From nobody Fri Apr 27 09:58:18 2012
Received: by 10.50.76.133 with SMTP id k5mr1623118igw.2.1335520697251;
Fri, 27 Apr 2012 02:58:17 -0700 (PDT)
Return-Path: <kristian@mide.dk>
Received: from mail-iy0-f177.google.com (mail-iy0-f177.google.com
[209.85.210.177])
by gmr-mx.google.com with ESMTPS id t9si964354igb.1.2012.04.27.02.58.17
(version=TLSv1/SSLv3 cipher=OTHER);
Fri, 27 Apr 2012 02:58:17 -0700 (PDT)
Received-SPF: neutral (google.com: 209.85.210.177 is neither permitted nor
@fasmide
fasmide / antifacerape.ino
Last active December 27, 2015 01:48
box
#include <Bounce.h>
#include <LiquidCrystal.h>
#define LARGEBTN 10
#define SMALLBTN 11
#define BUZZER 9
Bounce largeBouncer = Bounce( LARGEBTN, 35 );
Bounce smallBouncer = Bounce( SMALLBTN, 5);
LiquidCrystal lcd(2, 3, 4, 5, 6, 7, 8);
program = [[
wifi.sta.eventMonReg(wifi.STA_GOTIP, function()
pin = 5
status, temp, humi, temp_dec, humi_dec = dht.readxx(pin)
if status == dht.OK then
-- Integer firmware using this example
sendStr = string.format("DHT Temperature:%d.%03d;Humidity:%d.%03d\r\n",
math.floor(temp),
temp_dec,
package main
import (
"fmt"
"log"
"regexp"
"strconv"
"time"
"github.com/PuerkitoBio/goquery"
package main
import "fmt"
var k *string
func main() {
ko := string("Blarp")
k = &ko
go skriver("aaaaaa")
GET /feed/version_info.json HTTP/1.0
User-Agent: HertzClient/1.0 (GW (1).(0).(4))
Host: fw.ota.homesmart.ikea.net
Connection: close
HTTP/1.1 403 Forbidden
Content-Type: application/xml
Connection: close
Date: Sun, 02 Apr 2017 14:44:58 GMT
Server: AmazonS3
#include "FastLED.h"
FASTLED_USING_NAMESPACE
// FastLED "100-lines-of-code" demo reel, showing just a few
// of the kinds of animation patterns you can quickly and easily
// compose using FastLED.
//
// This example also shows one easy way to define multiple
// animations patterns and have them automatically rotate.