frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

VybeCam – find the perfect song that matches your vibe – like Shazam in reverse

https://apps.apple.com/app/apple-store/id6749338267?pt=118080429&ct=HackerNews&mt=8
1•donemanuel•28s ago•0 comments

Hybrid dark-pool DEX architecture on Solana

1•DarkVeil•1m ago•0 comments

Amazon: Who pays the price? – DW Documentary [video]

https://www.youtube.com/watch?v=6r3x2t872Pc
1•eternalreturn•1m ago•0 comments

Stop Hacklore – An Open Letter

https://www.hacklore.org/letter
1•birdculture•4m ago•0 comments

Predicting eukaryotic gene models combining deep learning&hidden Markov model

https://www.nature.com/articles/s41592-025-02939-1
1•bookofjoe•8m ago•0 comments

GameShell: Game to learn (or teach) how to use standard commands in a Unix shell

https://github.com/phyver/GameShell
1•sebg•11m ago•0 comments

The AI boom is based on a fundamental mistake

https://www.theverge.com/ai-artificial-intelligence/827820/large-language-models-ai-intelligence-...
1•Anon84•16m ago•0 comments

Bomb-proof your website with mirroring

https://brandonrohrer.com/hosting7.html
2•sebg•16m ago•0 comments

Nucleus Genomics founder Kian Sadeghi caught lying on TBPN

https://twitter.com/cremieuxrecueil/status/1993460627126284383
1•totalhealthopt•17m ago•0 comments

Generalized Worley Noise

https://ianthehenry.com/posts/generalized-worley-noise/
1•leephillips•21m ago•0 comments

Puzzle Financial CEO spends Thanksgiving hiding his federal ban on Wikipedia

https://patrickstoica.com/puzzle-statement/#wikipedia-edit-war-sasha-orloff-personally-removes-fr...
1•pstoica•21m ago•1 comments

DeepSeekMath-V2: Towards Self-Verifiable Mathematical Reasoning [pdf]

https://github.com/deepseek-ai/DeepSeek-Math-V2/blob/main/DeepSeekMath_V2.pdf
7•fspeech•24m ago•1 comments

Enveloped vs. Non-Enveloped Virus(2022)

https://virologyresearchservices.com/2022/05/22/enveloped-vs-non-enveloped-viruses/
1•rolph•25m ago•0 comments

Russia's only pad for crew launches suffers major damage

https://www.russianspaceweb.com/baikonur_r7_31.html#cabin
2•zhan_eg•26m ago•1 comments

Show HN: CLI Figma .fig –> .json for LLM

https://github.com/kreako/fig2json
1•kreako•27m ago•0 comments

Not send play slip on a digital safe

1•Roax•28m ago•0 comments

GitLab Interface Redesign

https://docs.gitlab.com/user/interface_redesign/
2•maxloh•31m ago•0 comments

I accidentally stumbled upon one of the Catholic Church's darkest secrets

https://garethgore.substack.com/p/how-i-accidentally-stumbled-upon
3•Anon84•31m ago•0 comments

SEC probes Jefferies over First Brands disclosures

https://www.ft.com/content/86d90ce5-5800-4514-a757-f46a38aa521d
1•zerosizedweasle•35m ago•0 comments

Apple TV Pulls 'The Hunt' Show over Plagiarism Claims

https://www.macrumors.com/2025/11/27/apple-tv-show-hunt-pulled-plagiarism-claims/
2•kotaKat•35m ago•0 comments

.NET 10 and NuGet Audit: Finding Root Packages for Transitive Vulnerabilities

https://www.appsoftware.com/blog/net-10-and-nuget-audit-identifying-root-packages-for-vulnerable-...
1•appsoftware•36m ago•0 comments

Why have so many people stopped posting on social media?

https://www.rte.ie/brainstorm/2025/1127/1546045-why-have-we-stopped-posting-on-social-media-psych...
1•austinallegro•36m ago•2 comments

Unprecedented levels of forever chemicals found in dolphins and whales

https://phys.org/news/2025-11-unprecedented-chemicals-dolphins-whales.html
2•measurablefunc•38m ago•0 comments

Idempotency Keys

https://www.morling.dev/blog/on-idempotency-keys/
2•redbell•40m ago•0 comments

A graph is worth 1000 tables

https://crimede-coder.com/blogposts/2025/GraphsBetterThanTables
2•apwheele•41m ago•0 comments

What does it mean to understand language?

https://arxiv.org/abs/2511.19757
1•sebg•42m ago•0 comments

Principles of Program Analysis

https://www.researchgate.net/publication/265352570_Principles_of_Program_Analysis
1•ibobev•45m ago•0 comments

Two truths of software development still valid in the age of AI

https://espen.wtf/articles/2025/11/two-truths-of-software-development-still-valid-in-the-age-of-ai/
2•ingve•50m ago•1 comments

Thanksgiving and the Lessons of Political Economy

https://marginalrevolution.com/marginalrevolution/2025/11/thanksgiving-and-the-lessons-of-politic...
1•shaftoe444•51m ago•0 comments

Replacing My Window Manager with Google Chrome

https://foxmoss.com/blog/dote/
2•foxmoss•53m ago•1 comments
Open in hackernews

Ask HN: How do you trigger deployments in your workflow?

2•kingori•1h ago
I’m trying to understand how teams (or solo developers) actually kick off deployments.

Not the runtime (K8s, VMs, ECS etc) ... but the hook/trigger/pipeline that rolls out code.

For example:

- Do you have a custom roll-your-own pipeline or IDP?

- Do you deploy from Git branches (e.g. push to `main` triggers a deploy)?

- Do you have scripts that run on a CI server?

- Webhooks that trigger a rollout on your infra?

- ChatOps commands?

- Manual steps like SSH’ing into a box and running `git pull`?

- Cron-style periodic syncs?

- Something else entirely?

I'm especially curious why you ended up with that trigger mechanism ... constraints, team size, simplicity, reliability needs etc.

How does your deployment trigger flow look these days?

Comments

benoau•49m ago
I like to deploy automatically from pushes to dev, staging and main which are all gated by mandatory PR reviews, and any scripts run from Lambda which are gated by account access, so it's always a deliberate occurrence and only certain people can trigger it and nobody needs to be doing anything manually against the environments.