frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Void: Open-source Cursor alternative

https://github.com/voideditor/void
221•sharjeelsayed•2h ago•125 comments

From: Steve Jobs. "Great idea, thank you."

https://blog.hayman.net/2025/05/06/from-steve-jobs-great-idea.html
38•mattl•29m ago•2 comments

Reservoir Sampling

https://samwho.dev/reservoir-sampling/
95•chrisdemarco•2h ago•19 comments

Notes on rolling out Cursor and Claude Code

https://ghiculescu.substack.com/p/nobody-codes-here-anymore
56•jermaustin1•2h ago•5 comments

Progress toward fusion energy gain as measured against the Lawson criteria

https://www.fusionenergybase.com/articles/continuing-progress-toward-fusion-energy-breakeven-and-gain-as-measured-against-the-lawson-criteria
76•sam•3h ago•13 comments

Show HN: Using eBPF to see through encryption without a proxy

https://github.com/qpoint-io/qtap
115•tylerflint•2h ago•32 comments

Static as a Server

https://overreacted.io/static-as-a-server/
23•danabramov•1h ago•3 comments

First American pope elected and will be known as Pope Leo XIV

https://www.cnn.com/world/live-news/new-pope-conclave-day-two-05-08-25
215•saikatsg•2h ago•347 comments

Ciro (YC S22) is hiring a software engineer to build AI agents for sales

https://www.ycombinator.com/companies/ciro/jobs
1•dwiner•2h ago

When Abandoned Mines Collapse

https://practical.engineering/blog/2025/5/6/when-abandoned-mines-collapse
43•impish9208•2d ago•3 comments

Using NASA’s SMAP satellite to detect L-band interference

https://radioandnukes.substack.com/p/how-dare-you-transmit-at-14-ghz
277•c16•10h ago•61 comments

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
35•andsoitis•3d ago•4 comments

Ask HN: What are good high-information density UIs (screenshots, apps, sites)?

277•troupo•6h ago•215 comments

Mycoria is an open and secure overlay network that connects all participants

https://mycoria.org/
295•doener•13h ago•111 comments

How to harden GitHub Actions

https://www.wiz.io/blog/github-actions-security-guide
169•moyer•2d ago•55 comments

Google to back three new nuclear projects

https://www.esgtoday.com/google-to-back-three-new-advanced-nuclear-projects/
221•aburan28•5h ago•236 comments

My new deadline: 20 years to give away virtually all my wealth

https://www.gatesnotes.com/home/home-page-topic/reader/n20-years-to-give-away-virtually-all-my-wealth
384•nrvn•5h ago•410 comments

How linear regression works intuitively and how it leads to gradient descent

https://briefer.cloud/blog/posts/least-squares/
295•lucasfcosta•3d ago•93 comments

Show HN: Checking Pope's election results with smoke test script for chimney

https://github.com/donobu-inc/donobu-papal-election-tests/blob/main/tests/papal_election_smoke.test.ts
20•vasusen•2h ago•10 comments

Hypermode Model Router Preview – OpenRouter Alternative

https://hypermode.com/blog/introducing-model-router
21•iamtherhino•2h ago•18 comments

How Obama’s BlackBerry got secured (2013)

https://www.electrospaces.net/2013/04/how-obamas-blackberry-got-secured.html
155•lastdong•3d ago•56 comments

Shape and topology morphing of closed surfaces integrating origami and kirigami

https://www.science.org/doi/10.1126/sciadv.ads5659
4•bryanrasmussen•2d ago•1 comments

AI focused on brain regions recreates what you're looking at (2024)

https://www.newscientist.com/article/2438107-mind-reading-ai-recreates-what-youre-looking-at-with-amazing-accuracy/
22•openquery•1d ago•14 comments

Google Measures and Manages Tech Debt

https://newsletter.techworld-with-milan.com/p/how-google-measures-and-manages-tech
20•daigoba66•3h ago•3 comments

Will protein design tools solve the snake antivenom shortage?

https://www.owlposting.com/p/will-protein-design-tools-solve-the
48•sebg•7h ago•18 comments

Brokk: AI for Large Codebases

https://brokk.ai
28•handfuloflight•1h ago•7 comments

Mass spectrometry method identifies pathogens within minutes instead of days

https://phys.org/news/2025-05-mass-spectrometry-method-pathogens-minutes.html
119•pseudolus•2d ago•40 comments

More people are getting tattoos removed

https://www.gq.com/story/why-is-everyone-getting-their-tattoos-removed
58•speckx•2h ago•88 comments

Heat stress mitigation by trees and shelters at bus stops

https://www.sciencedirect.com/science/article/pii/S136192092500063X
127•rntn•3d ago•103 comments

Microservices are a tax your startup probably can't afford

https://nexo.sh/posts/microservices-for-startups/
233•nexo-v1•5h ago•197 comments
Open in hackernews

Bridging the gap between keyword and semantic search with SPLADE (2024)

http://arcturus-labs.com/blog/2024/10/09/bridging-the-gap-between-keyword-and-semantic-search-with-splade/
20•softwaredoug•2d ago

Comments

jbellis•3h ago
I'm kind of disappointed in this article, Splade is a cool way to improve results of a TF/IDF index with minimally invasive changes and this obscures that more than it clarifies.

> Next, my SPLADE implementation in Elasticsearch is oversimplified. If you scroll back up to get_splade_embedding, we extract non-zero elements from vec_np (the SPLADE tokens) but discard their associated weights. This is a missed opportunity. The SPLADE papers use these weights for scoring matches.

Yes, exactly, that is the whole point of Splade.

Probably easier to demonstrate if you drop down a level to Lucene, I don't think you will be able to do it easily with Elastic.

Tangentially, I haven't looked closely at SPLATE which tries to marry Splade and ColBERT, but it's an interesting idea. https://arxiv.org/html/2404.13950v1

JnBrymn•3h ago
You're absolutely right. This was a post I tossed together quickly just to see what could be done without thinking too much. In retrospect, I think this would be better implemented using Elasticsearch sparse vector fields which allow you to specify the value of every token. Maybe I'l make an update post to try again.