Comment on
Search for a note taking app (solved)
I've been using silverbullet for a while. Selfhosted, saves everything on simple markdown files and easy to customize with plugins and space scripts.
Comment on
Search for a note taking app (solved)
I've been using silverbullet for a while. Selfhosted, saves everything on simple markdown files and easy to customize with plugins and space scripts.
Comment on
Offline Translator: An Android translator app that performs text and image translation completely offline using on-device models—Supports automatic language detection
Reply in thread
Yeah, I use it as well and the level of translation is simmilar to the level of google translate in the early 2010s. The main problem it has is that the OCR is not great. It can only detect very clear horizontal texts and has problems in any other use case. Also it gives you a translation but no alternatives that might be good depending on the context but I think that might be outside the scope of this model.
Comment on
Are Roundabouts Actually Better Than Traffic Lights? | Streetcraft [19:46]
Reply in thread
I bet you haven't had the displeasure of using Spanish roundabout, or a roundabout with a crossing in the middle and traffic lights everywhere.
Comment on
write to variable with fetch api before rest of script executes (client side)
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.
Comment on
Swoomp
Reply in thread
Probably a joke about the name of GIMP
Comment on
*Permanently Deleted*
I use QuickWeather and use the Open-Meteo integration. You can even selfhost it for better privacy probably.
Comment on
Oh boys here we go again
Reply in thread
Gold cube? You mean the CHEESE?
Comment on
Search for a note taking app (solved)
Reply in thread
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.