Google will be prohibited from doing that under the DOJ's proposal.
I agree with you, but I go one step further: I am disappointed by OSM raster tiles and especially Google's digital tiles because even they show barely enough information, if you compare them to old style printed street…
Sometimes the alternative blows up in your face though.
I agree, I also dislike the term SQL injection. But the problem isn't that there is a query, there problem is that the source code of one program is constructed by string manipulation in the source code of another…
Do you mean you switched to self-managed GitLab, or you have a self-managed GitLab that you keep around as a backup plan?
It's closer to the truth than you usually get. They're having a bad day, it's completely true. It's the start of my day, but I guess this is the middle of the night for them. There's no such thing as unicorns, but that…
Hold for me is pretty good. I've never used the phonetree feature, but I think it's often the case that I don't know which button I need to press: I have to listen to them all first, then decide which one. Commonly I…
Isn't it entirely dependent on the airlines, what counts as one itinery? How could I contractually obligate them to something they didn't agree to be contractually obligated to? (BTW: I've had multiairline itineraries…
I can't believe they haven't started using three digits and an emoji.
Cookie disclaimers are not GDPR. They're also completely optional; you can have a fully functional modern website that stores state in cookies and not put in a cookie banner. Businesses make choices not to do that and…
> On the other hand, the goal is to get away with fraud, not to convince an international community who will likely look for any confirmation of their suspicion. Despite my joke in a sibling comment, this is key. When…
Thanks. Note to self: Next time I want to rig election results, generate a random integer between 54.2% and 54.3% of the vote and count it as the winner's vote, subtract from total pool, wash rinse repeat.
Desert, n, stress on the first syllable, means a place without much rain, but it comes from the notion of being deserted so sometimes it just means an unpopulated area. To desert, v, stress on the second syllable, means…
In addition to the UK, it's almost certain that this had high level political influence between Australia's prime minister and the US president. I don't think the perspective that the US would be willing to damage their…
There's a fair number of apostrophes in fact. Here's an example: https://maps.app.goo.gl/ZSVi4GfuAgcUspm2A (Note that Google's database seems to lack the apostrophe in that name). Rules such as the following (NSW GNB)…
See my comment sibling to yours for some concerns with `env $(cat file)`; I would have these and then some with sourcing the file even in a subshell. You can do whatever you want in a shell script which can have effects…
Further addition, I haven't investigated dotenv deeply, but I suppose it would be a command that specialises in making sure the contents of .env are just environmental variables that get defined. The `env` command as I…
env $(cat .env) my-cmd-wanting-dotenv would, though, wouldn't it? ETA: the main difference between `env` and `dotenv` seems to be that `env` gets its arguments from the command line, whereas `dotenv` gets its arguments…
Forwarding traditionally looked like this: 1. I tell my email client from colimbarna@fine.server.example to send an email to eisenstein@old.server.example using my.correctly.configured.smtp.server.example 2.…
"Sed" is the name of a specific tool. It is not defined by the GNU tools, but has existed in some form since 1974, well before Perl. GNU sed and POSIX sed both support BRE and EREs, but not PCREs. Maybe there's some…
Yes exactly, they match the end of a line, not a newline character. Some examples from documentation: man 7 regex: '$' (matching the null string at the end of a line) pcre2pattern: The circumflex and dollar…
3.14 is about 0.00159 less than pi, whereas 22/7 is about 0.00126 greater than pi, making pi approximation day closer to pi than pi day.
Google will be prohibited from doing that under the DOJ's proposal.
I agree with you, but I go one step further: I am disappointed by OSM raster tiles and especially Google's digital tiles because even they show barely enough information, if you compare them to old style printed street…
Sometimes the alternative blows up in your face though.
I agree, I also dislike the term SQL injection. But the problem isn't that there is a query, there problem is that the source code of one program is constructed by string manipulation in the source code of another…
Do you mean you switched to self-managed GitLab, or you have a self-managed GitLab that you keep around as a backup plan?
It's closer to the truth than you usually get. They're having a bad day, it's completely true. It's the start of my day, but I guess this is the middle of the night for them. There's no such thing as unicorns, but that…
Hold for me is pretty good. I've never used the phonetree feature, but I think it's often the case that I don't know which button I need to press: I have to listen to them all first, then decide which one. Commonly I…
Isn't it entirely dependent on the airlines, what counts as one itinery? How could I contractually obligate them to something they didn't agree to be contractually obligated to? (BTW: I've had multiairline itineraries…
I can't believe they haven't started using three digits and an emoji.
Cookie disclaimers are not GDPR. They're also completely optional; you can have a fully functional modern website that stores state in cookies and not put in a cookie banner. Businesses make choices not to do that and…
> On the other hand, the goal is to get away with fraud, not to convince an international community who will likely look for any confirmation of their suspicion. Despite my joke in a sibling comment, this is key. When…
Thanks. Note to self: Next time I want to rig election results, generate a random integer between 54.2% and 54.3% of the vote and count it as the winner's vote, subtract from total pool, wash rinse repeat.
Desert, n, stress on the first syllable, means a place without much rain, but it comes from the notion of being deserted so sometimes it just means an unpopulated area. To desert, v, stress on the second syllable, means…
In addition to the UK, it's almost certain that this had high level political influence between Australia's prime minister and the US president. I don't think the perspective that the US would be willing to damage their…
There's a fair number of apostrophes in fact. Here's an example: https://maps.app.goo.gl/ZSVi4GfuAgcUspm2A (Note that Google's database seems to lack the apostrophe in that name). Rules such as the following (NSW GNB)…
See my comment sibling to yours for some concerns with `env $(cat file)`; I would have these and then some with sourcing the file even in a subshell. You can do whatever you want in a shell script which can have effects…
Further addition, I haven't investigated dotenv deeply, but I suppose it would be a command that specialises in making sure the contents of .env are just environmental variables that get defined. The `env` command as I…
env $(cat .env) my-cmd-wanting-dotenv would, though, wouldn't it? ETA: the main difference between `env` and `dotenv` seems to be that `env` gets its arguments from the command line, whereas `dotenv` gets its arguments…
Forwarding traditionally looked like this: 1. I tell my email client from colimbarna@fine.server.example to send an email to eisenstein@old.server.example using my.correctly.configured.smtp.server.example 2.…
"Sed" is the name of a specific tool. It is not defined by the GNU tools, but has existed in some form since 1974, well before Perl. GNU sed and POSIX sed both support BRE and EREs, but not PCREs. Maybe there's some…
Yes exactly, they match the end of a line, not a newline character. Some examples from documentation: man 7 regex: '$' (matching the null string at the end of a line) pcre2pattern: The circumflex and dollar…
3.14 is about 0.00159 less than pi, whereas 22/7 is about 0.00126 greater than pi, making pi approximation day closer to pi than pi day.