tech/webdev magazine

November 20, 2024

Why Typed Linting Needs TypeScript Today

Wednesday, November 20, 2024 Teklinks

Linting with type information, also called “typed linting” or “type-aware linting”, is the act of writing lint rules that use type information to understand your code. Typed linting as provided by typescript-eslint is the most powerful JavaScript/TypeScript linting in common use today. Lint rules that use type information are significantly more capable than traditional, AST-only rules.

Full article

How to Set Up Next.js 15 for Production in 2024

Wednesday, November 20, 2024 Teklinks

I've worked on Next.js applications that scaled to over 100k monthly active users and landing pages with millions of monthly visitors. In this article, I'll share all the lessons I've learned through countless iterations.

Full article

The Journey of ClearBank From Start-Up To Scale-Up

Wednesday, November 20, 2024 Teklinks

Gray: Has anyone ever been to a powerboat race in their life before? I went to a powerboat race when I was a little kid, and I vividly remember this by being in awe of the speed and the agility of these boats. The way they could turn the corners. The way they could accelerate.

Full article

November 19, 2024

Will we care about frameworks in the future?

Tuesday, November 19, 2024 Teklinks

I've been building lots of apps by using LLMs and Agents. I'm currently up to about 17 tools, utilities and demos over the duration of a couple of weeks. I build them for me and because tools like Replit have enabled me during my small spots of free time to build fully working sites and apps that solve the immediate problem that I have. I've felt incredibly productive.

Full article

Self-contained Executable Programs with Deno Compile

Tuesday, November 19, 2024 Teklinks

Since Deno v1.6, the deno compile command has empowered developers to turn JavaScript and TypeScript programs into single, standalone binaries that run on all major platforms—no dependencies, no additional installs. This has big implications:

Full article

Exploring DORA: 9 Steps on the Path to Compliance

Tuesday, November 19, 2024 Teklinks

The Digital Operational Resilience Act (DORA) is a significant regulatory framework introduced by the European Union to enhance the operational resilience of digital systems within the financial sector. The regulations are slated to go into effect January 17, 2025.

Full article

November 18, 2024

React useCallback() - A complete guide

Monday, November 18, 2024 Teklinks

Performance optimization is crucial for creating a smoother user experience in modern web development. React, a popular JavaScript library for building user interfaces, provides several Hooks to help developers manage state and side effects efficiently.

Full article