Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lilleaila/projects


https://github.com/lilleaila/projects

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Small programming projects

Some small projects organized by year and month with development environments managed by nix and direnv

## Devshell templates
Usage:
```bash
# .envrc
use flake github:LilleAila/projects#nix
use flake github:LilleAila/projects#python
use nix
```
```nix
# shell.nix
{ pkgs ? import {} }: with pkgs; mkShell {
nativeBuildInputs = [
(python311.withPackages (ps: with ps; [
matplotlib
numpy
tkinter
]))
];
}
```