Skip to content
View AtomicVar's full-sized avatar
🇨🇳
🇨🇳
  • Zhejiang University
  • Hangzhou, China
  • 11:08 (UTC +08:00)

Highlights

  • Pro

Organizations

@b3log @QSCTech @PY1604
Block or Report

Block or report AtomicVar

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. MachineLearningLectureNotes MachineLearningLectureNotes Public

    📕 张志华机器学习导论 MOOC 讲义

    131 65

  2. Cpp-Concurrency-Examples Cpp-Concurrency-Examples Public

    ⚡ C++11 多线程并发编程的常见示例。

    C++ 1

  3. CUDA-Patterns CUDA-Patterns Public

    💡 Examples of common CUDA parallel patterns.

    Cuda

  4. wbpy wbpy Public

    💬 命令行微博客户端,基于 Python3 和 Requests,适用于自动发微博脚本。

    Python 6 3

  5. Snake Snake Public

    🐍 A Snake game by ncurses (2018).

    C 2

  6. A simple LRU Cache in C++ STL. A simple LRU Cache in C++ STL.
    1
    #include <list>
    2
    #include <unordered_map>
    3
    #include <utility>
    4
    
                  
    5
    using namespace std;