Is Frontend dev merging with Dev Ops?

Search for a command to run...

No comments yet. Be the first to comment.
We’ve all been there. It’s 4 PM on a Friday, the production deployment pipeline is green, and suddenly your observability dashboard erupts—latency spikes in the payment service, CORS errors in the new

Here are six widely praised, easy‑to‑buy desktop gadgets that noticeably tidy up a desk, streamline workflows, or cut friction from day‑to‑day work. They’re all well‑reviewed by trusted outlets or have strong third‑party recommendations, and they sol...

Here is a snippet from Pirate Johnarry Silver about the History of Python. Using OpenAI and gpt-5.1 model and some clever prompt instructions via an express app, I got ai to be an informative pirate. It’s quite simple really and its all within the in...

This is a little different to what I normally write about but the title is very fitting. I am reading a book called “The Art of Impossible” by Steven Kotler. There’s a chapter called the full intrinsic stack. That sparked my interest to write an arti...

Progressing from a junior to a senior developer requires more than just years of experience.

As frontend development becomes more sophisticated every day with the help of emerging javascript frameworks in 2023 (and beyond), we are more often than not required to set up our development environment and run scripts that compile and build production code-base ready for live publishing.
Gone are the days when the code we write is the code that gets published. A good example is Sass Preprocessing scripts that can add superpowers to CSS. Browsers have no idea what SCSS is or what Sass is, they only know about CSS. So, SCSS must be converted into CSS via the superpowerful Sass preprocessor. You can read more on that here https://sass-lang.com/guide under the Sass Preprocessing paragraph.
Sass has provided us with super abilities we could only have dreamed of 10 years ago. And JavaScript frameworks scaffold for us the fundamentals for web apps so that we don’t have the rewrite the same base code setup each time, meanwhile keeping up-to-date with browser updates and authentication security rules. Vue.js claims to be "an approachable, performant and versatile framework for building web user interfaces" and in my opinion does that very well.
There are so many frameworks and it can often leave newly found coders confused as to which direction to move, but as long as you develop a very good comprehension of the big 3 frontend languages, you can't go wrong. HTML, CSS and Javascript are namely the primary languages that most frontend frameworks sit on top of. Without the former, the latter would not exist.
Yet to come...