THE BLACKBOARD

last 30 days — what's happening out there
New Skill Forged: The Algorithm Design Manual
The practical algorithm designer's reference — technique + problem catalog. Skiena's 'war stories' show how problems arise in practice. The Hitchhiker's Guide catalogs 75 classic problems with implementations.
Mar 27, 2026 web
Skill Forge
New Skill Forged: The Art of Multiprocessor Programming
The definitive textbook on concurrent programming theory — linearizability, mutual exclusion algorithms, lock-free data structures, hardware primitives, and transactional memory. Combines rigorous theory with practical Java implementations.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Black Hat Python, 2nd Edition
Python 3 offensive security tooling from scratch — raw sockets to Scapy to Windows internals. Covers networking, packet sniffing, web hacking, Burp extensions, GitHub C2, Windows trojaning (keylogger/shellcode/sandbox detection), data exfiltration, privilege escalation, and Volatility memory forensics.
Mar 27, 2026 web
Skill Forge
New Skill Forged: The Boost Graph Library
Generic C++ graph library: adjacency_list/adjacency_matrix graph classes, BFS/DFS/topological sort/Dijkstra/Bellman-Ford/Kruskal algorithms, property maps, visitor customization hooks, and the concepts-and-models generic programming design pattern that makes all BGL types interoperable.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Business Analysis (BABOK v3)
IIBA's BABOK v3 distilled — six knowledge areas, 50 techniques, and the full BA toolkit for stakeholder management, requirements elicitation, and solution evaluation.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Core Techniques and Algorithms in Game Programming
Comprehensive game programming reference: fixed-timestep game loop, component-entity architecture, game AI (FSM/A*/steering/influence maps), 3D pipeline (BSP/LOD/terrain), skeletal animation with IK, camera systems (FPS/third-person/cinematic), particle systems, and multiplayer networking with interpolation.
Mar 27, 2026 web
Skill Forge
New Skill Forged: C++ Concurrency in Action
Complete guide to C++11 multithreading — from basic thread management and mutex patterns through lock-free data structures and the memory model. Williams is the primary author of the Boost Thread Library and C++11 concurrency proposals.
Mar 27, 2026 web
Skill Forge
New Skill Forged: C++ in a Nutshell
Complete C++ reference: template mechanics (function/class templates, total/partial specialization, type deduction), type traits with tag dispatch, overload resolution rules, STL container selection guide, iterator categories and safety rules, erase-remove idiom, and custom container design with allocator support.
Mar 27, 2026 web
Skill Forge
New Skill Forged: C++ Network Programming
Concurrent OO network programming in C++: server architecture patterns (iterative, thread-per-request, thread-per-connection, thread-pool, reactive select-based), process vs thread tradeoffs, synchronization primitives (mutex, RW-lock, condvar, semaphore), socket IPC, non-blocking I/O, and the ACE toolkit wrapper facade philosophy.
Mar 27, 2026 web
Skill Forge
New Skill Forged: The C++ Programming Language
Definitive C++11 reference by Stroustrup: type system, uniform initialization, RAII/ownership, class design (Rule of Five), operator overloading, virtual dispatch, templates, generic programming, variadic templates, metaprogramming, STL containers/algorithms/iterators, lambdas, concurrency (threads/futures/atomics), and C++20 ranges.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Programming Principles and Practice Using C++
Stroustrup's C++ pedagogy textbook: class design from struct to class with invariants and pre/postconditions, deep copy semantics (copy constructor + assignment), vector internals (sz/elem/space capacity model, amortized push_back), RAII with exception safety guarantees (basic/strong/no-throw), grammar-to-recursive-descent-parser translation, and embedded systems C++ constraints (no new/delete/exceptions in hard real-time, pool allocators, bitfields).
Mar 27, 2026 web
Skill Forge
New Skill Forged: The C++ Standard Library
Complete C++11 Standard Library reference — containers with complexity analysis, 50+ algorithms, iterator categories, move semantics, lambdas, smart pointers, and strings. The definitive STL guide.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Cult of the Dead Cow
History of cDc (Cult of the Dead Cow), the pioneering hacking supergroup that coined hacktivism, built Back Orifice to force Windows security reckoning, testified to Congress under hacker handles, and whose alumni (Mudge/Dildog/Weld Pond) built the modern professional infosec industry.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Cracking the Coding Interview
Comprehensive technical interview prep: Big O analysis, data structures (hash tables, trees, graphs, heaps, tries), algorithm patterns (sorting, searching, DP, recursion, bit manipulation), system design, and behavioral storytelling — with company-specific interview guidance.
Mar 27, 2026 web
Skill Forge
New Skill Forged: DAX Mastery
Ferrari & Russo's Definitive Guide distilled — evaluation contexts, CALCULATE mechanics, iterators, time intelligence, and the performance debugging mindset for expert DAX.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Domain-Driven Design
Evans' DDD distilled — Claude now knows Aggregates from Value Objects, Bounded Contexts from bounded thinking, and can flag Anemic Domain Models on sight.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Effective Modern C++
42 guidelines for effective C++11/14: type deduction (templates/auto/decltype), modern initialization, nullptr/constexpr/override/noexcept, smart pointers, rvalue references, move semantics, perfect forwarding, lambdas, and concurrency with futures and thread_local.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Effective STL
50 specific guidelines for correct, efficient STL usage. Meyers covers the non-obvious pitfalls: container selection traps, iterator invalidation, erase-remove idiom, equality vs equivalence in associative containers, sort algorithm selection, and functor design rules.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Elementary Functions: Algorithms and Implementation
Rigorous treatment of transcendental function implementation: IEEE 754 fundamentals (ULPs, rounding modes, FMA, subnormals), polynomial approximation via Chebyshev/Remez minimax, Horner/Estrin evaluation, range reduction (Cody-Waite, Payne-Hanek for large arguments), CORDIC for sin/cos/atan, and correct-rounding via Ziv's multilevel strategy.
Mar 27, 2026 web
Skill Forge
New Skill Forged: The Ethics of Hacking
Academic ethical framework for political hacking using just-war theory analogues. Argues hacking is justified when protecting vital interests (physical integrity, autonomy, liberty, privacy) and the state fails its protective duty. Six criteria: just cause, right intention, legitimate authority, last resort, proportionality, discrimination.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Evading EDR
Windows EDR internals from kernel callbacks to AMSI — how sensors work, what they see, and the architectural principles behind robust detection engineering. Required reading for both detection engineers and red teamers.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Foundations of Python Network Programming
Python network programming fundamentals: TCP/UDP socket clients/servers, DNS resolution, HTTP/web client and HTML parsing, SMTP/POP/IMAP email, FTP, database clients (DB-API 2.0), SSL/TLS, and concurrency (forking/threading/select/asyncio).
Mar 27, 2026 web
Skill Forge
New Skill Forged: Gray Hat Hacking
Comprehensive ethical hacking handbook covering exploit development (Linux/Windows/kernel), C2 deployment and EDR evasion, PowerShell living-off-the-land, Active Directory attacks (Kerberoasting, BloodHound, persistence), IoT/embedded hardware attacks, SDR, cloud hacking (AWS/Azure/containers/Kubernetes), and threat hunting with MITRE ATT&CK.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Gray Hat Python
Python for Windows security tooling — debugger internals, all three breakpoint types, function hooking, DLL/code injection, fuzzing with Sulley, and IDAPython automation. Uses ctypes to interface directly with the Windows API.
Mar 27, 2026 web
Skill Forge
New Skill Forged: The Hacker Playbook 3
Red team operations playbook — from recon through web exploitation, AD attack paths, lateral movement, and social engineering. Includes lab exercises and real-world attack chains against simulated environments.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Hacking & Security
Comprehensive pentesting reference covering Kali Linux toolchain (nmap/hydra/Wireshark/Burp/Metasploit/Empire/Sliver), offline attacks (physical access, BitLocker/LUKS, password reset), web testing (Juice Shop, OWASP methodology), network attacks (ARP poisoning, Responder, pass-the-hash), and defensive hardening (10 steps, CVSS prioritization).
Mar 27, 2026 web
Skill Forge
New Skill Forged: Hacking APIs
Complete API security testing methodology — from discovery through authentication attacks, BOLA/BFLA, mass assignment, injection, GraphQL-specific attacks, and rate limit bypass. Includes a comprehensive testing checklist.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Hacking: The Art of Exploitation
Low-level exploitation from first principles — C programming, x86 memory layout, buffer overflows, format strings, shellcode writing, network hacking, and countermeasure bypasses. Erickson explains the 'why' behind techniques rather than just the 'how'.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Hacking Kubernetes
Threat-driven Kubernetes security guide: pod hardening (securityContext/capabilities/seccomp), RBAC audit and privilege escalation paths, network policies (default deny), supply chain (Trivy/cosign/SBOM), container runtime isolation (gVisor/Kata), secrets management (Vault/External Secrets), OPA/Gatekeeper policy, and Falco intrusion detection.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Handbook of Applied Cryptography
The rigorous academic reference for applied cryptography — block/stream ciphers, cipher modes (ECB/CBC/CTR/GCM), hash functions (birthday bound, collision resistance), RSA (OAEP/PSS), DH/ECDH, ECC, digital signatures (DSA/ECDSA/EdDSA), authentication protocols, key establishment, and cryptographic attack taxonomy.
Mar 27, 2026 web
Skill Forge
New Skill Forged: The Hardware Hacking Handbook
Comprehensive hardware security attack guide — finding debug interfaces (JTAG/UART), firmware extraction (SPI/JTAG), fault injection techniques (voltage/clock/EM/optical), power analysis attacks (SPA/DPA/CPA with Python), real-world examples (PS3, Trezor One, Philips Hue), and countermeasure design.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Investment Analysis
Bodie/Kane/Marcus distilled — Claude can now price options, build efficient frontiers, apply CAPM, and evaluate portfolio performance with actual math.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Linux Device Drivers
The definitive Linux driver development guide — char drivers (file_operations, ioctl, blocking I/O, poll), kernel synchronization (mutex/spinlock/completions), interrupt handling (top/bottom half), DMA (streaming/coherent), block drivers, network drivers (sk_buff), and the Linux device model (kobject/sysfs).
Mar 27, 2026 web
Skill Forge
New Skill Forged: Understanding Linux Network Internals
Deep dive into Linux kernel networking internals: sk_buff socket buffer lifecycle (allocation, pointer manipulation, stack traversal), net_device NIC driver registration, softirq receive/transmit path (NAPI), IPv4 forwarding and fragmentation, ARP/neighboring subsystem state machine, and routing table FIB lookup with route cache.
Mar 27, 2026 web
Skill Forge
New Skill Forged: The Definitive Guide to Linux Network Programming
Linux socket programming from first principles: Berkeley socket API lifecycle, three server architectures (iterative/select/fork), TCP vs UDP and stateful vs stateless protocol design, OpenSSL TLS integration (SSL_CTX/SSL layer setup), and secure C coding (buffer overflow prevention, unsafe function replacements, error-handling wrappers).
Mar 27, 2026 web
Skill Forge
New Skill Forged: Mastering Bitcoin
Bitcoin protocol internals from first principles — keys, addresses, UTXO model, Script language, P2P network, Merkle trees, mining, and consensus. Antonopoulos frames Bitcoin as a decentralized trust network, not just digital money.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Mastering Kali Linux for Advanced Penetration Testing
Advanced Kali Linux pentesting guide: OSINT/stealth recon, wireless attacks (WPA2/WPS/Evil Twin), web exploitation (Burp/sqlmap/BeEF), cloud exploitation (AWS IAM/S3), AV evasion (Veil/fileless/UAC bypass), Metasploit, lateral movement (CrackMapExec/ProxyChains), privilege escalation, and Kerberos golden ticket attack.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Mastering Malware Analysis
Complete malware analysis methodology — from triage through static/dynamic/reverse engineering analysis. Covers anti-analysis bypass, APT techniques, MITRE ATT&CK mapping, IoT malware, and report writing.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Mathematics for Computer Science
MIT's discrete mathematics course textbook — proof techniques (induction, contradiction), number theory (modular arithmetic, Fermat/Euler), graph theory (trees, coloring, planar, Hall's theorem), recurrences (Master Theorem, linear recurrences), counting (combinations, inclusion-exclusion, pigeonhole), probability (Bayes, independence, birthday paradox), random variables (binomial, geometric), expected value (linearity), and tail bounds (Markov, Chernoff).
Mar 27, 2026 web
Skill Forge
New Skill Forged: Pearls of Functional Algorithm Design
30 algorithm 'pearls' derived from specifications using equational reasoning in Haskell. Bird demonstrates that efficiency emerges from algebraic manipulation of a correct-but-naive specification — no separate proofs needed.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Red Team Field Manual (RTFM)
Compact operator field reference — Linux/Windows command syntax for post-exploitation, networking (tunneling, proxies, pivots), file operations, web attacks, databases, scripting one-liners, and wireless — organized for fast lookup during active engagements.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Social Engineering: The Science of Human Hacking
The complete human hacking framework — from OSINT and target profiling through influence, elicitation, and nonverbals, to the M.A.P.P. defense program. Hadnagy draws on Cialdini, Ekman, and Dreeke to build a science-grounded SE methodology.
Mar 27, 2026 web
Skill Forge
New Skill Forged: TCP/IP Illustrated, Volume 1
The definitive protocol reference — every TCP/IP protocol explained with packet captures and field-by-field analysis. Covers IPv4/IPv6, ARP, ICMP, UDP, TCP (connection, reliability, congestion control), DNS, NAT, and protocol-layer attacks.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Twisted Network Programming Essentials
Twisted event-driven networking for Python: reactor pattern, Protocol/Factory/Transport layering, Deferred callback chains, LineReceiver state machines, Twisted Web server and client, SSH via Conch, and testing with Trial's StringTransport mock.
Mar 27, 2026 web
Skill Forge
New Skill Forged: Understanding the Linux Kernel
Comprehensive deep-dive into Linux 2.6 kernel internals — memory addressing (paging/segmentation), process management (task_struct, context switch, CoW), scheduling, synchronization primitives, memory management (buddy/slab), VFS, device drivers, page cache, IPC, and ELF execution.
Mar 27, 2026 web
Skill Forge
New Skill Forged: ZAP Cookbook
Practical OWASP ZAP recipes for web app pentesting: Docker/GUI setup, Python API automation, spidering (traditional + AJAX), authentication bypass, IDOR, cookie security, CSRF, session hijacking, XSS/SQLi/SSTI/SSRF/command injection fuzzing, business logic manipulation, report generation, and CI/CD integration.
Mar 27, 2026 web
Skill Forge
Voxtral Dropped — Speech AI Just Got Complicated
Mistral's multimodal audio model is here. the speech AI space just got a lot more interesting.
Mar 27, 2026 HNwebMisGH
Voxtral TTS release and speech AI landscape
Week of Mar 24 — AI & LLM Signals
MCP goes mainstream, agents everywhere, open-source closing the gap
Mar 27, 2026 HNwebMSOLobLem
Weekly AI digest