I hereby claim:
- I am ztmr on github.
- I am ztmr (https://keybase.io/ztmr) on keybase.
- I have a public key whose fingerprint is 5F6D 544F 75D7 B56A C254 F04A DBC2 9532 E23F 6630
To claim this, I am signing this object:
The following works well: | |
(defmodule dws_lisp_service | |
(export (version 1) | |
(do-eval 4)) | |
(on_load #(autoregister 0))) | |
...unlike the following: | |
(defmodule dws_lisp_service |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env perl | |
# | |
# $Id: $ | |
# | |
# Module: spotify-adkiller -- Naive Spotify AdKiller | |
# Created: 03-JUL-2014 19:54 | |
# Author: tmr | |
# | |
# TODO: |
%% UNIX Login Records (utmp/wtmp) Parser | |
%% Only GNU/Linux on x86_64 is supported at the moment. | |
-module (unix_login_records). | |
-export ([ | |
read_utmp/0, read_wtmp/0, | |
parse_file/1, parse/1, | |
record_to_proplist/1 | |
]). | |
-type utmp_type_code () :: integer (). |
// Build: | |
// $ fsharpc ztmr.fs | |
// Use: | |
// $ mono ztmr.exe 5 | |
open System | |
let rec factorial n = | |
match n with | |
| 0 -> 1 |
tmr@gersemi:~/src/erl/misc$ git clone https://github.com/hypernumbers/LuvvieScript Cloning into 'LuvvieScript'... | |
remote: Reusing existing pack: 784, done. | |
remote: Total 784 (delta 0), reused 0 (delta 0) | |
Receiving objects: 100% (784/784), 1.01 MiB | 546 KiB/s, done. | |
Resolving deltas: 100% (405/405), done. | |
tmr@gersemi:~/src/erl/misc$ cd LuvvieScript/ | |
tmr@gersemi:~/src/erl/misc/LuvvieScript$ rebar get-deps | |
==> LuvvieScript (get-deps) | |
Pulling mochiweb from {git,"git://github.com/mochi/mochiweb.git","master"} | |
Cloning into 'mochiweb'... |
/* | |
* $Id: $ | |
* | |
* Module: inf -- description | |
* Created: 18-DEC-2007 19:17 | |
* Author: tmr | |
*/ | |
#define INF (1.0 / 0.0) | |
#define NAN (0.0 / 0.0) |
/* | |
* addInt.c, v0.1 -- Manually add an intrusion database record | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <descrip.h> | |
#include <ssdef.h> | |
#include <jpidef.h> | |
#include <ciadef.h> |
/* | |
* $Id: $ | |
* | |
* Module: free -- description | |
* Created: 15-SEP-2008 17:56 | |
* Author: tmr | |
*/ | |
#include <stdio.h> | |
#include <unistd.h> |
@implementation CalendarView: CPView | |
{ | |
} | |
-(id)init { | |
self = [super initWithFrame:CGRectMake(0, 0, 200, 200)]; | |
if (self) { | |
[self loadData]; | |
} | |
return self; |