Gamera8ID

joined 1 year ago
 

Lots of AI news, which suits me.

While UnderUnderstood feels more like the spiritual successor to Gimlet's Reply All, the co-hosts of Hard Fork (Kevin Roose and Casey Newton) banter in a way that reminds me of P. J. Vogt and Alex Goldman.

 

So I was hungry and bored and a little drunk and decided to make some homemade macaroni and cheese. I found this old leather-bound book that looked like a cookbook, so I opened it and followed a recipe. Turns out it was like the Necronomicon or something and I summoned a demon. He’s sitting on my couch right now being a dick, watching Netflix and drinking my beer. He won't leave and says he's going to take my soul unless I make him the world's best mac and cheese. I have a box of crappy dollar store instant mac in the pantry. What can I do to make it better? I don't have any crazy ingredients like fancy cheeses or truffles. Help.

[–] Gamera8ID@lemmy.world 1 points 1 year ago

There's a comprehensive list of Lemmy apps being curated here.

My personal recommendation is https://wefwef.app.

[–] Gamera8ID@lemmy.world 6 points 1 year ago (2 children)
[–] Gamera8ID@lemmy.world 1 points 1 year ago

The post he responded to listed a number of alternate scenes. All minor.

 

Andy Leviton, Associate Editor on Spider-Man: Across The Spider-Verse, confirms audience speculation that there are multiple cuts of the film in theaters with Tweet, "I was wondering when people might start noticing.”

[–] Gamera8ID@lemmy.world 1 points 1 year ago

Very helpful. Thanks!

1
submitted 1 year ago* (last edited 1 year ago) by Gamera8ID@lemmy.world to c/backpacking@lemmy.ml
 

I'm mostly a day-hiker. I'd rather hike farther than carry more.

I'm slowly Passage-hiking the Arizona Trail, and there are stretches where overnights will be unavoidable.

I'm not going to cut down my toothbrush, but I do want to carry as little as possible.

I hear positive things about backpacking bidets, but the concept seems (to put it delicately) "optimistic" to me.

I may attempt the "try it afterwards in your shower at home" advice I've seen elsewhere, but that seems...gross.

Am I missing something, or is my risk tolerance misaligned with the reality of roughing it?

[–] Gamera8ID@lemmy.world 0 points 1 year ago (4 children)

Can you elaborate?

I read that Kbin defederated with Lemmy because it couldn't initially handle the influx of new users migrating from Reddit, but that it has federated again.

So is it a Lemmy instance, like Beehaw?

I know that Kbin doesn't use communities ("/c/") but uses magazines ("/m/") so I thought it was different.

I also read that there was some new way to post to Lemmy from Mastadon, but I thought those were different, like Reddit and Twitter. But they both rely on something called "ActivityPub"?

So is Kbin similar to Lemmy (by being Reddit-like), but distinct like Mastadon (which is Twitter-like)?

I didn't have a Twitter account, but was a heavy Reddit user. I don't have a Mastadon account, but I'm liking Lemmy. However I have some FOMO about Kbin because I don't understand how it all works together.

 

Dan Stevens (Downton Abbey, Legion, Gaslit) has been tapped to take over the lead role in the animated series that was originally created by Mike McMahan (Star Trek: Lower Decks) and Dustin Roiland, who was ousted in January amid domestic violence charges.

[–] Gamera8ID@lemmy.world 5 points 1 year ago (1 children)

I made a slight modification to your bookmarklet asking to which instance you are migrating, which produces a list of links you can paste into something like https://www.openallurls.com so it becomes just a matter of clicking all of the "Subscribe" buttons:

javascript:(function() {
  const currentHostname = window.location.hostname;
  const tld = prompt("Please enter the name of the instance to which you are migrating:");
  const table = document.getElementById('community_table');
  const anchorTags = table.getElementsByTagName('a');
  const communityUrls = [];

  for (let i = 0; i < anchorTags.length; i++) {
    const title = anchorTags[i].title.substring(1);
    const parts = title.split('@');
    const community = parts[0].trim();
    const domain = parts[1] ? parts[1].trim() : currentHostname;
    const communityUrl = `https://${tld}/c/${community}@${domain}`;
    communityUrls.push(communityUrl);
  }

  const urlsText = communityUrls.join('\n');

  navigator.clipboard.writeText(urlsText)
    .then(() => {
      alert('Community URLs copied to clipboard!');
    })
    .catch((error) => {
      alert('Failed to copy Community URLs to clipboard:', error);
    });
})();