That is really interesting! I never had an ant farm, and I'm glad I didn't given what you've said.
Are ants similar to bees in that there's one egg-laying "queen" that you have to gather, or can you just gather a collection of individuals from a colony?
Your kid probably already knows about this, but have him check out the YouTuber AntsCanada. I'm not particularly into ants but I find his videos fascinating.
Is there not an autoformatter available? We use linting as part of our Python workflow and it works pretty well along with black. There's really not much linting work: just write your code, run black, and it's good to go.
Due to the physical architecture of CPUs/etc., data structures that have "worse" asymptotic performance are often quite a bit faster than those with "better" performance. For example, iterating through a small array to find an item and test for existence is often quite a bit faster than using a hash set for the same operation.
Sure, so now instead of just having a source control remote, you’re now looking after a publicly accessible box in the cloud with all the security headaches that brings. Plus you’ve got to manage credentials essentially manually, make sure people have the right access permissions to repos, look after backups, etc.
I worked at a company that started out with a setup like this for the dev team. It felt like a massive burden was lifted when we moved to Github Enterprise. We weren’t using the project management features at all, just the source code hosting stuff.
I've studied there for an MSc in Computing. It was good. The classes are a bit business-schooly but I got some good support from tutors. Obviously it depends on the individual tutor--the one for my project module wasn't as clear and supportive--but some are really fantastic.
I'm doing a masters in Computing with them now. I'm enjoying it quite a lot, and it is definitely rigorous (though more on the management side rather than the technical side).
There's definitely a different style of development, in my experience. After a few beers or when very sleep-deprived, I find myself avoiding "analysis paralysis" and just getting something written, even if it's not super elegant. There can definitely be a benefit to doing that, though I wouldn't recommend slamming shots at 9am before the workday starts!
Astrology and machine learning just seem so different. One is a poor attempt at prediction using dubious, shoddy, poorly understood methods that generally amount either to general wooly vagueries or completely wrong conclusions that are no better than random chance, and the other deals with planets.
I almost always skip the intro of books like this. I didn't skip this one. The Dispossessed and The Left Hand of Darkness are two of my favorite books of all time.
How is the tooling these days? I played with .NET Core a while ago (before the move away from project.json and just after the move to the dotnet command line tool rather than dnx/dnvm/etc.). I found the documentation for the tooling to be confusing, sparse, and often contradictory. Have things improved? How much manual XML munging is required with the new csproj format, assuming one isn't using Visual Studio and is developing on Mac/Linux?
.NET has both nonblocking evented IO and standard blocking IO in the stdlib. Most modern libraries use asynchronous IO, however lots of legacy applications still use blocking calls, making them unsuitable to run in the thread pool.
There's a much more immediately practical reason to keep it in-firewall as well: if the utility company accidentally cuts a fiber line outside my house, I don't want to be suddenly unable to turn off my hallway light.
We used it a lot for full automation tests for the UI. It's nice being able to interface with a full-featured browser that can run javascript, etc. And take screenshots when things go wrong.
Are ants similar to bees in that there's one egg-laying "queen" that you have to gather, or can you just gather a collection of individuals from a colony?
Your kid probably already knows about this, but have him check out the YouTuber AntsCanada. I'm not particularly into ants but I find his videos fascinating.