frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Unlocking Python's Cores:Energy Implications of Removing the GIL

https://arxiv.org/abs/2603.04782
1•runningmike•4s ago•1 comments

Using time travel to remotely debug faulty DRAM (2020)

https://julialang.org/blog/2020/09/rr-memory-magic/
1•tosh•1m ago•0 comments

Ask HN: Feedback on a Rust graph algorithm framework?

1•salistellix•2m ago•0 comments

Bristol social media 'School Wars' trend blamed for attack on 12-year-old girl

https://www.itv.com/news/westcountry/2026-03-05/bristol-social-media-school-wars-trend-blamed-for...
1•DropDead•4m ago•0 comments

Show HN: AI pull request reviewer that analyzes Git diffs

1•bolitupac•7m ago•0 comments

Cursor: Build agents that run automatically

https://cursor.com/blog/automations
3•helloplanets•13m ago•0 comments

Show HN: Tool that simulates how visitors psychologically experience websites

https://human-psychology-simulator.thequantumgrove.io/
1•HPSimulator•13m ago•0 comments

Scholze: "For me, mathematics started with Grothendieck"

https://old.reddit.com/r/math/comments/1rl6yyf/scholze_for_me_mathematics_started_with/
1•iNic•15m ago•0 comments

How to Build a Personal Intelligence Agency

https://www.operator.io/blog/build-a-personal-intelligence-agency
1•david_shi•15m ago•0 comments

Show HN: Mt – Open-source Markdown notes app with spaced repetition

https://github.com/odosui/mt
1•yanis_t•16m ago•0 comments

Ask HN: For solopreneurs – how to you solve architecture?

1•rkuodys•18m ago•0 comments

Show HN: Utter, a free local dictation and meeting notes app for Mac and iPhone

https://utter.to/
2•hubab•19m ago•0 comments

"I'm obviously taking a risk here by advertising emoji directly."

https://unsung.aresluna.org/im-obviously-taking-a-risk-here-by-advertising-emoji-directly/
2•tobr•28m ago•0 comments

C++ Performance Improvements in MSVC Build Tools v14.51

https://devblogs.microsoft.com/cppblog/c-performance-improvements-in-msvc-build-tools-v14-51/
1•pjmlp•29m ago•0 comments

Ladybird browser update (February 2026) [video]

https://www.youtube.com/watch?v=Y3tteHSrJlY
2•radikalerludwig•29m ago•1 comments

JSR: The open-source package registry for modern JavaScript and TypeScript

https://jsr.io/
1•maxloh•33m ago•0 comments

DTOs at the Speed of Plain PHP

https://www.dereuromark.de/2026/03/02/dtos-at-the-speed-of-plain-php/
1•that_guy_iain•33m ago•0 comments

Show HN: I measured my context switching by scanning Git commits

https://github.com/MuhammadBaibarsZainUlAbideen/context-tracker
1•muhammadbaibars•34m ago•1 comments

Show HN: Introducing Kite AI Agent: Conversational Operations for Kubernetes

https://github.com/kite-org/kite/discussions/409
1•xdasf•34m ago•0 comments

Online harassment is entering its AI era

https://www.technologyreview.com/2026/03/05/1133962/online-harassment-is-entering-its-ai-era/
1•joozio•35m ago•0 comments

Cursor is now available in IntelliJ and other JetBrains IDEs through ACP

https://cursor.com/blog/jetbrains-acp#coding-with-cursor-in-jetbrains-ides
1•saharshpruthi•37m ago•1 comments

Show HN: Claude Code for iPad – Agentic AI coding tool with file ops, Git, shell

1•reviewpulse•40m ago•0 comments

How to Survive Your Project's First 100k Lines

https://verdagon.dev/blog/first-100k-lines
2•randomrainbow•40m ago•0 comments

Unlimited users, free and ad-free remote employee management tool

1•chronotrigger•41m ago•1 comments

Don't Be a Wrapper, Be a Container

https://www.hopsworks.ai/post/coding-agents-inside-data-platforms
1•LexSiga•43m ago•0 comments

A claudeism that I want to confirm if anyone else is experiencing

1•ramenprofitable•43m ago•1 comments

Show HN: Desktop Automation with Codex

https://github.com/nickbarth/closedbots/
1•nicbarth•45m ago•0 comments

Linux Mint is getting a new Wayland-compatible screensaver

https://www.neowin.net/news/linux-mint-is-getting-a-new-wayland-compatible-screensaver/
1•bundie•46m ago•0 comments

Fortify your app: Essential strategies to strengthen security – Meet with Apple [video]

https://www.youtube.com/watch?v=UZeSyodAszc
2•pjmlp•47m ago•0 comments

The Ugliest Beautiful Codebase

https://jimmyhmiller.com/ugliest-beautiful-codebase
1•harperlee•47m ago•0 comments
Open in hackernews

Ask HN: Which function definition keyword do you prefer, def or fn?

1•winwang•9mo ago
I'm curious about what people think of `def` vs `fn`, two short keywords for starting function definitions.

...Or maybe we should subscribe to the church of `df`, haha.

Comments

sitkack•9mo ago
def could be for lots of things, fn is for functions. I don't think it matters much as long as you have one. C would have been so much easier to parse. Just copy Zig or Rust.
butlersean•9mo ago
def means define, could be used to define all kinds of things

fn isnt a legitimate short form of function

fun doesnt work because of the amusement factor

func is the only alternative we have left

sitkack•9mo ago
How about unicode or emojis?

These don't have the full fidelity as hn scrubs emojis

add = (a, b) -> a + b

a, b ⟹ a + b

λ add(a, b): ↪ a + b

johncoltrane•9mo ago
"def" is too generic.

"fn" is too cryptic.

"function" is better than the two.

MultifokalHirn•9mo ago
Agreed