asklemmy

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

10DollarBanana, in What movie did you rewatch most often?
@10DollarBanana@lemmy.world avatar

The Fifth Element

Crankpork, in What do you use Vaseline for?

It’s good to put around your eyebrows when you’re tinting them, so you don’t stain the skin or any invisible hair.

Also good for putting on nail polish, for similar reasons.

Platomus, (edited ) in What is the most unhelpful advice you have received?

When I was a teen I worked as a waiter at a dirty smokehouse/bbq place.

One of the kitchen staff there would make sexual comments about me. Say things like “You’re lucky you look good because you’re so stupid.” And would ask what kind of underwear I was wearing.

I told my parents about it, and the advice they gave me was “Deal with it. You need a job.”

Within a month that kitchen staff member had started to grab me and sexually assaulted me.

I don’t talk to my parents anymore.

axolittl,

Your parents are awful. You deserve so much better.

mathemachristian,

“Deal with it. You need a job.”

WTAF? How can someone be so blase about their child being sexually harrassed?

kia, in During travel, what can I prepare beforehand as meal, which can be eaten without access to fire or microwave?

Will you be able to poop during the duration of the trip?

Imactuallyanandroid,

I understood the reference

Sam_uk, in Any Nostr ppl here?
@Sam_uk@kbin.social avatar

@JoeClu I think the protocol gets a lot right. It's just a shame all the users are alt-right.

Sam_uk,
@Sam_uk@kbin.social avatar

Reminds me of this essay https://nexus.blacksky.network/zine/00000001/confederal-protocols I think Nostr get's much of that right.

@JoeClu

plisken,

Thanks, this is exactly what I’ve been thinking about as I’ve become more familiar with Fediverse protocols and applications.

KaiReeve, in Which is the most satisfying IO connector system, in your opinion?

I’m glad that most of the older formats are gone. Screws are cumbersome, USB formats were intentionally varied for profit, and molex would break itself before you could seat it properly.

I love USB-C for its universality and SATA cables are a nice alternative to the old IDE. I wish they’d come up with a better solution to the plastic clips on my Ethernet and PSU cables.

As for my favorite… Maybe 3.5mm? I mean, it’s old as dirt but still super functional. Nice chunky clicks and usually a solid connection. I miss having a 3.5mm port on my phone. It obviously has some drawbacks, but it’s a solid contender.

Dubious_Fart,

Thumb screws are great for a secure connection that holds up, and can be undone at any time, and takes the stress away from the port itself, since the screws support the stress, so you cant screw up the port by accidentally yanking the cable out like you can with HDMI.

USB variants? You mean mini and micro? That was so products could be made smaller and smaller, cause no one wanted a phone that had a USB B slot on it, making the phone an inch thick.

Everyone has different experiences, but in all my years of PC building and repairs, I only ever had 1 problem with a molex connector, and it was cause the pins had corroded together (PC had water damage, was seeing if anything was salvageable.)

3.5mm its old as dirt and functional, but its also flimsy. a bad bump and you can break the connections inside it without breaking it externally… Which is what happened to my last pair of headphones…thankfully they had a replaceable cable.

USB-C is a major pain in the ass. You pick up a random USB-C cable. Okay… is it a charging cable, or does it have data? is it Slow speed or high speed? Does it support thunderbolt? Who knows! Hope you label them and keep them properly separated!

Kelsenellenelvial,

USB-A, USB-B, USB-B Superspeed, mini-USB, micro-USB, micro-USB-Super Speed. Some of those also presented the issue of not having a simple visual indication of whether it was USB 1, 2, or 3. At least with USB-C, the cables should all work, even if you get slower speeds, whereas a USB-B-3 connector wouldn’t fit a USB-B-2 port at all.

The solution to the USB-C mystery cable is to just get a pile of Thunderbolt cables and then you can be sure it’ll handle whatever the attached devices do.

plisken, in Any Nostr ppl here?

I don’t know about the community. But from a protocol standpoint I think Nostr might actually be technically better.

At a high level, ActivityPub (and it’s implementations) imply there are many servers and to operate in a federated way, each server needs bidirectional communication. This is results in a exponential increase in traffic between servers and storage requirements. There’s also no requirements to identity so it’s up to implementations and currently that leads to many duplicate accounts.

Whereas, at a high level Nostr is a client and relay system. Your identity is constructed by public/private cryptographic keys (instead of as fractured identities registered on various different servers).

This is similar to email cryptographic signatures and also most blockchain implementations. Then content/posts are sent out to any number of message relays. Consumers of the content/posts do a map-reduce query against multiple relays to find content.

The benefits here is that if the relays go down, your identity is still safe as it’s manifested by your keys. This also means that there’s slightly less incentive for big centralized server dominance. Another benefit is that you don’t need bidirectional communication across all (most) relays thus reducing traffic and storage costs as the system scales.

With all that said. I have no idea what Nostr looks like in practice or what the community health looks like. Or what community moderation tools exist. But from a theoretical standpoint it’s a much more scalable architecture.

Sam_uk,
@Sam_uk@kbin.social avatar

@plisken Technically I like all this stuff.

These are not my people though, it's all shitcoin hype in the feed https://www.youtube.com/watch?v=aA-jiiepOrE&t=6s

@JoeClu

JoeClu,
@JoeClu@lemmy.world avatar

Good info thanks. I was looking for a technical answer but seem to be getting a few political polarized responses instead. I’d no idea.

Anyway, I’ll have to look up what a “map-reduce query” is. :)

Do you think there’s potential for a large, popular, and fast relay to become a sort of gatekeeper, with big centralized dominance? Like if Meta setup thousands of fast relays everywhere and started injecting advertisement attachments to user messages? Or collect info on each key so they can eventually ID and track you? Even if the user message are E2E encrypted, a relay could probably still attach an advertisement payload into the message somehow, no?

I really don’t know what I’m talking about. Just chatting really.

plisken,

MapReduce is term pertaining to a software data retrieval architecture/process (also known as divide-and-conquer). The simple version is that instead of asking one super big database that knows “everything” you ask multiple smaller databases the same question i.e. “what all posts do you have from bob@domain.com?” (this is “mapping” a query to mutliple sources) and each database returns 0 or more results, then the query interface joins the results together (“reduce”) to a single response. This is common in “big data” because you can more efficiently optimize the query by parallelizing it across many machines/workers/nodes. There are additional optimizations that can be implemented such as caching common queries or data-sharding (items a-f on node 1, items g - k on node 2…).

I don’t think Nostr protocol is immune to the development of big centralized popular instances. Especially if something like Threads integrates and becomes the “default” client with millions of users over night. Users, in general, will always gravitate towards content and community. But, I think Nostr has a slight edge over ActivityPub in handling that problem by the user having no direct dependence on any one particular host.

I’ll have to read more into the Nostr protocol specifically as it pertains to privacy, tracking and content injection (ads).

I’m by no means an authority on ActivityPub nor Nostr, I apologize if that may have been surmised. I too am just chatting.

ANuStart, in What do you use Vaseline for?

I play chess with it

Blunon, in What series did you rewatch most often?

For me it’s Avatar the last airbender I just love how wholesome it is xD

ItsMeForRealNow,

That is a great series. The series finale is something I watch so many times.

AlternateRoute, in Which is the most satisfying IO connector system, in your opinion?

Most RJ-45 connectors (without a boot on them)… The connector only fits one way, the orientation is clear on both ends while holding, looking or even by feel if you have to do it blind and it locks into place easily. Only issue is how fragile the clocking part is, which boots are supposed to help protect but make more difficult to use.

I like reversible connectors like lighting and USB-C but I find them too small and fragile in general and they are not very satisfying to connect.

I have a special hate for connectors that are HARD to blind connect or even tell at a distance like USB-A, HDMI and Displayport which are ether rectangles or slightly not rectangles that are close enough that is hard to tell in the dark behind a device.

I have a strong dislike for connectors with thumb screws, but like locking connectors like Centronics or as noted RJ11 or RJ45.

bluemellophone,

Terminating RJ-45 takes about 2 minutes if you damage the connector, and takes novice techies about an hour to get it down quick. You can’t say that about USB-C.

funnyletter,

I love USB-C in a lot of ways but I also have two different projects that are sitting and waiting for me to solder in the USB C connectors, because JESUS H CHRIST. Those things were not built to be attached by human hands.

chahk, (edited )

This guy plugs!

Seriously though. Those damn boots on RJ-45 cables are the bane of my homelab. Sure they protect the needlessly fragile prong on the connector, but have you tried unplugging a single cable from a full switch? I have to leave a pair of pliers next to mine for that. To hell with that! I’ll take SFP over RJ45 any day!

Special “Fuck You” to whoever invented micro-HDMI. Difficult to plug in, super easy to destroy. And for what? It’s not that much smaller that full-size HDMI. I had to send in one (out of warranty) mirrorless camera for service because on that, and it was super expensive.

bluGill, in What do you use Vaseline for?

When I have a squeaky hinge I put some petroleum jelly on the pin and the problem is cured.

ArugulaZ, in What do you use Vaseline for?
@ArugulaZ@kbin.social avatar

Yes. And I'll take no further questions on the subject.

SomeoneElse, in What is the worst thing you have experienced on Reddit?

There was a kid, maybe 14 or 15 who complained about his mum and sister in r/parentsarefuckingstupid or a similar sub. He didn’t mention being autistic in the post but it was pretty clear - it was his behaviour and response which was inappropriate, not his mum’s. Having grown up with an autistic brother his reaction was very familiar to me. I tried to give him some tips to help him avoid conflict and smooth the situation over - “apologise even if you don’t mean it right now, it’s the easiest way of getting your game back tonight. In future don’t raise your voice to your sister even if she’s shouting. Remove yourself to your bedroom to calm down. Ask to speak to your mum alone to explain your side of the argument. Etc” pretty benign advice that wasn’t judgemental or insulting in anyway. I put a decent amount of time into writing my response in a way that was constructive and helpful from his perspective. I felt pretty good about myself afterwards, like I’d done my good deed for the day.

The kid went absolutely psycho. He was writing comments and immediately deleting them, then saying I was sending him extremely inappropriate sexual messages. He was summoning all the bots he could think of, like the n-word bot to accuse me of racism (I’ve never ever used the n-word). It was so out of left field I was stunned. A couple of people stuck up for me in the comments but it left me really shaken. Who the fuck accuses someone of being a racist pedophile out of nowhere? That boy needs help and it has nothing to do with his autism.

sarsaparilyptus,

I dunno, this comes across as the kind of comment a racist pedophile would post, just saying.

Blaze,

Damn

SomeoneElse,

He was “transcribing” the messages I supposedly sent him. Really sick stuff.

freecandy, in What is the worst thing you have experienced on Reddit?

wallstreetbets post-gme era. That sub was a gem.

NegentropicBoy, in What are some useful or just cool stuff to memorize?

To be, or not to be …

Tigbitties,
@Tigbitties@kbin.social avatar

I'd do the sonnets first. Less cliche and you can learn one a day.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • asklemmy@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #