How to use Regular Expressions

2018-06-11 00:06:29 - No Comments

We look at a regular expression to parse a URL in detail so we can reason about regex.

Read more →

Convert your model to tensorflow lite

2018-06-04 00:06:22 - No Comments

We use Toco to convert our cats and dogs model to Tensorflow lite and run it on an Android device.

Read more →

How to create a self signed certificate

2018-05-27 23:05:11 - No Comments

We look at creating self signed certificates and get them working with your docker image. We talk about different encryption and authentication algorithms and other configuration options.

Read more →

How to run Lighthouse on Travis CI

2018-05-20 23:05:38 - No Comments

We look into lighthouse testing on Travis CI and SauceLabs.

Read more →

What is a Hackathon?

2018-05-14 00:05:48 - No Comments

I talk about my experience at a hackathon last weekend.

Read more →

How to use lit-html with Polymer

2018-05-06 23:05:25 - No Comments

We set up a simple Polymer 3.0 element and then transform it to use lit-html

Read more →

How to make performant Docker images

2018-04-29 23:04:51 - No Comments

We look into how to build docker images for performance. Talk about the compromises between speed and size.

Read more →

How to load a custom dataset with tf.data [Tensorflow]

2018-04-23 00:04:18 - No Comments

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.

Read more →

How to run Android tests on Travis CI

2018-04-15 23:04:26 - No Comments

We look into a Travis CI configuration file in order to test Android projects.

Read more →

Java performance of different collection types

2018-04-09 00:04:22 - No Comments

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(); } […]

Read more →

How to use lit-html

2018-04-02 00:04:14 - No Comments

We talk about lit-html and different functions available in the library.

Read more →

How to test accessibility on Android

2018-03-25 23:03:24 - No Comments

We talk about what an accessible app is and how we can improve our testing, both manually and automatic.

Read more →