Category Archives: Software

Converting the Entire Site from HTTP to HTTPS

…was painful. Instructions for making the change effective throughout WordPress were easy enough to find and follow, but updating references in 250-ish posts by hand took some time. I had two hassles. The first was my own doing in that … Continue reading

Posted in Software | Tagged , , | Leave a comment

Presentation for CharmCityJS Meetup Feb 1, 2017

Link.

Posted in Software | Tagged , , | Leave a comment

A Simple Discrete-Event Simulation: Part 1

Some months ago I discussed some internal features of a discrete-event simulation. My next series of exercises and ruminations will proceed toward building one in JavaScript, using the simple pseudo-construct I outlined in the linked post. I’ll start with the … Continue reading

Posted in Software | Tagged , | Leave a comment

Hello, Fort St. John, BC

I’m getting to spend some quality time in Fort St. John, BC, only three hours from today’s starting point in Manning, AB. It wasn’t unexpected, having spent a lot of time simulating scheduled and unscheduled maintenance procedures. The stuff that … Continue reading

Posted in Software | Tagged , , , | Leave a comment

Post University CIS Advisory Board Meeting 2016

I serve as an industry representative for an advisory committee run by the chairman of the CIS Program at Post University in Waterbury, CT. In today’s annual meeting we discussed a number of issues regarding the department, its curriculum, and … Continue reading

Posted in Software | Tagged , , , , , | Leave a comment

Implementing the Efficient Matrix Solution for Special Classes of Engineering Problems

Yesterday I described how to set up a matrix for efficient solution, today I’ll describe how to actually execute the solution. I plan to go back and revisit the intermediate steps but I wanted to show how this series of … Continue reading

Posted in Software | Tagged , , , | Leave a comment

System and Enterprise Architecture

The figure below shows a notional representation of an integrated, plant-wide control system for a type of modern strip mill. I installed one- and two-line tunnel furnace Level 2 control systems in several plants just like this. I’ve highlighted the … Continue reading

Posted in Software | Tagged , , , | Leave a comment

The End of Moore’s Law, Code Bloat, and the True Nature of Efficiency

It has been suggested that the improvements in semiconductor and processor technology are approaching their natural limits in terms of how far the size of each feature can be reduced. Since quantum computing has not ready for widespread use, and … Continue reading

Posted in Software | Tagged , , , | Leave a comment

Automatically Generating Code

A programmer’s efforts to create code can be greatly enhanced by automating as many operations as possible. This process reaches its zenith when the code itself can be generated automatically. I’ve done this on a handful of occasions in both … Continue reading

Posted in Software | Tagged , | Leave a comment

Methods of Inter-Process Communication I’ve Employed

A while ago someone asked me how I’d go about making two processes communicate. My answer was to figure out what data needed to be communicated, what communication type was to be used, what protocol was to be used, and … Continue reading

Posted in Software | Tagged , , , , | Leave a comment