Skip to content

Instantly share code, notes, and snippets.

View matz-e's full-sized avatar
🎯
Focusing

Matthias Wolf matz-e

🎯
Focusing
View GitHub Profile
@matz-e
matz-e / kitty_crash.log
Created May 31, 2018 05:20
kitty crash log on MacOS
Process: kitty [75725]
Path: /Applications/kitty.app/Contents/MacOS/kitty
Identifier: net.kovidgoyal.kitty
Version: 0.10.0 (0.10.0)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: kitty [75725]
User ID: 501
Date/Time: 2018-05-31 07:19:58.849 +0200
@matz-e
matz-e / ofx-to-ledger.py
Created September 8, 2018 05:55 — forked from code-affinity/ofx-to-ledger.py
Python script for importing OFX files into a ledger-cli file
from __future__ import print_function
from ofxparse import OfxParser
import os
import re
import sys
if len(sys.argv) != 1:
print ('This utility does not take command-line arguments')
exit()
@matz-e
matz-e / spack.yaml
Last active September 30, 2020 12:13
Spack installation log with separately concretized environment
spack:
view: false
concretization: separately
packages:
all:
compiler: [gcc@4.8.5]
target: []
version: []
buildable: true
providers: {}
@matz-e
matz-e / test.cc
Created April 30, 2021 12:31
HighFive dataset reading
#include <iostream>
#include <vector>
#include <unistd.h>
#include "highfive/H5File.hpp"
static
std::shared_ptr<std::vector<std::string>>
read()
{