IDE with code on a dark screen

Obviously I am much better at writing code than taking pictures of it.

Hi! I'm David.

I transform zeros, ones and caffeine into beautiful and functional web and mobile applications.

Get in touch

My Work

Technologies, frameworks and what I build with them

Open source contributions

Giving back to the Open Source and Free Software communities

Languages

that I use and sometimes love

1
class SoftwareEngineer {
2
    constructor(
3
        name: string, specialty: string
4
    ) {}
5

6
    public createAwesomeApp(ideas: Array<string>, caffeine: any): any {
7
        let result: Array<string> = []
8
        ideas.forEach(idea => {
9
            result.push(idea)
10
        });
11
        result.push(caffeine)
12
        return result
13
    }
14
}
15
const me = new SoftwareEngineer("David", "Web and Mobile Applications")
16
const awesomeApp = me.createAwesomeApp(["your", "ideas", "here"], "2 cups of Mate")