frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: OgBlocks – It lets anyone create beautiful UIs with just copy and paste

https://ogblocks.dev/
1•thekarank•13s ago•0 comments

Crash Team Racing

https://en.wikipedia.org/wiki/Crash_Team_Racing
1•tosh•26s ago•0 comments

Show HN: A free metatag, sitemap and web manifest generator

https://metagen.top
1•wstaeblein•1m ago•0 comments

Schubfach: The smallest floating point double-to-string impleme

https://vitaut.net/posts/2025/smallest-dtoa/
1•fanf2•3m ago•0 comments

Show HN: SolveMyPainPoint – A single place to post and discover real problems

https://www.solvemypainpoint.com/
1•Chrizzby•3m ago•0 comments

The Thinking Game – Full Documentary – Tribeca Film Festival Official Selection

https://youtu.be/d95J8yzvjbQ
1•doppp•6m ago•0 comments

Skeuomorph

https://en.wikipedia.org/wiki/Skeuomorph
1•mkl95•7m ago•0 comments

Show HN: Guide – to help me get moving and keep the momentum going

https://github.com/nextfiveinc/guide
1•4mitkumar•10m ago•1 comments

I Trained an LLM to Dream. It Remembers Everything. [video]

https://www.youtube.com/watch?v=YA3hAGtfMs4
1•kissgyorgy•11m ago•0 comments

Local AI: 152 Open-Source Tools for 100% Offline LLMs (2025–2026)

https://github.com/slsethical/awesome-local-ai
2•iru90210•14m ago•0 comments

Head of Content

https://typefully.com/jobs/head-of-content
1•himanshustwts•15m ago•0 comments

An object in a satellite image defies explanation

https://www.cnn.com/2025/10/28/science/amelia-earhart-mystery-nikumaroro-howland-islands
3•giuliomagnifico•24m ago•0 comments

'The algorithm is hacked': analysis of technology delusions

https://www.cambridge.org/core/journals/the-british-journal-of-psychiatry/article/algorithm-is-ha...
2•geox•29m ago•0 comments

Cool Facilities – The David Taylor Model Basin

https://www.navalgazing.net/David-Taylor-Model-Basin
1•eatonphil•34m ago•0 comments

AI Industry Interview Prep Guide

https://twopug.com/interview-prep/
1•knlb•37m ago•0 comments

How to Feed America

https://www.slowboring.com/p/how-to-actually-feed-america
2•Anon84•44m ago•0 comments

Show HN: Best Black Friday Deals [Mega List]

https://www.blackfridaydeals.directory
1•bfdd•47m ago•0 comments

The Open Dictionary Project(ODict

https://www.odict.org/
2•zipping1549•54m ago•0 comments

Tell HN: It's now impossible to disable all AI features in Firefox 145 (latest)

8•pera•56m ago•3 comments

Leaves cause major problems for Tesla autopilot

https://futurezone.at/produkte/laub-blaetter-tesla-autopilot-fsd-software-vollbremsung-probleme-e...
2•doener•58m ago•1 comments

Chinese parts supplier takes stake in leading Russian drone maker

https://www.ft.com/content/e907c2fa-2d3b-4269-bc6c-b2fee4d9f688
1•perihelions•1h ago•1 comments

Teaching AI to read Xcode builds

https://tuist.dev/blog/2025/11/27/teaching-ai-to-read-xcode-builds
1•pepibumur•1h ago•0 comments

Show HN: GoScopeAI – AI-powered web scanner with Llama3 vuln analysis

https://github.com/porgnope/GoScope-AI
1•porgnope•1h ago•0 comments

Man behind in-flight Evil Twin WiFi attacks gets 7 years in prison

https://www.bleepingcomputer.com/news/security/man-behind-in-flight-evil-twin-wifi-attacks-gets-7...
3•thunderbong•1h ago•1 comments

FLUX.2

https://bfl.ai/models/flux-2
1•doener•1h ago•0 comments

Z-Image: Powerful and highly efficient image generation model with 6B parameters

https://github.com/Tongyi-MAI/Z-Image
2•doener•1h ago•0 comments

NerdPoetry – Poetry after language. Presence as form

https://www.nerdpoetry.com/
1•DrNuke•1h ago•2 comments

Go port of A Fast 64–Bit Date Algorithm, based on benjoffe.com/fast-date-64

https://github.com/xnacly/go-fast-date
1•xnacly•1h ago•0 comments

Didoo AI – Paste a URL, Get Meta Ads That Print Money While You Sleep

https://didoo.ai
1•gaiaaguldina•1h ago•1 comments

How to share directories on the phone running Android via NFS as non-root user

https://xdaforums.com/t/guide-how-to-share-directories-on-the-phone-running-android-via-nfs-as-no...
1•sipofwater•1h ago•0 comments
Open in hackernews

Postgres sequences can commit out-of-order

https://blog.sequinstream.com/postgres-sequences-can-commit-out-of-order/
4•dagss•7mo ago

Comments

dagss•7mo ago
This details an approach to working with commit-ordered event IDs which is a very powerful primitive to, e.g., do pub/sub event processing within a SQL database without having to deal with outbox patterns, event brokers and so on.

People throw Kafka or Event Hub at everything, but really, if you do not need to offload your DB for storage/access of massive amounts of events, you may not need them...

I have a lot of experience with this approach on MS SQL (https://github.com/vippsas/mssql-changefeed), interesting to see the same thing on postgres.

Hope databases gets these things built in (i.e., supported more directly) in the future.

dagss•7mo ago
I wonder if this is a bug:

   -- If no locks are found, return the maximum possible bigint value
    if max_seq is null then
        return 9223372036854775807;
    end if;
Would be a race here by returning a big number to the caller, then more data is written in between? Should instead check the current max sequence number before checking the locks?