Skip Navigation
Posts
4
Comments
428
Joined
2 yr. ago
  • I’ll try to find the info. It’s been almost 10 years since I set it up. Not even sure who has it now, it’s gone from my aunt to another relative in the meantime.

  • As a volunteer firefighter, I stepped over a hose in the dark and fell into a drainage ditch. Tore the ligaments in my ankle and chipped the bone.

  • "Cheaper" sounds dangerous when it's applied to nuclear power plants.

  • At least the number of times I have to use the Clean Java Language Workspace in VS Code has declined recently. I mean, I still have to, just not as often.

  • I left and deleted my account. My content should have been deleted, and not useable for AI training, but who knows.

  • Fresh

  • You'll likely die before you: a) remember where you put this thing, b) manage to successfully thread it far enough so you're not inhaling toilet water, c) survive the sewer gases. If the window is big enough get through, better to jump.

  • I have a Type A to Type A cable. It came with a simplified music player for dementia patients that I set up for my elderly aunt. No idea why they chose to do it that way.

  • The past couple of years have not been good for the Secret Service's reputation. They used to seem like they were the elite, now they come across as bad as any law enforcement organization.

  • Inertia, at least in some cases. It takes a lot of work to rebuild your audience. Leaving is accelerating, though, albeit slowly.

  • Many have gone looking. Few have returned.

  • He couldn't deal his way out of a soap bubble with a sword in his hand. But he can spin defeat better than anyone.

  • That's a feature, not a defect. Besides, no one in the White House has any issue with this happening and never will.

  • fire

  • That’s the Prelude Light. It comes on just before the enormous fireball erupts.

  • DIY Audio @sh.itjust.works
    TomMasz @lemmy.world

    DIY (Tube?) Power Amp Suggestion

    A couple of years ago, I built the (now-discontinued) Foreplay tube preamp from Bottlehead. I'm finally getting around to building a power amp to go with it and I'm looking for suggestions. Bottlehead has gone mostly to integrated amps (besides being really expensive) so that's feeling like it isn't an option.

    ObsidianMD @lemmy.world
    TomMasz @lemmy.world

    I want to be able to create new notes based on specific format

    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?

    JavaScript @programming.dev
    TomMasz @lemmy.world

    Trying to get and use JSON from a URL

    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):

     undefined
        
    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?