HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tomberek

no profile record

Submissions

Experimenting with Flox's new build and publish

thefridaydeploy.substack.com
4 points·by tomberek·il y a 12 mois·1 comments

Docker Replacement Flox Has Libraries for Kubernetes

thenewstack.io
5 points·by tomberek·l’année dernière·0 comments

Get a Portable Turn-Key RAG Stack with Verba and Flox

flox.dev
5 points·by tomberek·il y a 2 ans·2 comments

Using Flox to Create Portable, Reproducible Python Environments

flox.dev
6 points·by tomberek·il y a 2 ans·0 comments

Simplified Service Management with Flox

flox.dev
10 points·by tomberek·il y a 2 ans·0 comments

ML Modeling with Flaim and Hugging Face Diffusers

flox.dev
8 points·by tomberek·il y a 2 ans·0 comments

Flox 1.1: Time Travel Across 100k+ Nix Packages

flox.dev
12 points·by tomberek·il y a 2 ans·0 comments

Run Containers Easily with Podman and Flox

flox.dev
4 points·by tomberek·il y a 2 ans·0 comments

Using Jupyter Notebooks with Flox

flox.dev
2 points·by tomberek·il y a 2 ans·0 comments

comments

tomberek
·il y a 23 jours·discuss
Perhaps give boats some advantage in capacity.
tomberek
·il y a 9 mois·discuss
Presumably this would support a big improvement to both SBOM generation as well as various UX features and workflow improvements.
tomberek
·il y a 12 mois·discuss
Trading perfect reproducibility for usability: a pragmatic look at Flox's new features
tomberek
·il y a 2 ans·discuss
This is exactly how I can rapidly prototype things. Once proficient with this tooling is becomes very easy to quickly spin up services and PoCs. Managing it and iterating is also a breeze.
tomberek
·il y a 2 ans·discuss
Random thought. Another commenter worried about the runtime of the program becoming mangled and performing destructive operations on your machine. What if you run the reducer as a source-to-source Nix derivation? Protects against dangerous things, and can be easily distributed to remote builders.
tomberek
·il y a 2 ans·discuss
Agreed. Packaging is different than deployment. Devs should return to the art of packaging, such that their software can be then deployed into containers, VMs, micro VMs, whatever. That is what packaging allows, re-use.

This is the sort of behavior Nix encourages (disclaimer: I work at https://flox.dev , using Nix as our baseline tech). Docker as both a packaging and deployment format can carry a bit of weight, but can quickly get out of hand.
tomberek
·il y a 2 ans·discuss
This is excellent. Have you considered making a presentation or a write-up of the experience?
tomberek
·il y a 2 ans·discuss
A similar article for bringing Ruby into the Nix ecosystem: https://flox.dev/blog/flox-and-ruby
tomberek
·il y a 2 ans·discuss
This is an excellent pattern. Nix uses it to allow one to create a full transitive build graph, serialized that plan, move it around, and execute it in a distributed and reproducible fashion.

There are always temptations to loosen the constraints this imposes, but they nearly always come at a cost of undermining the value of the pattern.
tomberek
·il y a 3 ans·discuss
Especially with the remote SSH features one needs a way to ensure everything needed for your process is on the target machine; Nix makes this easy.

Nix + GDAL + GNUParallel + autoscaling groups === massive geospatial data processing pipeline
tomberek
·il y a 5 ans·discuss
This is probably the only sane way to proceed when our software has dependency chains more than a few levels deep. Establish mechanisms to try to prevent bloat, but otherwise make it possible upgrade independently and make it starkly apparent if the is duplication.