ChrisArgyle
No user record in our sample, but ChrisArgyle has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but ChrisArgyle has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
The author was a former VP at Rogers Communications, Inc, a Canadian ISP. https://ca.linkedin.com/in/kenneth-engelhart-591a204
If you miss Ted Dziuba's writing at Unvoc you will thoroughly enjoy this article
Also the author seems to have missed that this char limit is changing. In Python, for example, an official style guide update in 2013 [1] allows for 100 char line length. [1]…
I would have to imagine that a massive corporation like Amazon has automatic detection of issues with tier 1 services like search.
As a Bronx resident this sounds very exciting. As a jaded consumer of modern media this sounds suspiciously one-sided. What are the downsides? It doesn't seem to generate revenue or lower costs for the city. Why would a…
TL;DR Modern medicine is over! Get to the zombie apocalypse shelter! Not really though; everything scary in this article is either wrong, exaggerated or both. Ars Technica explains it expertly:…
> While it is technically, theoretically possible that their system is open to the introduction of these biases but does not actually exhibit those biases in the aggregate, it is astoundingly unlikely. We're in…
I took "systematic bias" to have similar meaning to "systematic error" meaning that there is a constant shift on every data point. Admitting the possibility of bias is very different than admitting bias in every single…
Honestly this is more likely due to the actual outcome being too complex for a headline. "Facebook denies systematic bias but admits their current process allows bad actors to apply bias and takes remediating steps"…
The central thesis here is that APIs should be treated like GUIs. Make them as intuitive as possible to minimize brain space waste (ie. memorization of non-transferable, vendor-specific knowledge) Sadly, the post is too…
> Why on earth isn't there just a generic keyboard-shortcut preference where I can control every possible browser action and its associated keyboard shortcut? It turns out this extension does exist. I just used it to…
Analysis from Chrome devs here https://codereview.chromium.org/1854963002 Though I am a frequent user of backspace in Chrome I'm inclined to agree with their decision. Almost no one is using it and casual users are…
I'm embarassed to say I haven't even heard of MobaXterm. This is going on my remote-work rig tonight.
That sounds like a scenario for long-form work over a mobile network (eg. on a laptop through a mobile hotspot). Mosh from a laptop is a no-go for me because there's no Windows-based, full-featured terminal emulator…
"Why use this instead of GNU screen?" The low latency features really set this one apart. The smart local echo (it underlines unconfirmed predictions) make it much nicer to use over laggy mobile networks.
I second the asyncio endorsement. I started using Python 3 just to try out asyncio and never went back. It works like a dream.
path=$foo/$bar if [[ $path =~ [[:space:]]*/[[:space:]]* ]]; then echo NOPE else rm -rf $path fi
The title is a bit click-baity and misleading. DevOps isn't dead it's just becoming centralized. The rub seems to be that quality managed services are widely available and affordable enough to obviate the need for…
Home Assistant user here, too. After my house got robbed it was either $1000-$2000 for commercial, cloud-locked systems or Home Assistant with $200 worth of X10 devices and IP cameras. The commercial options couldn't…
Also great is the wow factor when you show off the mobile interface. Material design is a big time crowd pleaser.
Maybe its a cross product? If we assume "Welcome" is a 2x1 matrix and "11" is shorthand for [1 1]
Believe it or not, you don't even have to change your workflow to try out python 3. If you're on a Red Hat/Ubuntu-based system just add a '3' to everything (python3, pip3, pdb3, etc) edit: added relevant platforms
I've seen this go badly even when the first responders are the ones configuring the alerts. For example those getting paged for slow app response times want DBAs to be paged for slow query performance who in turn want…
If we're being technical the author should have wrote "reaping" not "killing". It's a very different process. The use of quotes is probably an acknowledgement that the term "zombie" is not universal. For example Linux…
Some great ideas here--a lot of them solve problems I've personally had with bash over the past 15 years--but plenty of these feel like solutions in search of problems. I'm tempted to post my own commentary but I'd…