Introduction
Databases are rarely glamorous. They do not have sleek animations and nobody has ever bragged about getting to nth normal form on their table at a dinner party. And yet, in modern systems, databases decide whether your platform scales or collapses.
This post is a guided ramble— err I mean an opinionated, …
Read MoreReact
React is not technically a framework—it’s a JavaScript library—but at this point arguing that distinction is kind of pointless. Created by Meta, React focuses on building user interfaces using reusable components. You describe what the UI should look like, and React handles how it updates, thanks to its …
Read MoreDuring recent development for the oyster language by @HeckingGoose I was asked to assist with building a github action to deploy a Jekyll static pages site to a cloudflare project this was to allow for documentation to be referenced both within the linter for the language and in general.
Then after some initial …
Read MoreCodeful Workflows
Integrate 2025 was a whirlwind of innovation and insights, and I’m excited to share some of the highlights that caught my attention. Here’s a breakdown of what I saw and learned:
Agentic Loops and Multi-Agent Hand-Offs
Agentic Loops: A big push on workflows that leverage AI to create …
Read MoreWhat is Vue?
Vue is a progressive JavaScript framework for building user interfaces, first released in 2014. Vue is designed to be incrementally adoptable, meaning you can use as much or as little of it as you need, from enhancing a single page to even more.
The Need for Vue
Modern web development often requires …
Read MoreIssue:
During the creation of a basic react app, the result of a build of this app must be displayed as a static web application hosted in GitHub pages.
Solution:
Configuring a GitHub action (YAML) in order to build the react app and then clone the build over to the GitHub pages deployment branch.
Below is the …
Read MoreWhat is GraphQL?
GraphQL is an open-source data query language developed by Facebook in 2012, which was then released as an open-source project in 2015. Unlike traditional RESTful APIs, which require specific endpoints for data retrieval, GraphQL adopts a different approach. Instead of fetching entire resources, …
Read More