
Do the UAPs know they are violating Federal Aviation Regulations?
Tags:
5/26/2021 I have recently seen a bunch of different reports in the press about UAPs, or unidentified aerial phenomena. These used to be called UFOs or unidentified flying objects. After watching several of the ...

How to serialize and deserialize objects on iOS
Tags:
5/25/2021 Not only does Apple Think Differently, they also like to name things differently as well. In languages like Java and C#, if you want to share a contract between objects that guarantees the same interf...

Should I use Monkey Patching in JavaScript?
Tags:
5/21/2021 Monkey Patching is the capability in JavaScript to swap out a function in a JavaScript object with your own function. This can come in handy, but also be dangerous. One of JavaScript's strengths is it...

Should I use Node.js to Process my Images?
Tags:
5/16/2021 One of my favorite laws is \\Atwood's Law\\. \\Atwood's Law\\ states: any application that \can\ be written in JavaScript, \will\ eventually be written in JavaScript. I have been shocked at the kinds ...

Build your own Developer tools in Node.js
Tags:
5/12/2021 I did a presentation a couple of years ago to JaxNode User Group about building your own tools. As a user it is very common to find yourself repeating the same series of commands over and over again. ...

State of Mobile Development in 2021
Tags:
5/9/2021 Building apps for the iOS/iPadOS and Android platforms may seem daunting if you are new to mobile development, but there are many different options for developing these apps that may suit your needs. ...

Using the Delegation Pattern over Inheritance in JavaScript
Tags:
5/8/2021 There are actually times when you want to use object inheritance in your applications. I have seen a lot of applications that extend a lifecycle API through object inheritance. Inheritance was designe...

How to run a Node.js User Group during a Pandemic
Tags:
5/5/2021 A couple of years ago I wrote a post on \Medium\ for the Node.js Foundation on how to start and run a Node.js User Group. A lot of people have read this post over the years since I wrote it and used i...

Use Dependency Injection with Express
Tags:
5/4/2021 I recently did a blog post on using \Dependency Injection\ in JavaScript. This technique comes in handy, and can be really useful when using web application frameworks like \Express\. Express makes it...

Should you use Dependency Injection in JavaScript?
Tags:
5/1/2021 I have seen some posts on JavaScript and for other languages that dissuade the use of Dependency Injection. I even had a boss at one company I worked for tell his developers that we should never use D...

Delta Airlines Five Day Hell
Tags:
4/26/2021 As the pandemic winds down, and more and more people start flying again, it is important to remember that the air traveling experience is not all it is cracked up to be sometimes. A couple of years ag...

How to upgrade an Express REST app to Fastify
Tags:
4/25/2021 A while back I wrote a quick and dirty aviation weather proxy for the FAA's weather service. The existing weather service returns the data in an XML format. So I created an express app that proxies tw...

Node 16 now available
Tags:
4/21/2021 The Node.js foundation just released the first version of Node v16.0.0. The Node.js maintains multiple versions, including the current release along with a long term support (LTS) release. The current...

Apple Silicon for Developers as of April 2021
Tags:
4/20/2021 I posted a \video\ to Youtube back in November on whether Apple Silicon M1 Macs could and should be used by Developers and Software Engineers. I received more views for that video than any other video...

What is the iOS IDFA, and Why is Facebook angry with Apple?
Tags:
4/18/2021 Apple will be releasing OS updates for most of their mobile devices pretty soon. There is a change that has ruffled the features of a lot of people in the online advertising industry. The issue revolv...

Why You should not use Classes in JavaScript
Tags:
4/17/2021 I recently wrote a \post\ on the way I like to create objects in JavaScript. I call this style of object creation 'Crockford Objects', named after Douglas Crockford, author of "JavaScript: The Good Pa...

Crockford Constructors
Tags:
4/14/2021 In a previous \post\ I discussed how we can create objects from a function using a closure. I based this example on a presentation Douglas Crockford made at JS Fest 2018. # Constructors Constructors a...

The Android WebView is broken, and Google will not Fix It
Tags:
4/12/2021 Apple and Google are both large companies. When issues crop up with their technology, and we file bugs, it can sometimes take years to be addressed. For individual developers this can be unbelievably ...

Using a WebView on Android, still no need for Cordova
Tags:
4/8/2021 I wrote a \post\ yesterday on how to use a WebView on iOS without using Cordova. I got a couple of requests to show how to do this on Android using Kotlin and the WebView widget. Like on iOS, this is ...

You do not need Cordova
Tags:
4/7/2021 Cordova is a very popular framework for creating mobile applications that are based on web technologies. It allows developers to create apps that are based on HTML, CSS and JavaScript. There are a num...