ledger comes with a built in budget system, but I wanted to get an “envelope”, or “YNAB” style budget working. While this was easy to do in theory, in practice it proved more difficult. The theory is pretty simple; enevelope budgeting merely requires you to create some new accounts to keep track of each “envelope” of money. But in practice, it requires a huge amount of duplicate data-entry, because even when using ledger’s automatic transactions, because each month’s budget is mostly the same but not necessarily exactly the same.The following
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"translatorID":"e623eec7-ad54-4201-b709-654bf3fd7f70", | |
"label":"Washington Monthly", | |
"creator":"Sebastian Karcher", | |
"target":"^https?://www\\.washingtonmonthly\\.com", | |
"minVersion":"1.0", | |
"maxVersion":"", | |
"priority":100, | |
"inRepository":"1", | |
"translatorType":4, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"translatorID":"0fba73bf-f113-4d36-810f-2c654fa985fb", | |
"label":"The New Yorker", | |
"creator":"Sebastian Karcher", | |
"target":"https?://www\\.newyorker\\.com", | |
"minVersion":"1.0", | |
"maxVersion":"", | |
"priority":100, | |
"inRepository":"1", | |
"translatorType":4, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"translatorID":"aa6ba023-4fbe-407c-b0c3-5997887db1eb", | |
"label":"VoxEU", | |
"creator":"Sebastian Karcher", | |
"target":"^https?://www\\.voxeu\\.org", | |
"minVersion":"1.0", | |
"maxVersion":"", | |
"priority":100, | |
"inRepository":"1", | |
"translatorType":4, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"translatorID": "6bb5099b-ae1a-4a08-8f2a-3429138ec2e5", | |
"label": "Wikileaks Cables", | |
"creator": "Erik Hetzner", | |
"target": "^http://(www\\.)?wikileaks\\.org/cable/", | |
"minVersion": "1.0", | |
"maxVersion": "", | |
"priority": 100, | |
"inRepository": true, | |
"translatorType": 4, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Copyright 2011 Erik Hetzner | |
;; | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation; either version 2, or (at your option) | |
;; any later version. | |
;; | |
;; This program is distributed in the hope that it will be useful, | |
;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FW.Scraper({ | |
itemType : 'journalArticle', | |
detect : 'always' | |
title : FW.Xpath(/.../).text().trim(), | |
creators : FW.Xpath(/.../).text().trim(). | |
cleanAuthor("author"), | |
date : FW.Xpath(/.../).text(), | |
volume : FW.Xpath(/.../).text(), | |
issue : FW.Xpath(/.../).text(), | |
publicationTitle : "...", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"translatorID": "9fa7d89b-d5ad-4c68-a834-f96fbc8376fa", | |
"translatorType": 4, | |
"label": "Chista", | |
"creator": "CRCIS", | |
"target": "http://journals\\.ut\\.ac\\.ir/page/main-page.html", | |
"minVersion": "1.0", | |
"maxVersion": "", | |
"priority": 500, | |
"inRepository": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Get the authors from a paper via api.richcitations.org | |
# call as api-access-example.py 10.1371/journal.pone.0106530 | |
import json | |
import requests | |
import sys | |
BASE_URL='http://api.richcitations.org/v0/' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; wl-fastfind.el --- Prompt for a query string and display search results. | |
;; Copyright (C) 2014 Erik Hetzner <[email protected]> | |
;; Author: Erik Hetzner <[email protected]> | |
;; Keywords: mail, net news | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation; either version 2, or (at your option) |
OlderNewer