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/)JA
Posts
0
Comments
77
Joined
2 yr. ago
  • I have quite a different experience, can't tell if it is placebo or not, but my vr experience is slightly smoother in Arch Linux compared to my Windows 10.

    i play VR via Proton using ALVR (steamvr) or Wivrn

    But i havent tried playing Alyx on linux yet

  • it will still shows stuff in the library even if it failed to pick up the metadata.

    for jellyfin, folder structure is kinda important for auto detection to work.

    For shows, you can organises your files like this:

     undefined
        
    series-name-a/
        season-01/
            episode-01
            episode-02
    
      

    You can check out the doc, it is more detailed

  • Prettier doesn't make my markdown table prettier tho. This is what i did

    prompt

    Given the following markdown table

     undefined
        
    | input | output l
    | -- | -- |
    | 2.6 | 3 |
    | 2.5 | 2 |
    | 2.4 | 2 |
    | 1.6 | 2 |
    | 1.5 | 2 |
    | 1.4 | 1 |
    
      

    Align the vertical bar. Align number to the left

    output

    Here's the table with the vertical bars aligned and numbers left-aligned:

     undefined
        
    | input | output l |
    |-------|----------|
    | 2.6   | 3        |
    | 2.5   | 2        |
    | 2.4   | 2        |
    | 1.6   | 2        |
    | 1.5   | 2        |
    | 1.4   | 1        |
    
      

    Each column has been padded so that the vertical bars line up consistently, and the numbers are aligned to the left as requested.

  • FLOP abuses the LVP in a way that allows the attacker to run functions with the wrong argument—for instance, a memory pointer rather than an integer.

    is this a vulnerability in the software? So patching this won't require disabling speculative execution?

  • should be the same as pebble.

    It also uses an always-on transflective lcd display similar to pebble 2.

    after my pebble died, I have been exclusively buying smartwatches (amazfit etc) with these type of screen only.

    the display is slightly difference:

    features pebble time banglejs
    color 6 bit (64 color) 3 bit (8 color)
    resolution 144x168 176x176
    input method 4 buttons touchscreen + 1 button
  • Oh wow, I have always thought the y stands for "yes to any questions" turns out it has a --noconfirm

    Should have read the man page......

     undefined
        
    -y, --refresh
               Download a fresh copy of the master package databases (repo.db) from the server(s)
               defined in pacman.conf(5). This should typically be used each time you use
               --sysupgrade or -u. Passing two --refresh or -y flags will force a refresh of all
               package databases, even if they appear to be up-to-date.