Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lilleaila/projects
https://github.com/lilleaila/projects
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lilleaila/projects
- Owner: LilleAila
- License: gpl-3.0
- Created: 2024-07-08T08:47:30.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-11T18:02:47.000Z (about 1 month ago)
- Last Synced: 2024-11-11T19:18:43.299Z (about 1 month ago)
- Language: Python
- Size: 858 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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
]))
];
}
```