#componentbasedarchitecture search results

How Component Object Model (COM) works. #ThreatHunting #DFIR #Windows #Microsoft

ACEResponder's tweet image. How Component Object Model (COM) works.

#ThreatHunting #DFIR #Windows #Microsoft

Persistence: Component Object Model (COM) hijacking stmxcsr.com/persistence/co…

5mukx's tweet image. Persistence: Component Object Model (COM) hijacking

stmxcsr.com/persistence/co…

I've had a lot of people ask me how to build components properly. How do you think about things like composition, polymorphism, slots, data attributes and accessibility? It's a lot to figure out. 📦 That's why @shadcn and I have teamed up to create components․build — the…

haydenbleasel's tweet image. I've had a lot of people ask me how to build components properly. How do you think about things like composition, polymorphism, slots, data attributes and accessibility? It's a lot to figure out.

📦 That's why @shadcn and I have teamed up to create components․build — the…

𝗪𝗵𝘆 𝗱𝗼𝗲𝘀 𝗚𝗼𝗼𝗴𝗹𝗲 𝗿𝗲𝗰𝗼𝗺𝗺𝗲𝗻𝗱 𝗠𝗼𝗱𝘂𝗹𝗮𝗿 𝗠𝗼𝗻𝗼𝗹𝗶𝘁𝗵𝘀 𝗶𝗻𝘀𝘁𝗲𝗮𝗱 𝗼𝗳 𝗠𝗶𝗰𝗿𝗼𝘀𝗲𝗿𝘃𝗶𝗰𝗲𝘀? In the last decade, we have seen a massive trend of using microservices everywhere. We were building systems for a few hundred or thousand users and…

milan_milanovic's tweet image. 𝗪𝗵𝘆 𝗱𝗼𝗲𝘀 𝗚𝗼𝗼𝗴𝗹𝗲 𝗿𝗲𝗰𝗼𝗺𝗺𝗲𝗻𝗱 𝗠𝗼𝗱𝘂𝗹𝗮𝗿 𝗠𝗼𝗻𝗼𝗹𝗶𝘁𝗵𝘀 𝗶𝗻𝘀𝘁𝗲𝗮𝗱 𝗼𝗳 𝗠𝗶𝗰𝗿𝗼𝘀𝗲𝗿𝘃𝗶𝗰𝗲𝘀?

In the last decade, we have seen a massive trend of using microservices everywhere. We were building systems for a few hundred or thousand users and…

Frontend development isn’t just about components and styling. It also has architecture. Let’s talk about architectural patterns for frontend apps: the high-level structures that make your codebase scalable, maintainable, and sane ⬇️⬇️

EOEboh's tweet image. Frontend development isn’t just about components and styling.
It also has architecture.

Let’s talk about architectural patterns for frontend apps: the high-level structures that make your codebase scalable, maintainable, and sane ⬇️⬇️

Building a project isn’t enough. You must design how your audience interacts, not just when. This is Engagement Choreography the deliberate architecture of community behavior. Engagement isn’t random. Every interaction is a node in a flow: – Who talks to whom – When actions…

Beatriz_Ape's tweet image. Building a project isn’t enough. You must design how your audience interacts, not just when.

This is Engagement Choreography the deliberate architecture of community behavior.

Engagement isn’t random. Every interaction is a node in a flow:
– Who talks to whom
– When actions…

❌ Avoid having components with too many props. ✅ Instead use the compound components pattern in React to embrace composition.


Wouldn’t it be fantastic to be able to search for a component and check how it’s designed and implemented across design systems out there? Component Gallery (component.gallery) and Storybook Encyclopedia (storybook.js.org/showcase) allow you to do just that. #design #ux

vitalyf's tweet image. Wouldn’t it be fantastic to be able to search for a component and check how it’s designed and implemented across design systems out there? Component Gallery (component.gallery) and Storybook  Encyclopedia (storybook.js.org/showcase) allow you to do just that. #design #ux

Design patterns are solutions to common coding problems that show up often in your projects. And in this tutorial, @PlaybackPress explains how some key object-oriented design patterns work in Java. He covers patterns like Strategy, Singleton, Composite, Decorator, State,…

freeCodeCamp's tweet image. Design patterns are solutions to common coding problems that show up often in your projects.

And in this tutorial, @PlaybackPress explains how some key object-oriented design patterns work in Java.

He covers patterns like Strategy, Singleton, Composite, Decorator, State,…

🚀 Building Scalable Angular Apps : Architecture That Works Ever opened a large Angular project and got lost in `components/`, `services/`, `shared/`, `utils/` chaos? That’s a sign of no architecture. Here’s how pros structure Angular apps that scale 👇 #Angular #frontend

iamsbdash's tweet image. 🚀 Building Scalable Angular Apps : Architecture That Works

Ever opened a large Angular project and got lost in `components/`, `services/`, `shared/`, `utils/` chaos?

That’s a sign of no architecture.

Here’s how pros structure Angular apps that scale 👇  
#Angular #frontend…

What if your component model had a first-class place to put async work, with interruptible, independent tasks and without needing to trace a reactive dependency graph and accidentally DDoS yourself?


React re-renders recursively, and when it comes across the element that preserves its referential identity from the previous render, it can stop the recursion. That's why component composition can be used as an alternative to memoization.

When the parent state changes, React recursively re-renders all children, but there is a nuance. Writing an article about it.



AI can’t document what it can’t understand. If a human struggles to read your component API, imagine what an AI sees. We often think about design tokens, theming, or documentation, but the clarity of your component structure is just as important. Inconsistent prop names,…

muhimasri's tweet image. AI can’t document what it can’t understand.

If a human struggles to read your component API, imagine what an AI sees.

We often think about design tokens, theming, or documentation,
but the clarity of your component structure is just as important.

Inconsistent prop names,…

Outdated IT can’t sustain value-based care. Scalable, interoperable Health IT infrastructure turns fragmented data into measurable outcomes and better reimbursement. capminds.com/blog/designing… #valuebasedcare #healthcareinnovation #digitalhealth #interoperability

CapMinds's tweet image. Outdated IT can’t sustain value-based care. Scalable, interoperable Health IT infrastructure turns fragmented data into measurable outcomes and better reimbursement. 

capminds.com/blog/designing…

#valuebasedcare #healthcareinnovation #digitalhealth #interoperability

The most flexible pattern I've found to build compound UIs: a headless store. 1. Create store instance (local or global) 2. Pass it in to components (or use context) More control than render props, HOCs, refs, or classic compound components IMO

DavidKPiano's tweet image. The most flexible pattern I've found to build compound UIs: a headless store.

1. Create store instance (local or global)
2. Pass it in to components (or use context)

More control than render props, HOCs, refs, or classic compound components IMO
DavidKPiano's tweet image. The most flexible pattern I've found to build compound UIs: a headless store.

1. Create store instance (local or global)
2. Pass it in to components (or use context)

More control than render props, HOCs, refs, or classic compound components IMO

Service-Oriented Architecture (SOA) Overview → A design pattern where software components provide services to other components over a network. → Focuses on reusability, interoperability, and loose coupling. → Each service represents a business function accessible through…

e_opore's tweet image. Service-Oriented Architecture (SOA)

Overview

→ A design pattern where software components provide services to other components over a network.
→ Focuses on reusability, interoperability, and loose coupling.
→ Each service represents a business function accessible through…
e_opore's tweet image. Service-Oriented Architecture (SOA)

Overview

→ A design pattern where software components provide services to other components over a network.
→ Focuses on reusability, interoperability, and loose coupling.
→ Each service represents a business function accessible through…

2/6 Component Libraries: Create reusable components that you can simply mention using @ and combine into new designs without losing the style and structure of the components. Components magically adapt to your cases.


Modular Architecture Overview → An architectural style where the system is divided into self-contained modules → Each module represents a feature or plugin that can be added, removed, or updated independently → Promotes flexibility, maintainability, and scalability in large…

e_opore's tweet image. Modular Architecture

Overview

→ An architectural style where the system is divided into self-contained modules
→ Each module represents a feature or plugin that can be added, removed, or updated independently
→ Promotes flexibility, maintainability, and scalability in large…

Calling all #developers & #tech enthusiasts! Share your game-changing element of #componentbasedarchitecture for building #scalableapps.


Core Principles of React : 1/7: The core principles of React provide the foundation for efficient development and reusable components. Embrace component-based architecture to build self-contained pieces of code that compose into powerful UIs. #ReactJS #ComponentBasedArchitecture


Does building an experience with components change the way it's designed? bit.ly/2ZBqoaw Devin Smith and Kat Perez discuss in Episode 3 of our component-based architecture and #Design vlog series. #ComponentBasedArchitecture #Technology #ComponentLibrary #DesignSystem


What is atomic design? Kat Perez and Devin Smith explain in Episode 2 of our component-based architecture and design vlog series. Watch the full episode here: bit.ly/2T8CEJR #AtomicDesign #ComponentBasedArchitecture #Technology #Design


Today we're launching a new vlog series: Devin Smith and Stevie Palmateer discuss the business benefits of component-based architecture and design. Watch Episode 1: (link: bit.ly/2LS53TI) #ComponentBasedArchitecture #Technology #Design


Had a productive day with contributing and pairing. Explaining #ComponentBasedArchitecture @angularjs 1.5.5 @typescriptlang


I didn’t know that Angular 2 adapts that many concepts from it’s competitors 😳 #OneWayDataflow #ComponentBasedArchitecture #FrontTrends


No results for "#componentbasedarchitecture"
Loading...

Something went wrong.


Something went wrong.


United States Trends