CKA Study Notes - Kubernetes Scheduler

As I continue my prep for the Certified Kubernetes Administrator (CKA) exam, I’ve been diving into the Kubernetes scheduler so I can get a better understanding of how it works, how it can be influenced, and what tools are available to debug scheduling-related issues. This is a continuation of my previous notes about kubectl basics and focuses on practical commands and concepts I found useful when learning about scheduling. What the Scheduler Does TLDR - the Kubernetes scheduler is responsible for deciding which node a pod should run on. Once a pod is created without a node assignment, the scheduler steps in and tries to find the most suitable node for it, based on resource availability, constraints, taints, and other factors. ...

June 29, 2025 · 3 min · 565 words · icarnaghan

My Migration Experience from WordPress to Hugo

I started messing around with Hugo a few months ago as I was getting tired of spending $$s and maintaining a WordPress site that has remained fairly static over the years. When I first heard about Jamstack I was interested in finding ways I could leverage it for my own blog. When I first started I ended up managing the release and deployment of new content in a very manual way, making changes, running hugo to generate the static site, and then copying the output to a separate repository that served the site via GitHub Pages. While this workflow worked, it quickly became annoying and error-prone, especially when I forgot a step or made minor changes that didn’t get properly deployed. ...

June 27, 2025 · 4 min · 822 words · icarnaghan

CKA Study Notes - kubectl Basics

I’ve recently started studying for the Certified Kubernetes Administrator (CKA) exam and as such I’m capturing some of my study notes here. When you’re first diving into Kubernetes, the command-line tool kubectl becomes your new best friend. But like any new tool, remembering the right commands can be challengins, especially when you’re trying to troubleshoot or quickly inspect your cluster. This is my own quick-reference guide for working with kubectl, with just enough commentary to help it stick. If you’re interested in learning more I would recommend visiting the Official Kubernetes Documentation site, which covers everything you need. ...

June 23, 2025 · 3 min · 463 words · icarnaghan

Modern Design Approaches, Frameworks and Resources

Over the last few years, several web design trends have exploded in popularity and different frameworks and libraries have emerged to support them. It’s been close to a decade since the term ‘responsive’ became mainstream and changed our way of thinking about the structure of our applications across devices. Since that time other design philosophies have followed as we sought ways to improve the user experience across a diverse range of platforms. At the same time tools and techniques have continued to improve to arm designers with the right frameworks, libraries and approaches to deliver the best user experiences possible. In this article I will cover some of the more popular design approaches and libraries that can be used to implement them. I’ll conclude with a quick list of several wireframing tools that can also be used in design. I recommend checking out each of these resources via the links provided below. ...

July 12, 2024 · 5 min · 1047 words · icarnaghan

Visual Composer Review

Visual Composer is a drag-and-drop WordPress website builder that makes it easy for anyone to create beautiful layouts without touching any code. It’s perfect for people who want to design their own websites and don’t have the time, knowledge, or patience to learn how to use complicated website building tools. You can customize your site with Visual Composer in a few clicks or by choosing from one of its prebuilt templates. ...

April 29, 2021 · 3 min · 592 words · bbilavych

TypeScript Demystified

TypeScript can be a confusing term for anyone new to JavaScript development. The first impression of TypeScript for beginners is that it is a programming language, more or less, similar to JavaScript. Even professionals with enough coding experience often fail to define TypeScript. So how can we put the answer to this question - What is TypeScript? TypeScript is a superset of JavaScript. It has optional static typing, classes, and interfaces. TypeScript is not a separate programming language, what makes it different from JavaScript lies in part of its name - Type. Every programming language has data types, In JavaScript these include the commonly used number, string, boolean, etc. To understand TypeScript, we first need to understand how JavaScript behaves with its data types. ...

December 17, 2020 · 6 min · 1118 words · icarnaghan

Getting Started with Entity Modeling in OpenText AppWorks

AppWorks provides a handy feature for modeling business objects through the use of entities. Objects could take the form of any aspect of a business application you are building. For example, if you needed to write an application that would be used as part of a school’s administration system you may include entities that represented objects such as teachers, students, courses, lessons, and so on. AppWorks provides a nice interface for managing these different types of entities and even lets you build relationships. The term entity modeling is not new to this platform, the concept behind this has been around for a long time, but it has traditionally been the responsibility of database engineers or software developers to define. The low-code platform AppWorks provides now enables business analysts to define these entities and relationships, without the need to have a software engineering background. ...

October 27, 2020 · 6 min · 1277 words · icarnaghan

The Path of Least Resistance

In an ever more global and connected world, knowing a foreign language is becoming a more valuable and necessary skill. Fortunately, the modern age has added a new dimension to language learning and today’s learner has more tools at his disposal than ever before, all thanks to the Internet. But at the end of the day, it’s still the same old problem that you can lead a horse to water but you can’t make it drink. Learning a language still takes persistence and the willingness to learn, and unfortunately there is no tool yet invented to combat that, and I don’t think there ever will be, but the problem in successful language learning may lie in us purposefully choosing the most difficult path. ...

October 25, 2020 · 6 min · 1145 words · icarnaghan

Low-Code Development with OpenText AppWorks

OpenText AppWorks is an application development platform that enables rapid creation of software designed to meet business problems. It’s low-code capabilities means that we can involve requirements specialists and business analysts in the development process while working along-side developers implementing more advanced services integrations and business processes. A few months ago I wrote a couple of articles outlining how to install AppWorks locally using Docker as well as setting up a version control system for your applications using SVN. If you are interested in setting up AppWorks as a development environment, I highly recommend checking these out. ...

October 19, 2020 · 5 min · 989 words · icarnaghan

Understanding Asynchronous JavaScript

The term “asynchronous” is often associated with JavaScript, which can be a confusing concept, especially for beginners. This can become even more confusing because JavaScript is a synchronous language with asynchronous capabilities. In order to understand asynchronous development in general, we need to start with the difference between synchronous and asynchronous programming. In simple terms, executing one task or item at a time is often referred to as synchronous, while executing multiple tasks (or threads) at a time is referred to as asynchronous. ...

September 11, 2020 · 13 min · 2748 words · icarnaghan