Skip to content

Instantly share code, notes, and snippets.

View khaeru's full-sized avatar

Paul Natsuo Kishimoto khaeru

View GitHub Profile
@bbendick
bbendick / YearCompass.md
Created December 18, 2023 00:34
YearCompass

README

This is a markdown version of the wonderful YearCompass booklet.

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license.

Welcome

What is this?

It's a YearCompass--your very own YearCompass, to be exact.

It is a booklet that helps you reflect on the past year and plan the next one. With a set of carefully selected questions and exercises, YearCompass helps you uncover your patterns and design a great year for yourself.

@pylover
pylover / a2dp.py
Last active April 17, 2025 03:30
Fixing bluetooth stereo headphone/headset problem in ubuntu 16.04, 16.10 and also debian jessie, with bluez5.
#! /usr/bin/env python3
"""Fixing bluetooth stereo headphone/headset problem in debian distros.
Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197
Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone.
This will be only fixes the bluez5 problem mentioned above .
Licence: Freeware
@josef-pkt
josef-pkt / example_gmm_euler.ipynb
Last active September 24, 2024 06:02
Generalized Method of Moments in Python: Estimating Euler Equations
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@minrk
minrk / nbstripout
Last active March 12, 2025 18:41
git pre-commit hook for stripping output from IPython notebooks
#!/usr/bin/env python
"""strip outputs from an IPython Notebook
Opens a notebook, strips its output, and writes the outputless version to the original file.
Useful mainly as a git filter or pre-commit hook for users who don't want to track output in VCS.
This does mostly the same thing as the `Clear All Output` command in the notebook UI.
LICENSE: Public Domain