I’m currently working on restarting my personal tech blog here, using Jekyll and GitHub Pages. More updates coming as I work through the kinks. Plus, I’ll probably put a little more information about me here.
For now, here’s a function about me.
function getDeveloperInfo() {
const dev = {
name: 'John Niedzwiecki',
desc: 'Your friendly neighborhood kilted coder.',
twitter: '@kiltedcode',
github: 'kiltedcode',
web: 'https://kiltedcode.github.io',
email: 'john.niedzwiecki.ii at gmail',
currentDevLoves: ['Angular', 'JavaScript', 'NativeScript'. 'd3', 'CSS fun'],
books: [
{
name: 'Angular 5 Companion Guide',
link: 'https://www.packtpub.com/free-ebook/angular-5-companion-guide'
}
],
nonDevAttr : {
husband: true,
father: true,
hobbies: ['running', 'disney', 'cooking', 'video games', 'photography'],
twitter: '@itshighlandjohn',
web: 'http://www.rungeekrundisney.com',
}
};
return dev;
}
console.log(getDeveloperInfo());