How to learn computer science using codecombat
We look into the codecombat game that helps pupils learn coding and guide teachers in how to teach computer science in a fun and engaging way.
We solve the day 3 challenges for the Advent of Code.
We look into how to create TFRecords to and handle images from a custom dataset. Later we load these records into a model and do some predictions.
We use Munin to monitor servers with different resources and critical operations. Munin will contact each server and ask for statistics and monitor if a service is running and have enough resources to work.
I’m trying to solve all the Advent of Code puzzles in this video series.
In this video we go though how to setup SSL on the API connection for object storage. We look at creating some self-signed certificate and then add them to the S3 object storage endpoint for your ceph cluster.
After my kid asked me to download and install an auto-clicker, I saw this as a teachable moment to build one in Java. I could talk about the different concepts Java offers and also explore a new API in the Java API. Source code: package org.ea; import javax.swing.*; import java.awt.*; import java.awt.event.InputEvent; import java.awt.event.KeyEvent; import…