language-fundamentals-skill
Master programming languages from Python to Rust. Learn core concepts like variables, OOP, functional programming, algorithms, data structures, and competitive programming techniques. Use when exploring programming languages, learning CS fundamentals, or preparing for technical interviews.
What this skill does
# Language & Fundamentals Skill
Complete guide to programming languages and computer science fundamentals from absolute beginner to expert level.
## Quick Start
### Choose Your Learning Path
```
Beginner → Intermediate → Advanced → Expert
↓ ↓ ↓ ↓
Syntax Paradigms Patterns Optimization
```
### Get Started in 5 Steps
1. **Pick a Language**:
- Start: Python, JavaScript, or Go
- Choose based on your goals
2. **Learn Fundamentals**:
- Variables and data types
- Control flow (if, loops, functions)
- Basic data structures
3. **Understand OOP/FP**:
- Choose paradigm (OOP preferred for beginners)
- Classes, inheritance, polymorphism
- Or: Functions, immutability, higher-order functions
4. **Master Algorithms & DS**:
- Arrays, linked lists, trees, graphs
- Sorting, searching, dynamic programming
5. **Practice & Specialize**:
- LeetCode or CodeWars (50+ problems)
- Build projects in your chosen language
---
## Programming Languages Overview
### **Tier 1: Best for Beginners**
#### Python
- **Why**: Readability, versatility, massive ecosystem
- **Use Cases**: Data science, web, automation, teaching
- **Roadmap**: https://roadmap.sh/python
- **Key Concepts**:
```python
# Variables and types
name = "Alice" # Dynamic typing
age = 30
# Functions
def greet(name):
return f"Hello, {name}!"
# List comprehension
squares = [x**2 for x in range(10)]
# OOP
class Person:
def __init__(self, name):
self.name = name
```
- **Learning Time**: 3-6 months to intermediate
- **Job Market**: 🟢 Excellent (data science, web, ML)
#### JavaScript
- **Why**: Runs everywhere (browser, Node.js, mobile)
- **Use Cases**: Web frontend, backend (Node), full-stack
- **Roadmap**: https://roadmap.sh/javascript
- **Key Concepts**:
```javascript
// Variables (let, const)
const name = "Alice";
let count = 0;
// Functions (arrow functions)
const greet = (name) => `Hello, ${name}!`;
// Objects and arrays
const user = { name: "Alice", age: 30 };
const numbers = [1, 2, 3, 4, 5];
// Async/await
async function fetchData() {
const data = await fetch('/api/data');
return data.json();
}
```
- **Learning Time**: 3-6 months to intermediate
- **Job Market**: 🟢 Excellent (web development dominant)
### **Tier 2: Popular & Powerful**
#### Go (Golang)
- **Why**: Fast, simple, excellent for concurrency
- **Use Cases**: Cloud infrastructure, microservices, DevOps tools
- **Roadmap**: https://roadmap.sh/golang
- **Key Concepts**:
```go
package main
import "fmt"
// Simple syntax
func greet(name string) string {
return fmt.Sprintf("Hello, %s!", name)
}
// Goroutines for concurrency
go func() {
fmt.Println("Running concurrently")
}()
// Interfaces (duck typing)
type Reader interface {
Read(p []byte) (n int, err error)
}
```
- **Learning Time**: 4-8 months to intermediate
- **Job Market**: 🟢 Growing (DevOps, cloud, microservices)
#### Java
- **Why**: Enterprise standard, strong typing, JVM ecosystem
- **Use Cases**: Enterprise apps, Android, large systems
- **Roadmap**: https://roadmap.sh/java
- **Key Concepts**:
```java
public class Person {
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
// Streams API
List<Person> adults = people.stream()
.filter(p -> p.getAge() >= 18)
.collect(Collectors.toList());
}
```
- **Learning Time**: 6-12 months to intermediate
- **Job Market**: 🟢 Excellent (enterprise, Android)
#### TypeScript
- **Why**: JavaScript with types (better than plain JS)
- **Use Cases**: Full-stack web, large JavaScript projects
- **Roadmap**: https://roadmap.sh/typescript
- **Key Concepts**:
```typescript
// Type annotations
interface User {
name: string;
age: number;
}
// Generic functions
function getValue<T>(arr: T[], index: number): T {
return arr[index];
}
// Union types
type Response = Success | Error;
```
- **Learning Time**: 1-2 months after JavaScript
- **Job Market**: 🟢 Excellent (web development)
#### Rust
- **Why**: Memory safety, performance, no garbage collector
- **Use Cases**: System programs, embedded, performance-critical
- **Roadmap**: https://roadmap.sh/rust
- **Key Concepts**:
```rust
// Ownership system (unique selling point)
let s1 = String::from("hello");
let s2 = s1; // s1 is moved, can't use it anymore
// Borrowing
let s3 = &s1; // Immutable borrow
let s4 = &mut s1; // Mutable borrow
// Pattern matching
match value {
Some(x) => println!("Value: {}", x),
None => println!("No value"),
}
```
- **Learning Time**: 8-16 months to intermediate
- **Job Market**: 🟡 Growing (systems programming, Web3)
### **Tier 3: Specialized**
#### C++
- **Why**: Maximum performance, used in games, systems
- **Use Cases**: Game engines, high-performance computing
- **Roadmap**: https://roadmap.sh/cpp
- **Job Market**: 🟢 Solid (games, systems, performance)
#### PHP
- **Why**: Web server scripting language (legacy but still common)
- **Use Cases**: Web development, server-side rendering
- **Roadmap**: https://roadmap.sh/php
- **Job Market**: 🟡 Declining (but still many jobs)
#### Kotlin
- **Why**: Modern JVM language, official Android language
- **Use Cases**: Android development, JVM applications
- **Roadmap**: https://roadmap.sh/kotlin
- **Job Market**: 🟡 Growing in Android ecosystem
#### Swift
- **Why**: Modern iOS/macOS language
- **Use Cases**: iOS, macOS, watchOS development
- **Roadmap**: https://roadmap.sh/swift
- **Job Market**: 🟢 Solid (iOS development)
---
## Computer Science Fundamentals
### **Data Structures**
**Essential DS Cheat Sheet:**
| Structure | Insert | Search | Delete | Use Case |
|-----------|--------|--------|--------|----------|
| Array | O(n) | O(n) | O(n) | Random access |
| Linked List | O(1) | O(n) | O(1) | Sequential access |
| Hash Table | O(1)* | O(1)* | O(1)* | Key-value storage |
| Binary Tree | O(log n)* | O(log n)* | O(log n)* | Hierarchical data |
| Graph | - | O(V+E) | - | Networks, relationships |
*Average case, depends on implementation
### **Essential Algorithms**
**1. Sorting Algorithms**
```
Quick Sort: O(n log n) average, in-place, most common
Merge Sort: O(n log n) guaranteed, stable, parallel-friendly
Heap Sort: O(n log n), in-place
Bubble Sort: O(n²) - avoid, only for learning
```
**2. Searching**
```
Binary Search: O(log n) on sorted arrays
Linear Search: O(n) on unsorted
Hash Lookup: O(1) average
```
**3. Dynamic Programming**
```
Common patterns:
- Fibonacci (overlapping subproblems)
- Longest Common Subsequence (optimal substructure)
- Knapsack Problem (decision trees)
```
### **Big O Complexity Analysis**
```
O(1) → Constant (best)
O(log n) → Logarithmic
O(n) → Linear
O(n log n)→ Linearithmic
O(n²) → Quadratic
O(n³) → Cubic
O(2ⁿ) → Exponential
O(n!) → Factorial (worst)
```
**Space Complexity**: Same analysis applies to memory usage
---
## Programming Paradigms
### **Object-Oriented Programming (OOP)**
The dominant paradigm. Four pillars:
```
1. Encapsulation - Hide internal state, expose interface
2. Inheritance - Reuse code through class hierarchies
3. Polymorphism - Same interface, different implementations
4. Abstraction - Deal with essential features only
```
**Example in Python:**
```python
# Encapsulation + Abstraction
class Animal:
def __init__(self, name):
self.__name = name # Private
# Polymorphism - override in subclasses
def speak(self):
pass
# Inheritance
class Dog(Animal):
def speak(self):
return f"{self.__name} says Woof!"
```
### **Functional Programming (FP)**
Alternative paradigm gaining popularity.
```
Core concepts:
- Pure functions - No side effects
- ImmRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.