Skip to content

Instantly share code, notes, and snippets.

View dominicumbeer's full-sized avatar

Dominic Umbeer dominicumbeer

View GitHub Profile
@dominicumbeer
dominicumbeer / challenge.md
Last active February 9, 2017 09:35
Coding Challenge - Full-Stack JavaScript Engineer

Coding Challenge

The challenge is to develop an application similar to bit.ly - the link shortener.

Back-end part

There should be an HTTP API provided. The actual framework doesn’t matter, it could be express.js / hapi.js etc.

HTTP API should provide such interface,

  • Create new short link
@dominicumbeer
dominicumbeer / IAB-Categories.sql
Created March 22, 2015 17:01
IAB Categories, written down in SQL based on https://gist.github.com/crowdmatt/5040911. Probably helpful to someone ;)
CREATE TABLE `iab_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(10) NOT NULL,
`description` varchar(300) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `iab_categories` (`id`, `name`, `description`)
VALUES
@dominicumbeer
dominicumbeer / Berksfile
Created January 19, 2014 18:30
Install a single-node Cassandra cluster with Chef in Vagrant.
cookbook "cassandra", git: "https://github.com/michaelklishin/cassandra-chef-cookbook.git", ref: "e8f260247b9a4897255d2821daeed129a5a352a0"
@dominicumbeer
dominicumbeer / Berksfile
Created January 16, 2014 18:49
Vagrant setup to install Cassandra (http://community.opscode.com/cookbooks/cassandra). This configuration shows that installation won't work.
cookbook "cassandra", "= 0.2.4"