Skip to content

Instantly share code, notes, and snippets.

@breisfeld
breisfeld / keybase.md
Created November 6, 2023 17:52
keybase.md

Keybase proof

I hereby claim:

  • I am breisfeld on github.
  • I am fribl (https://keybase.io/fribl) on keybase.
  • I have a public key ASAKPpyfW_spGP9nJYZzSOA25aiYDyA7gEkIqtjhYGEeVQo

To claim this, I am signing this object:

@breisfeld
breisfeld / README.md
Last active April 14, 2022 15:24
Send Outlook email to Joplin

Export to Joplin

The main code was lightly adapted from here. Consult these instructions, but use the code from this project.

Some notes:

  • Make sure that you have access to the Developer settings in Outlook

  • Open Visual Basic from the developer ribbon

@breisfeld
breisfeld / pk_fit.py
Created July 25, 2013 23:18
PyMC with dynamic model
import pymc
# load the model
import pk_model as mod
# fit the model with mcmc
mc = pymc.MCMC(mod)
mc.use_step_method(pymc.AdaptiveMetropolis, [mod.kcp, mod.kpc, mod.ke])
mc.sample(iter=2000, burn=1000, thin=20, verbose=1)