Skip to content

Instantly share code, notes, and snippets.

View matsutakehoyo's full-sized avatar

matsutakehoyo

View GitHub Profile
@matsutakehoyo
matsutakehoyo / python_environment_setup.md
Created April 17, 2023 08:31 — forked from wronk/python_environment_setup.md
Setting up your python development environment (with pyenv, virtualenv, and virtualenvwrapper)

Overview of Python Virtual Environments

This guide is targetted at intermediate or expert users who want low-level control over their Python environments.

When you're working on multiple coding projects, you might want a couple different version of Python and/or modules installed. This helps keep each workflow in its own sandbox instead of trying to juggle multiple projects (each with different dependencies) on your system's version of Python. The guide here covers one way to handle multiple Python versions and Python environments on your own (i.e., without a package manager like conda). See the Using the workflow section to view the end result.


h/t @sharkinsspatial for linking me to the perfect cartoon

@matsutakehoyo
matsutakehoyo / ____.kbd.json
Last active January 20, 2023 06:54 — forked from elfmimi/Lily58-Nicola.kbd.json
あらさー
[
{
"backcolor": "#7a7a7a",
"name": "あらさー"
},
[
{
"y": 1,
"x": 1,
"c": "#212121",
@matsutakehoyo
matsutakehoyo / model.stan
Created November 29, 2018 08:12 — forked from MatsuuraKentaro/model.stan
Tweedie distribution in Stan
data {
int N;
int M;
real<lower=0> Y[N];
}
parameters {
real<lower=0> mu;
real<lower=0> phi;
real<lower=1, upper=2> theta;