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 →

Drive Chrome using Puppeteer

2018-03-19 01:03:17 - No Comments

We look into how to screenshot in different devices, take coverage metrics and check loading performance.

Read more →

Kubernetes: How to setup and deploy to a cluster

2018-03-12 01:03:23 - No Comments

We look at setting up, running, and setting up deployments on Kubernetes. We talk about running and scaling pods, connecting services and pushing to google cloud.

Read more →

How to use OpenCL for GPU work

2018-03-05 01:03:20 - No Comments

We use OpenCL to run workloads on GPU and try a simple blur filter.

Read more →

A quick look into the tensorflow lite demo

2018-02-26 01:02:09 - No Comments

We compile and look at the code for the Tensorflow lite demo, looking at the key concepts.

Read more →

How to use native libraries on Android

2018-02-19 01:02:14 - No Comments

We look at connecting up a native library, native source to our Android application.

Read more →

Looping concepts

2018-02-12 01:02:09 - No Comments

We look into different looping concepts, what they are and when to use them.

Read more →

DevLog 2 – SQRL – S4 Storage Format

2018-02-05 01:02:32 - No Comments

We look into the way SQRL stores keys on disk or paper in QR form. How to read the data and decrypt the different blocks.

Read more →

DevLog 1 – SQRL – Secure Quick Reliable Login

2018-01-29 01:01:32 - No Comments

I talk about a project I’ve started to work on. The specific technologies I’ve looked into and tried to implement.

Read more →