g6d3np81 avatar

g6d3np81

@g6d3np81@kbin.social

Heyyyyyyyyyy

g6d3np81,
g6d3np81 avatar

I want to have separated accounts for different sets of project...
Signed up a second account... it got suspended instantly (after I log in with my main). According to ToS, I can't have more than one account.

Nuh uh, You aren't the only provider. Headed to Gitlab, no more bs.

g6d3np81,
g6d3np81 avatar

Believe it or not, some people opted for this method when trying to close their blizzard account. It's easier than jumping through hoops support thrown at you.

g6d3np81, (edited )
g6d3np81 avatar

Bun is designed as a drop-in replacement for Node.js. It natively implements hundreds of Node.js and Web APIs, including fs, path, Buffer and more.

The goal of Bun is to run most of the world's server-side JavaScript and provide tools to improve performance, reduce complexity, and multiply developer productivity.

If it can replace node and pnpm at the same time then this sounds quite good actually.

EDIT
https://bun.sh/guides/ecosystem/vite

While Vite currently works with Bun, it has not been heavily optimized, nor has Vite been adapted to use Bun's bundler, module resolver, or transpiler.

https://bun.sh/guides/ecosystem/nuxt

Bun supports Nuxt out of the box. Initialize a Nuxt app with official nuxi CLI.

g6d3np81,
g6d3np81 avatar

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

g6d3np81,
g6d3np81 avatar

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?

g6d3np81,
g6d3np81 avatar

Great explanation, thank you.

g6d3np81,
g6d3np81 avatar

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.

g6d3np81, (edited )
g6d3np81 avatar
Linux Windows Preparation
LUKS LUKS no can do / unless WSL
LUKS ??? cryptsetup
LUKS VeraCrypt ???
VeraCrypt VeraCrypt VeraCrypt GUI from either
??? BitLocker Format 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.

g6d3np81,
g6d3np81 avatar

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.

g6d3np81, (edited )
g6d3np81 avatar

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.

g6d3np81,
g6d3np81 avatar

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

First keyboard build! (slrpnk.net)

So, after some playing around trying to figure out a preferred physical layout, I decided a Hillside 46 splayed keyboard would be about right. Thanks to Leo at Beekeeb for answering all my questions before ordering and during the build! Surface mount soldering was tricky, but everything works on the first try! I finally can use...

g6d3np81,
g6d3np81 avatar

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.

g6d3np81,
g6d3np81 avatar

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.

g6d3np81, (edited )
g6d3np81 avatar

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, <li> 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;
    }
  • All
  • Subscribed
  • Moderated
  • Favorites
  • provamag3
  • rosin
  • mdbf
  • osvaldo12
  • ethstaker
  • tacticalgear
  • DreamBathrooms
  • thenastyranch
  • magazineikmin
  • modclub
  • Youngstown
  • everett
  • slotface
  • kavyap
  • JUstTest
  • GTA5RPClips
  • khanakhh
  • cisconetworking
  • tester
  • ngwrru68w68
  • normalnudes
  • Durango
  • InstantRegret
  • cubers
  • megavids
  • Leos
  • anitta
  • lostlight
  • All magazines