TomMasz

joined 1 year ago
[–] [email protected] 33 points 2 days ago (3 children)

Move over Joseph Goebbels, there's a new Propaganda Minister in town!

[–] [email protected] 16 points 1 week ago

The major Abrahamic religions tend to be misogynistic, though some are better than others. It's unsurprising that they're tired of it.

[–] [email protected] 12 points 1 week ago (3 children)

He's still the same wannabe edgelord he's always been. Hard to believe his target market is bothered by that.

Shareholders, on the other hand, might have issue with what he's doing and its effect on the stock price.

[–] [email protected] 6 points 3 weeks ago

Floorp

Thanks, these look interesting. I've been using Firefox forever for my personal browsing (but Edge for work) and I'd prefer to stay with it if I can.

[–] [email protected] 40 points 4 weeks ago (13 children)

I'm 6'4" (193 cm) and I felt totally average walking around Amsterdam. As opposed to being a mutant freak in Tokyo.

[–] [email protected] 14 points 1 month ago

I’ve got a bit of Neanderthal DNA, and a lot of folks of Eastern European descent do as well. My ancestors were swingers, I guess.

[–] [email protected] 22 points 1 month ago (3 children)

Nobody plays just this side of sane characters like she does. Even with just her voice as Louise on Bob's Burgers.

[–] [email protected] 14 points 1 month ago (1 children)

Mr. Steal Your Girl.

[–] [email protected] 11 points 1 month ago

LOOK AT THIS SEO SPAM!!! LOOK AT IT!!!!

[–] [email protected] 2 points 2 months ago
[–] [email protected] 63 points 2 months ago (9 children)

Support local music and musicians. Go to their shows. Buy their CDs and merch. Stop giving big corporations your dollars.

[–] [email protected] 5 points 2 months ago* (last edited 2 months ago)

It just needed a monkey with a tip cup.

 

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 ›