TomMasz

joined 1 year ago
[–] TomMasz@lemmy.world 7 points 1 day ago (1 children)

Make sure your hosting supports webfinger, otherwise activitypub probably won't work. I'm on Siteground and they explicitly prevent it. Matthias Pfeferle, who wrote the ActivityPub plugin and now works for Automattic, actually asked them to enable it but they said no. Other hosts might do this as well.

[–] TomMasz@lemmy.world 14 points 1 week ago* (last edited 1 week ago)

I'm so angry I'm going to spend hours angrily inscribing a clay tablet telling Ea-nāṣir know how angry I am.

[–] TomMasz@lemmy.world 14 points 2 weeks ago

Eventually, even Tom Brady wasn't Tom Brady. And he's no Tom Brady.

[–] TomMasz@lemmy.world 2 points 3 weeks ago

I'm sure he'll be prosecuted. Oh, wait, he's a Republican, nevermind.

[–] TomMasz@lemmy.world 4 points 3 weeks ago
[–] TomMasz@lemmy.world 24 points 4 weeks ago (1 children)

Of course he's Black.

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

ChatGPT, show me the world's tiniest violin playing "No One Gives a Fuck" in A minor.

[–] TomMasz@lemmy.world 12 points 1 month ago

The Feds have a history of not indicting until they're sure they have enough evidence to win. Either it took them a lot of searching or they found so much they had trouble getting it all in.

[–] TomMasz@lemmy.world 121 points 1 month ago (5 children)

Perhaps the women are tired of misogynistic religions telling them they're inferior.

[–] TomMasz@lemmy.world 31 points 1 month ago

I was developing 30 years ago and I love what's available today. Nostalgia is fine, as far as it goes, but things change and sometimes for the better. This is one of those cases.

[–] TomMasz@lemmy.world 19 points 1 month ago

He thinks he can get away with the same shit Trump pulls, but crazy as he is he's no Trump.

 

i have a format for note-taking in meetings that I currently copy/paste to use in new notes. I would like to be able to create a new, empty, note based on that format so I can skip the copy/paste step. I have Templater but it seems far more complex than what I need. Any suggestions?

 

Absolute JS newbie here. I am able to use fetch() to get JSON from a URL but I can't figure out how to do anything with that JSON outside of the fetch itself.

Here's my code (API key and GPS redacted):

fetch('https://www.airnowapi.org/aq/forecast/latLong/?format=application/json&latitude=X&longitude=X&distance=50&API_KEY=X')
        .then(result => result.json())
        .then((out2) => {     
            console.log('Fetch Output: ', out2);
        }).catch(err => console.error(err)); 

Any code that references out2 other than console.log() call gives an error that out2 is undefined. How do I get access to out2 anywhere else?

view more: next ›