frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beyond Sandbox Domains: Rendering Untrusted Web Content with SafeContentFrame

https://bughunters.google.com/blog/6715529872080896/beyond-sandbox-domains-rendering-untrusted-we...
2•Bogdanp•6m ago•0 comments

Are you protecting your accounts?

https://substack.com/inbox/post/174147934
1•josecurity•16m ago•0 comments

Off-peak GPU hours give EU/AU engineers an edge with AI tools

https://www.seangoedecke.com/ai-is-good-news-for-australian-engineers/
1•mustaphah•19m ago•0 comments

Forward Deployed Engineers

https://www.svpg.com/forward-deployed-engineers/
1•arnon•28m ago•0 comments

World Cup's dynamic pricing model lays bare FIFA's singular motive: profit

https://www.theguardian.com/football/2025/sep/04/world-cups-dynamic-pricing-model-lays-bare-fifas...
1•PaulHoule•33m ago•0 comments

MapYourGrid – Starter-Kit

https://MapYourGrid.org/starter-kit/
1•protontypes•37m ago•0 comments

Tell HN: Opt-out of LinkedIn training content creation AI models

1•lukax•40m ago•2 comments

RidzTalk – Real-Time AI Voice Translator

https://play.google.com/store/apps/details?id=com.polytalk.app&hl=en_US
1•dannyridz•42m ago•0 comments

Changing the Cursor with CSS for Better User Experience (Or Fun)

https://css-tricks.com/using-css-cursors/
1•GalaxySnail•43m ago•0 comments

Show HN: PyBujia, Easy Unit Testing for PySpark Jobs

https://github.com/jpgerek/pybujia
1•jpgerek•45m ago•0 comments

Why Arabs Lose Wars (1999)

https://www.meforum.org/middle-east-quarterly/why-arabs-lose-wars
1•testdelacc1•49m ago•1 comments

Ceph on NVMe Made No Sense to Us–So We Built a 40x Better Alternative

https://www.simplyblock.io/blog/simplyblock-versus-ceph-40x-performance/
1•noctarius•50m ago•0 comments

Dementia Prevention Must Begin in Childhood, Not Just Midlife

https://neurosciencenews.com/dementia-childhood-social-neuroscience-29712/
2•isaacfrond•52m ago•0 comments

Pdf to Text .NET CLI Converter

https://github.com/optiklab/tactica.llama.pdftotext.net
1•optiklab•53m ago•0 comments

Building Search for this Site – Search on a static site

https://alexleighton.com/posts/2025-08-09-building-search-for-this-site.html
1•g0xA52A2A•59m ago•0 comments

Turso Shell

https://shell.turso.tech/
3•tosh•1h ago•0 comments

National Park Service conducting damnatio memoriae on indigenous history

https://www.youtube.com/watch?v=cAFk79nJ6bU
2•burnt-resistor•1h ago•1 comments

GriffonAD: A new tool to exploit bad configurations in Active Directory

https://github.com/shellinvictus/GriffonAD
1•mikeharper•1h ago•0 comments

Hacking with AI SASTs: An Overview of 'AI Security Engineers' / 'LLM Security S

https://joshua.hu/llm-engineer-review-sast-security-ai-tools-pentesters
1•todsacerdoti•1h ago•0 comments

Seattle, Tech Boomtown, Grapples with a Future of Fewer Tech Jobs

https://www.wsj.com/tech/seattle-tech-amazon-microsoft-jobs-95f2db27
1•doener•1h ago•0 comments

Introducing: GitHub Workflow Dashboard

https://github.com/cheney-yan-ifl/github-workflow-dashboard
2•cheney-yan•1h ago•1 comments

How Russian-funded fake news network aims to disrupt election in Europe

https://www.bbc.com/news/articles/c4g5kl0n5d2o
8•vinni2•1h ago•2 comments

Artists are losing work, wages, and hope as bosses and clients embrace AI

https://www.bloodinthemachine.com/p/artists-are-losing-work-wages-and
3•artf•1h ago•0 comments

Opinion: Europe's VCs must embrace risk – or resign the AI era to US control

https://thenextweb.com/news/vcs-holding-back-european-ai-startups
1•KoftaBob•1h ago•0 comments

Something Tiny Is Following Earth Around the Sun

https://www.nytimes.com/2025/09/19/science/earth-quasi-moon-asteroid.html
1•mykowebhn•1h ago•1 comments

GNU LibreJS

https://www.gnu.org/software/librejs/
2•pykello•1h ago•0 comments

The (Business) Process Deadlock

https://www.ufried.com/blog/business_processes/
1•BinaryIgor•1h ago•0 comments

I built a Go framework: Anclax

https://github.com/cloudcarver/anclax
2•mikecwang•1h ago•3 comments

I took a job on a whim, and ended up stranded at sea for six months

https://www.bbc.com/news/articles/crev9y77njpo
2•cmsefton•2h ago•1 comments

Show HN: Shieldcode – Automated PR Code Reviews and Vulnerability Scanner

https://shieldcode.space
2•ge0rg3e•2h ago•0 comments
Open in hackernews

I built a Go framework: Anclax

https://github.com/cloudcarver/anclax
2•mikecwang•1h ago

Comments

mikecwang•1h ago
I’ve been working on my first open-source framework in Go, called Anclax.

The main ideas:

- One Postgres for all: Postgres here is not only the database, but also the message queue, maybe more in the future — while still allowing seamless migration to Kafka or other BIG systems later if the project grows.

- Built-in modules: starts with async/event queue, later may include more common services in web dev.

- Definition-first: use OpenAPI spec to define HTTP, SQL to define schema/queries, etc, then generate the glue code.

- New attempts: for example, macaroons tokens for auth.

- Convention over configuration: reduce hesitation, do more with less setup.

I’m an independent developer who often builds small projects. Over time I found myself repeating the same work again and again, so I turned that repetition into Anclax.

This is my first time releasing a framework. I don’t have much experience with open source projects, so I’d really appreciate feedback and discussion.

Repo: https://github.com/cloudcarver/anclax

BinaryIgor•1h ago
Why focusing on serverless? How cron jobs work in such a environment? They spin up another function? How do you deploy those functions?
mikecwang•1h ago
> Why focusing on serverless?

I personally love serverless for its low cost and ability to handle potential burst. The framework would try to adapt serverless but it is not a focus (I will change the README later).

> How cron jobs work in such a environment? They spin up another function?

While deploying in the long running machine is the best practice for now, I usually deploy the worker with serverless functions + a cron trigger (5 sec interval). I plan to develop a dedicated trigger to invoke worker when there is an event waiting for handling. Overall, the framework will adapt the serverless environment, but not focusing on serverless.

> How do you deploy those functions?

In production, I deploy the server in serverless environment like AWS Lambda, with worker-mode turned off (in that case, server will not pull tasks from the queue), then I deploy the woker in long running machines like AWS ECS.