-
Recent Posts
Recent Comments
- R.P. Churchill on TWSL Series 07: Discovery and Data Collection
- R.P. Churchill on A Simulationist’s Framework for Business Analysis: Round Two
- LN on A Simulationist’s Framework for Business Analysis: Round Two
- R.P. Churchill on Starting to Learn About the Java Memory Model
- R.P. Churchill on Multidimensional Arrays in Javascript
Categories
Meta
October 2025 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
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
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
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
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
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 efficiency, matrix solution techniques, sim_presentation_series, Software
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 analysis, enterprise architecture, Experience, system architecture
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
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
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