frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Solar pacifiers: Influence of the planets may subdue solar activity

https://nachrichten.idw-online.de/2025/08/12/solar-pacifiers-influence-of-the-planets-may-subdue-...
1•nobody9999•25s ago•0 comments

All coding models think they are Anthropic

https://www.msai-labs.com/
1•sammarvasti•2m ago•0 comments

Stove makers delete air pollution warnings as they fight mandatory label

https://grist.org/accountability/gas-stove-makers-quietly-delete-air-pollution-warnings-as-they-f...
2•Improvement•4m ago•0 comments

A Guide to Serialization in PHP

https://www.phparch.com/article/2024-06-a-guide-to-serialization-in-php/
1•ashallendesign•8m ago•0 comments

Artists are losing work, wages, and hope as bosses and clients embrace AI

https://www.bloodinthemachine.com/p/artists-are-losing-work-wages-and
1•FromTheArchives•14m ago•0 comments

Background Tasks feature merged into Django

https://theorangeone.net/posts/django-dot-tasks-exists/
1•tomd•16m ago•0 comments

2025 PN7 - Scientists find quasi-moon orbiting the Earth for the last 60 years

https://phys.org/news/2025-09-scientists-quasi-moon-orbiting-earth.html
2•jharohit•20m ago•1 comments

Before we learn a new skill

https://seths.blog/2025/09/before-we-learn-a-new-skill/
1•pranxxter•23m ago•0 comments

Roast my landing page

https://weesp.ai/
1•dor_lnd•30m ago•1 comments

All the ways I use AI

https://fredrikmeyer.net/2025/07/02/all-the-ways-i-use-ai.html
1•FredrikMeyer•39m ago•0 comments

Codegen Scorer – evaluate the quality of code generated by LLMs

https://github.com/angular/web-codegen-scorer
1•martypitt•50m ago•0 comments

Scientists find that ice generates electricity when bent

https://phys.org/news/2025-09-scientists-ice-generates-electricity-bent.html
1•isaacfrond•50m ago•0 comments

Facet-driven folding for precise control of hydrogel pore actuation

https://linkinghub.elsevier.com/retrieve/pii/S2590238525002917
1•PaulHoule•53m ago•0 comments

Our AI policy vs. code of conduct and vs. reality

https://discourse.llvm.org/t/our-ai-policy-vs-code-of-conduct-and-vs-reality/88300
2•todsacerdoti•55m ago•1 comments

Building a North American EV Charging Standard: The Moment of Truth

https://www.forbes.com/councils/forbestechcouncil/2025/09/12/building-a-north-american-ev-chargin...
1•breve•55m ago•0 comments

Why I Don't Research (as a technical writer)

https://www.ssp.sh/blog/why-i-dont-research/
3•articsputnik•1h ago•0 comments

An Engineer's Perspective on the Texas Floods [video]

https://www.youtube.com/watch?v=3FfMzWa6LKg
1•pabs3•1h ago•0 comments

The GitHub MCP Registry: The Fastest Way to Discover MCP Servers

https://github.blog/ai-and-ml/github-copilot/meet-the-github-mcp-registry-the-fastest-way-to-disc...
1•aratahikaru5•1h ago•0 comments

We Are Losing the Information War with Ourselves

https://samharris.substack.com/p/we-are-losing-the-information-war
2•erlend_sh•1h ago•1 comments

NGI Zero Commons Fund Reclaim the public nature of the internet

https://nlnet.nl/commonsfund/
2•janandonly•1h ago•0 comments

Account Disasters

https://neugierig.org/software/blog/2025/09/accounts.html
1•ingve•1h ago•0 comments

Manna

https://www.themanna.app/
1•elinaaaaaa•1h ago•0 comments

ChatGPT developing system to identify under-18 users after teen death

https://www.theguardian.com/technology/2025/sep/17/chatgpt-developing-age-verification-system-to-...
1•beardyw•1h ago•0 comments

OpenAI doesn't have the cash to pay Oracle $300B

https://sherwood.news/markets/openai-doesnt-have-the-cash-to-pay-oracle-usd300-billion-raising-it...
1•elmar•1h ago•1 comments

Ioctls from Rust

https://blogsystem5.substack.com/p/ioctls-rust
1•Bogdanp•1h ago•0 comments

BastilleBSD Templates

https://bastillebsd.org/templates/
1•bilegeek•1h ago•0 comments

BenchmarkQED: Automated Benchmarking of RAG Systems

https://www.microsoft.com/en-us/research/blog/benchmarkqed-automated-benchmarking-of-rag-systems/
1•teleforce•1h ago•0 comments

Monty Widenius 'heartbroken' over Oracle's MySQL job cuts

https://www.theregister.com/2025/09/11/oracle_slammed_for_mysql_job/
2•rbanffy•1h ago•0 comments

Tell HN: The ipinfo.io certificate expired, and they have HSTS enabled

1•NewJazz•1h ago•4 comments

OCaml,an industrial-strength functional programming language

https://ocaml.org
7•jinqueeny•1h ago•0 comments
Open in hackernews

Show HN: Juvio – UV Kernel for Jupyter

https://github.com/OKUA1/juvio
118•okost1•3mo ago
Juvio brings inline, PEP 723-style dependency management and automatic, ephemeral env setup to Jupyter notebooks.

Comments

simlevesque•3mo ago
Seems awesome ! I'll try it soon.
okost1•3mo ago
Thank you! I am looking forward to your feedback.
imcritic•3mo ago
> Why Use Juvio?

> No additional lock or requirements files are needed

Additional to what?

> Guaranteed reproducibility

Of what?

I probably need your project, but I don't understand what it is for.

okost1•3mo ago
Hi. I appreciate your feedback. Basically, juvio stores all of the project requirements (versions of the packages and of the python interpreter) directly within the notebook itself using the PEP 723 spec. Then, when you open the notebook, a new ephemeral environment is created on the fly with all of the required dependencies. Therefore, you don't have to maintain a separate e.g. requirements.txt/conda.yaml/uv.lock file.
rafram•3mo ago
Did you in the past? Normally Jupyter notebooks just include the package installation commands necessary to set up the environment from scratch. I've never seen a requirements.txt/lockfile distributed alongside a notebook.
mrbungie•3mo ago
That's common when they are distributed as single notebooks (i.e. via Google Colab). When distributed inside repos they usually contain a requirements.txt.
dylukes•3mo ago
I've done research involving sampling from all extant notebooks on GitHub and manually analyzing them, and have been a heavy user of them in non-CS research contexts for a long time (and Mathematica notebooks for years before iPython Notebooks grew in popularity).

Having manually sifted through hundreds of randomly sampled notebooks, I feel I can confidently speak on the distribution of characteristics in them, at least up through a couple years ago.

1. Notebooks on GitHub are not necessarily an entirely representative sample of notebooks at large. If the author is putting it on GitHub, there's already a significant selection bias towards certain topics, despite notebooks being used in practically any discipline you can think of at least to some extent.

2. Notebooks in repositories that contain requirements.txt files are a minority and tend to be intended/cleaned up for sharing (itself not the norm).

3. What's more common is just a handful of !pip install at the top.

4. Even more common is just some details on dependencies in an adjoining README.

A very non-trivial chunk of notebooks on GitHub are just copies of the "Hands On ML 3" textbook/exercise set. If my memory serves there are tens of thousands of copies of that one repository. The fork count shown by GitHub doesn't account for the plethora of copies that weren't made using it.

paddy_m•3mo ago
Specifically "Hands On ML 3", or just generally a copy of some exercise set from a class?
lyjackal•3mo ago
This is cool and something that I’ve wanted, but I don’t see hot listings requirements inline foregoes the need for a lock file to maintain reproducibility. What about version ranges? Versions of transitive dependencies?
tempest_•3mo ago
Likely uses https://docs.astral.sh/uv/guides/scripts/#improving-reproduc...
jwilber•3mo ago
See also: juv

https://github.com/manzt/juv

okost1•3mo ago
Hi. Thanks for bringing this up. To be honest, I have never tried juv, but judging from the readme the ideas of juv and juvio are slightly different. In juvio the ephemeral environment is created on kernel startup. Hence, one can have multiple notebooks within the same jupyterlab session, each with its own venv. This seems to be different with juv, but please correct me if I am wrong.
epistasis•3mo ago
I've been using juv on and off for for ~6 months. From what I can tell of juvio, it is a different model for using uv with jupyter notebooks.

I'm not sure which model fits best, I'll have to see how your juvio handles kernels in jupyter. Does the kernel name change, is it all the default kernel, and what changes when an install happens?

I'm not quite sure what you mean by cleaner git diffs, but hopefully that will become clear with experimentation.

For my particular method of working, I've mostly switched to having each small project (roughly a JIRA ticket) be a separate uv-managed project in a git repo, and I create a kernel for each of the uv projects. This allows me to examine multiple different tickets and kernels without having to launch multiple jupyter labs.

The whole kernel<->venv mapping is another layer of massive complexity on top of the current huge amount of complexity in Python packaging. uv makes it fast , but it does not provide the "correct" or even single route to managing venvs.

dockercompost•3mo ago
> In juvio the ephemeral environment is created on kernel startup. Hence, one can have multiple notebooks within the same jupyterlab session, each with its own venv.

This should be your primary selling point!

antman•3mo ago
Would it work on Jupyter lite?
okost1•3mo ago
Unfortunately it won't, at least due to the fact UV is not available in the in-browser/wasm ecosystem. That would be awesome though. Maybe it is possible to make something close in terms of functionality using a custom pyodide kernel + micropip, but I did not look into that.
flakiness•3mo ago
The "git friendly format" is nice! How do markdown cells look like? Are they embedded as a python comment?
heisenzombie•3mo ago
I have been thinking about this for months now! Very excited to see you've implemented it, and I'm excited to try this out.

Could be fantastic for my use-case. We have a large repo of notebooks that are generally write-once, sometimes-re-run. Having a separate repo/venv/kernel per notebook would be a big overhead, so I currently just try to do a kind of semantic versioning where I make a new kernel on something like a 6-month cadence and try to keep breaking dependency changes to a minimum in that window. I can then keep around the old kernels for running old notebooks that depend on them. This is not at all an ideal state.

Thanks for sharing!

heisenzombie•3mo ago
Hm, I haven't had any luck making this work. Have opened an issue.
nsonha•3mo ago
doesn't seem like I can just point to a pyproject.toml

I can see the point of PEP-723, in the context of jupyter, but another usecase is having your notebook to work on the same environment as some product, instead of just being a standalone thing.

chthonicdaemon•3mo ago
If you have an environment set up with a pyproject.toml, just select the Jupyter kernel you installed in the environment. That feels like the case that is well handled by current tooling.

I believe this is solving the common complaint that you can't just email a jupyter notebook, since it doesn't capture the dependencies.

nsonha•3mo ago
let's say you have a project with a pyproject.toml and some notebooks. You'll have to 1. Come up with some name for the kernel, 2. Add a script to install the kernel, polluting the collaborator's jupyter installation 3. Add a README referring to 2.
chthonicdaemon•3mo ago
It sounds like you expect the collaborator to have one jupyter installation that you would pollute with the kernel. In my projects that use jupyter, I always have jupyterlab as one of the dependencies. Not sure about the naming part, since I usually just put my project in a directory named for the project, and uv uses that name for the venv, so I literally have never had to "come up with some name for the kernel".

In my case, I usually cd to the project directory, activate the associated environment, then do one of the following to work on a notebook in one of my projects, `jupyter lab`, `pycharm .`, or `code .` and go from there. In all of these cases, I get the ability to open notebooks that make use of this environment, either in the actual Jupyter lab interface, or in the tool's notebook interface (pycharm or vs code). All of these options make it pretty effortless to use the kernel associated with the environment - it's either automatically selected or it's the default in the dropdown.

pabs3•3mo ago
PEP 723 dependency management always struck me as a bit non-DRY. Wonder if there is a better way to do it, like annotating imports with versions or something similar.
lukeyoo•3mo ago
I like Jupyter too! It's has been a quick easy solution for me: https://hub.docker.com/r/lukeyoo/jupyter-polyglot
banteg•3mo ago
there is https://marimo.io/ that does all this and more
stereo•3mo ago
Has anyone compared juv, juvio and marimo?