I suspect that not much will change for users. The folks who want to continue tweeting will do so. The folks who do not want to tweet won't. Everything else is office politics.
This! We were shadowbanning people on IRC in like 2001. Unreal IRCd had a shadowban plugin that literally did exactly what modern shadowban features do.
Damn. A* was the first cool algorithm I implemented when learning to code games many years ago. I remember feeling so cool having a tower defense game with A* pathing.
Are you suggesting that you have done zero development yet? Develop locally until you need things to go "live". Don't buy AWS on day one, you won't utilize it. Save the money. There are many great ways to develop locally, even with teams. You can go far by utilizing dependency management services, like npm, etc. You can go far by utilizing local database init scripts, etc, for consistent dev environments after a fresh repo clone.
Looks like she wasn't even aware of the project, but instead saw it on a person's twitter profile and went to its github repo to get that person fired. In a way, she's doing the exact same thing, to others, that she is claiming github did to her.
Ah yes. The classic text editor debate thread. In this thread you can expect to find folks claiming that 2 seconds of startup time for editors, like Atom, is so disruptive to their workflow that they'd rather use notepad.
I've been using the bose quiet comfort series. They're expensive, but they've got good active noise cancellation, if needed in loud areas. They do support the Apple microphone cable, so you can do phone calls with them. When at my desk, though, I use a Blue Yeti mic.
Right, yea, the something else would have been knowing that in the event of a Trump victory he'd send out this email which could likely hurt the company (it'd naturally get leaked). Obviously it's a bit of a stretch, because why would he intentionally hurt his own company? I just thought it was a bit odd-looking.
Another user in this thread pointed out that this seems to be a monthly thing the CEO does, so this no longer appears as strange.
It was the day before. Your point about it being an email is exactly my point this could be taken as him knowing something that nobody else did and thus selling his shares. Just looks odd
Not entirely fair. A lot of good things have worked on the honor system, as long as fair thought has gone into the "rules" of the system so that enough easy, edge case abuse scenarios are protected against. A big one that comes to my mind was the gaming league, CAL, back in the day. It was 100% honor system based, with a target audience that was known to be hackers, liars, and in general kids - yet it worked!
The Clojure, and ClojureScript, hype train is effective. I've been interested in learning Clojure for several years. Every other week, or so, I'll see a tweet or blog post that makes me want to drop JavaScript and move over to ClojureScript. The community looks like a great one to be part of, from an outsider's perspective. With that said, I've never been able to break beyond that learning curve, or have that "ah hah!" moment. I've been able to learn a lot of different languages over the years, and I so want Clojure to be one of them but it just hasn't happened for me, yet. This blog post puts my issue into words very well, it feels like I'm trying to program in mandarin and I struggle to be efficient at what seem like the most basic of tasks. A script that I could knock out in 20 minutes, with C# or JavaScript, will take me hours or days in Clojure because of the lack of muscle memory or something. My excitement always fades back into thoughts of "meh is it really worth the effort", at which point I usually just revert back to JS. :(
I was looking into using lambda functions called in response to an S3 event. Specifically, I wanted to create a record in my SQL database after a file is uploaded to S3. Users are uploading directly to S3 using pre-signed requests, so I needed some way to step in and create a database record after they actually perform the upload to S3. S3 supports this via several methods, one of which is the lambda functions, but when looking into lambda functions there was no way to have the code access my SQL database internally, I would have had to make my SQL database open to the world. I didn't find any IAM rules etc to enable lambda functions to access my SQL database resources. I'd be curious to see how this is handled by this JAWS work flow.