Category: JavaScript

  • Experiences in Managing Software Development Through Kanban & Trello

    Experiences in Managing Software Development Through Kanban & Trello

    Introduction

    On my last project, I managed a team developing an application to manage hospitality locations. Given our requirements were constantly in flux, the contracts were on a short cycle, and the team was generally new to enterprise software development, I chose a Kanban style approach to managing and delivering it. I wanted to share with you the rationale, methodology, challenges, and the surprising change to my role while on the project.
    (more…)

  • Angular 2 in Slovakia

    Angular 2 in Slovakia

    Travelled to Slovakia 3 weeks back to speak about Angular 2 in Bratislava at the OpenSlava conference. Just a basic overview of Angular 2 vs 1. I dove into what docs I could find, took John Papa’s sample Angular 2 project out for a spin, played with a few language implementations.

    (more…)

  • Fun With Mongo

    Fun With Mongo

    Introduction

    The last tech I got to have fun with on my vacation was MongoDB. It’s a NoSQL database, meaning, it doesn’t use the common SQL. It stands for “Not Only SQL”, but they market it to people like me so I call it “No SQL thank god”. Instead, it stores JSON objects which it calls documents. They’re stored as BSON: binary JSON.

    Given my recent delusions of grandeur once I got login in Node + deployment of Node working, the world was my oyster, so I dove headlong into Mongo. Once I learned how to navigate to the real documentation, I felt right at home.

    (more…)

  • Fun With Node, Restify, and JSON Web Token

    Fun With Node, Restify, and JSON Web Token

    I describe why Node matters to me, then go over some code. Feel free to skip to the code.

    Introduction

    The 2nd tech I got to play with on my vacation was Node, the middleware Restify, and wiring up JSON Web Tokens for authentication.

    Today, I wanted to cover what I learned building a sample application. Specifically why Restify over Express, static vs API hosting, some of the basics I didn’t know about REST API’s, CORS, Promises with Bluebird, routes, and my changed attitudes towards API development.
    (more…)