Node.JS
Concept: High Performance web server w/ Promises
Can we use a Promise to increase the performance throughput of an HTTP web server on Node?
Node.JS
Can we use a Promise to increase the performance throughput of an HTTP web server on Node?
Open Source Software
I'm presently working on an ASP.NET Core 2 Project. To be honest, it's my first real project with the tech stack. Most have gone smoothly and I've found some great utility in the included libraries. Among them is Dependency Injection (Microsoft.Extensions.DependencyInjection)
software engineering
My take for a response to a Code Project thread discussion about a "programmer" vs a "software engineer".
DevOps
DevOpsDays in Chicago is over.... Long over. It ran Sept 12th 2017 to Sept 13th. This is the second year I've been able to attend the event. It was good; I highly recommend it. I had hoped to write contact during the event related to each talk but
MicroService
A summary of Micro Service principles in my own words. Derived from other articles which are referenced.
MicroService
The article was moved.
quick-tip
This presentation from DevOpsDays Chicago 2016 presented by Angela Dugan explores "Imposter Syndrome". The feeling of being under-qualified for a task or set of responsibilities.
quick-tip
I recently learned something while going through the puppet tutorial VM and I want to share it and document it to remind myself in the future. You may know that you create directories on the Linux Command Line (CLI) with: mkdir new-dir While I'm not yet sure how
Node.JS
Dig in to the implementation of Pinkie, the Node JS package by Floatdrop.
quick-tip
Solving an error with GitKraken after install from the PPA
Exploration
The Promise object represents the eventual completion (or failure) of an asynchronous operation and its resulting value. -MDN Put simply[1], it is a means to reorganize asynchronous (concurrently executing) code to reduce nesting among other reasons. Over the next couple of posts, I'm going to give a
Open Source Software
Bit masks are a computer science concept; in a nutshell, they represent options which can be combined in a variety of ways. A very basic example colors. Blue and Green combined create yellow. This can be represented in bit masks. The following example is sourced from the Bit field article