dandimrod

joined 2 years ago
[–] dandimrod 1 points 3 weeks ago

For me, not needing another app and the fact that is easily selfhosted is great. For Obsidian you have to pay for their sync solution and I remember the logseq app was cumbersome and the web client wasn't so good, but that's my opinion.

[–] dandimrod 18 points 3 weeks ago (8 children)

I've been using silverbullet for a while. Selfhosted, saves everything on simple markdown files and easy to customize with plugins and space scripts.

[–] dandimrod 5 points 6 months ago (1 children)

I use QuickWeather and use the Open-Meteo integration. You can even selfhost it for better privacy probably.

[–] dandimrod 5 points 10 months ago

Gold cube? You mean the CHEESE?

31
submitted 10 months ago by dandimrod to c/rimworld
 

Teaser for new expansion

[–] dandimrod 7 points 1 year ago* (last edited 1 year ago)

If you want to continue in the same function you'll need to use async/await. In your case:

async function yourFunctionName(){
    // previous logic
    const myVar = await fetch("myFile.json")
        .then(res => res.json());
    console.log(myVar);
    //rest of code executes...
}

Realize that you have to add async to your function and await to your fetch call. Also take into account that if your function returns anything, it'll now return a Promise instead.