Earlier quoted context omitted.
"Disabled" is not metric among those who have disabled it, while WebGL enabled allows identifying different browsers with WebGL enabled. I know what you mean, but statistically, I don't think that it is easier to guess the person from those who have disabled it versus the list of all browser fingerprints where is that matching or very close unique fingerprint.
You just self select as someone who wants to see privacy focused ads
Amber: Programming language compiled to Bash
131–140 of 330 posts
Re: Amber: Programming language compiled to Bash
#132Re: Amber: Programming language compiled to Bash
#133> Variable declarations can be overshadowed - this means that you can redeclare the existing variable with different data type in given scope if you need to. I'm having a hard time deciding why I would want this. It seems more likely to result in bugs than being a useful feature.
It's useful in Rust where you might parse input as a string and then convert it to a number. It's better than having a variable named age and another one named age_num or the opposite, str_age and age.
Re: Amber: Programming language compiled to Bash
#134> Variable declarations can be overshadowed - this means that you can redeclare the existing variable with different data type in given scope if you need to. I'm having a hard time deciding why I would want this. It seems more likely to result in bugs than being a useful feature.
It's a common practice in Rust at least, where instead of having a mutable variable which you modify across several lines, you declare a new immutable variable with the same name on those lines. I like it, but I guess it really just comes down to preference and what you're used to.
Re: Amber: Programming language compiled to Bash
#135> Variable declarations can be overshadowed - this means that you can redeclare the existing variable with different data type in given scope if you need to. I'm having a hard time deciding why I would want this. It seems more likely to result in bugs than being a useful feature.
Re: Amber: Programming language compiled to Bash
#136Rust, except using existing executables (or dynamic libraries) instead of downloading packages and waiting ages for it to compile? Seems like a great idea.
Re: Amber: Programming language compiled to Bash
#137Earlier quoted context omitted.
You just self select as someone who wants to see privacy focused ads
adblock/ublock/umatrix could get you out of that too.
You’re always leaking some kind of information that advertisers will pay for. The game is choosing what information you’re okay giving them
Re: Amber: Programming language compiled to Bash
#138Re: Amber: Programming language compiled to Bash
#139Earlier quoted context omitted.
I think the use case for this is where you need a bash script on a machine where you can't easily install and maintain a runtime.
On a machine where you can't easily install and maintain a runtime but you can install bash and amber and bc and sed?
Re: Amber: Programming language compiled to Bash
#140Why would someone need to compile to bash.. how about just use python instead