All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs940 views
Css Tailwind MergeA

> Resolve Tailwind class conflicts intelligently with tailwind-merge for safe className composition and overrides

toolstypescriptreact
0
20
Css Tailwind PatternA

> Apply Tailwind CSS utility-first patterns for consistent, maintainable component styling

designtypescriptgo
0
20
Db Acid In PracticeA

> The mechanisms that make ACID guarantees real: Write-Ahead Logging ensures atomicity and durability, fsync ensures persistence to physical media, and crash recovery replays the WAL to restore a consistent state.

databasesgobash
0
20
Db Acid PropertiesA

> ACID guarantees that database transactions are processed reliably: each transaction is all-or-nothing (Atomic), leaves the database in a valid state (Consistent), operates as if no other transactions are running (Isolated), and once committed, persists even through crashes (Durable).

databasesgosql
0
20
Db Adjacency ListA

> The simplest hierarchical model where each row stores a reference to its parent, traversed with recursive CTEs for subtree and ancestor queries.

businessrustgo
0
20
Db Audit TrailA

> Recording who changed what, when, and why, using trigger-based or application-level change tracking with immutable append-only logs.

databasesgosql
0
20
Db Btree IndexA

> The default index type in PostgreSQL and MySQL, B-tree indexes support equality and range queries on ordered data with O(log n) lookup performance.

businesssqlnode
0
20
Db Cap TheoremA

> In a distributed system, when a network partition occurs, you must choose between consistency (every read returns the most recent write) and availability (every non-failing node returns a response) -- you cannot have both simultaneously.

databasesgosql
0
20
Db Closure TableA

> Storing all ancestor-descendant pairs in a separate table for O(1) subtree and ancestor lookups with manageable write costs.

databasesgosql
0
20
Db Composite IndexA

> Multi-column indexes that accelerate queries filtering on column combinations, governed by the leftmost prefix rule and the ESR (Equality, Sort, Range) column ordering strategy.

databasesgosql
0
20
Db Connection PoolingA

> External connection poolers like PgBouncer sit between the application and database, multiplexing many application connections onto fewer database connections to prevent connection exhaustion.

devopsgojava
0
20
Db Connection SizingA

> Tuning max_connections, understanding per-connection memory overhead, and right-sizing database connections for on-premise and serverless environments.

businesssqlaws
0
20
Db Covering IndexA

> Indexes that contain all columns needed by a query, enabling index-only scans that skip heap table access entirely.

datasqlnode
0
20
Db Deadlock PreventionA

> Deadlocks occur when two or more transactions hold locks and each waits for a lock the other holds; prevention through consistent lock ordering and detection through timeout-based abort resolves them.

databasesgosql
0
20
Db DenormalizationA

> Intentionally introducing controlled redundancy into a normalized schema to eliminate expensive joins or aggregations, applied only after measured proof of a performance problem.

databasesgosql
0
20
Db Document In RelationalA

> Using JSONB columns to store semi-structured data alongside relational tables, with indexing strategies and guidelines for when to embed vs normalize.

databasesgosql
0
20
Db Entity Attribute ValueA

> A schema pattern for storing dynamic, user-defined attributes as rows instead of columns -- usually avoided in favor of JSONB or polymorphic alternatives, but occasionally justified for genuinely unbounded attribute sets.

databasesgosql
0
20
Db Eventual ConsistencyA

> If no new updates are made, all replicas will eventually converge to the same value -- a consistency model that trades immediate agreement for higher availability and lower latency.

businessgosql
0
20
Db Expand ContractA

> Add new structure, migrate data, remove old structure -- the three-phase pattern for safe column renames, type changes, and table restructuring.

databasesrustsql
0
20
Db Explain ReadingA

> How to read query execution plans to identify performance bottlenecks, row count misestimations, and missing indexes.

databasesgosql
0
20
Db Expression IndexA

> Indexes on computed expressions and specialized index types (GIN, GiST) for non-scalar data like JSONB, arrays, and full-text search.

databasesgosql
0
20
Db First Normal FormA

> Every column holds a single atomic value, no repeating groups exist, and every row is uniquely identifiable by a primary key.

databasesgosql
0
20
Db Graph In RelationalA

> Modeling vertices and edges in SQL tables for social graphs, dependency networks, and recommendation systems with recursive queries -- and knowing when SQL stops being practical.

databasesgosql
0
20
Db Hash IndexA

> Optimized for equality-only lookups with O(1) average access time, hash indexes are smaller than B-tree when range queries and ordering are never needed.

databasessqlapi
0
20
Db Hierarchical DataA

> Choosing between adjacency list, nested sets, closure table, and materialized path based on read/write ratio, query patterns, and tree depth.

databasesgosql
0
20
Db Horizontal ShardingA

> Distributing rows of a table across multiple database instances (shards) to scale beyond the capacity of a single server, with careful attention to shard key selection and cross-shard query complexity.

databasespythongo
0
20
Db Isolation LevelsA

> The four SQL standard isolation levels control which concurrent transaction side-effects are visible, with PostgreSQL implementing them via MVCC snapshots rather than traditional locking.

databasessqldebugging
0
20
Db Isolation SelectionA

> Selecting the right isolation level requires matching the workload's correctness requirements against the performance cost and retry complexity of stricter levels.

databasessqldebugging
0
20
Db Migration RollbackA

> Forward-only vs reversible migrations, data backfill safety, and blue-green schema patterns for confident schema evolution.

databasesgosql
0
20
Db MvccA

> MVCC allows readers and writers to operate concurrently without blocking each other by maintaining multiple versions of each row, with visibility determined by transaction snapshots.

databasesgosql
0
20
Db Nested SetsA

> Encoding hierarchy position with left/right boundary numbers for O(1) subtree and ancestor queries at the cost of expensive writes.

databasesgosql
0
20
Db Optimistic LockingA

> Optimistic locking assumes conflicts are rare, allows concurrent reads without locks, and detects conflicts at write time using version columns or conditional updates.

databasesgosql
0
20
Db Partial IndexA

> Indexes with a WHERE clause that index only a subset of rows, reducing size and improving performance for targeted query patterns.

databasessqlexpress
0
20
Db Pessimistic LockingA

> Pessimistic locking acquires locks before modifying data, guaranteeing exclusive access and preventing conflicts at the cost of reduced concurrency.

databasesgosql
0
20
Db Polymorphic AssociationsA

> Modeling inheritance hierarchies and type-varying relationships in relational databases using single-table inheritance (STI), class-table inheritance (CTI), or shared foreign key patterns.

databasessqldatabase
0
20
Db Query RewritingA

> Structural query transformations that help the planner choose better execution plans without changing results.

databasesgosql
0
20
Db Query StatisticsA

> How the planner uses table statistics (pg_stats, histograms, most-common-values) to estimate row counts and choose execution plans.

databasesgosql
0
20
Db Read PhenomenaA

> The SQL standard defines three read anomalies (dirty, non-repeatable, phantom) that isolation levels progressively prevent, plus PostgreSQL adds write skew as a fourth anomaly relevant to Serializable.

databasessqldebugging
0
20
Db Scan TypesA

> Understanding when the planner chooses sequential scan, index scan, bitmap scan, or index-only scan and why each is optimal for different selectivity ranges.

databasessqlnode
0
20
Db Second Normal FormA

> Every non-key column must depend on the entire composite primary key, not just part of it -- eliminating partial dependencies.

databasesgosql
0
20
Db Table PartitioningA

> Splitting a large table into smaller physical partitions by range, list, or hash to improve query performance, simplify maintenance, and enable efficient data lifecycle management.

databasesgosql
0
20
Db Temporal DataA

> Modeling when facts are true (valid-time), when they were recorded (transaction-time), or both (bitemporal), enabling time-travel queries and regulatory audit.

databasessqldatabase
0
20
Db Third Normal FormA

> "Every non-key attribute must provide a fact about the key, the whole key, and nothing but the key." -- Codd's memorable definition of full normalization through 3NF.

databasesgosql
0
20
Db Time SeriesA

> Designing append-heavy tables for metrics, events, and logs with time-based partitioning, retention policies, and efficient aggregation.

databasessqlperformance
0
20
Db Vertical PartitioningA

> Splitting a wide table into multiple narrower tables, separating hot columns from cold columns, and managing large objects with TOAST to reduce I/O and improve cache efficiency.

databasesgosql
0
20
Db Zero Downtime MigrationA

> Online schema changes that avoid table locks and keep the application serving traffic throughout the migration.

databasesgobash
0
20
Design AffordancesA

> Perceived actionability — signifiers, constraints, mappings (Don Norman), flat design's affordance problem, touch targets, hover states as affordance

designgoexpress
0
20
Design AlignmentA

> Visual order through edge alignment, center alignment, optical alignment, and the invisible structure that consistent alignment creates across a page

designgoangular
0
20
Design Apple HigA

> Apple's design philosophy covering clarity/deference/depth, vibrancy and material effects, SF Symbols integration, semantic color system, safe area management, and platform-specific navigation patterns across iOS, iPadOS, macOS, watchOS, and visionOS.

designgoswift
0
20
Design Atomic DesignA

> Composition methodology for building design systems using five distinct levels of abstraction: atoms, molecules, organisms, templates, and pages.

designgoswift
0
20