01-cs-fundamentals/programming-language-fundamentals/SKILL.md
[日本語版](../../ja/01-cs-fundamentals/programming-language-fundamentals/SKILL.md) # Programming Language Fundamentals A comprehensive guide to understanding the essence of programming languages. Covering type systems, memory models, control flow, functions, concurrency, and language comparisons, this guide builds the ability not just to "use" languages but to "understand and choose" them. ## Skill Structure ``` docs/ ├── 00-introduction/ # Introduction │ ├── 00-what-is-programming-la
npx skillsauth add gaku52/claude-code-skills 01-cs-fundamentals/programming-language-fundamentalsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
日本語版
A comprehensive guide to understanding the essence of programming languages. Covering type systems, memory models, control flow, functions, concurrency, and language comparisons, this guide builds the ability not just to "use" languages but to "understand and choose" them.
docs/
├── 00-introduction/ # Introduction
│ ├── 00-what-is-programming-language.md
│ ├── 01-compilation-vs-interpretation.md
│ ├── 02-paradigms-overview.md
│ └── 03-choosing-a-language.md
├── 01-type-systems/ # Type Systems
│ ├── 00-static-vs-dynamic.md
│ ├── 01-type-inference.md
│ ├── 02-generics-and-polymorphism.md
│ └── 03-algebraic-data-types.md
├── 02-memory-models/ # Memory Models
│ ├── 00-stack-and-heap.md
│ ├── 01-garbage-collection.md
│ ├── 02-ownership-and-borrowing.md
│ └── 03-reference-counting-vs-tracing.md
├── 03-control-flow/ # Control Flow
│ ├── 00-branching-and-loops.md
│ ├── 01-pattern-matching.md
│ ├── 02-error-handling.md
│ └── 03-iterators-and-generators.md
├── 04-functions/ # Functions
│ ├── 00-first-class-functions.md
│ ├── 01-closures.md
│ ├── 02-higher-order-functions.md
│ └── 03-recursion.md
├── 05-concurrency/ # Concurrency
│ ├── 00-threads-and-processes.md
│ ├── 01-async-await.md
│ ├── 02-message-passing.md
│ └── 03-parallel-programming.md
├── 06-language-comparison/ # Language Comparison
│ ├── 00-scripting-languages.md
│ ├── 01-systems-languages.md
│ ├── 02-jvm-languages.md
│ └── 03-functional-languages.md
└── 07-language-evolution/ # Language Evolution
├── 00-history-of-languages.md
├── 01-modern-language-features.md
├── 02-dsl-and-metaprogramming.md
└── 03-future-of-languages.md
tools
Fundamentals of modern web development. Framework selection (React, Vue, Next.js), project architecture, state management, routing, build tools, and CSS strategy best practices.
development
# React Development — Complete Guide > A comprehensive guide to building modern React applications with TypeScript. Covers fundamentals through advanced patterns, Hooks mastery, TypeScript integration, performance optimization, and algorithm internals. ## Target Audience - Developers new to React who want a solid foundation - Intermediate React developers looking to deepen their understanding of Hooks and TypeScript patterns - Engineers who want to understand React's internal algorithms (Virt
development
# Node.js Development Skill > A practical guide collection for Node.js development. Covers all aspects of Node.js application development, including Express, NestJS, asynchronous patterns, and performance optimization. ## Overview This skill covers the following topics: - **Express & NestJS**: When to use a lightweight framework vs. an enterprise framework - **Asynchronous Patterns**: Promise, async/await, Event Emitter, Streams, Worker Threads, Cluster - **Performance Optimization**: Memory
development
# Backend Development — Complete Guide > A comprehensive guide to backend engineering. Covers the fundamentals of HTTP, REST API design, databases, authentication, environment configuration, and algorithm proofs — everything needed to build robust server-side systems. ## Target Audience - Developers new to backend engineering - Frontend engineers expanding toward full-stack development - Engineers looking to solidify their understanding of server-side fundamentals ## Prerequisites - Basic p