Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Ollaya – Ollama for open-source, Jev-style decision models (ollaya.dev)
    80comments
  2. Revealing the details of how OpenAI agents hacked Hugging Face (swarmtraces.org)
    20comments
  3. Show HN: Jev Plays Pokémon Red (jev-pokemon.vercel.app)
    46comments
  4. Excel now supports multiple values in a single cell (techcommunity.microsoft.com)
    3comments
  5. Platform-independent SIMD in Go (go.dev)
    129comments
  6. Ask HN: Who's still keeping a DOS machine up because the business depends on it?
    13comments
  7. Git-bug: Distributed, offline-first bug tracker embedded in Git (github.com/git-bug)
    92comments
  8. Gravity seems holographic. What does that mean for reality? (quantamagazine.org)
    83comments
  9. U.S. appeals court upholds designation of Anthropic as supply chain risk (cnbc.com)
    598comments
  10. First Principles Thinking (sunilsadasivan.com)
    90comments
  11. Initial DIY Cleanroom Experimentation (jefftk.com)
    —discuss
  12. How video games inspire great UX (2019) (jenson.org)
    11comments
  13. Plan mode is dead (aymannadeem.com)
    17comments
  14. Show HN: Make math automatic with Mathy (gmays.com)
    10comments
  15. What Even Is an OS Now? (sockpuppet.org)
    2comments
  16. Pentium II at 600Mhz with Voodoo 3 Emulated on 86Box with M6 Mac Mini (nyaa.sh)
    111comments
  17. Alan Kay: Shannon gave us a way of dealing with noisy channels [video] (youtube.com)
    22comments
  18. Remembering Johannes Doerfert (llvm.org)
    —discuss
  19. Ink and Switch interactive homepage (inkandswitch.com)
    25comments
  20. An airport cooled by natural ventilation (theguardian.com)
    3comments
  21. Bwbach, My Guardian Goblin (robertmay.photography)
    12comments
  22. Show HN: I discovered roads in the US across > 1000 themes (pinedesk.biz)
    3comments
  23. What happens when you analyze your favorite college football team like the CIA? (cultivatelabs.com)
    12comments
  24. Meta's Muse appears to use an OpenAI model labeled muse-special (mouse.dev)
    40comments
  25. Show HN: Doom or Bloom, map your AI worldview (doom-or-bloom.com)
    39comments
  26. Factorio that you can touch (factorio.com)
    85comments
  27. Amiga Screens: A Primer (datagubbe.se)
    35comments
  28. How we learned to stop worrying and love campus surveillance (fnl.mit.edu)
    2comments
  29. Ask HN: Hypothesis: Cellular providers are deprioritizing voice calls
    8comments
  30. Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design (github.com/devdotfast)
    128comments

Typst makes big strides

95 pointsby 6h agolwn.net
14 comments
5h agoHN ↗

As someone who used LaTeX heavily in grad school, using Typst in VSCode to create bespoke invites to an event was quite nice! Would highly recommend giving it a spin.

4h agoHN ↗

I was able to use Typst for my thesis, it felt sooo smooth. Turned it into a conference paper half a year later, and had to use the IEEE Latex format to hand it in. Oof, that was humbling.

1h agoHN ↗

As someone who hasn't used Typst, how manual was the conversion process?

2h agoHN ↗

To paraphrase Churchill, LaTeX is the worst form of typesetting experience except for all those other technologies that we've tried.

Glad that that's no longer the case!

2h agoHN ↗

Typst has a bunch of nice features, it seems like I discover another every time I use it for something. Most recently I saw that you can import TOML (or JSON if you really want) data into the template, making it really simple to populate the content from another tool.

2h agoHN ↗

Yeah, quite useful for generating pdfs for invoices from json

2h agoHN ↗

I use Typst for formatting my resume, and it’s been great. Models are pretty good at writing it too if you don’t want to learn the syntax.

1h agoHN ↗

I use typst for all sorts of things in customer apps: conference badges, customer invoices, social media asset generation (like thumbnails for podcasts, customer reviews, etc.), certificates of completion, progress reports, and much more. It's just so robust, efficient and works everywhere. Never again do I need to worry about html formatting to make PDFs.

1h agoHN ↗

started using typst in the past year.

creating my resume in it felt as magical as it can be.

i loved the tech and ideas behind typst even added native support for it in my WYSIWYG markdown(and typst) editor[1].

[1] https://wander.md

1h agoHN ↗

I find typst a joy to use, either in the online editor or locally. It’s the best combination I’ve yet come across of “write what you mean” - simple markdown-like syntax - with document layout and styling. Happily pay for a subscription even though most of the time I don’t use the online editor. Software worth paying for.

1h agoHN ↗

The MathML example here is... Definitely not TeX-quality. At least not in my phone. It looks really janky.

1h agoHN ↗

Interesting. What browser? Because in FF or Chrome on Linux desktop, it looks basically identical to LaTeX output. But unlike when creating PDFs, you’re at the mercy of your browser’s MathML implementation (another reason PDF is great).

39m agoHN ↗

I just compared typst with peachpdf (c#) and others to generate big reports, invoices, etc. coming from itext 4 the open source version which was lgpl. And was blown away. Itext was quite efficient because layouting did not do a full css thingy. Which peachpdf does, which of course produces a better looking pdf. But full css eval, could byte your ass with flow elements and div wrappers. You can be extremely non performant and ram hogging pretty fast, especially since peachpdf is not optimized.

However typst? God , it is so fast that downloading and rendering it inside a pdf viewer is the new bottleneck… it generates 2000 page pdfs in second with maximum of 2 gb , however most of the time it used 250mb memory. Peachpdf used 15-30gb for that, heck even itext used 4 gb. Cpu everything was so fucking fast, even while going through p/invoke.

I just fucking love it. I mean sometimes the syntax is weird, but it’s the best layout+data to pdf renderer.