I found this watch because I could not find anything with more than 2 timers. I wanted a watch that has 5+ for cooking. This watch doesn't either, but I'm writing a face in rust to support this case I also want…
I actually almost have a working version of a replacement for what3words/Xaddress/etc that solves every gripe I know of. Format is: (1-1024) WORD WORD WORD with a relatively short wordlist (8k words). Maps to ~1 square…
Thank you for this! I had a feeling it wasn't a security issue. I closed my ticket saying it might be one due to finding websites mentioning Dom clobbering
You can't in bulk as far as I know, but can't you just go to about:addons in the URL bar? I don't use more than 5 anymore. How many do you have?
Is it not this way in chrome too? I know imgur messes with the ui for no good reason. Your other commentmentions i.imgur.com being the case? Maybe libredirext can help you never hit the i. Site?
Yes quantum was rough... I still miss vimperator. Though the speed increase was nice. Thank you, I did forget about this actually
What do you mean meme storm? Switching to Firefox makes you immune to annoying changes like this... I honestly don't understand why more people, especially on hn, haven't switched over still. As a Firefox user, articles…
Good catch. That would explain why it wasn't mentioned then
I don't think this article is complete. It mentions no pollution, which is true of window and most HTML elements, but not always. Check this out, you can set an img name to getElementById and now document.getElementById…
Me too!
What do you mean? Adding odds defeats the purpose of the prediction since you can't confirm it to be true or not. If I predict with 99.99% odds something will happen and it doesn't, my prediction could still have been…
Why is this called sol (sun) when the logo is a black hole? Am I missing something?
I agree with your assessment. > a stack made for a single game is not a game engine. For a concrete example: the newest Lego game, Star Wars the Complete Saga, had a complete engine rewrite ("NTT") and the new game is…
How do you enforce the physical check with captive portal? Do you give everyone a shared password to go into the portal?
What a tiring trope. I use a high resolution macbook for work and a 1366x768 13 inch laptop for personal use. Like OP, I greatly prefer the font blockiness the latter provides especially in terminals. And yes, I've…
> we're headed to a dark place if your best shot at human rights is to retain employment by a big tech company But we're already here. We are in that dark place now. It's reality that if you work for big tech you get a…
> you can solve that with a manual implementation instead of a derive. How? I thought the orphan rule said you can only define trait implantations at struct definition or trait definition
What do you use to convert them? I've been looking for a way to push a url somewhere and get back the position in osmand I am currently loading the location in google maps web and picking "Open in App" in the browser,…
> made it myself with an ESP8266 Do you have a recommendation on how to start an ESP8266 project? Which board/power supply/??? Did you buy to do this for example
ntfy already supports sending messages after long running commands: ntfy done sleep 10 If you want to also capture output, you can just use a simple bash function: ntfy_done_output() { local TEMP_FILE="$(mktemp)"…
You could also write something like Linux's fakehwclock that writes device time to a file on shutdown and reads it on bootup. Your clock will skew more (shutdowns are supposedly 0 seconds in duration), but it would at…
You can enable a ton more lints: #![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)] This might be too annoying for some people, but you can choose to allow ones that don't matter and keep the rest.…
The worst part is, once you've selected high accuracy (or accidentally clicked allow once), you can neber lermanently disable it again. It will re-enable high accuracy every time location is turned back on. I don't know…
> It could be life or death. What does this mean? Isn't it better to teach them how to be safe so when they grow up they will be safe? Instead of teaching them nothing but to not trust you? Once your monitoring no…
In the article they describe their attempts at tuning and weren't happy with the results
I found this watch because I could not find anything with more than 2 timers. I wanted a watch that has 5+ for cooking. This watch doesn't either, but I'm writing a face in rust to support this case I also want…
I actually almost have a working version of a replacement for what3words/Xaddress/etc that solves every gripe I know of. Format is: (1-1024) WORD WORD WORD with a relatively short wordlist (8k words). Maps to ~1 square…
Thank you for this! I had a feeling it wasn't a security issue. I closed my ticket saying it might be one due to finding websites mentioning Dom clobbering
You can't in bulk as far as I know, but can't you just go to about:addons in the URL bar? I don't use more than 5 anymore. How many do you have?
Is it not this way in chrome too? I know imgur messes with the ui for no good reason. Your other commentmentions i.imgur.com being the case? Maybe libredirext can help you never hit the i. Site?
Yes quantum was rough... I still miss vimperator. Though the speed increase was nice. Thank you, I did forget about this actually
What do you mean meme storm? Switching to Firefox makes you immune to annoying changes like this... I honestly don't understand why more people, especially on hn, haven't switched over still. As a Firefox user, articles…
Good catch. That would explain why it wasn't mentioned then
I don't think this article is complete. It mentions no pollution, which is true of window and most HTML elements, but not always. Check this out, you can set an img name to getElementById and now document.getElementById…
Me too!
What do you mean? Adding odds defeats the purpose of the prediction since you can't confirm it to be true or not. If I predict with 99.99% odds something will happen and it doesn't, my prediction could still have been…
Why is this called sol (sun) when the logo is a black hole? Am I missing something?
I agree with your assessment. > a stack made for a single game is not a game engine. For a concrete example: the newest Lego game, Star Wars the Complete Saga, had a complete engine rewrite ("NTT") and the new game is…
How do you enforce the physical check with captive portal? Do you give everyone a shared password to go into the portal?
What a tiring trope. I use a high resolution macbook for work and a 1366x768 13 inch laptop for personal use. Like OP, I greatly prefer the font blockiness the latter provides especially in terminals. And yes, I've…
> we're headed to a dark place if your best shot at human rights is to retain employment by a big tech company But we're already here. We are in that dark place now. It's reality that if you work for big tech you get a…
> you can solve that with a manual implementation instead of a derive. How? I thought the orphan rule said you can only define trait implantations at struct definition or trait definition
What do you use to convert them? I've been looking for a way to push a url somewhere and get back the position in osmand I am currently loading the location in google maps web and picking "Open in App" in the browser,…
> made it myself with an ESP8266 Do you have a recommendation on how to start an ESP8266 project? Which board/power supply/??? Did you buy to do this for example
ntfy already supports sending messages after long running commands: ntfy done sleep 10 If you want to also capture output, you can just use a simple bash function: ntfy_done_output() { local TEMP_FILE="$(mktemp)"…
You could also write something like Linux's fakehwclock that writes device time to a file on shutdown and reads it on bootup. Your clock will skew more (shutdowns are supposedly 0 seconds in duration), but it would at…
You can enable a ton more lints: #![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)] This might be too annoying for some people, but you can choose to allow ones that don't matter and keep the rest.…
The worst part is, once you've selected high accuracy (or accidentally clicked allow once), you can neber lermanently disable it again. It will re-enable high accuracy every time location is turned back on. I don't know…
> It could be life or death. What does this mean? Isn't it better to teach them how to be safe so when they grow up they will be safe? Instead of teaching them nothing but to not trust you? Once your monitoring no…
In the article they describe their attempts at tuning and weren't happy with the results