Skip Navigation

Posts
194
Comments
1697
Joined
3 yr. ago

All of this user's content is licensed under CC BY 4.0.

  • […] Federation ensures that articles get mirrored across many servers […]

    IIUC, articles only mirror between two instances A, and B once they've been manually discovered, right? By "discover" I mean copying the URL to one article on an instance A [1], and searching that URL on an instance B [1] for said article on A to be mirrored on B.

    1. Type: Meta. Accessed: 2026-04-25T06:24Z.
    2. Type: Article. Title: "Test Article". Publisher: "open.ibis.wiki". Accessed: 2026-04-25T06:17Z. URI: https://open.ibis.wiki/article/Test_Article. Published: 2026-04-24T05:57:54Z.
    3. Type: Meta. Accessed: 2026-04-25T06:24Z
      • For example, ibis.wiki has a search field [4], and you can search the link to an article [1][5].
    4. Type: Screenshot. Accessed: 2026-04-25T06:22Z.

    5. Type. Meta Accessed: 2026-04-25T06:24Z.
      • Pasting the link to an article [1] in the search field on ibis.wiki [3] yields the article pointed to by the link [1]:
  • Really cool cover art.

  • No Lawns @slrpnk.net

    "We replaced this pointless grass island with native WILDFLOWERS!" by Andrew the Arborist

  • 196 @lemmy.blahaj.zone

    Ada is her own rule

  • FreeCAD @lemmy.ml

    FreeCAD 1.1 is released!

  • Trans Memes @lemmy.blahaj.zone

    antiboyotics

  • IIUC, their solution is to run a script every time one wants to launch a game with the desired controller calibration [1]; this does not feel ideal to me.

    1. Type: Comment. Author: "mcarans". Publisher: [Type: Post. Title: "How do I calibrate my game controller in KDE 6?". Author: "mcarans". Publisher: ["help"<"KDE Discuss"]. Published: 2025-06-29T01:22. URI: https://discuss.kde.org/t/how-do-i-calibrate-my-game-controller-in-kde-6/36299.] Accessed: 2026-03-26T02:47Z. Published: 2025-07-01T18:36. URI: https://discuss.kde.org/t/how-do-i-calibrate-my-game-controller-in-kde-6/36299/8.
  • What tool do you use to accomplish that?

  • […] I love your use of references.

    Thank you! 😘

  • […] you can use Steam’s controller settings to expand the dead zones. […]

    I tried this, but I can't get it to work: to use steam's deadzone control, I need to enable Steam Input [2], but when I do that, my controller no longer works in games [1].

    1. Type: Anecdote.
    2. Type: Post. Title: "PSA: Valve added deadzones to every Steam Input controller with a Client update and it's messing up racing/fps games. Here's how to fix.". Author: "ManlySyrup". Published: 2024-05-18T20:15:35.382Z. Accessed: 2026-03-25T00:31Z. URI: https://www.reddit.com/r/Steam/comments/1cv67af/psa_valve_added_deadzones_to_every_steam_input/. Publisher: ["r/Steam"<"Reddit"].
  • […] Make sure the kcm-joystick package is installed for KDE.

    On Arch Linux [1], that package doesn't appear to exist [2].

    1. Type: Comment. Author: "Kalcifer" ("@Kalcifer@sh.itjust.works"). Publisher: [Type: Post. Title: "How do you calibrate controller deadzones?". Author: "Kalcifer" ("@Kalcifer@sh.itjust.works"). Published: 2026-03-24T23:22:09Z. URI: https://sh.itjust.works/post/57363826. Publisher: ["Linux Gaming" ("!linux_gaming@lemmy.world")<"sh.itjust.works"<"Lemmy"]]. Published: 2026-03-25T00:13:17Z. URI: https://sh.itjust.works/post/57363826/24475751.
    2. Type: Webpage. Title: "Package Search". Publisher: "Arch Linux". Accessed: 2026-03-25T00:19Z. URI: https://archlinux.org/packages/?sort=&q=kcm-joystick&maintainer=&flagged=.
  • What distro are you on? […]

    Arch Linux [1].

    1. Type: Anecdote. Accessed: 2026-03-26T00:33Z.
  • Linux Gaming @lemmy.world

    How do you calibrate controller deadzones?

  • […] I haven’t found many editors with typst support unfortunately

    I'm not sure what you mean — I personally just write it in VS Code [1], and then compile it locally [2].

    1. Type: Website. Title: "Visual Studio Code". Publisher: "Visual Studio Code". Accessed: 2026-03-19T08:56Z. Location (URI): https://code.visualstudio.com/.
    2. Type: Webpage. Title: "typst/typst". Publisher: "GitHub". Published (Modified): 2026-03-18T10:04:07.000Z. Accessed: 2026-03-19T08:59Z. Location (URI): https://github.com/typst/typst.
  • […] I’ve definitely had my fair share of experiences wrestling with Typst to do things that are trivial in LaTeX […]

    Could you share some of these experiences? 🙂

  • […] [Typst] still has not reached feature parity with LaTeX […]

    What, in your opinion, do you think it's still lacking?

  • […] LaTeX ignores whitespace, so you can just use a formatter to space out your code and ensure the curly braces. This is not even an option in typst, which uses the space as an escape character.

    I'm not sure I exactly follow what you mean. Could you elaborate?

  • Update (2026-03-20T00:37Z): @Meron35@lemmy.world, it has since been found that Typst is aware of this inconsistency [7].


    […] You can see how this would start to struggle even with high school level maths, with bracketed terms and possibly fractional terms in exponents, integrals, etc.

    For example, it is very difficult for me to work out the difference between the following three in typst. That is specifically not what you want from a typesetting language.

     
        
    1/2(x + y)
    1/x(x + y)
    1/2^x(x + y)
     
    
      

    […]

    I think these are valid complaints. For clarity, this is the output that I found for each:

    1. [1]
    2. [2]
    3. [3]

    I was surprised by the second; I expected it to produce

    [6]. I didn't know what to expect for the third.

    I tried searching through the documentation [4], but I was unable to find any information that exactly defined expressions [5], and how they are grouped within the fraction when juxtaposed like in your examples.

    1. Type: Anecdote. Published: 2026-03-19T07:20Z.
      •  bash
            
        echo "#set page(width: auto, height: auto, margin: 0pt); $ 1/2(x + y) $" | typst compile - o.png
        
          
    2. Type: Anecdote. Published: 2026-03-19T07:20Z.
      •  bash
            
        echo "#set page(width: auto, height: auto, margin: 0pt); $ 1/x(x + y) $" | typst compile - o.png
        
          
    3. Type: Anecdote. Published: 2026-03-19T07:20Z.
      •  bash
            
        echo "#set page(width: auto, height: auto, margin: 0pt); $ 1/2^x(x + y) $" | typst compile - o.png
        
          
    4. Type: Webpage. Title: "typst Documentation". Publisher: "Typst". Accessed: 2026-03-19T07:25Z. URI: https://typst.app/docs/.
    5. Type: Text. Publisher: [Type: Webpage. Publisher: "Typst". Title: "frac". URI: https://typst.app/docs/reference/math/frac/.]. Accessed: 2026-03-19T07:26Z. Location: §"Syntax".
      • […] Use a slash to turn neighbouring expressions into a fraction. […]

        • The quote mentions that the components within the fraction are called expressions.
    6. Type: Anecdote. Published: 2026-03-19T07:39Z.
      •  bash
            
        echo "#set page(width: auto, height: auto, margin: 0pt); $ 1/x (x + y) $" | typst compile - o.png
        
          
    7. Type: Comment. Author: "laurmaedje". Publisher: [Type: Post. Title: "Inconsistencies/ambiguities with expression grouping with fractions." ("#8002"). Author: "K4LCIFER". Publisher: ["Github">"typst/typst"]. Published: 2026-03-19T07:07:44.000Z. Location (URI): https://github.com/typst/typst/issues/8002#issue-4099792220.]. Published: 2026-03-19T14:41:47.000Z. Accessed: 2026-03-29T00:45Z. Location (URI): https://github.com/typst/typst/issues/8002#issuecomment-4090630691.
  • […] \frac{n(n+1)}{2} in latex turns into (n(n + 1)) / 2 in typst […]

    Note that one can also write that as frac(n(n+1), 2) [1][4].

    1. Type: Webpage. Title: “frac”. Publisher: “Typst”. Location: “Documentation”>“Reference”>“Math”>“Fraction”. Location (URI): https://typst.app/docs/reference/math/frac/. Accessed: 2026-03-18T05:34Z.
    2. Type: Anecdote. Published: 2026-03-19T07:51Z.
      •  bash
            
        echo "#set page(width: auto, height: auto, margin: 0pt); $ (n(n + 1)) / 2 $" | typst compile - o.png
        
          
    3. Type: Anecdote. Published: 2026-03-19T07:51Z.
      •  bash
            
        echo "#set page(width: auto, height: auto, margin: 0pt); $ frac(n(n+1), 2) $" | typst compile - o.png
        
          
    4. Type: Meta. Published: 2026-03-19T07:53Z.
      • Both (n(n + 1)) / 2, and frac(n(n+1), 2) result in
        in Typst [2][3]
  • […] For example, \frac{n(n+1)}{2} in latex turns into (n(n + 1)) / 2 in typst. The typst code is incredibly unclear - the first set of brackets with the slash together actually form the fraction operator, so neither end up visible. […]

    IMO, it's only unclear if one isn't familiar with the syntax — I think the documentation states the behaviour clearly:

    […] Multiple atoms can be grouped into a single expression using round grouping parentheses. Such parentheses are removed from the output, but you can nest multiple to force them. [1]

    This isn't in defense of Typist's syntax, but I challenge you to show the uninitiated your example LaTeX expression, \frac{n(n+1)}{2}, and see if they are able to accurately parse it.

    1. Type: Text. Publisher: [Type: Webpage. Title: "frac". Publisher: "Typst". Location: "Documentation">"Reference">"Math">"Fraction". Location (URI): https://typst.app/docs/reference/math/frac/.]. Accessed: 2026-03-18T05:34Z. Location: §"Syntax".
  • […] use markdown with a typst backend

    How could one do that?

  • Open Source @lemmy.ml

    Typst: "as powerful as LaTeX while being much easier to learn and use"

    github.com /typst/typst
  • test @lemmy.ml

    Image URL test for Thunder

  • Art Share🎨 @lemmy.world

    On, Ward.

  • Linux @programming.dev

    ULLI: A USB-less Linux Installer

    github.com /rltvty2/ulli
  • British Columbia @lemmy.ca

    "Meteor visible, booms heard across B.C.’s South Coast"

    globalnews.ca /news/11715942/meteor-bc-flash-boom-vancouver/
  • 196 @lemmy.blahaj.zone

    "Sinks-ty Percent Off" by Pafbar

  • Games @lemmy.world

    "I made a website to revive dead multiplayer games (GameDate)" by batty

  • Lemmy Be Wholesome @lemmy.world

    "Rescued Wingless Bumblebee Can't Stop Having Zoomies | The Dodo" by The Dodo

  • 196 @lemmy.blahaj.zone

    Chinese Rule Slang

  • Quotes @lemmy.ca

    "There is nothing noble in being superior to your fellow man; true nobility is being superior to your former self."

  • Quotes @lemmy.ca

    "If you don't know what to do, try to do something good."

  • Antiwork @lemmy.world

    This was found in a job application form