Skip to content

Instantly share code, notes, and snippets.

View dirkpostma's full-sized avatar

Dirk Postma dirkpostma

View GitHub Profile
@dirkpostma
dirkpostma / TERMS.md
Created August 1, 2026 07:40
agent-ledger — Terms of Use

agent-ledger — Terms of Use

Last updated: 2026-08-01

agent-ledger is a personal software experiment run by Dirk Postma (dirkpostma@gmail.com). It is not offered as a service to anyone else.

Scope

The application is used solely by its developer, to read his own bank account

@dirkpostma
dirkpostma / PRIVACY.md
Created August 1, 2026 07:40
agent-ledger — Privacy Policy

agent-ledger — Privacy Policy

Last updated: 2026-08-01

agent-ledger is a personal, single-user software experiment run by Dirk Postma (dirkpostma@gmail.com). It is not a commercial product and has no other users.

What data is accessed

Via the Enable Banking API (PSD2 / open banking), and only with the account

@dirkpostma
dirkpostma / .inputrc
Created February 17, 2018 20:04
Use up/down arrows to search though bash command history
# Key bindings, up/down arrow searches through history
"\e[A": history-search-backward
"\e[B": history-search-forward
"\eOA": history-search-backward
"\eOB": history-search-forward
# Don't source this file, that doesn't work.
# In stead, by default, C-x C-r is bound to re-read-init-file
@dirkpostma
dirkpostma / restful.js
Last active July 4, 2018 12:06
Restful DELETE request using <a>
$(document).ready(function() {
// Add click handler to hyperlinks to send restful DELETE requests
//
// Example:
//
// <a href="/delete/1" class="rest-delete">delete</a>
// <script>restful.init($('.rest-delete'));</script>
//
var restful = {
@dirkpostma
dirkpostma / test_gist.php
Created April 23, 2013 11:22
PHP Hello World!
<?php
echo "Hello World!