Ross ROSS = Recommend OSS · open-source software intelligence for agents

resource: concurrency

72 resources, primary matches first, then adoption-weighted; health v2 shown.

ResourceHealth v2StarsMaturity
adonovan/gopl.io
The official downloadable example programs accompanying the book 'The Go Programming Language' by Donovan and Kernighan. Each chapter's exa…
738037stable
sindresorhus/promise-fun
A curated collection of sindresorhus's promise utility modules, promise patterns, and tutorials for JavaScript. It serves as an index to pa…
325166active
RedSpider1/concurrent
An open-source Chinese-language book, '深入浅出Java多线程' (Java Multithreading In Depth), written and maintained by the RedSpider community. It e…
734614active
remzi-arpacidusseau/ostep-code
Companion C code examples for the free Operating Systems: Three Easy Pieces (OSTEP) textbook, organized by chapter. It covers CPU virtualiz…
324373stable
lotusirous/go-concurrency-patterns
A curated collection of common Go concurrency patterns with runnable examples and playground links. It accompanies classic Go concurrency t…
753111stable
LukasLechnerDev/Kotlin-Coroutines-and-Flow-UseCases-on-Android
A learning repository with example implementations of Kotlin Coroutines and Flow use cases for Android development. It serves as a playgrou…
642877active
pingcap/talent-plan
Talent Plan is an open source training program by PingCAP offering courses on open source collaboration, Rust programming, and distributed …
3210989maintenance
MedUnes/go-kata
A collection of daily coding katas (small standalone challenges) for mastering idiomatic Go through deliberate, repetitive practice. Each k…
572356active
crazyqiang/AndroidStudy
A curated Android learning repository summarizing key topics like Jetpack (Lifecycle, LiveData, ViewModel, DataStore), MVVM/MVI architectur…
652230active
downdemo/Cpp-Concurrency-in-Action-2ed
A set of study notes and code examples accompanying the book 'C++ Concurrency in Action 2nd Edition', covering the C++11/14/17/20 thread su…
322190active
loong/go-concurrency-exercises
A collection of hands-on exercises for learning Go's concurrency patterns through real-life examples like crawlers, producer-consumer pipel…
321977stable
antirez/smallchat
A minimal ~200-line C chat server written by antirez as a teaching example for his 'Writing System Software' video series. It demonstrates …
277504maintenance
kaushikgopal/RxJava-Android-Samples
A collection of real-world example Android apps demonstrating RxJava patterns such as schedulers, debounce-based search, form validation, p…
327491maintenance
alexpusch/rust-magic-patterns
A collection of blog-style tutorials explaining 'magical' Rust patterns with simplified, runnable examples. Topics include async runtimes, …
751905active
yuesong-feng/30dayMakeCppServer
A 30-day Chinese-language tutorial with accompanying source code for building a Linux C++ high-concurrency server from scratch, covering so…
707054maintenance
promises-aplus/promises-spec
Promises/A+ is an open specification defining the behavior of the `then` method for interoperable JavaScript promises. It is a stable stand…
321839stable
zanfranceschi/rinha-de-backend-2024-q1
The repository for the second edition of Rinha de Backend, a Brazilian community backend performance challenge focused on concurrency contr…
261834active
SimonWaldherr/golang-examples
A curated collection of small, standalone Go example programs covering everything from beginner syntax to advanced concurrency, generics, W…
921710active
m-ou-se/rust-atomics-and-locks
Companion repository for the book 'Rust Atomics and Locks' by Mara Bos, containing code examples, data structures, and links from each chap…
321618stable
LeonardoZ/java-concurrency-patterns
A collection of annotated Java example code demonstrating concurrency patterns and features, including threads, locks, synchronizers, concu…
661613stable
smallnest/dive-to-gosync-workshop
A Chinese-language workshop course on deepening Go concurrency programming skills, covering sync primitives, atomic operations, channels, d…
321610active
OneSizeFitsQuorum/MIT6.824-2021
A complete solution repository for MIT 6.824 (Distributed Systems) 2021 labs, implementing Raft consensus and a sharded key-value store in …
321600stable
laixintao/python-parallel-programming-cookbook-cn
A Chinese translation of the 'Python Parallel Programming Cookbook' book, covering threading, multiprocessing, and asyncio programming mode…
551522stable
forhappy/Cplusplus-Concurrency-In-Practice
An open-source Chinese-language tutorial book on C++ concurrency programming, covering C++11 threads, mutexes, condition variables, atomic …
635490maintenance
NJHu/iOSProject
A collection of Objective-C demo projects for iOS covering multithreading (NSThread, GCD, NSOperation), RunTime, RunLoop, drawing, Core Ani…
235419maintenance
kaist-cp/cs431
KAIST CS431 Concurrent Programming course materials, including lectures, videos, and Rust-based programming assignments. It teaches shared-…
481486active
eliben/raft
An instructional implementation of the Raft distributed consensus algorithm in Go, organized as self-contained partN directories accompanyi…
661425active
timofurrer/awesome-asyncio
A curated list of Python asyncio frameworks, libraries, software, and learning resources. It organizes async ecosystem tools by category su…
575118maintenance
smallnest/concurrency-programming-via-rust
A collection of Rust source code examples accompanying a planned book on concurrency programming in Rust. It covers threads, thread pools, …
371345active
dimasusername/ConcurrencyRecipes
A curated collection of practical recipes and documented hazards for working with Swift Concurrency (async/await, actors, isolation, struct…
711326active
CL0610/Java-concurrency
A curated collection of Chinese-language articles covering Java concurrency fundamentals, from thread basics and the Java Memory Model to l…
324587maintenance
jserv/mini-arm-os
A step-by-step educational project that builds a minimal multi-tasking OS kernel for ARM Cortex-M from scratch in C. It progresses from sem…
581255active
0burak/imperial_hft
A C++ repository of low-latency programming techniques for high-frequency trading, including cache warming, lock-free programming, loop unr…
651237active
Java-Edge/Java-Concurrency-Progamming-Tutorial
A comprehensive Chinese-language tutorial repository on Java high-concurrency programming, curated by an industry engineer. It covers threa…
761233active
ProgrammingRust/examples
Complete code for the larger example programs from the book 'Programming Rust' by Blandy, Orendorff, and Tindall. Each subdirectory is a st…
321200stable
elazar/asynchronous-php
A curated list (awesome-list style) of resources for asynchronous programming in PHP, covering concepts, projects, repositories, and people…
681156active
geektutu/high-performance-go
An open-source e-book (with accompanying code) on high-performance Go programming, covering profiling, data structures, concurrency, and co…
323887maintenance
petabridge/akka-bootcamp
A free, self-paced training course by Petabridge that teaches Akka.NET fundamentals from scratch through hands-on units written in .NET 9. …
671065active
deadlockempire/deadlockempire.github.io
The Deadlock Empire is a browser-based game that teaches locking and concurrency through interactive challenges where players exploit race …
411055active
heathermiller/dist-prog-book
An open-source book, 'Programming Models for Distributed Computation', written by Heather Miller and students from a Northeastern Universit…
323425maintenance
chaozh/MIT-6.824
A Chinese-language study companion for MIT 6.824/6.5840 Distributed Systems, collecting course source code, lecture notes, paper links, and…
323258maintenance
tc39/proposal-observable
A TC39 stage-1 proposal introducing an Observable type to the ECMAScript standard library for modeling push-based asynchronous data streams…
323103maintenance
seven1m/30-days-of-elixir
A 30-exercise walkthrough of the Elixir programming language, with one small script per day covering basics like lists, maps, pattern match…
323067maintenance
luk4z7/go-concurrency-guide
A practical Go concurrency guide with runnable examples covering race conditions, sync primitives, deadlocks, channels, and concurrency pat…
322884maintenance
ChenYilong/ParseSourceCodeStudy
A series of Chinese-language articles analyzing the source code of Facebook's open-source Parse SDK for iOS. It covers advanced GCD multith…
322850maintenance
C++ Concurrency in Action 中文翻译
A Chinese translation of the book 'C++ Concurrency in Action, Second Edition' by Anthony Williams, hosted on GitHub and published via GitBo…
102343maintenance
qiurunze123/threadandjuc
A Java educational project teaching multithreading and concurrency from basics to advanced, culminating in a 'three-high' (high-availabilit…
322160maintenance
rigtorp/awesome-lockfree
A curated awesome-list of resources on wait-free and lock-free programming, including libraries, papers, books, blogs, and websites. It ser…
322069maintenance
betty200744/ultimate-go
A curated collection of annotated Go example files and notes covering the Go language specification, computer systems concepts, and common …
321938maintenance
Kotlin/coroutines-examples
A collection of example code illustrating the design of Kotlin coroutines, tied to the coroutines KEEP proposal and the official coroutine …
101484maintenance
stella3d/job-system-cookbook
A collection of example scenes and C# scripts demonstrating how to use Unity's C# Job System for parallel programming, circa 2019. It cover…
481427maintenance
elarity/advanced-php
A collection of advanced PHP tutorials and accompanying code covering subtle Unix-oriented topics such as multiprocessing, sockets, streams…
321300maintenance
oldratlee/fucking-java-concurrency
A collection of simple, runnable Java demo programs that showcase common concurrency problems such as race conditions, deadlocks, and threa…
751218maintenance
atemerev/skynet
A multi-language microbenchmark that spawns one million actors/coroutines/futures in a recursive fan-out tree and sums their results, compa…
321062maintenance
cordiverse/paper
A research paper repository presenting a programming paradigm for spatiotemporal composability, formalizing revertible effects and reactive…
572869experimental
domenic/promises-unwrapping
The historical staging repository for the ES6 Promises specification draft discussed at the September 2013 TC39 meeting. It documents promi…
101258abandoned
THEONE10211024/RxJavaSamples
A curated collection of classic, easy-to-understand RxJava usage examples aimed at Android developers, accompanied by links to related libr…
321092abandoned
spacejam/tla-rust
A tutorial-style repository and work-in-progress project for writing correct lock-free and distributed stateful systems in Rust, verified w…
321068abandoned
remzi-arpacidusseau/ostep-projects
A collection of programming projects for an undergraduate operating systems course based on OSTEP, written mostly in C for Linux plus xv6 k…
325998active
MorvanZhou/tutorials
Companion code repository for the MorvanPython (莫烦Python) tutorial series, covering machine learning, neural networks (TensorFlow, PyTorch,…
3213010maintenance
ashvardanian/less_slow.cpp
A tutorial-style repository of benchmarks demonstrating performance-oriented coding practices in C++20, C, CUDA, PTX, and assembly, coverin…
961924active
JosephZhu1983/java-common-mistakes
Source code for the book 'Java Development Pitfalls: From Root Cause Analysis to Best Practices' and the GeekTime column '100 Common Errors…
321839active
fpinscala/fpinscala
Companion repository for the book 'Functional Programming in Scala' containing exercises, hints, and answers organized by chapter. It provi…
325851maintenance
tokio-rs/mini-redis
An intentionally incomplete Redis client and server implementation in Rust built on Tokio, serving as a large teaching example of idiomatic…
674773maintenance
zigcc/zig-cookbook
A collection of simple, runnable Zig example programs ('recipes') demonstrating good practices for common programming tasks like file I/O, …
711173active
crgimenes/grupo-estudos-golang
A Portuguese-language study repository for learning Go, with progressively organized topics, runnable examples, and tutorials covering fund…
771149active
booksbyus/zguide
The official ZeroMQ (ØMQ) Guide, a comprehensive tutorial book by Pieter Hintjens explaining ZeroMQ messaging patterns from basics to advan…
423497maintenance
smallnest/1m-go-tcp-server
A collection of Go TCP server implementations benchmarked at supporting 1 million concurrent connections, comparing goroutine-per-connectio…
321928maintenance
anjuke/zguide-cn
A Chinese translation of the ZeroMQ Guide (zguide) by Pieter Hintjens, covering ZeroMQ fundamentals, socket patterns, request-reply, pub-su…
321796maintenance
kkdai/project52
A collection of 52 small Go projects written one per week over a year as a personal learning challenge. It serves as example code covering …
321470maintenance
xuwujing/java-study
A personal Java study repository containing example code covering Java basics, JDK 8 features, concurrency, the 23 design patterns, and pop…
321306maintenance
bestswifter/MySampleCode
A collection of iOS demo projects in Objective-C and Swift accompanying the author's blog posts on topics like rounded corners, custom tran…
321977abandoned

page 1 / 1