下拉刷新
Catalog

HelloGitHub Vol.84

HelloGitHub shares interesting and beginner-friendly open source projects on GitHub, updated on the 28th of each month. Here you will find fun and beginner-level open source projects, open source books, practical projects, and enterprise-level projects, allowing you to quickly appreciate the charm of open source and develop an interest in it.

C
Star 2.1k
Fork 121
2 years ago

Linus Torvalds Explains the Argument for Good Coding Taste. In a 2016 TED interview, Linus Torvalds discussed what he considers good coding taste, using an example of two implementations for removing an item from a singly linked list. To remove the first item from a list, one implementation required handling special cases, whereas the other did not, and Linus favored the latter.

Star 3.5k
Fork 259
2 years ago

A Tutorial for Writing an Operating System for Raspberry Pi 4. This is a tutorial by the CTO of RealVNC on writing an operating system for the bare metal Raspberry Pi 4. The content is divided into 15 chapters, each completing a part of the operating system, with source code and explanations provided.

rpi4-osdev
Star 3.3k
Fork 321
2 years ago

Command-line Tool for Simulating Keyboard and Mouse Operations. This project offers the ability to simulate keyboard input, mouse clicks, as well as operations like moving, focusing, and resizing windows through command-line commands, which can be combined with shell to create a DIY input automation tool. It supports systems like Ubuntu, macOS, and FreeBSD.

// 打字 xdotool type "HelloGitHub" // 组合键 xdotool key ctrl+l // 移动鼠标 xdotool mousemove x y // 关闭窗口 xdotool selectwindow windowclose
C#
Star 4.6k
Fork 436
2 years ago

A Multi-Platform DNS Service. This is a ready-to-use, zero-configuration, self-hosted DNS server that easily achieves ad-blocking in DNS. It offers a friendly web interface and monitoring, and supports deployment via Docker as well as operating systems such as Windows, Linux, macOS, and Raspberry Pi.

DnsServer
Star 8.4k
Fork 323
2 years ago

A Quick File and Program Launcher for Windows. This is a tool that can make your workflow smoother, similar to Alfred on Mac. It can quickly launch applications, conveniently search for files, bookmarks, and other content, and supports plugin extensions, file previews, system commands, gaming mode, and other features.

Flow.Launcher
Star 9.6k
Fork 510
2 years ago

Open-source PC Game Management Tool. This is an open-source management and launcher for PC games, supporting synchronization with platforms such as Steam, Epic, GOG, and Battle.net. After importing, the tool automatically fetches game information from IGDB, providing a unified interface for your games. Its code is completely open-source to ensure the safety of your account, and it supports multiple languages, including Chinese, and is compatible with Windows 7 and above operating systems.

Playnite
C++
Star 2.6w
Fork 970
2 years ago

A Memory Database Designed to Replace Redis. It is fully compatible with the APIs of the two most popular in-memory databases, Redis and Memcached, allowing for code-unchanged migration. In terms of performance, it is explosive, with the official claim that a single instance can support tens of millions of QPS, and its throughput is 25 times that of Redis, capable of handling TB-level memory datasets.

dragonfly
Star 1.1w
Fork 644
2 years ago

A tool that lets you play PC games on almost any device. This project is based on NVIDIA GameStream technology, allowing PC gamers to play 3A titles on iOS, Android, TVs, and more devices through streaming. The process does not require the game to be downloaded and run on the mobile device; it merely receives the game's visuals and sends back control commands. Although the installation process is a bit complex and time-consuming, it is all worthwhile for the sake of playing PC games while lying down. Those who are interested should get started with the setup!

moonlight-qt
Star 8.5k
Fork 1.7k
2 years ago

An Indigenous Chinese Distributed Database. This is an enterprise-level distributed relational database from Ant Group, based on the Paxos protocol and distributed architecture. It supports hybrid loads of OLTP and OLAP, featuring high availability, high performance, horizontal scaling, and SQL syntax compatibility.

# 下载 bash -c "$(curl -s https://obbusiness-private.oss-cn-shanghai.aliyuncs.com/download-center/opensource/oceanbase-all-in-one/installer.sh)" # 执行 source ~/.oceanbase-all-in-one/bin/env.sh && obd demo
oceanbase
10
rr
Star 9.2k
Fork 588
2 years ago

Lightweight C/C++ Debugging Tool for Linux. This is a lightweight tool for debugging C/C++ code on Linux, supporting operations such as recording, replaying, and reverse execution, providing an environment for repeated debugging and greatly enhancing debugging efficiency.

Go
11
alist
Star 4.5w
Fork 5.8k
2 years ago

A File Listing Program Supporting Multiple Storage Options. This is a file listing program that supports one-click installation, making it easy to aggregate files scattered everywhere and provide an online file viewing service with ease. It supports various storage methods, including local storage, Alibaba Cloud Drive, Baidu Netdisk, OneDrive, WebDAV, and more.

alist
12
gorss
Star 437
Fork 31
2 years ago

A Command Line RSS Reader Written in Go. It is simple and easy to use with strong concealment capabilities, supporting features such as content preview, opening links in the browser, custom shortcut keys, themes, and word highlighting.

gorss
13
gosec
Star 7.9k
Fork 618
2 years ago

Go Language Source Code Security Inspection Tool. This project scans the Abstract Syntax Tree (AST) of Go code to check for security issues in the source code, capable of identifying hard-coded passwords, XSS (Cross-Site Scripting), and SQL injection problems, among others.

14
skopeo
Star 8.4k
Fork 788
2 years ago

Tool for Managing Container Images in Remote Repositories. This tool allows users to view information about container images in remote repositories and perform operations such as copying, synchronization, and deletion. It supports platforms like docker.io, quay.io, and private repositories.

$ skopeo inspect docker://registry.fedoraproject.org/fedora:latest { ... "Architecture": "amd64", "Os": "linux", "Layers": [ "sha256:2a0fc6bf62e155737f0ace6142ee686f3c471c1aab4241dc3128904db46288f0" ], "LayersData": [ { "MIMEType": "application/vnd.docker.image.rootfs.diff.tar.gzip", "Digest": "sha256:2a0fc6bf62e155737f0ace6142ee686f3c471c1aab4241dc3128904db46288f0", "Size": 71355009, "Annotations": null } ], "Env": [ "DISTTAG=f37container", "FGC=f37", "container=oci" ] }
15
yaegi
Star 7.2k
Fork 358
2 years ago

An Elegant Go Language Interpreter. It is a pure Go interpreter implemented with only the standard library, offering a simple and easy-to-use API. It fully supports the Go programming language specification, as well as the Go 1.18 and 1.19 versions.

package main import ( "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" ) func main() { i := interp.New(interp.Options{}) i.Use(stdlib.Symbols) _, err := i.Eval(`import "fmt"`) if err != nil { panic(err) } _, err = i.Eval(`fmt.Println("Hello Yaegi")`) if err != nil { panic(err) } }
yaegi
Java
Star 598
Fork 61
2 years ago

Android Image Memory Analysis Tool. This tool assists developers in quickly identifying whether the images loaded within the app are appropriate, such as checking if the image sizes are suitable, if the cache is cleared in a timely manner, and whether unnecessary images are loaded at the time, it supports both offline and online usage.

AndroidBitmapMonitor
Star 1.4k
Fork 315
2 years ago

Auto Home's Open Source Monitoring Platform. A monitoring system constructed with SpringBoot, MyBatis, and XXL-JOB, supporting multiple data sources including ES, HTTP, Prometheus, MySQL/TiDB, as well as various alert message sending methods such as DingTalk, Lark, and SMS.

frostmourne
JavaScript
18
koishi
Star 4.6k
Fork 250
2 years ago

An Easily Extensible Chatbot Framework. It offers a convenient console and plugin marketplace, allowing users without programming knowledge to set up their own chatbot in just minutes, and supports chat platforms such as QQ, Telegram, Discord, and Feishu.

koishi
Star 2.4w
Fork 2.7k
2 years ago

A Powerful Visual Management Platform for Nginx. It is ready to use with Docker one-click deployment, allowing users to configure and manage the Nginx service online through a web interface, supporting features such as forwarding, redirection, SSL certificates, and advanced configurations.

nginx-proxy-manager
Star 1.6w
Fork 3k
2 years ago

Scheduling Task Management Platform Supporting Multiple Script Languages. This is a platform for executing scheduled scripts, offering online script management, environment variable configuration, log viewing, and millisecond-precision scheduling capabilities. It supports script languages such as Python3, JavaScript, and shell.

qinglong
21
snk
Star 4.5k
Fork 1.2k
2 years ago

Eat Up All Your GitHub Contributions. Based on the contribution graph on GitHub, it automatically generates the snake's walking path, eating up all 'green squares' at once, supports generating gif or svg format animations.

snk
Star 6.1w
Fork 5.5k
2 years ago

A Minimal Uptime Monitoring Tool. This project can be used to monitor the uptime of services. It features an aesthetically pleasing interface, supports one-click deployment via Docker, and includes practical features such as a Chinese user interface, notifications, and multi-status pages.

uptime-kuma
PHP
Star 9.8k
Fork 2.3k
2 years ago

Open Source Vending Machine System Written in PHP. This platform for selling virtual products, such as vouchers or accounts, is implemented using Laravel and Bootstrap. After customers make a payment, the system can automatically dispatch the goods and has integrated multiple payment methods including WeChat, Alipay, and Paypal.

dujiaoka
Python
Star 1.4k
Fork 355
2 years ago

Dynamic Bar Chart Based on Python. This project allows the creation of bar chart animation for competitions using Python, which dynamically displays data rankings, providing a visual representation of the data change process.

bar_chart_race
25
dataset
Star 4.8k
Fork 298
2 years ago

A Python Library for Operating Databases with Ease. Built on SQLAlchemy, this library creates a simple data layer that allows querying, writing, and updating data in the database as easily as reading and writing JSON files. It supports SQLite, PostgreSQL, and MySQL databases.

import dataset db = dataset.connect('sqlite:///:memory:') table = db['sometable'] table.insert(dict(name='John Doe', age=37)) table.insert(dict(name='Jane Doe', age=34, gender='female')) john = table.find_one(name='John Doe')
Star 4.1k
Fork 1.1k
2 years ago

Commercial-Grade Open Source Warehouse Management System. This project is a warehouse management system that adopts the post-sales logistics and supply chain processes of Ford Asia Pacific. It provides modules for customer management, order management, inventory management, supplier management, and inventory checking, supporting various devices such as mobile phones and computers.

GreaterWMS
Star 2.4k
Fork 409
2 years ago

Ant Financial's Open Source Framework for Privacy Computing. Privacy computing refers to the use of technology to ensure that data is usable by participants without being visible, allowing the data to be circulated and shared without compromising security and privacy. This project is written in Python and supports various mainstream privacy computing technologies including MPC (Multi-Party Computation), FL (Federated Learning), TEE (Trusted Execution Environment), HE (Homomorphic Encryption), and DP (Differential Privacy).

secretflow
28
shynet
Star 2.9k
Fork 193
2 years ago

Minimalist Web Analytics Platform. This is a web analytics platform built on Django that is small, functional, user-friendly, does not track cookies, supports multiple users, and its tracking script is less than 1KB.

shynet
Rust
Star 1.5w
Fork 288
2 years ago

Browser Running in the Terminal. This is a Chromium-based command-line browser that can access web pages in the terminal with a browser-like experience, supporting images, animated images, videos, audio, and other content.

carbonyl
30
lsd
Star 1.4w
Fork 437
2 years ago

The Next-Generation ls Command. This project is a tool for viewing directory listings, similar to the ls command, rewritten in Rust, and enhanced with features such as color and icons for a more pleasing visual experience.

lsd
31
typst
Star 3.6w
Fork 968
2 years ago

A Markup Language Easier to Learn Than LaTeX. This is a new typesetting system based on a markup language. It's more concise and effortless to learn than the well-known LaTeX, and it produces beautiful formulas with the capability of switching various fonts.

typst
Swift
Star 9.2k
Fork 367
2 years ago

Swiss Army Knife for Developers on macOS. This project is the macOS version of DevToys, which can be used immediately after downloading and unzipping without the need for installation. It also implements functions that developers will use daily during development, such as timestamp conversion, Base64 encoding/decoding, and JSON formatting.

DevToysMac
Star 3.1k
Fork 766
2 years ago

Wikipedia's Official Open-Source iOS Client. Wikipedia is an online encyclopedia, and this is its iOS client which supports features such as searching for materials, viewing popular articles, saving articles, multilingual support, and night reading mode.

wikipedia-ios
AI
Star 1.5w
Fork 2k
2 years ago

A Deep Learning Tool for Restoring Old Photos. An open-source deep learning project by Microsoft, which can be used to restore damaged old photos with significant effects.

Bringing-Old-Photos-Back-to-Life
Star 4.1w
Fork 5.2k
2 years ago

Tsinghua KEG Open-Source Bilingual Conversational Language Model. This is a Chinese-English bilingual conversational language model based on the GLM architecture with 6.2 billion parameters, which supports inference on a single 2080Ti GPU.

>>> from transformers import AutoTokenizer, AutoModel >>> tokenizer = AutoTokenizer.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True) >>> model = AutoModel.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True).half().cuda() >>> model = model.eval() >>> response, history = model.chat(tokenizer, "你好", history=[]) >>> print(response) 你好👋!我是人工智能助手 ChatGLM-6B,很高兴见到你,欢迎问我任何问题。
ChatGLM-6B
Star 3.1k
Fork 380
2 years ago

OpenDILab Open Source Decision AI Platform. This is a general decision-making intelligent engine based on PyTorch, providing developers with over 60 types of algorithms and 40+ types of environments. It supports a variety of customized training and practical decision-making intelligent applications, such as game AI, autonomous driving, and biological sequence prediction.

DI-engine
Star 6.9w
Fork 10k
2 years ago

Running LLaMA Big Models on Notebooks. This project achieves smooth operation of LLaMA models on the CPU, supporting macOS, Linux, and Windows operating systems.

llama.cpp
Other
38
.tmux
Star 2.2w
Fork 3.4k
2 years ago

A Stylish and Universal Tmux Configuration File. Tmux is a terminal multiplexer. This project includes a configuration file that can make Tmux more aesthetically pleasing and user-friendly, along with detailed installation steps.

.tmux
Star 3.3k
Fork 67
2 years ago

Open-source Pan-East Asian Pixel Font. Provides a set of pixel fonts that can be used for the main text in game development, currently completing around 10,000 Chinese characters (12px).

ark-pixel-font
Star 2.7k
Fork 380
2 years ago

A Comprehensive Guide to eBPF for Beginners and Intermediate Developers. This tutorial is based on libbpf and CO-RE (Compile Once, Run Everywhere) principles, covering eBPF fundamentals, code examples, and practical applications. It aims to help developers quickly master eBPF through 20 small tools designed for this purpose.

41
ENGAGE
Star 274
Fork 18
2 years ago

Self-made Battery-less GameBoy. This project achieves a GameBoy that operates without batteries, powered solely by solar energy and game play. It is capable of running Tetris and can save the game's progress when the power runs out, meaning that upon restarting the game, the falling block will be in the same position. Doesn't that sound cool? Everything needed to make this device is included, so interested students can give it a try.

ENGAGE
Star 5.2k
Fork 550
2 years ago

Comprehensive Game Development Technology Map. This project presents the skills required for game development through a mind map, including technology stacks, methods, tools, processes, management, and operations.

Star 1.4w
Fork 789
2 years ago

Immersive Bilingual Web Page Translation Extension. This is a free, non-open-source translation plugin that can display translated text while preserving the original text. It supports more than 10 translation services and is compatible with Chromium, Firefox, Safari, and other browsers. This project was later acquired and is no longer open-source.

immersive-translate
Book
44
PPHC
Star 3.8k
Fork 343
2 years ago

The Philosophical Principles of High-Concurrent Computing. This book discusses the high-concurrency issues in web services, covering technologies and solutions such as Apache, Nginx, epoll, switches, k8s, databases, distributed systems, and microservice architecture to tackle high-concurrency problems, with content that progresses from simple to complex.

Star 1.8k
Fork 226
2 years ago

Mastering Python Regular Expressions: From Beginner to Expert. This book includes hundreds of examples and exercises, covering the use of Python regular expressions from basic to advanced levels.

py_regular_expressions
Catalog
  • C
  • C#
  • C++
  • Go
  • Java
  • JavaScript
  • PHP
  • Python
  • Rust
  • Swift
  • AI
  • Other
  • Book