• 25 Posts
  • 214 Comments
Joined 7 months ago
cake
Cake day: December 28th, 2023

help-circle




  • There’s only one type of torx

    There isn’t. There’s Torx, Torx Plus, and Torx Paralobe. See here for more details: https://www.semblex.com/en/pdf-files/technology-files/torx-paralobe-pdf/ . Plus there’s also the ttap and tamper-resistant variants shown in the meme.

    As other people have mentioned, Torx screwdrivers are forwards compatible with Torx Plus and Torx Paralobe. But the screwdrivers for the newer standards are not backwards compatible with older screws.

    Similarly, Tamper-Resistant Torx screwdrivers can be used on regular Torx screws. But Tamper-Resistant Torx Plus screwdrivers cannot be used on regular Torx Plus screws – it’s a completely different shape!

    If you’re in a professional setting where you order high-quality screws and drivers in bulk directly from a manufacturer, I’d imagine that this isn’t much of an issue. But if you’re a hobbyist or just need to repair something in a domestic setting, the three different torx variants plus the other non-torx hexalobular screws (WA drive, Polydrive, T-Star Plus) can cause quite a bit of confusion. Anecdotally, I have a set of what I thought were really low-quality Torx bits. Turns out, they’re actually good-quality Torx Plus bits that by design don’t fit my Torx screws.







  • Whether or not typst is “superior” is largely debatable, but here are some reasons why I personally prefer Typst to LaTeX:

    • leaner syntax
    • less boilerplate
    • (arguably) more intuitive syntax for math and formatting
    • real-time preview thanks to incremental compilation
    • automatic package management
    • Ability to perform calculations/data processing inline inside your document (I know you can do this in LaTeX as well, but typst makes it easier)

    However, as Andrew said, it is very much still in beta, so I don’t think it can be a complete replacement for LaTeX. Basically, think of it as something in between LaTeX and Markdown. Less features, but easier to write.


  • This is what I though as well when I first looked at their website. But nope, the compiler and LSP are available as fully offline programs under the apache license. But I understand how you’d get confused, their website is strikingly polished for an open-source non-commercial project!

    The only thing you’re missing out on if you use the offline version is having the rendered preview update in real time as you type, but you can sort of emulate that feature using their neovim plugin and a really fast PDF viewer like zathura.


  • honestly LaTeX isn’t too bad once you have it all set up. An environment with the correct packages, a collection of templates for common document types, a set of macros for often-used constructions, and and editor with good snippets and syntax highlighting. Once you have all of that, LaTeX becomes a breeze. At one point, I was even taking notes with LaTeX in real-time during lectures.

    But that’s the beauty of typst – it’s like a fully beefed out LaTeX setup, but straight out of the box. No need for snippets, because the syntax is lean enough as it is. No need for templates, because there is no boilerplate needed for a document. No need to waste half an hour setting up an environment and looking for dependencies – all of typst is just two executables (compiler and LSP), and package management is automatic.