frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Wall Street warms to SpaceX ahead of Nasdaq 100 inclusion

https://www.reuters.com/business/wall-street-warms-spacex-ahead-nasdaq-100-inclusion-2026-07-07/
1•adithyaharish•2m ago•0 comments

Oikoumene: Autonomous Agent Civilization Simulator

https://github.com/GeoLambdaAI/oikoumene/tree/main
1•Gtombri•4m ago•0 comments

CVE-2026-8451: Citrix NetScaler SAML Memory Overread

https://www.lupovis.io/lupovis-insights/
1•noktec•8m ago•0 comments

Posthorn – A self-contained email pen-pal daemon for slow, self-hosted LLMs

https://tangled.org/clee.sh/posthorn
1•circularfoyers•10m ago•0 comments

Not have Managers in your class name

https://karankurani.com/writing/post/170793461763/why-you-should-not-have-managers-in-your-class/
1•BIackSwan•11m ago•0 comments

Ryzen AI Developer Platform: AMD's Own Linux Distribution Built Atop Debian

https://www.phoronix.com/review/ryzen-ai-linux-os
1•rbanffy•12m ago•0 comments

Supreme Court allows Texas to require age verification for mobile apps

https://www.cnn.com/2026/07/06/politics/supreme-court-allows-texas-to-require-age-verification-fo...
1•austin-cheney•12m ago•0 comments

Show HN: Fast, native Mac file manager (filters, fuzzy find, 9 MB, no Electron)

https://whimfiles.com
2•whimbyte•17m ago•0 comments

Microsoft admits a Windows 11 bug is eating up to 500GB of storage

https://www.windowslatest.com/2026/07/06/microsoft-admits-a-windows-11-bug-is-eating-up-to-500gb-...
4•vidyesh•17m ago•0 comments

Easyfone: Mobiles for Senior Citizens

https://easyfone.in/
1•thunderbong•20m ago•0 comments

What's one SEO strategy that's consistently driving results?

2•cirilraj•21m ago•1 comments

EU urged to act after Pegasus infects phone of spyware inquiry MEP

https://www.theregister.com/security/2026/07/06/eus-latest-spyware-scandal-prompts-calls-for-urge...
1•Puts•25m ago•0 comments

Zhipu AI, MiniMax shares for Hong Kong investors as lock-ups end

https://www.scmp.com/business/markets/article/3359697/zhipu-ai-minimax-shares-provide-gut-check-h...
2•Alien1Being•29m ago•1 comments

The Technological Republic: Hard Power, Soft Belief, and the Future of the West

https://www.amazon.com/Technological-Republic-Power-Belief-Future/dp/0593798694
1•ronfriedhaber•30m ago•0 comments

Nvidia GPU Debt Backstop Unleashes the AI Project Trinity: Capital, Offtake [ ]

https://newsletter.semianalysis.com/p/nvidia-gpu-debt-backstop-unleashes
1•swolpers•34m ago•0 comments

Seeking feedback on a new integer factorization algorithm

https://github.com/Piunosei/factorization_nr_138132535-/tree/main
1•AlbericoLepore•35m ago•0 comments

Show HN: A free, GPU-accelerated Texas Hold'em GTO solver in C++/CUDA

https://bupticybee.github.io/texassolver_gpu_page/
2•bupticybee•36m ago•0 comments

Fable – Inner Forward Pass

https://claude.ai/public/artifacts/05b42f8b-a4a3-4a7a-9774-c5d427ada379
7•stoicfungi•37m ago•0 comments

Blog about things you don't understand yet

https://www.seangoedecke.com/blog-about-things-you-dont-understand-yet/
3•ingve•38m ago•0 comments

Proxima Fusion Raises €411M to Build Europe's Commercial Fusion Champion

https://proximafusion.com/press-news/proxima-fusion-raises-eu411-million-to-build-europes-commerc...
1•l1am0•41m ago•0 comments

Show HN: 99 Business Ideas

https://99ideas.jaksa.me/
2•jaksa•41m ago•0 comments

Generating 3D assets with AI [video]

https://www.youtube.com/watch?v=YwoPuZa8N_g
1•K0IN•41m ago•1 comments

Zero-Flow Encoders

https://arxiv.org/abs/2602.00797
1•E-Reverance•42m ago•0 comments

Romania's "Palantir": the entrepreneur selling "sovereign AI" to secret services

https://eualive.net/romanias-palantir-the-entrepreneur-selling-sovereign-ai-to-the-countrys-intel...
1•robtherobber•42m ago•0 comments

Tell HN: Fable is now credits only

2•teruakohatu•42m ago•0 comments

AI models already ‘doing things their creators never intended’

https://www.theguardian.com/technology/2026/jul/07/ai-models-doing-things-their-creators-never-in...
2•01-_-•44m ago•1 comments

China chip equipment rally faces earnings test amid memory boom bets

https://www.scmp.com/tech/tech-trends/article/3359705/chinas-chip-equipment-rally-faces-earnings-...
1•01-_-•44m ago•0 comments

Work the Tool to Work the Thing

https://replicated.live/blog/js
1•gritzko•51m ago•0 comments

New Mass GitHub dorking tool

https://pypi.org/project/ghscan/
4•magester•52m ago•0 comments

VibeWorld – a persistent multiplayer world that lives in your terminal

https://github.com/SorBalda/vibeworld
1•sorbalda•53m ago•1 comments
Open in hackernews

Show HN: I built a YC data scraper in under 5 minutes

https://www.autonoly.com/blog/682212a2b65a68f26d0c10a4/how-to-scrape-complete-y-combinator-startup-data-in-3-minutes-without-writing-a-single-line-of-code
2•dpacman•1y ago
Hi HN,

I'm an indie hacker who built Autonoly solo over the past 3.5 months. I essentially vibe coded the entire platform based on automation needs I encountered in my own work. I wanted to share a practical example of what it can do - creating a Y Combinator data scraper in just a few minutes without writing any traditional code.

The technical approach is straightforward but effective:

1. Browser automation navigates to YC's company directory 2. For YC's infinite scroll pagination, I implemented a progressive scroll function that iterates about 150 times with calibrated delays (ensuring all ~1000+ companies load) 3. Data extraction uses XPath selectors to identify and capture the structural pattern of each company listing 4. The system then extracts specific data points (company name, description, location, etc.) into a structured CSV

The trickiest parts were getting the XPath patterns right (the DOM structure varies slightly between different company entries) and fine-tuning the scroll timing to ensure complete loading without timeout issues.

What makes this approach effective is that it works with the site's intended user experience. The browser automation renders JavaScript properly, handles dynamic loading, and interacts with elements in a natural way.

While this YC scraper example is specific, I built Autonoly to automate virtually any digital task - data processing, content creation, file management, business workflows, and more. As an indie developer, I kept encountering processes that were tedious to do manually but didn't justify hiring someone or spending weeks on custom code.

I'd love to hear feedback from the HN community, especially from those who've built similar systems or have different approaches to workflow automation. Happy to answer any technical questions about the implementation or discuss the challenges of building automation tools as a solo founder.