Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Dutch governments builds alternative for Microsoft based on NixOS (dawo.community)
    13comments
  2. Pentium II at 600Mhz with Voodoo 3 Emulated on 86Box with M6 Mac Mini (nyaa.sh)
    9comments
  3. CVE-2025-13032: Entering and Breaking the Avast Antivirus Sandbox Part 2 (safateam.com)
    9comments
  4. F-Droid 2.0 (f-droid.org)
    345comments
  5. Special Projects (2016) (openai.com)
    —discuss
  6. Show HN: Make cursed fonts like Times New Bastard (mitpit.com)
    94comments
  7. The last day of the dinosaurs, as an interactive painting (echohive.ai)
    —discuss
  8. Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design (github.com/devdotfast)
    116comments
  9. Why is the liver so weirdly regenerative? (dynomight.substack.com)
    206comments
  10. 2DWillNeverDie (2dwillneverdie.com)
    50comments
  11. Jev Based Code Review (github.com/egma-ai)
    21comments
  12. Fearless SIMD v1.0 (linebender.org)
    36comments
  13. Rails World 2026 Opening Keynote [video] (youtube.com)
    365comments
  14. Toyota is taking the Corolla electric (electrek.co)
    580comments
  15. My weird new hobby: Wandering around Tokyo on Google Maps (ahmedhossamdev.com)
    148comments
  16. Using LLMs to trace alchemical knowledge and decode 17th century letters (resobscura.substack.com)
    26comments
  17. Google’s Project Suncatcher to put ML infrastructure in space (blog.google)
    362comments
  18. Opus 5.5 is good at explainer videos (launchvideo.io)
    130comments
  19. Two-tier encryption in the UK (macanorak.com)
    398comments
  20. Writing Parquet files using Haskell (datahaskell.org)
    17comments
  21. What About Rails? (jardo.dev)
    8comments
  22. Book review: Is parallel programming hard, and, if so, what can you do about it? (ahelwer.ca)
    54comments
  23. The Board Game of the Alpha Nerds (2014) (grantland.com)
    39comments
  24. Sourcehut account takeover via build logs (XSS in ansi2html) (blog.arusekk.pl)
    22comments
  25. Nokia Design Archive (2025) (aalto.fi)
    127comments
  26. California is chasing wealth that has feet (landeconomics.org)
    640comments
  27. Show HN: Air-gapped file encryption as self-decrypting HTML page (apeleg.com)
    22comments
  28. The Bayeux Tapestry: Woven by the Victors (historytoday.com)
    12comments
  29. The forgotten battle of East Lansing (eastlansinginfo.news)
    17comments
  30. WaveDigger: Dig into wireless signals to discover their physical locations (github.com/christianrowlands)
    22comments

Writing Parquet files using Haskell

61 pointsby 2d agodatahaskell.org
12 comments
2h agoHN ↗

Looks like a pretty cool community building great tools with care. Using a functional language for data transforms sounds like a sane idea, haven't played around with it yet but it's definitely on my list now.

However they claim using Haskell for data science is "fast", which doesn't really mean anything until you have numbers to show. A little benchmark with pandas and polars wouldn't hurt I guess.

2h agoHN ↗

That's not what I see reported, they say Haskell tends to have bad memory layout generally and takes a 5x or so hit to performance.

1h agoHN ↗

Java ain't slow even if you do really stupid stuff. Hell, I would even argue that java is the most resistant to stupid code. Some way over-abstracted everything linked data structure will be faster in java than it is in C.

56m agoHN ↗

Haskell's most badly optimised type, is the String.

Java's most badly optimised type, is the String.

Both of them need a string-builder pattern, the default operators don't work around things to do the right thing for you. They expect you to understand how data works.

31m agoHN ↗

I still love Haskell, had dedicated several years to it while at the university. Was impossible to land a job with Haskell. Did some Scala but it’s in demise. F# and OCaml are extremely niche. Ever fewer opportunities and engineering management is convinced it’s impossible to hire functional programmers.

In this new AI-driven world, is there still place for such a luxury as functional programming?

I mean few people still code by hand, few read the generated code, models aren’t trained on functional languages, it’s inefficient token wise to use functional languages - while a lot become self-proclaimed software engineers overnight by just prompting LLMs.

24m agoHN ↗

there are a lot of strong claims here, but to just pick one:

inefficient token wise to use functional languages

where does that idea come from?

15m agoHN ↗

Hiring for Haskell is very easy, unless you need to hire more than 100 people on the spot, or don't offer remote. I've been doing Haskell hiring for 10 years, with more than 50 interviews, the applicants are always great, each time we had to pick the best of multiple candidates.

Cannot confirm functional programming being inefficient token-wise, or worse at being generated than other paradigms. Claude is great at Haskell.

The difficult parts about Haskell, such as understanding type checker error messages, are gone thanks to LLMs.

Type-safe, side-effect free code degrades correctness a lot less under heavy LLM action in my experience.