frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Great Copper Crunch: Why the Next Bull Run Is Just Getting Started

https://prinsights.substack.com/p/the-great-copper-crunch-why-the-next
1•petethomas•22s ago•0 comments

Ask HN: How much Adderall do you use?

1•roschdal•2m ago•1 comments

Understanding an AI agent's memory through Harry Potter

https://squidler.io/blog/agent-memory-harry-potter
1•tidbeck•2m ago•0 comments

My home internet died for half a day. So did every agent I had

https://bostrat.ai/blog/the-outage
1•globocodes•3m ago•0 comments

Fedora CoreOS to Enable Systemd-Oomd and ZRAM Swap by Default

https://www.phoronix.com/news/Fedora-CoreOS-OOMD-zRAM-Swap
1•Bender•4m ago•0 comments

Ask HN: When should you open-source your solution and why?

1•Yahyaaa•4m ago•0 comments

TDD inside the agent loop – theater or actual value?

https://martinfowler.com/articles/exploring-gen-ai/tdd-in-the-agent-loop.html
1•groomlake•4m ago•0 comments

Show HN: HyperSAE – Hyperbolic Sparse Autoencoders for LLM Interpretability

https://github.com/vishal-dehurdle/hypersae
1•visha1v•5m ago•0 comments

LTX 2.5 a stronger foundation for what's being built

https://ltx.io/model/ltx-2-5
1•lastdong•6m ago•0 comments

Ask HN: How do you keep 54 LLM workflows on the right models?

1•ttruett•7m ago•0 comments

OpenAI's head of ethics leaves startup less than one year after joining

https://www.ft.com/content/e49dfb75-f841-4466-a577-f7aaff8779a0
5•aanet•9m ago•1 comments

A Preliminary Study on Simultaneous Coscheduling for Discrete GPU vs. Fused GPU

https://arxiv.org/abs/2608.09647
1•matt_d•12m ago•0 comments

Show HN: SmokeOps – describe a flow, get checks you rerun without AI

https://github.com/gate3/SmokeOps
1•crackedev•12m ago•0 comments

Imprint – Fine-tune MoE LLMs bigger than your RAM

https://github.com/sigma0101111/imprint
1•pyeAI•12m ago•0 comments

Sam's News – Free AI News Aggregator

https://samnews.news/
1•srschreiber•14m ago•1 comments

We Used to Get Jobs

https://ironicsans.ghost.io/how-we-used-to-get-jobs/
3•speckx•14m ago•0 comments

Nvidia building 1T-parameter Nemotron 4 to rival open AI models

https://www.reuters.com/business/nvidia-is-developing-nemotron-4-open-source-models-information-r...
2•giuliomagnifico•15m ago•0 comments

Cynthion: Open-source USB test instrument

https://greatscottgadgets.com/cynthion/
1•kaycebasques•15m ago•0 comments

Elon Musk ran a decoy super PAC to compare Trump with RGB

https://www.google.com/search?q=rgb+pac+elon+musk
4•mandeepj•17m ago•0 comments

The worst part of using multiple LLM providers is not the API differences

https://github.com/maximhq/bifrost
1•Swapnoneel•17m ago•0 comments

A bug becoming a feature (1972 edition)

https://unsung.aresluna.org/a-bug-becoming-a-feature-1972-edition/
1•leephillips•17m ago•0 comments

Ethical Cold Outreach

https://blog.val.town/ethical-cold-outreach
1•stevekrouse•17m ago•0 comments

Report from the Security Mines

https://blog.val.town/security
1•stevekrouse•18m ago•0 comments

Docfooding: Eating Our Own Documentation

https://blog.val.town/docfooding
1•stevekrouse•18m ago•0 comments

Hack's Law

https://en.wikipedia.org/wiki/Hack%27s_law
1•brandonb•18m ago•0 comments

Would Appreciate Any Feedback

https://deskfellow.app/
1•nunep•20m ago•1 comments

ChatGPT Desktop App for Linux

https://twitter.com/OpenAI/status/2087231350134980830
3•tosh•20m ago•0 comments

Why Are Rivers So Mathematical?

https://www.quantamagazine.org/why-are-rivers-so-mathematical-20260810/
2•brandonb•22m ago•0 comments

(2,1)-C1P is NP-complete

https://zenodo.org/records/21871667
1•birriel•22m ago•0 comments

Inaccessible .bnnsir files on macOS Sequoia

https://lapcatsoftware.com/articles/2025/4/3.html
2•xoa•22m ago•1 comments
Open in hackernews

How to add package if no pip

1•lpcamisoul•1h ago
as title, how to do that just, add python package

Comments

iyamani•57m ago
This ain't Stack Overflow.
emn4tor•38m ago
As iyamani said this aint Stack Overflow, but:

Either check if pip exists via py exec. (python -m pip install package_name) or bootstrap pip using ensure pip (python -m ensurepip --default-pip)

Last option would be cloning from source and running python setup.py install