How the java -version command actually works.

2020-11-22 12:11:40 - No Comments

I found out today that the java -version command doesn’t work as I expected and there is actually a lot more to this simple command than you think at first glance.

Read more →

Playing around with minecraft doing some python coding

2020-11-15 00:11:38 - No Comments

We look at the posibility of coding python in order to change your minecraft world. Adding blocks with python and creating buildings and games in Minecraft. Adventure in Minecraft: https://ift.tt/2UpJuvQ Castle code: # Import necessary modules import mcpi.minecraft as minecraft import mcpi.block as block # Connect to Minecraft mc = minecraft.Minecraft.create() # Get the players […]

Read more →

We look at install of kubernetes on windows 10

2020-11-09 00:11:51 - No Comments

With the new Windows subsystem for linux it’s easier to install kubernetes on Windows 10. In this video we look at kubernetes using minikub and KinD which is two easy setups to try out kubernetes locally.

Read more →

Current state of wasm with rust using an example

2020-11-02 00:11:58 - No Comments

We are looking into wasm using rust and creating a small rust example that we then run in wasm context in your browser. We also look into wasm-bindgen in order to use complex types in rust and javascript.

Read more →

Getting started with ceph storage cluster setup

2020-10-26 00:10:03 - No Comments

We look into ceph storage building our own cluster using the ceph storage engine. A cluster usually contains multiple monitors, object storage daemons, managers and metadata servers. We talk about what their role is and how to install machines to handle this. We also cover what requiredments a ceph cluster has.

Read more →

Getting sudo with ansible on Debian

2020-10-18 23:10:08 - No Comments

Getting started using ansible. In this example we will install sudo with ansible on Debian. The script will install all dependencies required and add a user to the sudo group.

Read more →

Let’s do a quick introduction to rust

2020-10-11 23:10:28 - No Comments

In this video i will do a quick introduction to rust and introduce some important concepts that rust uses to handle packages and build your executables. Rust is a programming language that have been hyped since it’s introduction. It mixes good structure with execution performace, type safety and memory management.

Read more →

We look into code abstractions and perfomance

2020-10-04 23:10:44 - No Comments

In this video we will look at abstractions of code and the performance of different programming languages and what different code can impact the performance. But the specific abstractions may give you improvements in readability and structure.

Read more →

I’m ready for windows 10, here is my debloat script

2020-09-27 23:09:04 - No Comments

I will look into upgrading to windows 10, going trough my preferences and show my debloat script. I want a Windows 10 system ready for production work and removing unused functionality and visual effects are key.

Read more →

Creating java code and simplifying execution with JBang

2020-09-20 23:09:14 - No Comments

We will look at JBang which is a tool that could simplify your workflow with java applications. For instance you could run java programs directly from maven or github, you can create new programs in java with JBang.

Read more →

Linux by example – Make it bootable

2020-09-18 23:09:04 - No Comments

After configuring the system we will install a boot manager, build the kernel and finally boot into our newly built system.

Read more →

How to do logging in java using log4j api, best practices and tips

2020-09-13 23:09:22 - No Comments

We talk about logging in general and the different levels used in java and then we talk about the log4j logging API and how to set it up for writing files, logging to console, or doing a custom setup. We also talk about different frameworks and best practices.

Read more →