Blog Category: Tutorial

Thoughts, insights all hot off the virtual press.

Tutorial | 31 July 2019

Google Analytics for developers

If you are developing software for external users, you are highly likely to need to take account of Google Analytics. If so, Bradley may have some tips for you.
Slide showing Event Tracking in Google Analytics
Full Story
Tutorial | 19 July 2014

Apache rewrite rules how-to: pass-through

This is our first video on Apache Rewrite Rules. The first rule we quickly show is the pass through.
Screen showing flow of information
Full Story
Tutorial | 01 September 2013

JAR signing using openssl certificate made simple

This is a quick and to the point video on how to sign a Java ARchive (JAR) file using an openssl self-signed certificate.
Screen showing code
Full Story
Tutorial | 13 April 2013

SSL basics: breaking down the Secure Sockets Layer basics

A quick and dirty explanation of SSL from the point of view of the SSL handshake and a quick look at Self-Signed Certificates and what they are for.
Full Story
Tutorial | 10 March 2013

SSH tunneling in a real life example

In this video we show an example of SSH tunnelling that may be useful in real life.
Full Story
Tutorial | 25 November 2011

SSH tunnelling and connecting to a remote database

In this video our CTO, Cristiano, shows you a neat trick called SSH tunnelling in the context of connecting to a remote database.
Full Story
Tutorial | 05 November 2011

Installing an SSL certificate on Apache (Part 3 of 3)

SSL certificate installation onto an Apache webserver. This is the third and final of the three-part video where we show how to integrate the certificate. Check out part 1 at:  How to install an SSL certificate onto an Apache …   Check out part 2 at: How to install an SSL certificate onto an Apache …   If you want to know more about Apache Webserver you can visit here: http://httpd.apache.org If you want to know how to generate a self-signed SSL certificate, check out our video at How to create a self-signed certificate…  
Full Story
Tutorial | 05 November 2011

SSL certificate installation on Apache (Part 2 of 3)

This is the second of a three-part video where we show how to install an SSL certificate onto an Apache webserver. If you want to know more about Apache Webserver you can visit here: http://httpd.apache.org See part 1: https://www.youtube.com/watch?v=yjZOyANmKWU&t=0s  See part 2: https://www.youtube.com/watch?v=nuUTdMdNoO8&t=0s 
Full Story
Tutorial | 05 November 2011

SSL certificate installation on Apache (Part 1 of 3)

This is the first of a three-part video where we show how to install an SSL certificate onto an Apache webserver. If you want to know more about Apache Webserver you can visit here: http://httpd.apache.org See part 2: https://www.youtube.com/watch?v=BS0AK_qJ4OE See part 3: https://www.youtube.com/watch?v=nuUTdMdNoO8
Full Story
Tutorial | 19 October 2011

Openssl command tools: how to create a self-signed certificate?

This short video shows how to create a self-signed certificate using the openssl command tools. For more information on openssl see http://openssl.org. Summary: create a Certificate Signing Request (CSR) with the command: openssl req -new -newkey rsa:2048 -nodes -keyout localhost.key -out localhost.csr self-sign the Certificate with the command: openssl x509 -req -days 365 -in localhost.csr -signkey localhost.key -out localhost.crt For more tutorials, see https://brightminded.com/updates/
Full Story