• 6 Posts
  • 12 Comments
Joined 4 years ago
cake
Cake day: June 1st, 2020

help-circle














  • 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);
    




  • NixOs so that I can keep my dev environments synchronized, very useful as I work hybrid hours.

    Atomic updates and rollbacks, and being able to mix release and unstable packages is also nice.

    Before that I used to have a dotfiles/config repo using dotdrop for arch/artix/void, but then realized I was just recreating a crappy version of NixOs/HomeManager.