#!/usr/bin/env python
"""
The examples below show how to load multiple files via numpy loadtext.
Sorting the files may or may not be necessary depending on your problem.
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 | |
| """ | |
| Create gnucash file with transactions only in the target year. | |
| Delete all others. | |
| Requires a gnucash file in sqlite3 format. | |
| To convert an XML GNUCash file to SQLite3, | |
| "Save As -> Select sqlite3 as the format" | |
| If on Ubuntu the only "Save As" option is XML, try |
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
| #!/bin/bash | |
| # https://gist.github.com/salticus/9519167 | |
| # License GPLv3 | |
| # Create a svg representation of a django template inheritance tree | |
| # use web browser, eog (if you're on ubuntu) or whatever to view | |
| TEMPLATE_DIR=templates | |
| DOT_DIR="$( pwd )" | |