How to build an app using Electron
We look into how the electron app framwork works and how to use it to create a simple progress counter application.
In this video we are using fetch to do a file upload. File uploads could be hard if you haven’t done it before, fetch is a new api that can simplify the process.
We build a rack and I walk about what goes into the building process and showing the process. We also talk about networking like keystone jacks and cable management.
We solve todays challange at the advent of code 2020. Come join and have some fun.
We talk about the different collection structures in Java and how to measure their performance and memory footprint Simple example of performance testing for collection types in java: package org.ea.debugger; import java.lang.management.ManagementFactory; import java.util.*; import java.util.function.IntConsumer; public class CollectionTest { public static void sleep() { try { Thread.sleep(3000); } catch (Exception e) { e.printStackTrace(); }…
We look into how to install Apache Kafka in production using ZooKeeper for redundancy and working with topics. We also setup a producer for syslogs and checking the consumer for all the logs to appear.
We talk about the 12 factors to create a successful micro service application deployment.