Practical DDD in TypeScript: Domain Service
The story about DDD in TypeScript continues by presenting the first stateless pattern in this series — Domain… - https://javascript.plainenglish.io/practical-ddd-in-typescript-domain-service-8c32afefb102
#typescript
The story about DDD in TypeScript continues by presenting the first stateless pattern in this series — Domain… - https://javascript.plainenglish.io/practical-ddd-in-typescript-domain-service-8c32afefb102
#typescript
Medium
Practical DDD in TypeScript: Domain Service
The story about DDD in TypeScript continues by presenting the first stateless pattern in this series — Domain Service.
👍2
Using abbr Element with title Attribute
Adrian Roselli explains why you shouldn’t use abbr attribute with or without the title attribute. - https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
#css
Adrian Roselli explains why you shouldn’t use abbr attribute with or without the title attribute. - https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
#css
Adrian Roselli
Using abbr Element with title Attribute
How the <abbr> element is defined and exposed, along with the title attribute: § 4.5.9 The abbr element from WHATWG. ARIA in HTML entry on <abbr> notes it has no implicit role and naming is prohibited. Which is probably why Core Accessibility API Mappings…
👍3
How to Stream Files from Next.js Route Handlers
“Despite being Next.js specific, it goes over the philosophical difference between Node.js specific API routes, and runtime-agnostic route handlers, which I think could be interesting to a broader audience of backend JS developers.” - https://www.ericburel.tech/blog/nextjs-stream-files
#nodejs
“Despite being Next.js specific, it goes over the philosophical difference between Node.js specific API routes, and runtime-agnostic route handlers, which I think could be interesting to a broader audience of backend JS developers.” - https://www.ericburel.tech/blog/nextjs-stream-files
#nodejs
www.ericburel.tech
How to stream files from Next.js Route Handlers
Learn how the Route Handlers paradigm affects file streaming in Next.js
👍2
A Guide to Managing Loading State for Angular App API Requests
This tutorial walks you through how to track the status of API requests in your Angular app and displaying… - https://levelup.gitconnected.com/a-guide-to-managing-loading-state-for-angular-app-api-requests-83b7429d0e3a
#angular
This tutorial walks you through how to track the status of API requests in your Angular app and displaying… - https://levelup.gitconnected.com/a-guide-to-managing-loading-state-for-angular-app-api-requests-83b7429d0e3a
#angular
Medium
A Guide to Managing Loading State for Angular App API Requests
This tutorial walks you through how to track the status of API requests in your Angular app and displaying the loading UI.
👍3
Vue.js Directives: A Beginner’s Guide
In this article, we will take a deep look at Vue.js directives and their use cases and explore the possibilities of including our very own directives. - https://vueschool.io/articles/vuejs-tutorials/vue-js-directives-a-beginners-guide/
#vue
In this article, we will take a deep look at Vue.js directives and their use cases and explore the possibilities of including our very own directives. - https://vueschool.io/articles/vuejs-tutorials/vue-js-directives-a-beginners-guide/
#vue
vueschool.io
Vue.js Directives: A Beginner's Guide - Vue School Articles
Master Vue.js directives and how they control DOM elements. Learn about built-in Vue directives and how to create custom ones.
👍4
Updating Public Next.js Environment Variables Without Rebuilds
A practical approach to updating public environment variables without rebuilding your app. - https://phase.dev/blog/nextjs-public-runtime-variables/
#react
A practical approach to updating public environment variables without rebuilding your app. - https://phase.dev/blog/nextjs-public-runtime-variables/
#react
Phase
Updating public Next.js environment variables without rebuilds | Phase Blog
A practical approach to updating public environment variables without rebuilding your Next.js app
👍2❤1
Front-end Layout That Every Senior Front-end Engineer Should Know
A set of codes for mobile phones, iPads, and PCs. Each time a different style is loaded, they are all… - https://javascript.plainenglish.io/front-end-layout-that-every-senior-front-end-engineer-should-know-711e174687c5
#frontend
A set of codes for mobile phones, iPads, and PCs. Each time a different style is loaded, they are all… - https://javascript.plainenglish.io/front-end-layout-that-every-senior-front-end-engineer-should-know-711e174687c5
#frontend
Medium
Frontend Layout That Every Senior Frontend Engineer Should Know
A set of codes for mobile phones, iPads, and PCs. Each time a different style is loaded, they are all compatible in one project. This is cal
👍5
Topic Classification from Node with Astra Vector Search
An example of using Node to crunch some data and pipe it into Datastax’s Astra vector database (using Mongoose and a JSON API driver) for querying. - https://thecodebarbarian.com/topic-classifiers-in-nodejs-using-astra-vector-search.html
#nodejs
An example of using Node to crunch some data and pipe it into Datastax’s Astra vector database (using Mongoose and a JSON API driver) for querying. - https://thecodebarbarian.com/topic-classifiers-in-nodejs-using-astra-vector-search.html
#nodejs
The Code Barbarian
Topic Classifiers in Node.js Using Astra Vector Search
You can build a topic classifier using vector search by storing representative vectors for each topic. Here's how you can build a representative vector based classifier in Node.js with Astra and Mongoose.
👍4
Highlight Text When a User Scrolls Down to That Piece of Text
Chris Coyier shows how to highlight a line of text once you scroll to it using only CSS. - https://frontendmasters.com/blog/highlight-text-when-a-user-scrolls-down-to-that-piece-of-text
#css
Chris Coyier shows how to highlight a line of text once you scroll to it using only CSS. - https://frontendmasters.com/blog/highlight-text-when-a-user-scrolls-down-to-that-piece-of-text
#css
Frontend Masters
Highlight Text When a User Scrolls Down to That Piece of Text
I was reading a great post on Lene Saile’s blog and noticed a cool little design feature on her site that highlights a line of text once you scroll to it. Here’s a video so you can see what I mean:
👍4
Why Signals Are Better Than React Hooks
When Preact’s Marvin Hagemeister pops up in the comments saying “this is by far the best video about signals and why they are so exciting. I love the way you demonstrate it by coding along and moving an app over to signals,” it should bump a video up to the top of the Watch Later playlist. - https://www.youtube.com/watch?v=SO8lBVWF2Y8
#react
When Preact’s Marvin Hagemeister pops up in the comments saying “this is by far the best video about signals and why they are so exciting. I love the way you demonstrate it by coding along and moving an app over to signals,” it should bump a video up to the top of the Watch Later playlist. - https://www.youtube.com/watch?v=SO8lBVWF2Y8
#react
YouTube
Why Signals Are Better Than React Hooks
Hooks in React are tricky to use correctly and even harder to use in a performant way. This has left many applications with poor code quality and bad performance, but that doesn’t have to be the case anymore. Signals is a technique that has been around for…
👍4
A Next.js App Router Migration: The Good, Bad, and Ugly
A team rebuilt their main dashboard from scratch using a modern Next.js approach and here’s some of what they encountered, good and bad, before concluding that they wish they’d considered Remix instead. - https://www.flightcontrol.dev/blog/nextjs-app-router-migration-the-good-bad-and-ugly
#react
A team rebuilt their main dashboard from scratch using a modern Next.js approach and here’s some of what they encountered, good and bad, before concluding that they wish they’d considered Remix instead. - https://www.flightcontrol.dev/blog/nextjs-app-router-migration-the-good-bad-and-ugly
#react
Flightcontrol
Next.js App Router migration: the good, bad, and ugly
We rebuilt the Flightcontrol dashboard with Next.js App Router and this post shares the good and bad experiences from it.
👍4🔥1
Create an animated Vue 3 component when scrolling into view
These days animation is used a lot in websites, especially animations that appear when you scroll an element into. view. In this article, the author explore some 2 techniques to achieving this in Vue.js. - https://michael-verschoof.medium.com/create-an-animated-vue-3-component-when-scrolling-into-view-f8e793e221c8
#vue
These days animation is used a lot in websites, especially animations that appear when you scroll an element into. view. In this article, the author explore some 2 techniques to achieving this in Vue.js. - https://michael-verschoof.medium.com/create-an-animated-vue-3-component-when-scrolling-into-view-f8e793e221c8
#vue
Medium
Create an animated Vue 3 component when scrolling into view
Using Vue’s transition component and the IntersectionObserver
👍4
Microservices with CQRS and Event Sourcing in TypeScript with NestJS
Microservices with CQRS and Event Sourcing is an architecture that has gained a lot of popularity in recent… - https://blog.bitsrc.io/microservices-with-cqrs-and-event-sourcing-in-typescript-with-nestjs-831fba1e068b
#nodejs
Microservices with CQRS and Event Sourcing is an architecture that has gained a lot of popularity in recent… - https://blog.bitsrc.io/microservices-with-cqrs-and-event-sourcing-in-typescript-with-nestjs-831fba1e068b
#nodejs
Medium
Microservices with CQRS and Event Sourcing in TypeScript with NestJS
Microservices with CQRS and Event Sourcing is an architecture that has gained a lot of popularity in recent years. In this article, we…
👍4
Build an off-canvas menu with
Mark Conroy demonstrates how to create an accessible off-canvas menu using web components and the - https://blog.logrocket.com/build-off-canvas-menu-web-components
#css
Mark Conroy demonstrates how to create an accessible off-canvas menu using web components and the - https://blog.logrocket.com/build-off-canvas-menu-web-components
#css
LogRocket Blog
Build an off-canvas menu with <dialog> and web components - LogRocket Blog
Build an off-canvas menu using web components and HTML’s element to enhance user experience and accessibility.
❤4👍1
Create configurable Angular Guards
When building web application, from time to time we have to protect routes from unauthorized access. In… - https://itnext.io/create-configurable-angular-guards-11800f84d90a
#angular
When building web application, from time to time we have to protect routes from unauthorized access. In… - https://itnext.io/create-configurable-angular-guards-11800f84d90a
#angular
Medium
Create configurable Angular Guards
When building web application, from time to time we have to protect routes from unauthorized access. In Angular, we can do this by using…
👍3
Best Books for Software Engineering Leaders
Being a Software Engineer these days is extremely challenging — technology is moving faster than ever and… - https://levelup.gitconnected.com/best-books-for-software-engineering-leaders-221be3d5b2b
#books
Being a Software Engineer these days is extremely challenging — technology is moving faster than ever and… - https://levelup.gitconnected.com/best-books-for-software-engineering-leaders-221be3d5b2b
#books
Medium
Best Books for Software Engineering Leaders
Being a Software Engineer these days is extremely challenging — technology is moving faster than ever and sometimes it can be a struggle…
👍9❤3
Node Community Debates Enabling Corepack by Default
Node developers are wrestling with the decision to enable Corepack (a tool for managing package managers) by default, which has sparked a debate about the possibility of even removing npm from the Node.js binary. - https://socket.dev/blog/node-community-debates-enabling-corepack-unbundling-npm
#nodejs
Node developers are wrestling with the decision to enable Corepack (a tool for managing package managers) by default, which has sparked a debate about the possibility of even removing npm from the Node.js binary. - https://socket.dev/blog/node-community-debates-enabling-corepack-unbundling-npm
#nodejs
Socket
Node.js Community Debate Intensifies Over Enabling Corepack ...
The Node community is wrestling with the decision to enable Corepack by default, which has sparked a debate about the potential of removing npm from t...
👍2❤1🥰1
React Interview Questions and Answers
If you’re looking for a job and preparing for interviews, or if you just want to revise your overall knowledge, you might find this long standing resource useful, even if it just gives you some areas to research - https://github.com/sudheerj/reactjs-interview-questions
#react
If you’re looking for a job and preparing for interviews, or if you just want to revise your overall knowledge, you might find this long standing resource useful, even if it just gives you some areas to research - https://github.com/sudheerj/reactjs-interview-questions
#react
GitHub
GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions…
List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are coming soon!! - sudheerj/reactjs-interview-questions
👍3🔥2👏1
Difference Between UseCases In Watcher And Computed In Vue 3
In Vue 3, both computed properties and watchers allow you to react to changes in reactive data, but they have distinct purposes and behaviors. This article is a breakdown of their differences in terms of use cases. - https://blog.stackademic.com/difference-between-usecases-in-watcher-and-computed-in-vue-3-5a7764248949
#vue
In Vue 3, both computed properties and watchers allow you to react to changes in reactive data, but they have distinct purposes and behaviors. This article is a breakdown of their differences in terms of use cases. - https://blog.stackademic.com/difference-between-usecases-in-watcher-and-computed-in-vue-3-5a7764248949
#vue
Medium
Difference Between UseCases in Watcher And Computed in Vue 3
In Vue 3, both computed properties and watchers allow you to react to changes in reactive data, but they have distinct purposes and…
👍6
A Cache Decorator in Angular: Improving Performance with Memoization
In Angular applications, optimizing performance is crucial for delivering a smooth user experience. One… - https://medium.com/widle-studio/a-cache-decorator-in-angular-improving-performance-with-memoization-62fd6d7aca1f
#angular
In Angular applications, optimizing performance is crucial for delivering a smooth user experience. One… - https://medium.com/widle-studio/a-cache-decorator-in-angular-improving-performance-with-memoization-62fd6d7aca1f
#angular
Medium
A Cache Decorator in Angular: Improving Performance with Memoization
In Angular applications, optimizing performance is crucial for delivering a smooth user experience. One common technique to improve…
👍3❤1