Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)D
Posts
12
Comments
240
Joined
3 yr. ago

  • To tune auto-fill-mode (and manual fill invocation with M-q etc) you can set the fill-column variable. You can set it globally, per-mode (using mode hooks) or even per-buffer (manually or using file-local variables).

    When thinking about line breaks in Emacs it's important to consider if you want visual line breaks that only affect display or actual line breaks that also appear in the file as newline characters.

  • edit: I missed that it's LSP messages. Assuming eglot you can get them in a buffer using M-x flymake-show-buffer-diagnostics

    original:

    I don't use Doom specifically in general you'd do this by switching to the *Messages* buffer and copy the relevant lines from there as usual.

    If you really wanted a command for it you could do something like this:

     
        
    (defun my-copy-last-messages (n)
      (interactive "p")
      (with-current-buffer "*Messages*"
        (copy-region-as-kill
         (line-beginning-position
          (- 1 n))
         (point-max))))
    
      

    This assumes that the cursors is at the end of the Messages buffer as usual. Not sure if that line positioning is correct, only tested it briefly.

  • For lane battlers where you mix sub-decks my favorite is Riftforce, especially once you add the expansion to increase the number of available factions. The factions are drafted and each player ends up with 4 factions. Cards from a given faction share the same power but have different strengths. This gives a good variety of abilities but since there are only 8 in a given game they are still easy to keep track of and plan for.

    Tyrants of the Underdark, is a bit different but I like it a lot: a river-market style deckbuilder where the market deck is a mix of two themed decks. The current edition comes with 6 factions.

    If you are open to coop/solo then Marvel Champions is somewhere halfway into this direction. Each hero comes with a small preset deck and you then customize this by picking cards from exactly one of the four aspects (factions) available in the game.

  • Picked up Yoku's Island Express during the sale. A unique 2D platformer/exploration game that seamlessly incorporates pinball mechanics. The world feels big with a lot of variety. The pinball stuff is fun and works better than I though it would. Great production. Very happy with the value so far.

    Another new one to me is Downwell. This is a neat little game and it's good at what it does but can't help feeling that it could have been a lot more if it had more items that combined in fun ways. It was very inexpensive so I am happy with this one too and will keep it in the rotation, especially for short play sessions.

    And of course more Isaac, my most played on the deck by far.

  • I thought that they would come to their senses after the CrowdStrike fiasco.

  • DuckDuckGo @lemmy.world

    LLM usage limit

  • To help narrow it down I'd try streaming a low-end game that runs very well locally and doesn't tax the system. If this doesn't stream well either that would suggest that it's something specific to the streaming setup, perhaps a networking issue.

  • The most important thing is to just recording the data. The exact formatting doesn't matter too much as long as it's consistent. That way you can always massage it to whatever you come up with later.

  • (the first batman game)

    Sorry to nitpick but there were several Batman games before that. The first one that I know of was Batman (1986), an isometric exploration game on 8-bit micros. It's a very good game for its time and the engine later evolved into Head Over Heels (1987) which uses a different theme.

  • Laser Squad (1988) was among my favourites growing up, they are the precursor to UFO/XCOM (the original from 1993).

    I will add Rebelstar (1986) on the ZX Spectrum, the granddaddy of them all. Technically there was Rebelstar Raiders beforehand but that version didn't have a computer opponent. I feel that Rebelstar is where the design elements that defined the later games came together.

  • Great list! I will add Wildfrost and LONESTAR on the roguelite, "there's gotta be a way to survive this turn, if only I could figure it out" side. Wildfrost is at the historical low, LONESTAR is not quite but close.

  • That's crazy, I almost always have my screen locked into portrait, I would have never found that feature!

  • It's fun to try to make it recognize your own sounds as a bird. I was able to get an 82% as an Eurasian Collared Dove. I feel like one of the flock now.

  • Yeah, the ability to use the bluetooth or android auto forward/backward jump buttons to skip a few seconds instead of entire tracks makes AntennaPod nice for audiobooks or other long form audio.

  • Here is mine: In AntennaPod you can add a local folder as a "podcast".

    This is a great way to add audio files from other sources to your pod listening schedule. Files copied from your computer, drm-free audiobooks, audio tracks extracted using NewPipe etc.

    It is also possible to have the files deleted when you are done playing them.

  • F-Droid @lemmy.ml

    F-Droid TIL thread: What's your favorite obscure feature in an F-Droid app?

  • Yep, I think in those situations it's best to write in a language you are comfortable with and let the reader use the tools of their choice to figure it out. That way if their first try gives them garbage they can use other methods to figure it out.

    I have yet to see a machine translator whose output I'd trust to send out as my own.

  • There is a PR to allow the use of the translation engine by other apps. Once this lands I would love to see Fedilab have this as an option for its inline translations as an alternative to external services.

  • I only played A Feast for Odin extensively but I disagree on that one: our playtimes are much closer to the 90-120 minutes on the box than the 3-5 hours claimed by the article. I don't think that we ever had a game go over 3 hours. Once everybody is comfortable with the basics and at least one player knows the rules well enough to quickly clear up any details the game flows very smoothly for us. The number of meeples is not a problem at all, the article neglects to mention that most worker placement spaces require multiple meeples so the 5-12 you get per turn are gone after a few actions.

  • I don't have a VM based setup but on my aging laptop:

    • Indenting a single line in a buffer with ~5K lines of code is instantaneous
    • Indenting the entire 5K line buffer using C-x h C-M-\ varies depending on the language and mode used. For elisp or fennel it's instantaneous, for Go it's about 1.5 second.
    • A slow case I've found was indenting a C or Go buffer where every line needed to be touched, this was about 7 seconds which is admittedly slower than I thought it would be
    • Indenting such a file while in c-ts-mode (so with tree-sitter enabled) is about 1s.
    • Same but using LSP and M-x eglot-format-buffer is instantaneous if a small number of fixes are required or about 1s if every line needs to be touched.
  • I appreciate your frustration but several times slower is not normal, something is broken in the environment or setup. I've been using Emacs for decades and I would never put up with any kind of slowdown, not to mention several times slower. Yikes.

    To make sure that I am not just talking out of my ass I ran elisp-benchmarks between emacs-28 from about 4 years ago and emacs-30. Every benchmark was either faster or unchanged with emacs-30 and overall it was almost twice as fast as emacs-28. Many of these benchmarks are compute heavy but the more interactive ones like elb-scroll and elb-smie were faster too.

  • Arch Linux @lemmy.ml

    Experience with sdl2-compat?

  • Heroes of the Storm @lemmy.ml

    Unexpected HOTS in a Clojure talk

  • Linux Gaming @lemmy.world

    A new tool to forward evdev input events between Linux hosts

    codeberg.org /imarko/evfwd
  • 90s Music @lemmy.world

    Zombie Nation - Kernkraft 400 (1999)

  • Carcassonne @feddit.de

    Carcassonne bot over at Mastodon

    mastodon.social /@CTD/111453267772315706
  • Disney Lorcana TCG @lemmy.world

    Sell me on Lorcana

  • Twitter @lemmy.world

    DOJ To Court: Here Are The Many, Many Reasons Why The FTC Can & Should Be Investigating Elon Musk’s Handling Of User Data

    www.techdirt.com /2023/09/12/doj-to-court-here-are-the-many-many-reasons-why-the-ftc-can-should-be-investigating-elon-musks-handling-of-user-data/
  • Reddit @lemmy.world

    We're all living on r/MadeMeSmile's Internet Now

    www.garbageday.email /p/were-all-living-on-rmademesmiles
  • Science Fiction & Fantasy literature @lemmy.world

    Favorite printsf podcasts?

  • Reddit @lemmy.world

    the replacement mod search for r/thingsforants is going great!