theit8514

joined 2 years ago
[–] theit8514@lemmy.world 5 points 5 days ago

You do if your org's Bitwarden goes down because "organization suspended". Welcome to my Sunday.

[–] theit8514@lemmy.world 4 points 1 week ago

The rng mechanics are definitely frustrating for some but the game is way deeper. Getting to 46 rolls the credits but you are left with so many unanswered questions. Some people stop there and feel satisfied, but others are curious about the world.

My thoughts are to try to push through the initial frustration with rng on the drafting side. You'll eventually find that there are Roguelite mechanics to help you along, and it will feel less rng-dependent.

[–] theit8514@lemmy.world 1 points 2 weeks ago

This would depend on whether the limit is defined as ingress or egress or both. For example AWS has free ingress traffic from the internet but there is a cost for egress traffic to the internet.

A better solution would be to find a unmetered service, which means that you have a fixed transfer speed (e.g. 500 Mbit) but have unlimited bandwidth. OVH offers this in their VPS products.

[–] theit8514@lemmy.world 2 points 1 month ago* (last edited 1 month ago) (1 children)

Not OP but this is how I learned it and how it's presented in the help file.

$ help while
while: while COMMANDS; do COMMANDS-2; done

$ help if
if: if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi
[–] theit8514@lemmy.world 14 points 1 month ago (1 children)

Using a normal Google account it has a bunch of checkmarks on https://gemini.google.com/u/1/apps but this is not available on my Workspace account.

[–] theit8514@lemmy.world 1 points 1 month ago (1 children)

I bought it personally but I would hardly call it expensive. The three year license is like ~67 USD a year for both CRT and FX.

I love it mainly because it's multi-platform but I wish it had more features. They boast their great integration with VShell but it would be much better if they just had better support for OpenSSH, like being able to push ssh keys to a host.

[–] theit8514@lemmy.world 23 points 1 month ago

Best news I've heard all day.

[–] theit8514@lemmy.world 15 points 1 month ago (3 children)

The fiber we use at our datacenter is quite flexible but still gets damaged if you bend it too far. To roll it like they describe you would still want to have a fairly large drum (probably like 3-4 inches in diameter) which would make it pretty bulky for a small drone.

[–] theit8514@lemmy.world 7 points 3 months ago (1 children)

Since Stargate is my go-to scifi I'm kinda offended at the "doesn't take itself too seriously". Sure it's not as hard on the science as The Expanse (you know, except for the magic portals to other stars), but it feels like it takes itself pretty seriously. There are obvious bottle episodes that were probably written for other shows and shoe-horned in because they were cheap to buy and produce.

For #2, I think this would get pretty old pretty fast, not to mention that they have to fit everything into runtime constraints. Every new planet the team spends months researching the new language. Sure, you could handwave it (we found a Goa'uld translator just laying around), but that would be back to just one language. Since the Stargate presents an instant transportation rather than the days/months/years of starship travel it would make sense that languages stay fairly consistent as people move from planet to planet.

For #3, they pretty much handwave this in SG-1 as the majority of planets in the Milky Way were repopulated by the ancients in their image, and others were transferred from Earth.

[–] theit8514@lemmy.world 18 points 3 months ago (9 children)

NoSQL is best used as a key-value storage, where the value can be non-tabular or mixed data. As an example, imaging you have a session cookie value identifying a user. That user might have many different groups, roles, claims, etc. If you wanted to store that data in a RDBMS you would likely need a table for every 1-to-many data point (Session -> SessionRole, Session -> SessionGroup, etc). In NoSQL this would be represented as a single key with a json object that could looks quite different from other Session json objects. If you then need to delete that session it's a single key delete, where in the RDBMS you would have to make sure that delete chained to the downstream tables.

This type of key-value lookups are often very fast and used as a caching layer for complex data calculations as well.

The big downside to this is indexing and querying the data not by the primary key. It would be hard to find all users in a specific group as you would need to scan each key-value. It looks like NoSQL has some indexing capabilities now but when I first used it it did not.

[–] theit8514@lemmy.world 3 points 4 months ago (2 children)

Sadly, most of the ones I've found are too complicated, and getting all devices to accept the CA is more hassle than it's worth for self hosting. I've given up and just buy my wildcard cert for 60$/yr and just put it on everything.

[–] theit8514@lemmy.world 12 points 4 months ago

exFAT is an extension of the FAT32 filesystem that allows for larger drive sizes and file sizes and is mostly used on SD cards. Despite the name similarities it has nothing to do with the ext filesystem, and won't support the same features as it (such as symlinks).

view more: next ›