Linux by example – Building make and a couple of common languages
We talk about building language compilers and their usages within linux.
I try to solve Advent of code puzzles during the 2024 event. Please share your solutions and be a part of this great community.
I try to solve Advent of code puzzles during the 2024 event. Please share your solutions and be a part of this great community.
We are in our new Linux environment and create BASH the Bourne Again SHell that we will use for our command-line environment and grep to find text using regular expressions.
We talk about the struggles I had with running inferences in Java using a Keras model in tensorflow. This is the train.py used in this example. import tensorflow as tf #import tensorflowjs as tfjs import os from datetime import datetime from tensorflow.keras.models import Sequential, Model from tensorflow.keras.layers import Conv2D, MaxPooling2D, BatchNormalization, Layer from tensorflow.keras.layers import…
I talk about some maintainance I had to do recently where we switched the public network of our monitors, removed the cache tier and remove massive amount of objects and all the problems we encountered and handled.
We look into lambda functions in java using example code and understand what functions could help you with. Java has many new concepts that could help you, and lambda is just one of them. For example, you could create Suppliers that give you a value, Consumers that use a value, and then functional interfaces.