frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: A Interactive Story App

1•easymode•46s ago•0 comments

Yrs old who wants to meet new people

1•Daaddo•1m ago•0 comments

Computers Keep Time [video]

https://www.youtube.com/watch?v=VA2wqrZkfmY
1•Noghartt•1m ago•0 comments

The Evolution of Packet Switching – 1978 [pdf]

https://www.ece.ucf.edu/~yuksem/teaching/nae/reading/1978-roberts.pdf
1•rfmoz•2m ago•0 comments

Color Palette Pro

https://colorpalette.pro/
1•admp•5m ago•0 comments

Harvard Has Almost Half a Billion Dollars in Crypto

https://www.wsj.com/livecoverage/stock-market-today-dow-sp-500-nasdaq-11-17-2025/card/harvard-has...
1•breve•6m ago•0 comments

Here to observe: Labs historian reflects on 30 years of transformation at Sandia

https://www.sandia.gov/labnews/2025/11/13/here-to-observe-labs-historian-reflects-on-three-decade...
1•rbanffy•8m ago•0 comments

50 years of weather forecasting at the ECMWF

https://www.nature.com/articles/s41467-025-65837-2
1•wafngar•9m ago•0 comments

Why 'Store Together, Access Together' Matters for Your Database

https://thenewstack.io/why-store-together-access-together-matters-for-your-database/
1•franckpachot•10m ago•0 comments

Time-Warp-Exploit

https://github.com/tattoosonmyskin/time-warp-exploit-white-paper
1•The_Reformer•11m ago•0 comments

BigQuery Table Sampling

https://jameshartig.dev/2025-bigquery-tablesample/
1•fastest963•12m ago•0 comments

DIY hiring methods for a startup in a world complicated by AI

1•hihicoderhi•12m ago•0 comments

Scientists work out how acetaminophen/paracetamol works

https://scitechdaily.com/after-decades-scientists-have-finally-discovered-tylenols-secret-mechanism/
2•Gaishan•13m ago•0 comments

Does your code match your spec?

https://kiro.dev/blog/property-based-testing/
1•alpaylan•14m ago•0 comments

Amazon joins Big Tech bond rush with $12B debt sale

https://www.ft.com/content/fc924871-e80f-46ea-aa8f-fe4ad5ce1c32
2•zerosizedweasle•18m ago•0 comments

Sitting All the Time Is Bad for You. Cocoa Can Help

https://www.vice.com/en/article/sitting-all-the-time-is-really-bad-for-you-cocoa-can-help/
1•giardini•22m ago•0 comments

Add a VLAN to OPNsense in Just 26 Clicks Across 6 Screens

https://mtlynch.io/notes/opnsense-clicks/
1•mtlynch•22m ago•0 comments

XPipe 19: SSH Manager now also supports old Unix systems

https://www.heise.de/en/news/XPipe-19-SSH-Manager-now-also-supports-old-Unix-systems-11081446.html
1•doener•22m ago•0 comments

Founder Leaving Startup, How?

2•burneracount_sf•26m ago•2 comments

What if the aliens come and we just can't communicate?

https://arstechnica.com/science/2025/11/what-if-the-aliens-come-and-we-just-cant-communicate/
1•rbanffy•26m ago•1 comments

Traffic Demand Accuracy Study Based on Public Data

https://www.mdpi.com/2076-3417/15/21/11589
1•PaulHoule•26m ago•0 comments

DDD and the Simplicity Gospel

https://oluatte.com/posts/domain-driven-design-simplicity-gospel/
1•dmofp•28m ago•0 comments

2025 State of Rust Survey

https://www.surveyhero.com/c/state-of-rust-2025
3•foresterre•28m ago•0 comments

Edition 3 – Journalism from the command line, part 1

https://buttondown.com/readwrite/archive/edition-3-journalism-from-the-command-line-part-1/
1•doener•29m ago•0 comments

Microservices: Microliths as a Resonable Alternative

https://www.ufried.com/blog/microservices_fallacy_10_microliths/
1•birdculture•31m ago•0 comments

Region-Beta Paradox

https://en.wikipedia.org/wiki/Region-beta_paradox
2•brorfred•32m ago•0 comments

Price Control Apologia

https://www.grumpy-economist.com/p/price-control-apologia
1•paulpauper•32m ago•0 comments

I 3D printed a running buggy

https://leontrolski.github.io/buggy.html
1•leontrolski•33m ago•0 comments

The (Spurious) Nutrient Sensing Argument

https://www.exfatloss.com/p/the-spurious-nutrient-sensing-argument
1•paulpauper•33m ago•0 comments

How can I detect that Windows is running in S-Mode, redux

https://devblogs.microsoft.com/oldnewthing/20251117-00/?p=111795
2•kencausey•34m ago•0 comments
Open in hackernews

Implementing Rust newtype for errors in axum

https://rup12.net/posts/learning-rust-custom-errors/
9•ruptwelve•2h ago

Comments

hobs•1h ago
Like the post, but the backticks on all sorts of things is very distracting - am I missing some value here?
ruptwelve•22m ago
I'll chalk that up to my Astro theme. It's supposed to be just `Something` and the backticks should have not been visible! Sorry!
goddtriffin•58m ago
Great post. I do the same thing for all of my Rust web servers too. I don't use anyhow though, prefer rolling everything myself - which as you call out is a pain after a while.
ruptwelve•20m ago
`Anyhow` is a great thing to get you started. But ultimately you wanna use some bespoke errors, and just roll your own!
vsgherzi•50m ago
would you get backtraces with this implementation? I've been increasingly frustrated with axum. It hits my custom error where I print something like "sqlx database failed" but when there's lots of traffic it's hard to determine which of the hundreds of queries actually failed. What I really want is the top part of a backtrace or at least a line number. I know anyhow gives bts but will it actually be useful when used like this?

Anyone else have ideas on how to solve this?

dlahoda•36m ago
i do not see problems with axum.

we wrote some macro(with muncher) which allows strongly typed and yet dry per method error, error split of public part vs internal log only(with backtrace crate trace capture), full openapi support(via schemars) and we do not use anyhow.

whole article is rot and bad advice.

vsgherzi•27m ago
mind sharing a link?