frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

IPO: Lime (SEC S-1 Form, Neutron Holdings)

https://www.sec.gov/Archives/edgar/data/1699963/000162828026032523/neutronholdingsinc-sx1.htm
1•wuschel•54s ago•0 comments

Hondurasgate: US, Israeli Plot to Destabilize Mexico, Latin America

https://english.elpais.com/international/2026-05-07/hondurasgate-the-alleged-us-and-israeli-inter...
1•vrganj•3m ago•0 comments

Everything you need to know about recently released UFO files by Dow

https://sourceryintel.com/reports/dow-ufo-files-may-2026
1•freakynit•8m ago•0 comments

Is Opus 4.7 a Downgrade?

https://www.vincentschmalbach.com/is-opus-4-7-a-downgrade/
2•vincent_s•8m ago•0 comments

Instagram DMs Lose End-to-End Encryption Starting Today

https://www.macrumors.com/2026/05/08/instagram-end-to-end-encryption/
2•7777777phil•12m ago•0 comments

A JSON parser in 2k standard cells: a Tiny Tapeout design walkthrough

https://www.plawanrath.com/articles/grammartile-tinytapeout-walkthrough/
1•plawanrath•12m ago•0 comments

ABA Games (1D Pac-Man, etc) Agentic Gamedev Skills

https://github.com/abagames/agentic-gamedev-skills
2•helloplanets•16m ago•0 comments

An experimental Rust-to-CUDA compiler from Nvidia

https://nvlabs.github.io/cuda-oxide/index.html
1•chenzhekl•17m ago•0 comments

La Suite Docs v5.0.0 released

https://github.com/suitenumerique/docs/releases/v5.0.0
1•PhilippGille•20m ago•0 comments

Dirty Frag: Ongoing Linux Kernel Privilege Escalation Vulnerability Since 2017

https://www.wiz.io/blog/dirty-frag-linux-kernel-local-privilege-escalation-via-esp-and-rxrpc
2•birdculture•21m ago•0 comments

Caligra c100 Developer Terminal – Industrial design of computer hardware

https://www.pentagram.com/work/caligra-c100-developer-terminal
1•kaizenb•24m ago•0 comments

NREL best research cell (photovoltaic) efficiency chart [pdf]

https://nrel.gov/media/docs/libraries/pv/cell-pv-eff.pdf
2•walrus01•27m ago•1 comments

Lunar Impact Flashes NASA Artemis

https://nbsla.ca/lunar-impact-flashes-nasa-artemis/
1•01-_-•28m ago•0 comments

Intel shares soar on Apple chip deal report

https://www.cnbc.com/2026/05/08/intel-stock-apple-chip-deal.html
2•01-_-•29m ago•0 comments

Rakudo – Raku on MoarVM, JVM, and JavaScript

https://github.com/rakudo/rakudo
2•tosh•38m ago•0 comments

All my clients wanted a carousel, now it's an AI chatbot

https://adele.pages.casa/md/blog/all-my-clients-wanted-a-carousel-now-it-s-an-ai-chatbot.md
9•edent•39m ago•1 comments

What Color Is a Tennis Ball?

https://www.theatlantic.com/science/archive/2018/02/what-color-tennis-ball-green-yellow/523521/
2•thunderbong•40m ago•1 comments

Databricks Apps Tutorial: Scalable Streamlit Modular Template for Production

https://medium.com/towards-data-engineering/databricks-apps-tutorial-scalable-streamlit-modular-t...
1•protmaks•41m ago•0 comments

Chaos erupts as cyberattack disrupts learning platform Canvas amid finals

https://arstechnica.com/security/2026/05/chaos-erupts-as-cyberattack-disrupts-learning-platform-c...
3•joozio•49m ago•0 comments

Hobonichi Digital Planner

https://techoapp.1101.com/
1•skogstokig•53m ago•0 comments

Seedream AI image studio for global creators

https://www.doubao.photos
2•yibaoshan•54m ago•0 comments

Claude's signup workflow is terrible

2•b112•1h ago•0 comments

Sociotechnical Architecture Reviews: Understanding Teams, Not Just Artefacts

https://www.youtube.com/watch?v=Nb3xsZVqxpY
1•RebootStr•1h ago•1 comments

Notes on Incidents

https://www.seangoedecke.com/notes-on-incidents/
1•dondraper36•1h ago•0 comments

Why LLM-as-judge fails for code evaluation. Here's what works.

https://navigara.medium.com/the-story-of-navigara-how-we-built-the-performance-layer-for-modern-e...
2•alienll•1h ago•0 comments

Brightness Issue in Old S3 Graphics Cards

https://hackaday.com/2026/04/21/why-some-s3-videocards-have-a-brightness-issue/
3•networked•1h ago•0 comments

Turn any title into thumbnail, OG image or blogpost cover

https://thumbapi.dev
3•dinall•1h ago•1 comments

PWABuilder

https://pwabuilder.com/
5•Tomte•1h ago•0 comments

The Enemy (Part 4)

https://stephanrewind.itch.io/atlantic-41/devlog/1516937/the-enemy-part-4
2•ndr42•1h ago•1 comments

I Still Like Jenkins

https://til.andrew-quinn.me/posts/i-still-like-jenkins/
3•hiAndrewQuinn•1h ago•3 comments
Open in hackernews

I Still Like Jenkins

https://til.andrew-quinn.me/posts/i-still-like-jenkins/
3•hiAndrewQuinn•1h ago

Comments

immibis2•1h ago
A GUI that lists all the available options is much more user-friendly than a YAML configuration file where you have to guess them or pore over documentation before starting, but even Jenkinsfile syntax looks better than YAML, and Groovy is a real (edit: realer) language that, in theory, can have things like syntax highlighting and auto-completion.
yepyoukno•41m ago
Ugh!

I knew someone would try to say groovy was a real language.

I miss the good old days with bash scripts and cron.

Why must so many diverging environments and tools mingle in our mental space.

hiAndrewQuinn•11m ago
You can always just split the difference and call your shell script with

    sh "./whatever.sh"`
if you want in a modern Jenkinsfile. It's really not that big of a deal to avoid Groovy if you truly cannot stand it.

As for cron, that's also supported out of the box.

    triggers {
            cron('0 0 * * *')
        }
At that point Jenkins is mostly acting as a nice frontend to all those cronjobs and shell scripts, but at least it keeps records of all the logs etc.