Using JMeter for performance testing

2020-03-23 00:03:27 - No Comments

We talk about JMeter a tool to test your sites throughput and load metering. Setting up a test plan and running it against your site with login.

Read more →

How can we help with Folding@Home for folding proteins

2020-03-21 00:03:14 - No Comments

We talk about the Folding@Home project, where it came from and what kind of problems it will cover and how it works.

Read more →

Tips for working at home

2020-03-17 00:03:25 - No Comments

We talk about the requirements for home work and what experiances we have gained working from home for a couple of years.

Read more →

Looking at Gitea as a Git host solution

2020-03-16 00:03:12 - No Comments

We talk about Gitea and see if it’s a good replacement for gitlab or a good local choice for organization that want to use github locally.

Read more →

Linux by example – ACL, Psmisc and Sed

2020-03-09 00:03:28 - No Comments

We are in our new linux environment and create ACL, some tools for process managment and the sed tool to update files with expressions.

Read more →

Linux by example – GCC, Ncurses, attr and bzip2

2020-03-02 22:03:18 - No Comments

We are in our new linux environment and create gcc compiler that will be our final compiler. Then we look at some text manipulation libraries, compressors and file attribute tools.

Read more →

Writing a simple example of Feistal Cipher

2020-02-24 00:02:07 - No Comments

We talk about the Feistal Cipher and implement a simple proof of concept to test the algorithm out. Computerphile video: https://www.youtube.com/watch?v=FGhj3CGxl8I Source code: package org.ea; import java.security.MessageDigest; import java.util.Arrays; public class FeistelAlg { private final static String plainText = "the brown fox jumped over the lazy dog"; public static void doRound(byte[] left, byte[] right) throws […]

Read more →

Inference with Tensorflow in Java

2020-02-17 00:02:47 - No Comments

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 […]

Read more →

Web server in pure Java

2020-02-10 00:02:08 - No Comments

We talk about how to create a simple web server using only native java code, no libraries and the simple interface used for these actions.

Read more →

My coding style

2020-02-03 00:02:06 - No Comments

We talk about how I write my Java code and why I have chosen to write my code in a specific way. This is my opinion. I’m interested in yours if you have differing opinions.

Read more →

How to use expansion files in Android

2020-01-27 00:01:09 - No Comments

We look into how to setup an expansion file in Android and download it from Google Play.

Read more →

Parsing an OpenAPI file (Swagger)

2020-01-20 00:01:07 - No Comments

We go though how to read a OpenAPI specification with the old API reading body content. And we also translate it to the new V3 parser and go through how this differens and works.

Read more →