Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

drift

يحتوي drift على 49 من skills المجمعة من dadbodgeoff، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
49
Stars
781
محدث
2026-02-12
Forks
64
التغطية المهنية
9 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

atomic-matchmaking
مطوّرو البرمجيات

Two-phase commit matchmaking that verifies both player connections before creating a match. Handles disconnections gracefully with automatic re-queue of healthy players.

2026-02-12
background-jobs
مديرو الشبكات وأنظمة الحاسوب

Implement robust background job processing with dead letter queues, retries, and state machines. Use when building async workflows, scheduled tasks, or any work that shouldn't block the request/response cycle.

2026-02-12
backpressure
مطوّرو البرمجيات

Manage data flow when producers outpace consumers. Bounded buffers, adaptive flushing, and graceful degradation prevent OOM crashes and data loss.

2026-02-12
batch-processing
مديرو قواعد البيانات

Collect-then-batch pattern for database operations achieving 30-40% throughput improvement. Includes graceful fallback to sequential processing when batch operations fail.

2026-02-12
caching-strategies
مديرو الشبكات وأنظمة الحاسوب

Implement multi-layer caching with Redis, in-memory, and HTTP caching. Covers cache invalidation, stampede prevention, and cache-aside patterns.

2026-02-12
checkpoint-resume
مديرو قواعد البيانات

Exactly-once processing semantics with distributed coordination for file-based data pipelines. Atomic file claiming, status tracking, and automatic retry with in-memory fallback.

2026-02-12
cloud-storage
مطوّرو البرمجيات

Cloud storage integration with signed URLs, visibility control, multi-tenant path conventions, and presigned uploads for direct client uploads.

2026-02-12
community-feed
مطوّرو الويب

Social feed with batch queries, cursor pagination, trending algorithms, and engagement tracking. Efficient database queries for infinite scroll feeds.

2026-02-12
data-transformers
مطوّرو البرمجيات

Centralized transformation logic for consistent data shaping across API routes. Includes aggregators, rankers, trend calculators, and data sanitizers.

2026-02-12
database-migrations
مصممو قواعد البيانات

Safe database migration strategies for zero-downtime deployments. Covers backward-compatible changes, data migrations, and rollback procedures.

2026-02-12
dead-letter-queue
مديرو الشبكات وأنظمة الحاسوب

Store failed jobs for replay or manual inspection. Track failure patterns, enable manual intervention, and prevent data loss from processing errors.

2026-02-12
design-tokens
مصممو واجهات الويب والرقمية

Comprehensive design token system for typography, colors, and theming with WCAG AA compliance, TypeScript types, and framework integration (CSS-in-JS, Tailwind, CSS Variables).

2026-02-12
distributed-lock
مطوّرو البرمجيات

Prevent race conditions across multiple instances. Only one instance can hold a lock at a time. Automatic expiration prevents deadlocks.

2026-02-12
email-service
مطوّرو البرمجيات

Production email service with templates, queuing, and delivery tracking. Supports transactional emails, marketing campaigns, and webhooks.

2026-02-12
environment-config
مديرو الشبكات وأنظمة الحاسوب

Centralized environment variable management with validation. Fail fast at startup if config is invalid. Supports multi-environment setups (dev/staging/prod) with type-safe access.

2026-02-12
error-sanitization
مطوّرو البرمجيات

Production-safe error handling that logs full details server-side while exposing only generic, safe messages to users. Prevents information leakage of database strings, file paths, stack traces, and API keys.

2026-02-12
exception-taxonomy
مطوّرو البرمجيات

Hierarchical exception system with HTTP status codes, machine-readable error codes, and structured responses for consistent API error handling across all endpoints.

2026-02-12
feature-flags
مطوّرو البرمجيات

Implement a feature flag system for gradual rollouts, A/B testing, and kill switches. Use when you need to control feature availability without deployments, test features with specific users, or implement percentage-based rollouts.

2026-02-12
file-uploads
محللو أمن المعلومات

Production-grade secure file upload pipeline with multi-stage validation, malware scanning (ClamAV), hash-based duplicate detection, and race condition protection using distributed locks.

2026-02-12
fuzzy-matching
علماء البيانات

Multi-stage fuzzy matching pipeline for entity reconciliation. PostgreSQL trigram pre-filter, salient overlap check, and multi-factor similarity scoring.

2026-02-12
game-loop
مطوّرو البرمجيات

Fixed timestep game loop with interpolation for frame-rate independent physics. Separates physics updates from rendering, prevents spiral of death, and supports hitstop/slow-mo effects.

2026-02-12
geographic-clustering
علماء البيانات

Grid-based geographic clustering with O(n) performance, medoid finding for map markers, and multi-factor risk scoring from event density, sentiment, and recency.

2026-02-12
graceful-degradation
مهندسو شبكات الحاسوب

Build resilient systems that degrade gracefully under failure. Implement fallbacks, feature flags, and partial responses when dependencies fail.

2026-02-12
intelligent-cache
مديرو قواعد البيانات

Multi-layer caching with type-specific TTLs, get-or-generate pattern, memory and database layers, and graceful invalidation without cache stampede.

2026-02-12
job-state-machine
مطوّرو البرمجيات

Async job processing with validated state transitions, progress tracking, and asset linking. Ensure jobs always reach terminal states with proper error handling.

2026-02-12
leader-election
مطوّرو البرمجيات

Elect a single leader among multiple instances. Only one instance runs cron jobs or processes queues. Automatic failover when leader dies.

2026-02-12
metrics-collection
مطوّرو البرمجيات

Prometheus-compatible metrics collection with counters, gauges, and histograms. Export metrics for dashboards and alerts with proper labeling.

2026-02-12
mobile-components
مطوّرو الويب

Mobile-first UI components including bottom navigation, bottom sheets, pull-to-refresh, and swipe actions. Touch-optimized with proper gesture handling.

2026-02-12
monorepo-structure
مطوّرو البرمجيات

Set up a Turborepo + pnpm monorepo for sharing code between frontend, backend, and workers. One repo, multiple packages, shared types, parallel builds.

2026-02-12
multi-tenancy
مصممو قواعد البيانات

Implement multi-tenant architecture with tenant isolation, data separation, and per-tenant configuration. Supports shared database and schema-per-tenant models.

2026-02-12
oauth-social-login
محللو أمن المعلومات

Implement OAuth 2.0 social login with Google, GitHub, and other providers. Handles token exchange, user creation, and account linking.

2026-02-12
pagination
مطوّرو البرمجيات

Implement cursor-based and offset pagination for APIs. Covers efficient database queries, stable sorting, and pagination metadata.

2026-02-12
prompt-engine
مطوّرو البرمجيات

Template-based AI prompt engine with YAML templates, brand kit injection, input sanitization for security, and token-efficient context blocks.

2026-02-12
provenance-audit
مطوّرو البرمجيات

AI generation provenance and audit trail tracking. Records decision factors, data lineage, reasoning chains, confidence scoring, and cost tracking for AI-generated content.

2026-02-12
resilient-storage
مديرو قواعد البيانات

Multi-backend storage layer with automatic failover between Redis, database, and memory backends. Includes circuit breakers per backend and health-aware routing for high availability.

2026-02-12
row-level-security
مديرو قواعد البيانات

Implement PostgreSQL Row Level Security (RLS) for multi-tenant SaaS applications. Use when building apps where users should only see their own data, or when implementing organization-based data isolation.

2026-02-12
scoring-engine
علماء البيانات

Statistical scoring with z-scores, percentiles, freshness decay, and cross-category normalization. Rank and compare items with confidence scoring.

2026-02-12
server-tick
مطوّرو البرمجيات

Server-authoritative tick system for multiplayer games with lag compensation, anti-cheat validation, and deterministic physics. Prevents speed hacks and teleports while keeping gameplay fair for high-latency players.

2026-02-12
snapshot-aggregation
علماء البيانات

Daily compression of time-series data with merge logic for multiple pipeline runs, structured aggregation for dashboards, and storage estimation for capacity planning.

2026-02-12
soft-delete
مديرو قواعد البيانات

Implement soft delete pattern for data recovery and audit trails. Covers filtering, restoration, and permanent deletion workflows.

2026-02-12
عرض أهم 40 من أصل 49 skills مجمعة في هذا المستودع.