frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cvron

1•sananekaese•3m ago•0 comments

How to Control Virtual Dub Job Control?

1•nilslindemann•5m ago•0 comments

Gang suspected of sending up to 40K stolen UK iPhones to China

https://www.bbc.com/news/articles/c20vlpwrzwdo
2•tosh•5m ago•0 comments

How to Reject a Pull Request

https://github.com/jedisct1/dsvpn/pull/107
1•davidcollantes•11m ago•0 comments

German gov't stops fast-track naturalization: 3 takeaways

https://www.dw.com/en/german-government-fast-track-naturalization-citizenship-passport-v2/a-74287110
1•rntn•12m ago•0 comments

Badminton in space: Physical&mental astronaut well-being in extended isolation

https://www.sciencedirect.com/science/article/pii/S0094576525006216
1•bookofjoe•13m ago•0 comments

SMS Pools and What the US Secret Service Found Around New York

https://garwarner.blogspot.com/2025/09/sms-pools-and-what-us-secret-service.html
1•miohtama•14m ago•0 comments

Indonesia says 22 plants in industrial zone contaminated by caesium 137

https://www.reuters.com/sustainability/boards-policy-regulation/indonesia-says-22-plants-industri...
2•geox•15m ago•0 comments

The Latest Programming Language Nobody Knows They're Learning

https://musings.shuky.wiki
1•smeyerhuky•15m ago•0 comments

EU refuses to bow to Trump demands to tear up business rules

https://www.politico.eu/article/eu-trade-deal-donald-trump-tariffs-green-regulations/
6•saubeidl•16m ago•0 comments

Thinking Machines Lab Co-Founder Departs for Meta

https://www.wsj.com/tech/ai/thinking-machines-lab-co-founder-departs-for-meta-442d7461
1•ModelForge•16m ago•0 comments

OpenAI's dominance is unlike anything Silicon Valley has ever seen

https://www.cnbc.com/2025/10/11/open-ai-silicon-valley-tech-startup.html
2•donsupreme•19m ago•0 comments

Self-Adapting Language Models Is the Way to AGI?

https://jyopari.github.io/posts/seal
2•nerder92•20m ago•0 comments

Pay the Two Dollars

https://en.wikipedia.org/wiki/Pay_the_Two_Dollars
1•thomassmith65•22m ago•0 comments

Water Production Rates of the Interstellar Object 3I/Atlas

https://iopscience.iop.org/article/10.3847/2041-8213/ae08ab
2•Stratoscope•24m ago•1 comments

Training a Deep Learning Model for Echogram Semantic Segmentation

https://oceanstream.io/training-a-deep-learning-model-for-echogram-semantic-segmentation/
1•nkko•25m ago•0 comments

Show HN: Using Haskell to write an NES emulator

https://github.com/Arthi-chaud/FuNes
1•arti_chaud•25m ago•0 comments

Should I replace the Nest 2nd gen thermostat screen with e-ink?

https://sett.homes/blogs/updates/should-the-sett-thermostat-switch-to-an-e-ink-screen
1•z3ugma•25m ago•1 comments

Everything Is Television

https://www.derekthompson.org/p/why-everything-became-television
2•gamechangr•26m ago•0 comments

Save Your Clips Videos

https://support.apple.com/en-us/123359
2•frizlab•28m ago•1 comments

Show HN: Reminder – Quran, hadith and names of Allah all in one app and API

https://github.com/asim/reminder
1•asim•31m ago•0 comments

A Guide for WireGuard VPN Setup with Pi-Hole Adblock and Unbound DNS

https://psyonik.tech/posts/a-guide-for-wireguard-vpn-setup-with-pi-hole-adblock-and-unbound-dns/
2•pSYoniK•33m ago•0 comments

The shutdown worsens air traffic controller shortages, leading to flight delays

https://theconversation.com/how-the-government-shutdown-is-making-the-air-traffic-controller-shor...
3•rntn•38m ago•1 comments

Ghostarchive, a Website Archive

https://ghostarchive.org
1•rabinovich•39m ago•0 comments

Is Odin Just a More Boring C?

https://dayvster.com/blog/is-odin-just-a-more-boring-c/
1•birdculture•41m ago•0 comments

Performant 2D Renderer: A Tour of Cute Framework's Renderer

https://RandyGaul.github.io/cute_framework/topics/renderer/
1•pusewicz•43m ago•0 comments

Urban sensing using existing fiber-optic networks

https://www.nature.com/articles/s41467-025-57997-y
1•Anon84•43m ago•0 comments

Show HN: An AI reader to jump between summaries and source text for epubs

https://www.kerns.ai/
1•kanodiaayush•43m ago•0 comments

Show HN: I turned the date of the first Bitcoin transaction into my homepage

https://090110.xyz/
1•nlbw•44m ago•2 comments

Terra Oleo's oil-producing microbes could replace palm oil plantations

https://techcrunch.com/2025/09/17/terra-oleos-tiny-oil-producing-microbes-might-replace-sprawling...
2•PaulHoule•44m ago•0 comments
Open in hackernews

Nopkg: Re-use local Python code without pip package setup

https://github.com/BlakeASmith/nopkg
2•blakeasm•3h ago

Comments

blakeasm•3h ago
Hi!

I got frustrated with having to set up a proper python project with pyproject.toml or setup.py any time I wanted to have some python code importable for my local scripts/misc stuff.

When I have an idea for a python library, I want to be able to try it right away and test it out in my own script writing before committing to setting up packaging.

I've created `nopkg` to ease this pain by allowing any module (.py file or folder of multiple .py files) to be made importable without a full pip install and packaging setup.

`nopkg install mymodule.py`

This enables quick iteration and re-use of custom utilities, as well as more easily sharing modules within small teams.

https://github.com/BlakeASmith/nopkg

Please create an issue on the github for any feature requests or feedback! I hope others will find this useful as I have