Create Agent Skills in Simple Steps
Agent skills extend Claude Code and Codex with custom capabilities through simple markdown files and scripts.
Agent skills extend Claude Code and Codex with custom capabilities through simple markdown files and scripts.
Quick guide to setting up a PostgreSQL database in a Docker container for local development with docker-compose.
Share the current page with AI assistants like ChatGPT, Claude, and v0 using simple URL query strings for a single-click hand-off experience.
A comprehensive guide to building your first Chrome extension, covering manifest.json, content scripts, background scripts, popup scripts, and more.
Learn the [err, data] pattern inspired by Go's error handling for cleaner async error handling in TypeScript with better type safety.
Extend the User type of AuthJS using TypeScript's Module Augmentation to add custom fields like role, firstName, and lastName.
Use Zod to validate environment variables with type safety in TypeScript and extend the global ProcessEnv interface.
Learn how to stream data in Next.js using the TransformStream API and server-sent events for real-time data updates.
Understanding the difference between Logical OR (||) and Nullish Coalescing (??) operators in JavaScript for setting default values.
Useful Python tricks for coding interviews including Counter, reversed, defaultdict, deque, and enumerate with examples.
A reference table of commonly used Python built-in functions including abs, chr, divmod, len, max, min, ord, range, reversed, sorted, and sum.
Learn how to mock Express middleware functions in Jest tests using jest.mock.
Complete guide to mocking modules in Jest for both CommonJS and ES Module syntax, including named imports, default exports, and partial mocks.
Create custom exception filters in NestJS to handle RpcException errors thrown by microservices with better control and customization.
Array.fill in JavaScript passes objects by reference, not by value. Learn how to avoid common bugs when using this method.
Extend the Color class in Flutter to use hex color strings instead of ARGB integers.
Step-by-step guide to creating and using Python virtual environments with venv for isolated package management.
Write or append HTTP response text to a file in Python using the requests library.
Use decoration property of container with BoxDecoration and ImageProvider to add background images in Flutter.
Step-by-step guide to creating a private fork of a public GitHub repository using git clone --bare and git push --mirror.
Use DateTime's weekday getter to get any day of the week in Dart and Flutter.
Use Flutter's built-in RichText widget to display text with multiple different styles.
Use readlink -f to get the complete absolute path to a file in the terminal.
Remove all routes from the Navigator stack in Flutter, useful for implementing logout functionality.
Add a border to a container in Flutter using BoxDecoration with Border.all.
Amend the most recent commit message in Git and push the changes to a remote branch.