Skip to content

A set of examples of my coding to show to prospective clients, employers, and anyone interested.

Notifications You must be signed in to change notification settings

owencjones/tech-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

Tech Examples

A collection of curated examples of work I've done with brief explanations to show to anyone interested

This repo includes a group of different examples of code, in various languages (mainly Javascript and Python), and brief one-line explanations of each. The examples include:

  • Production code, written for actual projects
  • Tech Tests
  • Pretty quick and hacky tooling code and utilities
  • Academically interesting examples of Computer Science related concepts

Contents

Production code examples

Response operations UI is an internal ONS system for dealing with the responses people make online to surveys the ONS sends to them. Written in Python, HTML, and Javascript.

Link goes to a list of pull requests of mine, so my actual code.

RAS Frontstage is the ONS' online survey platform, public facing. Also written in Python, HTML, and Javascript.

Link goes to a list of pull requests of mine, so my actual code.

Technical Tests

A technical test for a previous job, the task was to work out the background colour of a given image from those in a palette. It's a working solution, but it was not done with tests, as it would be live.

This was a tech test sprung on me at the end of an interview. It took 6 hours to do, and the company involved expected me to stay on premises to do it, so the solution works, but is a little rough and ready. I was ultimately offered the job, but declined. The solution was written a few years ago, so uses older Javascript paradigms.

Tooling and scripts

PartyHammer was a tool for testing an API I was finding troublesome before we were able to get an environment to work in. It hits the API with batches of different requests, randomised data, and at various intervals, and produces raw data for analysis.

Also includes a tool that produces metrics in Markdown format for use.

It was a quick and hacky script to make, so it lacks production features like tests.

Academic code examples

Wrote this because Base64 encoding is a nice little challenge in any language. It's a straightforward principle, but the practicalities of it can pose some challenges, and it is also a good way to explore the different data types of a language, as it involves using strings, characters, integers, binary bytes, and bits.

This one is dependency free, except for the test runner, mocha which I used to write extensive unit tests. It's also almost entirely made up of pure functions, so is a good demo of functional programming.

Spurred on by the Base64 encoder/decoder, I wanted to write something that could have a unit test system that was also not a dependency. The encoding of Rot13 was basically irrelevant, and I wrote this to explore writing a very small unit test runner, so have a look at that.

Next on the list is to move the unit test runner over to the Base64 project.

A Quine is a program that outputs its own source code. Of no real use, it's an exercise in understanding a language, and also a test of turing completeness, I wrote two in this repo (one worked but I consider it a bit of a cheat, so I wrote another), along with a simple test to ensure each worked. It runs in Node, and should work with most versions.

Project Euler is a large set of problems to solve in code, and this repo is one I've been returning to now and again with further solutions to one or more of the hundreds available. Each is designed to have a naive solution, but can be improved by application of Computer Science and Mathematical principles. I've done the first seven currently, and I add one here an there when I get chance.

Looking at the commit history is useful on this, as I start with naive solutions and then look for the improvement opportunities. One example is below:

int is_prime(int num)
{
     if (num % 2 == 0 && num > 2) return 0;
     for(int i = 3; i < num / 2; i+= 2)
     {
         if (num % i == 0)
             return 0;
     }
     return 1;
}

The naive approach to detecting if a number is prime is dividing it by every number from 2 to itself minus one, this makes some improvements on this:

  • The function finishes early if the number is even and over 2, because an even number over two is not prime - saves time when iterating.
  • The function starts iterating at 3, because every integer divides by one, and we already know 2 isn't prime, and 2 is.
  • The function iterates in twos because even numbers are not prime, except 2, which is already covered.
  • The function divides each check by 2, halving the tested number each time, which is a sieve approach. This massively reduces the number of numbers tested. This is because if a number under test is not a factor so far, you can skip next to half of that number. The numbers in between will not be factors.

About

A set of examples of my coding to show to prospective clients, employers, and anyone interested.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published