Skip Navigation

Posts
15
Comments
50
Joined
2 yr. ago

  • Have not read the novel. I was confused the whole time watching S01.
    Our man told bullshit story to his first recruit and now those bullshits are actually true??? Is it mentioned in the novel if the cult exist before or the bullshit itself created the cult? Or it will be reveal later?

  • By 'repeat' you mean continue from last save, right?
    Right?

  • I try not to mess with my my current windows desktop setup too much if I don't have to (mission critical). It's not on VM.
    Would love to do it with LUKS/EXT4 if possible but it's not supported on windows (am I correct?)

    If I use VC then I have to install it on both win and linux and also any additional machine I intend to decrypt with, that's quite unwieldy compare to LUKS. I also have lobotomized my current install to cripple spying and broke it to the point it can not update to support wsl.

    Seems like bitlocker is a proper solution for the moment. Or just do two partitions (maybe two drives), encrypt one with LUKS, wipe everything unencrypted when done using it.

  • LinuxWindowsPreparation
    LUKSLUKSno can do / unless WSL
    LUKS???cryptsetup
    LUKSVeraCrypt???
    VeraCryptVeraCryptVeraCrypt GUI from either
    ???BitLockerFormat with NTFS in Windows

    I'm still a bit confused with veracrypt... The docs make it sounds like vc use its own format.
    Can the drive be prepared with LUKS and then decrypt in windows with veracrypt? If not, I might just use bitlocker until I drop windows.

  • That, I didn't think of. Still... I will eventually have to do it the linux way, might as well learn and familiarize with it now.

    Forgot to mention that it will be quite a while before I can drop windows completely but for sure I'm not upgrading or doing another windows install.

  • I see. I might have done things in similar way without realizing what it is by just focusing on decoupling and reusability.

  • BEM is are methodology about atomic code design, it gives you a standards and guides how to simplify code maintaining.

    Isn't this also what Tailwind, UNOCSS and the likes about?
    Sounds like he have a problem where working in project using BEM, different team use it in different way (which I think as what to expect). And when components are involved, is CSS convention really the focus here?

    edit: ok, I think I finally got your point...
    How does BEM differ from OOCSS, AMCSS, SMACSS, SUITCSS?
    Well... this thing feels like frontend framework with extra step.

  • trying to figure out a preferred physical layout

    How to even do this? I can't wrap my head around what or how many to consider.
    Use to work a lot with graphic tablet and belkin n52 (later nostromo) and wanted something that combine functional keyboard and left-handed pad. Got ErgodoxEZ few years ago... now I vaguely know that I want something smaller and more portable (maybe wireless and scroll wheel)... but layout? Absolutely no idea.

  • Generally you don't need anything for child element, except in rare case, which you have seen before a fix...
    Columns usually try to balance every columns to have same height, and last column have least items.

    EDIT: In your case, \ having a margin-top, which got clipped when new column starts. I don't know if there is a fix for this but I would use padding instead.

    CSS is chaotic, dude.

     
        
    ul {
      /* reset */
      margin: 0;
      padding: 16px;
    
      columns: 2;
      /* box-sizing: border-box; */
    }
      @media screen and (min-width: 640px) {
        ul {
          columns: 3;
        }
      }
      @media screen and (min-width: 960px) {
        ul {
          columns: 4;
        }
      }
    
      ul li {
        list-style-type: none;
        padding: 2px 16px 2px 4px;
        font-size: 120%;
    
        display: flex;
        break-inside: avoid;
      }
      ul li a {
        /* display: inline-block; */
        background-color: #35516c;
        color: #d2dade;
        text-decoration: none;
        padding: 2px 8px;
        border: solid 1px #d2dade;
    
        flex-grow: 0;
      }
        ul li a:first-child {
          flex-grow: 1;
          /* width: 106px; */
          /* margin-right: -3px; */
        }
        ul li a:hover {
          background-color: #1e445d;
          color: #fff;
          border: solid 1px #fff;
        }
    
    
      
  • This is kinda sad. I was hoping someone will give you working solution eventually but nope.

    I saw both of your posts. People really overthink this. It's not flex, it's not grid... you need columns.
    Straight up columns, not flex column not grid column.

    columns - CSS: Cascading Style Sheets | MDN

    Sure you can do it with flex or grid, but you need to do some unnecessary trickery on it.
    Flex and grid won't wrap column unless you specified it to somehow, parent element will just grow to accommodate any amount of child elements and keep them in one column.