insidewhy

insidewhy @insidewhy

About: insidewhy

Location:
Over there
Joined:
Apr 18, 2020

insidewhy
articles - 9 total

Using ast-grep with a vue project

Motivation The amazing ast-grep tool does not support vue and scss by default but can be...

Learn More 10 1Jan 1

Suggested Jira setup for software engineering projects

I've been refining the way I deal with software development workflows for more than 20 years now....

Learn More 6 1Nov 21 '24

Installing kde 6 (plasma 6) from source on ubuntu 24.04

Install qt 6 Install the latest qt 6.6 releases using qt online installer. Just select qt...

Learn More 82 1Apr 20 '24

A sequential work queue for typescript in 11 lines of code

class WorkQueue<T> { private lastJob: Promise<T> | undefined async queueWork(work:...

Learn More 3 2Feb 20 '23

A nice work queue for TypeScript/JavaScript

This posts is about an open source work queue library I wrote for processing data at my current job:...

Learn More 1 0Jan 11 '23

Advent of code 2022 - each solution in a different language

I added my solutions to a github repo. I've done days 1-11 so far. I'll blog about the rest in a...

Learn More 0 0Dec 29 '22

An excellent way to deal with (lerna) monorepos in CircleCI: circletron

We started with a monorepo at my current company and have been using circle almost since the...

Learn More 7 0Jun 25 '21

How to deal with the first few months of a new job writing software

Read git log and see how people write their commits. Are they all in imperative mood? Then write your...

Learn More 3 1Jun 1 '21

Filtering the types of a tuple at compile time in typescript

I needed to remove all of the boolean types from a tuple for a parser generator I'm writing. The code...

Learn More 2 0Apr 18 '20