Designing
Everything on SkillVeris tagged Designing — collected across the glossary, study notes, blog, and cheat sheets.
15 resources across 2 libraries
Study Notes(14)
Designing APIs with Postman (OpenAPI Import)
Using Postman's API Builder to design an API from an OpenAPI specification, generate mock servers, and keep implementation in sync with the contract.
JMeter Best Practices
Practical guidelines for building JMeter test plans that generate accurate load, scale to real traffic volumes, and stay maintainable over time.
Designing Realistic Load Profiles
Learn how to build JMeter load profiles that mirror real production traffic shape, mix, and variability instead of flat synthetic load.
Hadoop Best Practices
A practical guide to designing, tuning, and operating Hadoop clusters so they stay reliable and performant as data volumes grow.
Building an ETL DAG
A hands-on walkthrough of designing and implementing a complete Extract-Transform-Load pipeline as an Airflow DAG, including failure handling and local testing.
Power Automate Best Practices
Field-tested guidelines for building Power Automate flows that stay maintainable, resilient to failure, and easy to govern once they hit production.
Custom Events and Payloads
Learn how to design well-structured custom event names and payload shapes in Socket.IO, including validation, versioning, and binary data handling for maintain…
Designing Multi-Stage Pipelines
Learn how to structure a CI/CD pipeline into logical stages — build, test, package, deploy — so failures surface early and each stage has a clear contract with…
Designing a Chat Application
Covers the architecture behind real-time messaging apps: persistent connections, message delivery guarantees, ordering, presence, and multi-device synchronizat…
Designing a News Feed System
Explores how systems like Facebook or Twitter assemble a personalized, ranked feed at scale, contrasting fan-out-on-write and fan-out-on-read delivery models.
Designing a Rate Limiter
Walks through building a distributed rate limiter that protects APIs from abuse, comparing token bucket, sliding window, and fixed window algorithms and where…
Designing a URL Shortener
A classic system design interview problem that exercises encoding schemes, key generation at scale, database sharding, and redirect performance under heavy rea…
Writing a Custom Composable
A hands-on walkthrough of designing, implementing, and consuming a custom composable, using a realistic data-fetching example.
Custom Exceptions
Custom exception types let you model domain-specific failure conditions precisely, carrying extra context and enabling callers to catch them selectively.