TomMasz

joined 2 years ago
[–] TomMasz@lemmy.world 26 points 1 day ago

Just because he says a lot of stupid shit that his followers accept as truth doesn't mean he should be restricted from saying that stupid shit. Every time he opens his mouth more people wake up to the realization of how dangerous he is. It's a public service if you think about it.

[–] TomMasz@lemmy.world 25 points 2 days ago

To be honest, they're not really our allies now. He's made sure of that.

[–] TomMasz@lemmy.world 15 points 2 days ago (3 children)

That's a sad looking pizza roll. Geno is crying right now.

[–] TomMasz@lemmy.world 13 points 2 days ago
[–] TomMasz@lemmy.world 3 points 3 days ago (3 children)

I get what he's saying, but the history of third parties in the US says this is futile. Then again, the last thing the Democrats need right now is extensive party in-fighting when they should be united.

[–] TomMasz@lemmy.world 92 points 3 days ago

No. Please enjoy your retirement.

[–] TomMasz@lemmy.world 34 points 3 days ago (1 children)

We literally fought a war to prevent this from happening. He put the document stating why we did on the wall of the Oval Office. I know he doesn't read, but jeebus how could he not know this?

[–] TomMasz@lemmy.world 6 points 3 days ago

Fuck yeah!

Meanwhile, the party leadership is thinking "maybe bigger paddles next time?"

[–] TomMasz@lemmy.world 65 points 4 days ago (4 children)

For fuck's sake, we don't need more fucking racist crybabies.

[–] TomMasz@lemmy.world 33 points 4 days ago

Fraud is for poor people.

[–] TomMasz@lemmy.world 18 points 5 days ago

You can't GoFundMe your way out of being stupid.

[–] TomMasz@lemmy.world 6 points 5 days ago

Nobody in the entire world wants this but Zuck. Nobody.

 

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 ›