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 / trello.applescript
Last active August 29, 2015 14:00
Poormans quicktrail
on run {input, parameters}
set incoming_card to text returned of (display dialog "Incoming trello" default answer "")
do shell script "mail -s " & quoted form of incoming_card & " __EXCHANGE_WITH_INCOMING_TRELLO_MAIL__ < /dev/null"
return input
end run
@fasmide
fasmide / kamstrup.nut
Created May 13, 2014 21:13
Kamstrup with sleep and nvram storage
local units = ["", "Wh", "kWh", "MWh", "GWh", "j", "kj", "Mj",
"Gj", "Cal", "kCal", "Mcal", "Gcal", "varh",
"kvarh", "Mvarh", "Gvarh", "VAh", "kVAh",
"MVAh", "GVAh", "kW", "kW", "MW", "GW",
"kvar", "kvar", "Mvar", "Gvar", "VA", "kVA",
"MVA", "GVA", "V", "A", "kV", "kA", "C",
"K", "l", "m3", "l/h", "m3/h", "m3xC",
"ton", "ton/h", "h", "hh:mm:ss", "yy:mm:dd",
"yyyy:mm:dd", "mm:dd", "", "bar", "RTC",
"ASCII", "m3 x 10", "ton x 10", "GJ x 10",
@fasmide
fasmide / reaktion.ino
Created August 22, 2014 10:11
reaktion
#include <Bounce2.h>
#include <LiquidCrystal.h>
#define LARGEBTN 10
#define SMALLBTN 11
#define BUZZER 9
//Bounce largeBouncer = Bounce( LARGEBTN, 35 );
Bounce largeBouncer = Bounce();
<?php
class Q {
public function __construct() {
$this->hej();
}
}
class B extends Q {
public function hej() {
echo "hej ";
var hat = function() {
if(this === hat) {
console.log("Jeg er ens");
} else {
console.log("Jeg er en anden");
}
}
hat();
@fasmide
fasmide / gist:1312c3e23751dc97554f
Last active August 29, 2015 14:07
esp8266 boot sequence at 74880 baudrate
ets Jan 8 2013,rst cause:1, boot mode:(3,7)
load 0x40100000, len 23140, room 16
tail 4
chksum 0x99
load 0x3ffe8000, len 2692, room 4
tail 0
chksum 0x35
load 0x3ffe8a90, len 3296, room 8
tail 8
____ ___ _ __ ___ ___ _
| _ \_ _| |/ /_ __ / _ \ / _ \| |__
| |_) | || ' /| '_ \| | | | | | | '_ \
| __/| || . \| | | | |_| | |_| | |_) |
|_| |___|_|\_\_| |_|\___/ \___/|_.__/
@fasmide
fasmide / usage.java
Created November 16, 2011 22:30
libDanskeBank usage
DanskeBank db = new DanskeBank();
Login l = db.login(LOGINID, LOGINCODE);
Accounts a = db.getAccounts();
//Gets first account
Account b = a.getAccounts().get(0);
//gets the newst 20 transactions
Transactions t = db.getTransactions(b.getAccountId());
@fasmide
fasmide / backedUpPreferences.xml
Created December 7, 2011 01:14
Example: adb push backedUpPreferences.xml /data/data/statoil.denmark/shared_prefs/backedUpPreferences.xml
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<int name="KEY_COFFEES_BOUGHT" value="10" />
</map>
@fasmide
fasmide / gist:1497284
Created December 19, 2011 13:43
Tank_Api balance method output example
<?xml version="1.0" encoding="UTF-8"?>
<Tank_Api generator="zend" version="1.0">
<balance>
<message>Dit kort indeholder 752.20 kr.</message>
<balance>75220</balance>
<status>success</status>
</balance>
</Tank_Api>