Skip Navigation

Posts
60
Comments
152
Joined
5 yr. ago

eepy

Jump
  • This is called "art".
    This is the legacy and heritage of the West.
    This is what men of the West fight, sacrifice and die for.
    This is victory.
    #DeusVult

  • On gnome super+left click allows you to move windows, by default.
    You can also enable super+right click to resize with gnome tweaks. In my opinion this should be the default.

  • You need to write "spoiler" before the spoiler title.

     md
        
    ::: spoiler Game of thrones season 8 spoiler warning
    It fucking sucks
    :::
    
      

    Notice you don't see spoiler in the rendered version

  • Maybe you used bpytop, not btop? They look the same iirc.

  • What does the forbidden swastika mean? /s

  • I have been permanently scarred by this:

  • Reminds me of that video "why we need terrorism", let me find it...

  • This game has really strange performance, it's very light and runs great on potato computers. But a the same time it does not seem to make pull usage of your hardware. Anecdotally, performance got worse after I upgraded from a 6500 XT to a 6700 XT

  • pffff, Incel. Looks at the man's face, he FUCKS!

  • I'm the happiest past 9pm, guess I'll just give up then

  • They come factory-domesticated, no need to domesticate at home.

  •  css
        
    .users {
      id: int !primary-key;
      name: text;
    }
    
    .users::insert {
      id: 1;
      name: "John doe";
    }
    
    @query (max: 10) {
      .user {
        display: table;
      }
      .users id {
        display: none;
      }
    }
    
      
  •  sql
        
    CREATE TABLE display (
        id INT PRIMARY KEY,
        display_property TEXT
    );
    
    INSERT INTO display (id, display_property)
    VALUES
    (1, 'block'),
    (2, 'inline-block'),
    (3, 'flex');
    
    CREATE TABLE divs (
        id INT PRIMARY KEY,
        inner_html TEXT,
        display INT REFERENCES display(id)
    );
    
    INSERT INTO divs (id, inner_html , display)
    VALUES
    (1, 'div1', 1),
    (2, 'div2', 2),
    (3, 'div3', 3);
    
      
  • ~/go is created when compiling go programs, you can change it's location with the GOPATH environment variable to something like GOPATH=$HOME/.local/go, and moving the directory there.

    Never seen ~/perl5, could you provide the output of perl -V