TomMasz

joined 2 years ago
[–] [email protected] 13 points 1 hour ago (1 children)

It's hilarious how all these billionaires are such dweebs.

[–] [email protected] 1 points 20 hours ago

Test-driving them both now.

[–] [email protected] 1 points 21 hours ago (6 children)

I had a feeling this would happen. I have to use Google services for a lot of things at work and Edge works fine with them. Firefox usually does okay, but not always. And now Firefox is requiring you to hand over your data to them.

Can any Chromium-based browser refuse to turn on V3 or is it too baked-in without forking the entire project?

[–] [email protected] 6 points 21 hours ago

Musk doesn't take orders and he sure as hell doesn't take requests. Knowing that it offends just makes him want to do it more. He loves the attention, it's why he bought Twitter.

[–] [email protected] 52 points 1 day ago

There was a saying in the Nixon years: "Dick Nixon, before he dicks you."

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

There was a strong emphasis on masks/isolation/hand washing for COVID that you generally don't see for the flu. We've had flu vaccines for so long that a lot of people don't realize how serious it can be for the elderly. They may find out the hard way.

[–] [email protected] 13 points 1 day ago

That's the biggest "if" ever. They've had since November to formulate a strategy, but so far mostly isolated bits of opposition from the usual folks.

[–] [email protected] 20 points 1 day ago (4 children)

People are going to die. Given that many older people vote Republican, this could affect future elections, if there are any.

[–] [email protected] 29 points 1 day ago (1 children)

Were we getting low on misogyny?

[–] [email protected] 22 points 1 day ago (2 children)

You have to be very careful searching for this.

[–] [email protected] 123 points 2 days ago (7 children)

Remember the MAGA women wearing the "You Can Grab My Pussy" shirts? Not all Republican women are going to be upset by this.

[–] [email protected] 19 points 2 days ago (2 children)

These people are sociopaths. There's no other way to describe them.

 

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 ›