first new

This commit is contained in:
CodingCat 2024-01-31 13:32:37 +08:00
commit 14fa6c86f5
7 changed files with 1077 additions and 0 deletions

165
.gitignore vendored Normal file
View File

@ -0,0 +1,165 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock
# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
sendmail.py
SendMail.py
.idea/

82
FindNew.py Normal file
View File

@ -0,0 +1,82 @@
import os
import re
from datetime import datetime, timedelta
import markdown
trending_dir = "./data/trending/"
new_dir = "./data/new/"
# 获取今天和昨天的日期并格式化为字符串
today = datetime.now().strftime("%Y-%m-%d")
year = today.split("-")[0]
month = today.split("-")[1]
yesterday = (datetime.today() - timedelta(days=1)).strftime('%Y-%m-%d')
project_urls = {}
if not os.path.isdir(new_dir + year):
os.makedirs(new_dir + year)
if not os.path.isdir(new_dir + year + '/' + month):
os.makedirs(new_dir + year + '/' + month)
old_files = []
# 遍历 '/data/trending' 目录及其所有子目录
for dirpath, dirnames, filenames in os.walk(trending_dir):
# 遍历当前目录下的所有文件
for filename in filenames:
# 排除今天
if today in filename:
continue
print(os.path.join(dirpath, filename))
old_files.append(os.path.join(dirpath, filename))
def get_projects(filenames):
result = {}
for filename in filenames:
# 使用 'with' 语句打开文件,这样可以确保文件在使用完毕后会被正确关闭
if not os.path.exists(filename):
continue
with open(filename, 'r',encoding='utf-8') as file:
text = file.read()
# 使用正则表达式匹配类别和项目
categories = re.split(r'#### ', text)[1:]
# 为每个类别添加项目
for category in categories:
lines = category.split('\n')
category_name = lines[0].strip()
projects = []
for line in lines[1:]:
match = re.search(r'\* \[(.+)\]\((.+)\):(.+)', line)
if match:
project_name, url, description = match.groups()
projects.append(project_name)
project_urls[project_name] = (url, description)
result[category_name] = projects
return result
# 读取今天和昨天的文件
year = today.split("-")[0]
month = today.split("-")[1]
today_file = trending_dir + year + '/' + month + '/' + f'{today}.md'
new_file = new_dir + year + '/' + month + '/' + f'{today}.md'
projects_today = get_projects([today_file])
projects_old = get_projects(old_files)
# 找出今天新增的项目并将其写入到新的文件中
with open(new_file, 'w',encoding='utf-8') as file:
file.write("## " + today + "\n")
for category, projects in projects_today.items():
new_projects = set(projects) - set(projects_old.get(category, []))
if new_projects:
file.write(f'#### {category}\n')
for project in new_projects:
file.write(f'* [{project}]({project_urls[project][0]}):{project_urls[project][1]}\n')

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# GitHub猫步轻瞄AI精选
"GitHub猫步轻瞄AI精选": 是一个专注于在GitHub上发掘和分享优秀AI开源项目的平台。我们的目标是帮助AI爱好者、研究者和开发者更轻松地找到高质量的AI资源。我们的团队每天都在GitHub的海洋中寻找宝藏就像猫在夜晚寻找猎物一样。我们精选最有价值、最有创新性的AI项目并进行详尽的分析和评价。通过我们的平台你可以快速了解到AI领域的最新进展和最热门的开源项目。

79
Scraper.py Normal file
View File

@ -0,0 +1,79 @@
# coding:utf-8
from datetime import datetime
import codecs
import requests
import os
from pyquery import PyQuery as pq
dir_path = "./data/trending/"
# 获取今天的日期
today = datetime.now().strftime("%Y-%m-%d")
year = today.split("-")[0]
month = today.split("-")[1]
today_path = dir_path + year + '/' + month
today = datetime.now().strftime("%Y-%m-%d")
def createMarkdown(date, filename):
if not os.path.isdir(dir_path + year):
os.makedirs(dir_path + year)
if not os.path.isdir(today_path):
os.makedirs(today_path)
with open(today_path + '/' + filename, 'w') as f:
f.write("## " + date + "\n")
def scrape(language, filename):
HEADERS = {
'User-Agent' : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:11.0) Gecko/20100101 Firefox/11.0',
'Accept' : 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Accept-Encoding' : 'gzip,deflate,sdch',
'Accept-Language' : 'zh-CN,zh;q=0.8'
}
url = 'https://github.com/trending/{language}'.format(language=language)
r = requests.get(url, headers=HEADERS)
assert r.status_code == 200
d = pq(r.content)
items = d('div.Box article.Box-row')
# codecs to solve the problem utf-8 codec like chinese
with codecs.open(today_path + '/' + filename, "a", "utf-8") as f:
f.write('\n#### {language}\n'.format(language=language))
for item in items:
i = pq(item)
title = i(".lh-condensed a").text()
owner = i(".lh-condensed span.text-normal").text()
description = i("p.col-9").text()
url = i(".lh-condensed a").attr("href")
url = "https://github.com" + url
# ownerImg = i("p.repo-list-meta a img").attr("src")
# print(ownerImg)
f.write(u"* [{title}]({url}):{description}\n".format(title=title, url=url, description=description))
def main():
strdate = datetime.now().strftime('%Y-%m-%d')
filename = '{date}.md'.format(date=strdate)
# create markdown file
createMarkdown(strdate, filename)
languages = ['c','c#','c++','java','Kotlin','Objective-C','php','rust','python','swift','javascript','go','TypeScript','swift','swift']
# write markdown
for language in languages:
scrape(language, filename)
# git add commit push
# git_add_commit_push(strdate, filename)
if __name__ == '__main__':
main()

View File

@ -0,0 +1,328 @@
## 2024-01-31
#### c
* [zephyrproject-rtos / zephyr](https://github.com/zephyrproject-rtos/zephyr):Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
* [Cracked5pider / Stardust](https://github.com/Cracked5pider/Stardust):A modern 64-bit position independent implant template
* [microsoft / react-native-code-push](https://github.com/microsoft/react-native-code-push):React Native module for CodePush
* [lizongying / my-tv](https://github.com/lizongying/my-tv):我的电视 电视直播软件,安装即可使用
* [curl / curl](https://github.com/curl/curl):A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features
* [fluent / fluent-bit](https://github.com/fluent/fluent-bit):Fast and Lightweight Logs and Metrics processor for Linux, BSD, OSX and Windows
* [yugabyte / yugabyte-db](https://github.com/yugabyte/yugabyte-db):YugabyteDB - the cloud native distributed SQL database for mission-critical applications.
* [memcached / memcached](https://github.com/memcached/memcached):memcached development tree
* [libevent / libevent](https://github.com/libevent/libevent):Event notification library
* [sudo-project / sudo](https://github.com/sudo-project/sudo):Utility to execute a command as another user
* [axboe / fio](https://github.com/axboe/fio):Flexible I/O Tester
* [lua / lua](https://github.com/lua/lua):The Lua development repository, as seen by the Lua team. Mirrored irregularly. Please DO NOT send pull requests. Report issues in the Lua mailing list https://www.lua.org/lua-l.html
* [iovisor / bcc](https://github.com/iovisor/bcc):BCC - Tools for BPF-based Linux IO analysis, networking, monitoring, and more
* [torvalds / linux](https://github.com/torvalds/linux):Linux kernel source tree
* [coolsnowwolf / lede](https://github.com/coolsnowwolf/lede):Lean's LEDE source
* [nanopb / nanopb](https://github.com/nanopb/nanopb):Protocol Buffers with small code size
* [analogdevicesinc / linux](https://github.com/analogdevicesinc/linux):Linux kernel variant from Analog Devices; see README.md for details
* [KaisenAmin / c_std](https://github.com/KaisenAmin/c_std):Implementation of C++ standard libraries in C
* [SchedMD / slurm](https://github.com/SchedMD/slurm):Slurm: A Highly Scalable Workload Manager
* [tianocore / edk2-platforms](https://github.com/tianocore/edk2-platforms):EDK II sample platform branches and tags
* [NVIDIA / cuda-samples](https://github.com/NVIDIA/cuda-samples):Samples for CUDA Developers which demonstrates features in CUDA Toolkit
* [stephane / libmodbus](https://github.com/stephane/libmodbus):A Modbus library for Linux, Mac OS, FreeBSD and Windows
* [bytecodealliance / wasm-micro-runtime](https://github.com/bytecodealliance/wasm-micro-runtime):WebAssembly Micro Runtime (WAMR)
* [apache / nuttx](https://github.com/apache/nuttx):Apache NuttX is a mature, real-time embedded operating system (RTOS)
#### c#
* [zephyrproject-rtos / zephyr](https://github.com/zephyrproject-rtos/zephyr):Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
* [Cracked5pider / Stardust](https://github.com/Cracked5pider/Stardust):A modern 64-bit position independent implant template
* [microsoft / react-native-code-push](https://github.com/microsoft/react-native-code-push):React Native module for CodePush
* [lizongying / my-tv](https://github.com/lizongying/my-tv):我的电视 电视直播软件,安装即可使用
* [curl / curl](https://github.com/curl/curl):A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features
* [fluent / fluent-bit](https://github.com/fluent/fluent-bit):Fast and Lightweight Logs and Metrics processor for Linux, BSD, OSX and Windows
* [yugabyte / yugabyte-db](https://github.com/yugabyte/yugabyte-db):YugabyteDB - the cloud native distributed SQL database for mission-critical applications.
* [memcached / memcached](https://github.com/memcached/memcached):memcached development tree
* [libevent / libevent](https://github.com/libevent/libevent):Event notification library
* [sudo-project / sudo](https://github.com/sudo-project/sudo):Utility to execute a command as another user
* [axboe / fio](https://github.com/axboe/fio):Flexible I/O Tester
* [lua / lua](https://github.com/lua/lua):The Lua development repository, as seen by the Lua team. Mirrored irregularly. Please DO NOT send pull requests. Report issues in the Lua mailing list https://www.lua.org/lua-l.html
* [iovisor / bcc](https://github.com/iovisor/bcc):BCC - Tools for BPF-based Linux IO analysis, networking, monitoring, and more
* [torvalds / linux](https://github.com/torvalds/linux):Linux kernel source tree
* [coolsnowwolf / lede](https://github.com/coolsnowwolf/lede):Lean's LEDE source
* [nanopb / nanopb](https://github.com/nanopb/nanopb):Protocol Buffers with small code size
* [analogdevicesinc / linux](https://github.com/analogdevicesinc/linux):Linux kernel variant from Analog Devices; see README.md for details
* [KaisenAmin / c_std](https://github.com/KaisenAmin/c_std):Implementation of C++ standard libraries in C
* [SchedMD / slurm](https://github.com/SchedMD/slurm):Slurm: A Highly Scalable Workload Manager
* [tianocore / edk2-platforms](https://github.com/tianocore/edk2-platforms):EDK II sample platform branches and tags
* [NVIDIA / cuda-samples](https://github.com/NVIDIA/cuda-samples):Samples for CUDA Developers which demonstrates features in CUDA Toolkit
* [stephane / libmodbus](https://github.com/stephane/libmodbus):A Modbus library for Linux, Mac OS, FreeBSD and Windows
* [bytecodealliance / wasm-micro-runtime](https://github.com/bytecodealliance/wasm-micro-runtime):WebAssembly Micro Runtime (WAMR)
* [apache / nuttx](https://github.com/apache/nuttx):Apache NuttX is a mature, real-time embedded operating system (RTOS)
#### c++
* [pixpark / gpupixel](https://github.com/pixpark/gpupixel):Fully cross-platform AI beauty filter library: achieving commercial-grade beauty effects. Written in C++11, based on OpenGL/ES and VNN.
* [mltframework / shotcut](https://github.com/mltframework/shotcut):cross-platform (Qt), open-source (GPLv3) video editor
* [SerenityOS / serenity](https://github.com/SerenityOS/serenity):The Serenity Operating System 🐞
* [openxla / iree](https://github.com/openxla/iree):A retargetable MLIR-based machine learning compiler and runtime toolkit.
* [openvinotoolkit / openvino](https://github.com/openvinotoolkit/openvino):OpenVINO™ is an open-source toolkit for optimizing and deploying AI inference
* [duckdb / duckdb](https://github.com/duckdb/duckdb):DuckDB is an in-process SQL OLAP Database Management System
* [endless-sky / endless-sky](https://github.com/endless-sky/endless-sky):Space exploration, trading, and combat game.
* [UE4SS-RE / RE-UE4SS](https://github.com/UE4SS-RE/RE-UE4SS):Injectable LUA scripting system, SDK generator, live property editor and other dumping utilities for UE4/5 games
* [ggerganov / llama.cpp](https://github.com/ggerganov/llama.cpp):Port of Facebook's LLaMA model in C/C++
* [Tencent / ncnn](https://github.com/Tencent/ncnn):ncnn is a high-performance neural network inference framework optimized for the mobile platform
* [facebookresearch / habitat-sim](https://github.com/facebookresearch/habitat-sim):A flexible, high-performance 3D simulator for Embodied AI research.
* [carbon-language / carbon-lang](https://github.com/carbon-language/carbon-lang):Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)
* [mamedev / mame](https://github.com/mamedev/mame):MAME
* [PaddlePaddle / Paddle](https://github.com/PaddlePaddle/Paddle):PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署)
* [protocolbuffers / protobuf](https://github.com/protocolbuffers/protobuf):Protocol Buffers - Google's data interchange format
* [AlibabaResearch / AdvancedLiterateMachinery](https://github.com/AlibabaResearch/AdvancedLiterateMachinery):A collection of original, innovative ideas and algorithms towards Advanced Literate Machinery. This project is maintained by the OCR Team in the Language Technology Lab, Alibaba DAMO Academy.
* [tesseract-ocr / tesseract](https://github.com/tesseract-ocr/tesseract):Tesseract Open Source OCR Engine (main repository)
* [envoyproxy / envoy](https://github.com/envoyproxy/envoy):Cloud-native high-performance edge/middle/service proxy
* [hrydgard / ppsspp](https://github.com/hrydgard/ppsspp):A PSP emulator for Android, Windows, Mac and Linux, written in C++. Want to contribute? Join us on Discord at https://discord.gg/5NJB6dD or just send pull requests / issues. For discussion use the forums at forums.ppsspp.org.
* [typesense / typesense](https://github.com/typesense/typesense):Open Source alternative to Algolia + Pinecone and an Easier-to-Use alternative to ElasticSearch ⚡ 🔍 ✨ Fast, typo tolerant, in-memory fuzzy Search Engine for building delightful search experiences
* [jrouwe / JoltPhysics](https://github.com/jrouwe/JoltPhysics):A multi core friendly rigid body physics and collision detection library, written in C++, suitable for games and VR applications.
* [microsoft / IoT-For-Beginners](https://github.com/microsoft/IoT-For-Beginners):12 Weeks, 24 Lessons, IoT for All!
* [Aircoookie / WLED](https://github.com/Aircoookie/WLED):Control WS2812B and many more types of digital RGB LEDs with an ESP8266 or ESP32 over WiFi!
* [aria2 / aria2](https://github.com/aria2/aria2):aria2 is a lightweight multi-protocol & multi-source, cross platform download utility operated in command-line. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.
#### java
* [Snailclimb / JavaGuide](https://github.com/Snailclimb/JavaGuide):「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide
* [bazelbuild / bazel](https://github.com/bazelbuild/bazel):a fast, scalable, multi-language and extensible build system
* [bumptech / glide](https://github.com/bumptech/glide):An image loading and caching library for Android focused on smooth scrolling
* [keycloak / keycloak](https://github.com/keycloak/keycloak):Open Source Identity and Access Management For Modern Applications and Services
* [apache / incubator-seata](https://github.com/apache/incubator-seata):🔥 Seata is an easy-to-use, high-performance, open source distributed transaction solution.
* [bytedeco / javacv](https://github.com/bytedeco/javacv):Java interface to OpenCV, FFmpeg, and more
* [redisson / redisson](https://github.com/redisson/redisson):Redisson - Easy Redis Java client with features of In-Memory Data Grid. Sync/Async/RxJava/Reactive API. Over 50 Redis based Java objects and services: Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Spring Cache, Tomcat, Scheduler, JCache API, Hibernate, RPC, local cache ...
* [theonedev / onedev](https://github.com/theonedev/onedev):Lightweight and performant GitLab alternative. Ultra easy to set up and maintain.
* [apache / dolphinscheduler](https://github.com/apache/dolphinscheduler):Apache DolphinScheduler is the modern data orchestration platform. Agile to create high performance workflow with low-code
* [alibaba / nacos](https://github.com/alibaba/nacos):an easy-to-use dynamic service discovery, configuration and service management platform for building cloud native applications.
* [YunaiV / yudao-cloud](https://github.com/YunaiV/yudao-cloud):ruoyi-vue-pro 全新 Cloud 版本,优化重构所有功能。基于 Spring Cloud Alibaba + MyBatis Plus + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能。你的 ⭐️ Star ⭐️,是作者生发的动力!
* [gunnarmorling / 1brc](https://github.com/gunnarmorling/1brc):1⃣🐝🏎 The One Billion Row Challenge -- A fun exploration of how quickly 1B rows from a text file can be aggregated with Java
* [provectus / kafka-ui](https://github.com/provectus/kafka-ui):Open-Source Web UI for Apache Kafka Management
* [ververica / flink-cdc-connectors](https://github.com/ververica/flink-cdc-connectors):CDC Connectors for Apache Flink®
* [elastic / elasticsearch](https://github.com/elastic/elasticsearch):Free and Open, Distributed, RESTful Search Engine
* [datahub-project / datahub](https://github.com/datahub-project/datahub):The Metadata Platform for the Modern Data Stack
* [google / gson](https://github.com/google/gson):A Java serialization/deserialization library to convert Java Objects into JSON and back
* [trinodb / trino](https://github.com/trinodb/trino):Official repository of Trino, the distributed SQL query engine for big data, formerly known as PrestoSQL (https://trino.io)
* [thingsboard / thingsboard](https://github.com/thingsboard/thingsboard):Open-source IoT Platform - Device management, data collection, processing and visualization.
* [apache / pinot](https://github.com/apache/pinot):Apache Pinot - A realtime distributed OLAP datastore
* [OpenAPITools / openapi-generator](https://github.com/OpenAPITools/openapi-generator):OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
* [google / ExoPlayer](https://github.com/google/ExoPlayer):An extensible media player for Android
* [jwtk / jjwt](https://github.com/jwtk/jjwt):Java JWT: JSON Web Token for Java and Android
* [alibaba / spring-cloud-alibaba](https://github.com/alibaba/spring-cloud-alibaba):Spring Cloud Alibaba provides a one-stop solution for application development for the distributed solutions of Alibaba middleware.
* [apache / kafka](https://github.com/apache/kafka):Mirror of Apache Kafka
#### Kotlin
* [android / compose-samples](https://github.com/android/compose-samples):Official Jetpack Compose samples.
* [d4rken-org / sdmaid-se](https://github.com/d4rken-org/sdmaid-se):SD Maid 2/SE is Android's most thorough cleaning tool.
* [ankidroid / Anki-Android](https://github.com/ankidroid/Anki-Android):AnkiDroid: Anki flashcards on Android. Your secret trick to achieve superhuman information retention.
* [RetroMusicPlayer / RetroMusicPlayer](https://github.com/RetroMusicPlayer/RetroMusicPlayer):Best Material You Design music player for Android
* [coil-kt / coil](https://github.com/coil-kt/coil):Image loading for Android and Compose Multiplatform.
* [cashapp / sqldelight](https://github.com/cashapp/sqldelight):SQLDelight - Generates typesafe Kotlin APIs from SQL
* [ethereum-lists / chains](https://github.com/ethereum-lists/chains):provides metadata for chains
* [square / moshi](https://github.com/square/moshi):A modern JSON library for Kotlin and Java.
* [bmax121 / APatch](https://github.com/bmax121/APatch):The patching of Android kernel and Android system
* [pppscn / SmsForwarder](https://github.com/pppscn/SmsForwarder):短信转发器——监控Android手机短信、来电、APP通知并根据指定规则转发到其他手机钉钉群自定义机器人、钉钉企业内机器人、企业微信群机器人、飞书机器人、企业微信应用消息、邮箱、bark、webhook、Telegram机器人、Server酱、PushPlus、手机短信等。包括主动控制服务端与客户端让你轻松远程发短信、查短信、查通话、查话簿、查电量等。V3.0 新增PS.这个APK主要是学习与自用如有BUG请提ISSUE同时欢迎大家提PR指正
* [JetBrains / compose-multiplatform](https://github.com/JetBrains/compose-multiplatform):Compose Multiplatform, a modern UI framework for Kotlin that makes building performant and beautiful user interfaces easy and enjoyable.
* [yairm210 / Unciv](https://github.com/yairm210/Unciv):Open-source Android/Desktop remake of Civ V
* [JetBrains / kotlin](https://github.com/JetBrains/kotlin):The Kotlin Programming Language.
* [detekt / detekt](https://github.com/detekt/detekt):Static code analysis for Kotlin
* [kizitonwose / Calendar](https://github.com/kizitonwose/Calendar):A highly customizable calendar view and compose library for Android.
* [Kotlin / kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines):Library support for Kotlin coroutines
* [recloudstream / cloudstream](https://github.com/recloudstream/cloudstream):Android app for streaming and downloading media.
* [element-hq / element-x-android](https://github.com/element-hq/element-x-android):Android Matrix messenger application using the Matrix Rust Sdk and Jetpack Compose
* [MatsuriDayo / NekoBoxForAndroid](https://github.com/MatsuriDayo/NekoBoxForAndroid):NekoBox for Android / sing-box / universal proxy toolchain for Android
* [aniyomiorg / aniyomi](https://github.com/aniyomiorg/aniyomi):An app for manga and anime
* [square / okhttp](https://github.com/square/okhttp):Squares meticulous HTTP client for the JVM, Android, and GraalVM.
* [ReVanced / revanced-patches](https://github.com/ReVanced/revanced-patches):🧩 Patches for ReVanced
* [JetBrains / Exposed](https://github.com/JetBrains/Exposed):Kotlin SQL Framework
* [oss-review-toolkit / ort](https://github.com/oss-review-toolkit/ort):A suite of tools to automate software compliance checks.
* [mobile-dev-inc / maestro](https://github.com/mobile-dev-inc/maestro):Painless Mobile UI Automation
#### Objective-C
* [keycastr / keycastr](https://github.com/keycastr/keycastr):KeyCastr, an open-source keystroke visualizer
* [BranchMetrics / ios-branch-sdk-spm](https://github.com/BranchMetrics/ios-branch-sdk-spm):Branch iOS SDK Swift Package Manager distribution
* [realm / realm-swift](https://github.com/realm/realm-swift):Realm is a mobile database: a replacement for Core Data & SQLite
* [SDWebImage / SDWebImage](https://github.com/SDWebImage/SDWebImage):Asynchronous image downloader with cache support as a UIImageView category
* [AzureAD / microsoft-authentication-library-for-objc](https://github.com/AzureAD/microsoft-authentication-library-for-objc):Microsoft Authentication Library (MSAL) for iOS and macOS
* [aws-amplify / aws-sdk-ios](https://github.com/aws-amplify/aws-sdk-ios):AWS SDK for iOS. For more information, see our web site:
* [OneSignal / OneSignal-iOS-SDK](https://github.com/OneSignal/OneSignal-iOS-SDK):OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your native iOS app with OneSignal. https://onesignal.com
* [react-native-maps / react-native-maps](https://github.com/react-native-maps/react-native-maps):React Native Mapview component for iOS + Android
* [google / gtm-session-fetcher](https://github.com/google/gtm-session-fetcher):Google Toolbox for Mac - Session Fetcher
* [gnachman / iTerm2](https://github.com/gnachman/iTerm2):iTerm2 is a terminal emulator for Mac OS X that does amazing things.
* [MustangYM / WeChatExtension-ForMac](https://github.com/MustangYM/WeChatExtension-ForMac):Mac微信功能拓展/微信插件/微信小助手(A plugin for Mac WeChat)
* [adjust / ios_sdk](https://github.com/adjust/ios_sdk):This is the iOS SDK of
* [sunnyyoung / WeChatTweak-macOS](https://github.com/sunnyyoung/WeChatTweak-macOS):A dynamic library tweak for WeChat macOS - 首款微信 macOS 客户端撤回拦截与多开 🔨
* [Leanplum / Leanplum-iOS-SDK](https://github.com/Leanplum/Leanplum-iOS-SDK):Leanplum's integrated solution delivers meaningful engagement across messaging and the in-app experience.
* [google / promises](https://github.com/google/promises):Promises is a modern framework that provides a synchronization construct for Swift and Objective-C.
* [openid / AppAuth-iOS](https://github.com/openid/AppAuth-iOS):iOS and macOS SDK for communicating with OAuth 2.0 and OpenID Connect providers.
* [AFNetworking / AFNetworking](https://github.com/AFNetworking/AFNetworking):A delightful networking framework for iOS, macOS, watchOS, and tvOS.
* [firebase / firebase-ios-sdk](https://github.com/firebase/firebase-ios-sdk):Firebase SDK for Apple App Development
* [SAP / macOS-enterprise-privileges](https://github.com/SAP/macOS-enterprise-privileges):For Mac users in an Enterprise environment, this app gives the User control over administration of their machine by elevating their level of access to Administrator privileges on macOS. Users can set the time frame using Preferences to perform specific tasks such as install or remove an application.
* [ccgus / fmdb](https://github.com/ccgus/fmdb):A Cocoa / Objective-C wrapper around SQLite
* [CocoaLumberjack / CocoaLumberjack](https://github.com/CocoaLumberjack/CocoaLumberjack):A fast & simple, yet powerful & flexible logging framework for macOS, iOS, tvOS and watchOS
* [getsentry / sentry-cocoa](https://github.com/getsentry/sentry-cocoa):The official Sentry SDK for iOS, tvOS, macOS, watchOS.
* [mattt / InflectorKit](https://github.com/mattt/InflectorKit):Efficiently Singularize and Pluralize Strings
#### php
* [magento / magento2](https://github.com/magento/magento2):Prior to making any Submission(s), you must sign an Adobe Contributor License Agreement, available here at: https://opensource.adobe.com/cla.html. All Submissions you make to Adobe Inc. and its affiliates, assigns and subsidiaries (collectively “Adobe”) are subject to the terms of the Adobe Contributor License Agreement.
* [squizlabs / PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer):PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.
* [rectorphp / rector](https://github.com/rectorphp/rector):Instant Upgrades and Automated Refactoring of any PHP 5.3+ code
* [mongodb / laravel-mongodb](https://github.com/mongodb/laravel-mongodb):A MongoDB based Eloquent model and Query builder for Laravel (Moloquent)
* [symfony / monolog-bundle](https://github.com/symfony/monolog-bundle):Symfony Monolog Bundle
* [filamentphp / filament](https://github.com/filamentphp/filament):A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS.
* [lunarphp / lunar](https://github.com/lunarphp/lunar):An open-source package that brings the power of modern headless e-commerce functionality to Laravel.
* [PHPOffice / PHPWord](https://github.com/PHPOffice/PHPWord):A pure PHP library for reading and writing word processing documents
* [nikic / PHP-Parser](https://github.com/nikic/PHP-Parser):A PHP parser written in PHP
* [typecho / typecho](https://github.com/typecho/typecho):A PHP Blogging Platform. Simple and Powerful.
* [vimeo / psalm](https://github.com/vimeo/psalm):A static analysis tool for finding errors in PHP applications
* [cweagans / composer-patches](https://github.com/cweagans/composer-patches):Simple patches plugin for Composer
* [nextcloud / server](https://github.com/nextcloud/server):☁️ Nextcloud server, a safe home for all your data
* [composer / composer](https://github.com/composer/composer):Dependency Manager for PHP
* [fzaninotto / Faker](https://github.com/fzaninotto/Faker):Faker is a PHP library that generates fake data for you
* [doctrine / orm](https://github.com/doctrine/orm):Doctrine Object Relational Mapper (ORM)
* [symfony / symfony](https://github.com/symfony/symfony):The Symfony PHP framework
* [laravel / telescope](https://github.com/laravel/telescope):An elegant debug assistant for the Laravel framework.
* [nextcloud / all-in-one](https://github.com/nextcloud/all-in-one):The official Nextcloud installation method. Provides easy deployment and maintenance with most features included in this one Nextcloud instance.
* [pimcore / pimcore](https://github.com/pimcore/pimcore):Core Framework for the Open Source Data & Experience Management Platform (PIM, MDM, CDP, DAM, DXP/CMS & Digital Commerce)
* [openai-php / client](https://github.com/openai-php/client):⚡️ OpenAI PHP is a supercharged community-maintained PHP API client that allows you to interact with OpenAI API.
* [zircote / swagger-php](https://github.com/zircote/swagger-php):A php swagger annotation and parsing library
* [PrestaShop / PrestaShop](https://github.com/PrestaShop/PrestaShop):PrestaShop is the universal open-source software platform to build your e-commerce solution.
* [laravel / framework](https://github.com/laravel/framework):The Laravel Framework.
* [barryvdh / laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper):IDE Helper for Laravel
#### rust
* [dani-garcia / vaultwarden](https://github.com/dani-garcia/vaultwarden):Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs
* [FuelLabs / fuel-core](https://github.com/FuelLabs/fuel-core):Rust full node implementation of the Fuel v2 protocol.
* [helix-editor / helix](https://github.com/helix-editor/helix):A post-modern modal text editor.
* [TheAlgorithms / Rust](https://github.com/TheAlgorithms/Rust):All Algorithms implemented in Rust
* [FuelLabs / sway](https://github.com/FuelLabs/sway):🌴 Empowering everyone to build reliable and efficient smart contracts.
* [bgkillas / kalc](https://github.com/bgkillas/kalc):a complex numbers, 2d/3d graphing, arbitrary precision, vector, matrix, tui calculator with real-time output
* [aptos-labs / aptos-core](https://github.com/aptos-labs/aptos-core):Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience.
* [apache / opendal](https://github.com/apache/opendal):Apache OpenDAL: access data freely.
* [YaLTeR / niri](https://github.com/YaLTeR/niri):A scrollable-tiling Wayland compositor.
* [wez / wezterm](https://github.com/wez/wezterm):A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust
* [launchbadge / sqlx](https://github.com/launchbadge/sqlx):🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.
* [vectordotdev / vector](https://github.com/vectordotdev/vector):A high-performance observability data pipeline.
* [iced-rs / iced](https://github.com/iced-rs/iced):A cross-platform GUI library for Rust, inspired by Elm
* [bestinslot-xyz / OPI](https://github.com/bestinslot-xyz/OPI):Open Protocol Indexer, OPI, is the best-in-slot open-source indexing client for meta-protocols on Bitcoin.
* [rwf2 / Rocket](https://github.com/rwf2/Rocket):A web framework for Rust.
* [solana-labs / solana-program-library](https://github.com/solana-labs/solana-program-library):A collection of Solana programs maintained by Solana Labs
* [TabbyML / tabby](https://github.com/TabbyML/tabby):Self-hosted AI coding assistant
* [vizia / vizia](https://github.com/vizia/vizia):A declarative GUI library written in Rust
* [dandavison / delta](https://github.com/dandavison/delta):A syntax-highlighting pager for git, diff, and grep output
* [bevyengine / bevy](https://github.com/bevyengine/bevy):A refreshingly simple data-driven game engine built in Rust
* [tree-sitter / tree-sitter](https://github.com/tree-sitter/tree-sitter):An incremental parsing system for programming tools
* [asterinas / asterinas](https://github.com/asterinas/asterinas):Asterinas is a safe, fast, and general-purpose OS kernel, written in Rust and providing Linux-compatible ABI.
* [FuelLabs / fuels-rs](https://github.com/FuelLabs/fuels-rs):Fuel Network Rust SDK
* [tokio-rs / tokio](https://github.com/tokio-rs/tokio):A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ...
#### python
* [RVC-Boss / GPT-SoVITS](https://github.com/RVC-Boss/GPT-SoVITS):1 min voice data can also be used to train a good TTS model! (few shot voice cloning)
* [Asabeneh / 30-Days-Of-Python](https://github.com/Asabeneh/30-Days-Of-Python):30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw
* [danielmiessler / fabric](https://github.com/danielmiessler/fabric):fabric is an open-source framework for augmenting humans using AI.
* [getmoto / moto](https://github.com/getmoto/moto):A library that allows you to easily mock out tests based on AWS infrastructure.
* [InkboxSoftware / excelCPU](https://github.com/InkboxSoftware/excelCPU):16-bit CPU for Excel, and related files
* [521xueweihan / GitHub520](https://github.com/521xueweihan/GitHub520):😘 让你“爱”上 GitHub解决访问时图裂、加载慢的问题。无需安装
* [cumulo-autumn / StreamDiffusion](https://github.com/cumulo-autumn/StreamDiffusion):StreamDiffusion: A Pipeline-Level Solution for Real-Time Interactive Generation
* [FlagOpen / FlagEmbedding](https://github.com/FlagOpen/FlagEmbedding):Dense Retrieval and Retrieval-augmented LLMs
* [01-ai / Yi](https://github.com/01-ai/Yi):A series of large language models trained from scratch by developers @01-ai
* [psf / black](https://github.com/psf/black):The uncompromising Python code formatter
* [Azure-Samples / azure-search-openai-demo](https://github.com/Azure-Samples/azure-search-openai-demo):A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure AI Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.
* [leptonai / leptonai](https://github.com/leptonai/leptonai):A Pythonic framework to simplify AI service building
* [explodinggradients / ragas](https://github.com/explodinggradients/ragas):Evaluation framework for your Retrieval Augmented Generation (RAG) pipelines
* [QwenLM / Qwen-VL](https://github.com/QwenLM/Qwen-VL):The official repo of Qwen-VL (通义千问-VL) chat & pretrained large vision language model proposed by Alibaba Cloud.
* [kyegomez / MORPHEUS-1](https://github.com/kyegomez/MORPHEUS-1):Implementation of "MORPHEUS-1" from Prophetic AI and "The worlds first multi-modal generative ultrasonic transformer designed to induce and stabilize lucid dreams. "
* [Fanghua-Yu / SUPIR](https://github.com/Fanghua-Yu/SUPIR):SUPIR aims at developing Practical Algorithms for Photo-Realistic Image Restoration In the Wild
* [facebookresearch / codellama](https://github.com/facebookresearch/codellama):Inference code for CodeLlama models
* [cheahjs / palworld-save-tools](https://github.com/cheahjs/palworld-save-tools):Tools for converting PalWorld .sav files to JSON and back
* [goauthentik / authentik](https://github.com/goauthentik/authentik):The authentication glue you need.
* [vikhyat / moondream](https://github.com/vikhyat/moondream):tiny vision language model
* [h4x0r-dz / CVE-2024-23897](https://github.com/h4x0r-dz/CVE-2024-23897):CVE-2024-23897
* [sshuttle / sshuttle](https://github.com/sshuttle/sshuttle):Transparent proxy server that works as a poor man's VPN. Forwards over ssh. Doesn't require admin. Works with Linux and MacOS. Supports DNS tunneling.
* [TaskingAI / TaskingAI](https://github.com/TaskingAI/TaskingAI):The open source platform for AI-native application development.
#### swift
* [pointfreeco / swift-composable-architecture](https://github.com/pointfreeco/swift-composable-architecture):A library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.
* [yonaskolb / XcodeGen](https://github.com/yonaskolb/XcodeGen):A Swift command line tool for generating your Xcode project
* [airbnb / lottie-ios](https://github.com/airbnb/lottie-ios):An iOS library to natively render After Effects vector animations
* [mrousavy / react-native-vision-camera](https://github.com/mrousavy/react-native-vision-camera):📸 A powerful, high-performance React Native Camera library.
* [saagarjha / Ensemble](https://github.com/saagarjha/Ensemble):Cast Mac windows to visionOS
* [Alamofire / Alamofire](https://github.com/Alamofire/Alamofire):Elegant HTTP Networking in Swift
* [apple / swift-protobuf](https://github.com/apple/swift-protobuf):Plugin and runtime library for using protobuf with Swift
* [onevcat / Kingfisher](https://github.com/onevcat/Kingfisher):A lightweight, pure-Swift library for downloading and caching images from the web.
* [nicklockwood / SwiftFormat](https://github.com/nicklockwood/SwiftFormat):A command-line tool and Xcode Extension for formatting Swift code
* [Carthage / Carthage](https://github.com/Carthage/Carthage):A simple, decentralized dependency manager for Cocoa
* [SnapKit / SnapKit](https://github.com/SnapKit/SnapKit):A Swift Autolayout DSL for iOS & OS X
* [ReactiveX / RxSwift](https://github.com/ReactiveX/RxSwift):Reactive Programming in Swift
* [krzyzanowskim / CryptoSwift](https://github.com/krzyzanowskim/CryptoSwift):CryptoSwift is a growing collection of standard and secure cryptographic algorithms implemented in Swift
* [ianyh / Amethyst](https://github.com/ianyh/Amethyst):Automatic tiling window manager for macOS à la xmonad.
* [rxhanson / Rectangle](https://github.com/rxhanson/Rectangle):Move and resize windows on macOS with keyboard shortcuts and snap areas
* [HeroTransitions / Hero](https://github.com/HeroTransitions/Hero):Elegant transition library for iOS & tvOS
* [Whisky-App / Whisky](https://github.com/Whisky-App/Whisky):A modern Wine wrapper for macOS built with SwiftUI
* [Moya / Moya](https://github.com/Moya/Moya):Network abstraction layer written in Swift.
* [danielgindi / Charts](https://github.com/danielgindi/Charts):Beautiful charts for iOS/tvOS/OSX! The Apple side of the crossplatform MPAndroidChart.
* [realm / SwiftLint](https://github.com/realm/SwiftLint):A tool to enforce Swift style and conventions.
* [vsouza / awesome-ios](https://github.com/vsouza/awesome-ios):A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects
* [peripheryapp / periphery](https://github.com/peripheryapp/periphery):A tool to identify unused code in Swift projects.
* [tuist / tuist](https://github.com/tuist/tuist):🚀 Create, maintain, and interact with Xcode projects at scale
* [pointfreeco / swift-dependencies](https://github.com/pointfreeco/swift-dependencies):A dependency management library inspired by SwiftUI's "environment."
* [ashleymills / Reachability.swift](https://github.com/ashleymills/Reachability.swift):Replacement for Apple's Reachability re-written in Swift with closures
#### javascript
* [0x648 / luna-ai](https://github.com/0x648/luna-ai):Luna AI - 全自动的 AI 直播系统
* [OAI / OpenAPI-Specification](https://github.com/OAI/OpenAPI-Specification):The OpenAPI Specification Repository
* [axios / axios](https://github.com/axios/axios):Promise based HTTP client for the browser and node.js
* [Asabeneh / 30-Days-Of-React](https://github.com/Asabeneh/30-Days-Of-React):30 Days of React challenge is a step by step guide to learn React in 30 days. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw
* [parallax / jsPDF](https://github.com/parallax/jsPDF):Client-side JavaScript PDF generation for everyone.
* [brave / brave-browser](https://github.com/brave/brave-browser):Next generation Brave browser for Android, Linux, macOS, Windows.
* [31b4 / Leetcode-Premium-Bypass](https://github.com/31b4/Leetcode-Premium-Bypass):Leetcode Premium Unlocker 2024
* [bpmn-io / bpmn-js](https://github.com/bpmn-io/bpmn-js):A BPMN 2.0 rendering toolkit and web modeler.
* [plasma-umass / scalene](https://github.com/plasma-umass/scalene):Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals
* [vercel / next.js](https://github.com/vercel/next.js):The React Framework
* [Asabeneh / 30-Days-Of-JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript):30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw
* [mrdoob / three.js](https://github.com/mrdoob/three.js):JavaScript 3D Library.
* [serverless / serverless](https://github.com/serverless/serverless):⚡ Serverless Framework Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more!
* [haizlin / fe-interview](https://github.com/haizlin/fe-interview):前端面试每日 3+1以面试题来驱动学习提倡每日学习与思考每天进步一点每天早上5点纯手工发布面试题死磕自己愉悦大家6000+道前端面试题全面覆盖HTML/CSS/JavaScript/Vue/React/Nodejs/TypeScript/ECMAScritpt/Webpack/Jquery/小程序/软技能……
* [jgraph / drawio-desktop](https://github.com/jgraph/drawio-desktop):Official electron build of draw.io
* [SuhailTechInfo / Suhail-Md](https://github.com/SuhailTechInfo/Suhail-Md):meet Suhail-Md, Your All-in-One WhatsApp Excitement Buddy! Enjoy a thrilling messaging experience like never before. Suhail-Md brings a world of excitement and joy to your chats ✨🤖
* [webrtc / samples](https://github.com/webrtc/samples):WebRTC Web demos and samples
* [xenova / transformers.js](https://github.com/xenova/transformers.js):State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!
* [prebid / Prebid.js](https://github.com/prebid/Prebid.js):Setup and manage header bidding advertising partners without writing code or confusing line items. Prebid.js is open source and free.
* [langchain-ai / langserve](https://github.com/langchain-ai/langserve):LangServe 🦜️🏓
* [swagger-api / swagger-ui](https://github.com/swagger-api/swagger-ui):Swagger UI is a collection of HTML, JavaScript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API.
* [open-telemetry / opentelemetry.io](https://github.com/open-telemetry/opentelemetry.io):The OpenTelemetry website and documentation
* [sequelize / sequelize](https://github.com/sequelize/sequelize):Feature-rich ORM for modern Node.js and TypeScript, it supports PostgreSQL (with JSON and JSONB support), MySQL, MariaDB, SQLite, MS SQL Server, Snowflake, Oracle DB (v6), DB2 and DB2 for IBM i.
* [brianc / node-postgres](https://github.com/brianc/node-postgres):PostgreSQL client for node.js.
#### go
* [cilium / ebpf](https://github.com/cilium/ebpf):ebpf-go is a pure-Go library to read, modify and load eBPF programs and attach them to various hooks in the Linux kernel.
* [Hoshinonyaruko / palworld-go](https://github.com/Hoshinonyaruko/palworld-go):Pal World all-in-one webui for pc and mobile devices.
* [getkin / kin-openapi](https://github.com/getkin/kin-openapi):OpenAPI 3.0 (and Swagger v2) implementation for Go (parsing, converting, validation, and more)
* [inancgumus / learngo](https://github.com/inancgumus/learngo):❤️ 1000+ Hand-Crafted Go Examples, Exercises, and Quizzes. 🚀 Learn Go by fixing 1000+ tiny programs.
* [uber-go / zap](https://github.com/uber-go/zap):Blazing fast, structured, leveled logging in Go.
* [kyverno / kyverno](https://github.com/kyverno/kyverno):Kubernetes Native Policy Management
* [fullstorydev / grpcurl](https://github.com/fullstorydev/grpcurl):Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers
* [etcd-io / etcd](https://github.com/etcd-io/etcd):Distributed reliable key-value store for the most critical data of a distributed system
* [zeromicro / go-zero](https://github.com/zeromicro/go-zero):A cloud-native Go microservices framework with cli tool for productivity.
* [containerd / containerd](https://github.com/containerd/containerd):An open and reliable container runtime
* [goharbor / harbor](https://github.com/goharbor/harbor):An open source trusted cloud native registry project that stores, signs, and scans content.
* [golang / go](https://github.com/golang/go):The Go programming language
* [deanxv / coze-discord-proxy](https://github.com/deanxv/coze-discord-proxy):代理discord-botapi调用coze-bot
* [onsi / ginkgo](https://github.com/onsi/ginkgo):A Modern Testing Framework for Go
* [rancher / rancher](https://github.com/rancher/rancher):Complete container management platform
* [charmbracelet / bubbletea](https://github.com/charmbracelet/bubbletea):A powerful little TUI framework 🏗
* [hashicorp / terraform-provider-aws](https://github.com/hashicorp/terraform-provider-aws):Terraform AWS provider
* [go-gorm / gorm](https://github.com/go-gorm/gorm):The fantastic ORM library for Golang, aims to be developer friendly
* [cloudnative-pg / cloudnative-pg](https://github.com/cloudnative-pg/cloudnative-pg):CloudNativePG is a Kubernetes operator that covers the full lifecycle of a PostgreSQL database cluster with a primary/standby architecture, using native streaming replication
* [grpc / grpc-go](https://github.com/grpc/grpc-go):The Go language implementation of gRPC. HTTP/2 based RPC
* [databus23 / helm-diff](https://github.com/databus23/helm-diff):A helm plugin that shows a diff explaining what a helm upgrade would change
* [HavocFramework / Havoc](https://github.com/HavocFramework/Havoc):The Havoc Framework.
* [lib / pq](https://github.com/lib/pq):Pure Go Postgres driver for database/sql
* [flyteorg / flyte](https://github.com/flyteorg/flyte):Scalable and flexible workflow orchestration platform that seamlessly unifies data, ML and analytics stacks.
* [jmoiron / sqlx](https://github.com/jmoiron/sqlx):general purpose extensions to golang's database/sql
#### TypeScript
* [nsdonato / recursostech](https://github.com/nsdonato/recursostech):Recursos recopilados para compartir con la comunidad 🚀 Open source, aportes bienvenidos
* [type-challenges / type-challenges](https://github.com/type-challenges/type-challenges):Collection of TypeScript type challenges with online judge
* [FuelLabs / fuels-ts](https://github.com/FuelLabs/fuels-ts):Fuel Network Typescript SDK
* [puppeteer / puppeteer](https://github.com/puppeteer/puppeteer):Node.js API for Chrome
* [Zizzamia / a-frame-in-100-lines](https://github.com/Zizzamia/a-frame-in-100-lines):Farcaster Frames in less than 100 lines, and ready to be deployed to Vercel.
* [a16z-infra / ai-town](https://github.com/a16z-infra/ai-town):A MIT-licensed, deployable starter kit for building and customizing your own version of AI town - a virtual town where AI characters live, chat and socialize.
* [leptonai / search_with_lepton](https://github.com/leptonai/search_with_lepton):Building a quick conversation-based search demo with Lepton AI.
* [medusajs / medusa](https://github.com/medusajs/medusa):Building blocks for digital commerce
* [heyxyz / hey](https://github.com/heyxyz/hey):Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿
* [vuetifyjs / vuetify](https://github.com/vuetifyjs/vuetify):🐉 Vue Component Framework
* [Blazity / next-enterprise](https://github.com/Blazity/next-enterprise):💼 An enterprise-grade Next.js boilerplate for high-performance, maintainable apps. Packed with features like Tailwind CSS, TypeScript, ESLint, Prettier, testing tools, and more to accelerate your development.
* [hasura / graphql-engine](https://github.com/hasura/graphql-engine):Blazing fast, instant realtime GraphQL APIs on your DB with fine grained access control, also trigger webhooks on database events.
* [josStorer / RWKV-Runner](https://github.com/josStorer/RWKV-Runner):A RWKV management and startup tool, full automation, only 8MB. And provides an interface compatible with the OpenAI API. RWKV is a large language model that is fully open source and available for commercial use.
* [vuejs / router](https://github.com/vuejs/router):🚦 The official router for Vue.js
* [lucia-auth / lucia](https://github.com/lucia-auth/lucia):Authentication, simple and clean
* [enricoros / big-AGI](https://github.com/enricoros/big-AGI):💬 Personal AI application powered by GPT-4 and beyond, with AI personas, AGI functions, text-to-image, voice, response streaming, code highlighting and execution, PDF import, presets for developers, much more. Deploy and gift #big-AGI-energy! Using Next.js, React, Joy.
* [mlg404 / palworld-paldex-api](https://github.com/mlg404/palworld-paldex-api):The first and complete Palworld Paldex Api
* [Bluefissure / pal-conf](https://github.com/Bluefissure/pal-conf):PalWorld Server Configuration Generator
* [QuantGeekDev / lmaolang](https://github.com/QuantGeekDev/lmaolang):👏🏼A👏🏼brand👏🏼new👏🏼way👏🏼to👏🏼write👏🏼HTML👏🏼
* [payloadcms / payload](https://github.com/payloadcms/payload):The best way to build a modern backend + admin UI. No black magic, all TypeScript, and fully open-source, Payload is both an app framework and a headless CMS.
* [abi / screenshot-to-code](https://github.com/abi/screenshot-to-code):Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue)
* [FlowiseAI / Flowise](https://github.com/FlowiseAI/Flowise):Drag & drop UI to build your customized LLM flow
* [NG-ZORRO / ng-zorro-antd](https://github.com/NG-ZORRO/ng-zorro-antd):Angular UI Component Library based on Ant Design

View File

@ -0,0 +1,406 @@
## 2024-01-31
#### c
* [KaisenAmin / c_std](https://github.com/KaisenAmin/c_std):Implementation of C++ standard libraries in C
* [lizongying / my-tv](https://github.com/lizongying/my-tv):我的电视 电视直播软件,安装即可使用
* [torvalds / linux](https://github.com/torvalds/linux):Linux kernel source tree
* [microsoft / react-native-code-push](https://github.com/microsoft/react-native-code-push):React Native module for CodePush
* [curl / curl](https://github.com/curl/curl):A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features
* [coolsnowwolf / lede](https://github.com/coolsnowwolf/lede):Lean's LEDE source
* [SchedMD / slurm](https://github.com/SchedMD/slurm):Slurm: A Highly Scalable Workload Manager
* [analogdevicesinc / linux](https://github.com/analogdevicesinc/linux):Linux kernel variant from Analog Devices; see README.md for details
* [apache / nuttx](https://github.com/apache/nuttx):Apache NuttX is a mature, real-time embedded operating system (RTOS)
* [libevent / libevent](https://github.com/libevent/libevent):Event notification library
* [fluent / fluent-bit](https://github.com/fluent/fluent-bit):Fast and Lightweight Logs and Metrics processor for Linux, BSD, OSX and Windows
* [Cracked5pider / Stardust](https://github.com/Cracked5pider/Stardust):A modern 64-bit position independent implant template
* [rockchip-linux / rknn-toolkit2](https://github.com/rockchip-linux/rknn-toolkit2):
* [nanopb / nanopb](https://github.com/nanopb/nanopb):Protocol Buffers with small code size
* [bytecodealliance / wasm-micro-runtime](https://github.com/bytecodealliance/wasm-micro-runtime):WebAssembly Micro Runtime (WAMR)
* [sudo-project / sudo](https://github.com/sudo-project/sudo):Utility to execute a command as another user
* [zephyrproject-rtos / zephyr](https://github.com/zephyrproject-rtos/zephyr):Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
* [iovisor / bcc](https://github.com/iovisor/bcc):BCC - Tools for BPF-based Linux IO analysis, networking, monitoring, and more
* [NVIDIA / cuda-samples](https://github.com/NVIDIA/cuda-samples):Samples for CUDA Developers which demonstrates features in CUDA Toolkit
* [lua / lua](https://github.com/lua/lua):The Lua development repository, as seen by the Lua team. Mirrored irregularly. Please DO NOT send pull requests. Report issues in the Lua mailing list https://www.lua.org/lua-l.html
* [stephane / libmodbus](https://github.com/stephane/libmodbus):A Modbus library for Linux, Mac OS, FreeBSD and Windows
* [yugabyte / yugabyte-db](https://github.com/yugabyte/yugabyte-db):YugabyteDB - the cloud native distributed SQL database for mission-critical applications.
* [axboe / fio](https://github.com/axboe/fio):Flexible I/O Tester
* [tianocore / edk2-platforms](https://github.com/tianocore/edk2-platforms):EDK II sample platform branches and tags
* [memcached / memcached](https://github.com/memcached/memcached):memcached development tree
#### c#
* [KaisenAmin / c_std](https://github.com/KaisenAmin/c_std):Implementation of C++ standard libraries in C
* [lizongying / my-tv](https://github.com/lizongying/my-tv):我的电视 电视直播软件,安装即可使用
* [torvalds / linux](https://github.com/torvalds/linux):Linux kernel source tree
* [microsoft / react-native-code-push](https://github.com/microsoft/react-native-code-push):React Native module for CodePush
* [curl / curl](https://github.com/curl/curl):A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features
* [coolsnowwolf / lede](https://github.com/coolsnowwolf/lede):Lean's LEDE source
* [SchedMD / slurm](https://github.com/SchedMD/slurm):Slurm: A Highly Scalable Workload Manager
* [analogdevicesinc / linux](https://github.com/analogdevicesinc/linux):Linux kernel variant from Analog Devices; see README.md for details
* [apache / nuttx](https://github.com/apache/nuttx):Apache NuttX is a mature, real-time embedded operating system (RTOS)
* [libevent / libevent](https://github.com/libevent/libevent):Event notification library
* [fluent / fluent-bit](https://github.com/fluent/fluent-bit):Fast and Lightweight Logs and Metrics processor for Linux, BSD, OSX and Windows
* [Cracked5pider / Stardust](https://github.com/Cracked5pider/Stardust):A modern 64-bit position independent implant template
* [rockchip-linux / rknn-toolkit2](https://github.com/rockchip-linux/rknn-toolkit2):
* [nanopb / nanopb](https://github.com/nanopb/nanopb):Protocol Buffers with small code size
* [bytecodealliance / wasm-micro-runtime](https://github.com/bytecodealliance/wasm-micro-runtime):WebAssembly Micro Runtime (WAMR)
* [sudo-project / sudo](https://github.com/sudo-project/sudo):Utility to execute a command as another user
* [zephyrproject-rtos / zephyr](https://github.com/zephyrproject-rtos/zephyr):Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
* [iovisor / bcc](https://github.com/iovisor/bcc):BCC - Tools for BPF-based Linux IO analysis, networking, monitoring, and more
* [NVIDIA / cuda-samples](https://github.com/NVIDIA/cuda-samples):Samples for CUDA Developers which demonstrates features in CUDA Toolkit
* [lua / lua](https://github.com/lua/lua):The Lua development repository, as seen by the Lua team. Mirrored irregularly. Please DO NOT send pull requests. Report issues in the Lua mailing list https://www.lua.org/lua-l.html
* [stephane / libmodbus](https://github.com/stephane/libmodbus):A Modbus library for Linux, Mac OS, FreeBSD and Windows
* [yugabyte / yugabyte-db](https://github.com/yugabyte/yugabyte-db):YugabyteDB - the cloud native distributed SQL database for mission-critical applications.
* [axboe / fio](https://github.com/axboe/fio):Flexible I/O Tester
* [tianocore / edk2-platforms](https://github.com/tianocore/edk2-platforms):EDK II sample platform branches and tags
* [memcached / memcached](https://github.com/memcached/memcached):memcached development tree
#### c++
* [carbon-language / carbon-lang](https://github.com/carbon-language/carbon-lang):Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)
* [ggerganov / llama.cpp](https://github.com/ggerganov/llama.cpp):Port of Facebook's LLaMA model in C/C++
* [mltframework / shotcut](https://github.com/mltframework/shotcut):cross-platform (Qt), open-source (GPLv3) video editor
* [pixpark / gpupixel](https://github.com/pixpark/gpupixel):Fully cross-platform AI beauty filter library: achieving commercial-grade beauty effects. Written in C++11, based on OpenGL/ES and VNN.
* [SerenityOS / serenity](https://github.com/SerenityOS/serenity):The Serenity Operating System 🐞
* [duckdb / duckdb](https://github.com/duckdb/duckdb):DuckDB is an in-process SQL OLAP Database Management System
* [typesense / typesense](https://github.com/typesense/typesense):Open Source alternative to Algolia + Pinecone and an Easier-to-Use alternative to ElasticSearch ⚡ 🔍 ✨ Fast, typo tolerant, in-memory fuzzy Search Engine for building delightful search experiences
* [envoyproxy / envoy](https://github.com/envoyproxy/envoy):Cloud-native high-performance edge/middle/service proxy
* [protocolbuffers / protobuf](https://github.com/protocolbuffers/protobuf):Protocol Buffers - Google's data interchange format
* [mamedev / mame](https://github.com/mamedev/mame):MAME
* [UE4SS-RE / RE-UE4SS](https://github.com/UE4SS-RE/RE-UE4SS):Injectable LUA scripting system, SDK generator, live property editor and other dumping utilities for UE4/5 games
* [microsoft / IoT-For-Beginners](https://github.com/microsoft/IoT-For-Beginners):12 Weeks, 24 Lessons, IoT for All!
* [tesseract-ocr / tesseract](https://github.com/tesseract-ocr/tesseract):Tesseract Open Source OCR Engine (main repository)
* [PaddlePaddle / Paddle](https://github.com/PaddlePaddle/Paddle):PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署)
* [Tencent / ncnn](https://github.com/Tencent/ncnn):ncnn is a high-performance neural network inference framework optimized for the mobile platform
* [Aircoookie / WLED](https://github.com/Aircoookie/WLED):Control WS2812B and many more types of digital RGB LEDs with an ESP8266 or ESP32 over WiFi!
* [endless-sky / endless-sky](https://github.com/endless-sky/endless-sky):Space exploration, trading, and combat game.
* [jrouwe / JoltPhysics](https://github.com/jrouwe/JoltPhysics):A multi core friendly rigid body physics and collision detection library, written in C++, suitable for games and VR applications.
* [openvinotoolkit / openvino](https://github.com/openvinotoolkit/openvino):OpenVINO™ is an open-source toolkit for optimizing and deploying AI inference
* [facebookresearch / habitat-sim](https://github.com/facebookresearch/habitat-sim):A flexible, high-performance 3D simulator for Embodied AI research.
* [AlibabaResearch / AdvancedLiterateMachinery](https://github.com/AlibabaResearch/AdvancedLiterateMachinery):A collection of original, innovative ideas and algorithms towards Advanced Literate Machinery. This project is maintained by the OCR Team in the Language Technology Lab, Alibaba DAMO Academy.
* [openxla / iree](https://github.com/openxla/iree):A retargetable MLIR-based machine learning compiler and runtime toolkit.
* [aria2 / aria2](https://github.com/aria2/aria2):aria2 is a lightweight multi-protocol & multi-source, cross platform download utility operated in command-line. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.
* [hrydgard / ppsspp](https://github.com/hrydgard/ppsspp):A PSP emulator for Android, Windows, Mac and Linux, written in C++. Want to contribute? Join us on Discord at https://discord.gg/5NJB6dD or just send pull requests / issues. For discussion use the forums at forums.ppsspp.org.
#### java
* [alibaba / nacos](https://github.com/alibaba/nacos):an easy-to-use dynamic service discovery, configuration and service management platform for building cloud native applications.
* [gunnarmorling / 1brc](https://github.com/gunnarmorling/1brc):1⃣🐝🏎 The One Billion Row Challenge -- A fun exploration of how quickly 1B rows from a text file can be aggregated with Java
* [Snailclimb / JavaGuide](https://github.com/Snailclimb/JavaGuide):「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide
* [keycloak / keycloak](https://github.com/keycloak/keycloak):Open Source Identity and Access Management For Modern Applications and Services
* [trinodb / trino](https://github.com/trinodb/trino):Official repository of Trino, the distributed SQL query engine for big data, formerly known as PrestoSQL (https://trino.io)
* [bytedeco / javacv](https://github.com/bytedeco/javacv):Java interface to OpenCV, FFmpeg, and more
* [apache / incubator-seata](https://github.com/apache/incubator-seata):🔥 Seata is an easy-to-use, high-performance, open source distributed transaction solution.
* [elastic / elasticsearch](https://github.com/elastic/elasticsearch):Free and Open, Distributed, RESTful Search Engine
* [bazelbuild / bazel](https://github.com/bazelbuild/bazel):a fast, scalable, multi-language and extensible build system
* [apache / dolphinscheduler](https://github.com/apache/dolphinscheduler):Apache DolphinScheduler is the modern data orchestration platform. Agile to create high performance workflow with low-code
* [redisson / redisson](https://github.com/redisson/redisson):Redisson - Easy Redis Java client with features of In-Memory Data Grid. Sync/Async/RxJava/Reactive API. Over 50 Redis based Java objects and services: Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Spring Cache, Tomcat, Scheduler, JCache API, Hibernate, RPC, local cache ...
* [theonedev / onedev](https://github.com/theonedev/onedev):Lightweight and performant GitLab alternative. Ultra easy to set up and maintain.
* [google / gson](https://github.com/google/gson):A Java serialization/deserialization library to convert Java Objects into JSON and back
* [thingsboard / thingsboard](https://github.com/thingsboard/thingsboard):Open-source IoT Platform - Device management, data collection, processing and visualization.
* [alibaba / spring-cloud-alibaba](https://github.com/alibaba/spring-cloud-alibaba):Spring Cloud Alibaba provides a one-stop solution for application development for the distributed solutions of Alibaba middleware.
* [jwtk / jjwt](https://github.com/jwtk/jjwt):Java JWT: JSON Web Token for Java and Android
* [google / ExoPlayer](https://github.com/google/ExoPlayer):An extensible media player for Android
* [ververica / flink-cdc-connectors](https://github.com/ververica/flink-cdc-connectors):CDC Connectors for Apache Flink®
* [OpenAPITools / openapi-generator](https://github.com/OpenAPITools/openapi-generator):OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
* [datahub-project / datahub](https://github.com/datahub-project/datahub):The Metadata Platform for the Modern Data Stack
* [bumptech / glide](https://github.com/bumptech/glide):An image loading and caching library for Android focused on smooth scrolling
* [provectus / kafka-ui](https://github.com/provectus/kafka-ui):Open-Source Web UI for Apache Kafka Management
* [apache / kafka](https://github.com/apache/kafka):Mirror of Apache Kafka
* [YunaiV / yudao-cloud](https://github.com/YunaiV/yudao-cloud):ruoyi-vue-pro 全新 Cloud 版本,优化重构所有功能。基于 Spring Cloud Alibaba + MyBatis Plus + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能。你的 ⭐️ Star ⭐️,是作者生发的动力!
* [apache / pinot](https://github.com/apache/pinot):Apache Pinot - A realtime distributed OLAP datastore
#### Kotlin
* [MatsuriDayo / NekoBoxForAndroid](https://github.com/MatsuriDayo/NekoBoxForAndroid):NekoBox for Android / sing-box / universal proxy toolchain for Android
* [ReVanced / revanced-patches](https://github.com/ReVanced/revanced-patches):🧩 Patches for ReVanced
* [element-hq / element-x-android](https://github.com/element-hq/element-x-android):Android Matrix messenger application using the Matrix Rust Sdk and Jetpack Compose
* [cashapp / sqldelight](https://github.com/cashapp/sqldelight):SQLDelight - Generates typesafe Kotlin APIs from SQL
* [Kotlin / kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines):Library support for Kotlin coroutines
* [square / okhttp](https://github.com/square/okhttp):Squares meticulous HTTP client for the JVM, Android, and GraalVM.
* [aniyomiorg / aniyomi](https://github.com/aniyomiorg/aniyomi):An app for manga and anime
* [JetBrains / kotlin](https://github.com/JetBrains/kotlin):The Kotlin Programming Language.
* [ankidroid / Anki-Android](https://github.com/ankidroid/Anki-Android):AnkiDroid: Anki flashcards on Android. Your secret trick to achieve superhuman information retention.
* [mobile-dev-inc / maestro](https://github.com/mobile-dev-inc/maestro):Painless Mobile UI Automation
* [oss-review-toolkit / ort](https://github.com/oss-review-toolkit/ort):A suite of tools to automate software compliance checks.
* [yairm210 / Unciv](https://github.com/yairm210/Unciv):Open-source Android/Desktop remake of Civ V
* [detekt / detekt](https://github.com/detekt/detekt):Static code analysis for Kotlin
* [square / moshi](https://github.com/square/moshi):A modern JSON library for Kotlin and Java.
* [JetBrains / compose-multiplatform](https://github.com/JetBrains/compose-multiplatform):Compose Multiplatform, a modern UI framework for Kotlin that makes building performant and beautiful user interfaces easy and enjoyable.
* [android / compose-samples](https://github.com/android/compose-samples):Official Jetpack Compose samples.
* [bmax121 / APatch](https://github.com/bmax121/APatch):The patching of Android kernel and Android system
* [kizitonwose / Calendar](https://github.com/kizitonwose/Calendar):A highly customizable calendar view and compose library for Android.
* [d4rken-org / sdmaid-se](https://github.com/d4rken-org/sdmaid-se):SD Maid 2/SE is Android's most thorough cleaning tool.
* [ethereum-lists / chains](https://github.com/ethereum-lists/chains):provides metadata for chains
* [coil-kt / coil](https://github.com/coil-kt/coil):Image loading for Android and Compose Multiplatform.
* [pppscn / SmsForwarder](https://github.com/pppscn/SmsForwarder):短信转发器——监控Android手机短信、来电、APP通知并根据指定规则转发到其他手机钉钉群自定义机器人、钉钉企业内机器人、企业微信群机器人、飞书机器人、企业微信应用消息、邮箱、bark、webhook、Telegram机器人、Server酱、PushPlus、手机短信等。包括主动控制服务端与客户端让你轻松远程发短信、查短信、查通话、查话簿、查电量等。V3.0 新增PS.这个APK主要是学习与自用如有BUG请提ISSUE同时欢迎大家提PR指正
* [recloudstream / cloudstream](https://github.com/recloudstream/cloudstream):Android app for streaming and downloading media.
* [JetBrains / Exposed](https://github.com/JetBrains/Exposed):Kotlin SQL Framework
* [RetroMusicPlayer / RetroMusicPlayer](https://github.com/RetroMusicPlayer/RetroMusicPlayer):Best Material You Design music player for Android
#### Objective-C
* [SDWebImage / SDWebImage](https://github.com/SDWebImage/SDWebImage):Asynchronous image downloader with cache support as a UIImageView category
* [firebase / firebase-ios-sdk](https://github.com/firebase/firebase-ios-sdk):Firebase SDK for Apple App Development
* [react-native-maps / react-native-maps](https://github.com/react-native-maps/react-native-maps):React Native Mapview component for iOS + Android
* [openid / AppAuth-iOS](https://github.com/openid/AppAuth-iOS):iOS and macOS SDK for communicating with OAuth 2.0 and OpenID Connect providers.
* [realm / realm-swift](https://github.com/realm/realm-swift):Realm is a mobile database: a replacement for Core Data & SQLite
* [OneSignal / OneSignal-iOS-SDK](https://github.com/OneSignal/OneSignal-iOS-SDK):OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your native iOS app with OneSignal. https://onesignal.com
* [SAP / macOS-enterprise-privileges](https://github.com/SAP/macOS-enterprise-privileges):For Mac users in an Enterprise environment, this app gives the User control over administration of their machine by elevating their level of access to Administrator privileges on macOS. Users can set the time frame using Preferences to perform specific tasks such as install or remove an application.
* [keycastr / keycastr](https://github.com/keycastr/keycastr):KeyCastr, an open-source keystroke visualizer
* [AzureAD / microsoft-authentication-library-for-objc](https://github.com/AzureAD/microsoft-authentication-library-for-objc):Microsoft Authentication Library (MSAL) for iOS and macOS
* [adjust / ios_sdk](https://github.com/adjust/ios_sdk):This is the iOS SDK of
* [getsentry / sentry-cocoa](https://github.com/getsentry/sentry-cocoa):The official Sentry SDK for iOS, tvOS, macOS, watchOS.
* [gnachman / iTerm2](https://github.com/gnachman/iTerm2):iTerm2 is a terminal emulator for Mac OS X that does amazing things.
* [sunnyyoung / WeChatTweak-macOS](https://github.com/sunnyyoung/WeChatTweak-macOS):A dynamic library tweak for WeChat macOS - 首款微信 macOS 客户端撤回拦截与多开 🔨
* [MustangYM / WeChatExtension-ForMac](https://github.com/MustangYM/WeChatExtension-ForMac):Mac微信功能拓展/微信插件/微信小助手(A plugin for Mac WeChat)
* [aws-amplify / aws-sdk-ios](https://github.com/aws-amplify/aws-sdk-ios):AWS SDK for iOS. For more information, see our web site:
* [AFNetworking / AFNetworking](https://github.com/AFNetworking/AFNetworking):A delightful networking framework for iOS, macOS, watchOS, and tvOS.
* [CocoaLumberjack / CocoaLumberjack](https://github.com/CocoaLumberjack/CocoaLumberjack):A fast & simple, yet powerful & flexible logging framework for macOS, iOS, tvOS and watchOS
* [google / gtm-session-fetcher](https://github.com/google/gtm-session-fetcher):Google Toolbox for Mac - Session Fetcher
* [google / promises](https://github.com/google/promises):Promises is a modern framework that provides a synchronization construct for Swift and Objective-C.
* [google / GoogleUtilities](https://github.com/google/GoogleUtilities):
* [ccgus / fmdb](https://github.com/ccgus/fmdb):A Cocoa / Objective-C wrapper around SQLite
* [BranchMetrics / ios-branch-sdk-spm](https://github.com/BranchMetrics/ios-branch-sdk-spm):Branch iOS SDK Swift Package Manager distribution
* [google / GoogleDataTransport](https://github.com/google/GoogleDataTransport):
* [Leanplum / Leanplum-iOS-SDK](https://github.com/Leanplum/Leanplum-iOS-SDK):Leanplum's integrated solution delivers meaningful engagement across messaging and the in-app experience.
* [mattt / InflectorKit](https://github.com/mattt/InflectorKit):Efficiently Singularize and Pluralize Strings
#### php
* [symfony / symfony](https://github.com/symfony/symfony):The Symfony PHP framework
* [nextcloud / server](https://github.com/nextcloud/server):☁️ Nextcloud server, a safe home for all your data
* [magento / magento2](https://github.com/magento/magento2):Prior to making any Submission(s), you must sign an Adobe Contributor License Agreement, available here at: https://opensource.adobe.com/cla.html. All Submissions you make to Adobe Inc. and its affiliates, assigns and subsidiaries (collectively “Adobe”) are subject to the terms of the Adobe Contributor License Agreement.
* [rectorphp / rector](https://github.com/rectorphp/rector):Instant Upgrades and Automated Refactoring of any PHP 5.3+ code
* [laravel / framework](https://github.com/laravel/framework):The Laravel Framework.
* [barryvdh / laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper):IDE Helper for Laravel
* [lunarphp / lunar](https://github.com/lunarphp/lunar):An open-source package that brings the power of modern headless e-commerce functionality to Laravel.
* [pimcore / pimcore](https://github.com/pimcore/pimcore):Core Framework for the Open Source Data & Experience Management Platform (PIM, MDM, CDP, DAM, DXP/CMS & Digital Commerce)
* [filamentphp / filament](https://github.com/filamentphp/filament):A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS.
* [doctrine / orm](https://github.com/doctrine/orm):Doctrine Object Relational Mapper (ORM)
* [fzaninotto / Faker](https://github.com/fzaninotto/Faker):Faker is a PHP library that generates fake data for you
* [nikic / PHP-Parser](https://github.com/nikic/PHP-Parser):A PHP parser written in PHP
* [openai-php / client](https://github.com/openai-php/client):⚡️ OpenAI PHP is a supercharged community-maintained PHP API client that allows you to interact with OpenAI API.
* [zircote / swagger-php](https://github.com/zircote/swagger-php):A php swagger annotation and parsing library
* [cweagans / composer-patches](https://github.com/cweagans/composer-patches):Simple patches plugin for Composer
* [composer / composer](https://github.com/composer/composer):Dependency Manager for PHP
* [laravel / telescope](https://github.com/laravel/telescope):An elegant debug assistant for the Laravel framework.
* [PHPOffice / PHPWord](https://github.com/PHPOffice/PHPWord):A pure PHP library for reading and writing word processing documents
* [squizlabs / PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer):PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.
* [vimeo / psalm](https://github.com/vimeo/psalm):A static analysis tool for finding errors in PHP applications
* [nextcloud / all-in-one](https://github.com/nextcloud/all-in-one):The official Nextcloud installation method. Provides easy deployment and maintenance with most features included in this one Nextcloud instance.
* [mongodb / laravel-mongodb](https://github.com/mongodb/laravel-mongodb):A MongoDB based Eloquent model and Query builder for Laravel (Moloquent)
* [typecho / typecho](https://github.com/typecho/typecho):A PHP Blogging Platform. Simple and Powerful.
* [symfony / monolog-bundle](https://github.com/symfony/monolog-bundle):Symfony Monolog Bundle
* [PrestaShop / PrestaShop](https://github.com/PrestaShop/PrestaShop):PrestaShop is the universal open-source software platform to build your e-commerce solution.
#### rust
* [FuelLabs / sway](https://github.com/FuelLabs/sway):🌴 Empowering everyone to build reliable and efficient smart contracts.
* [YaLTeR / niri](https://github.com/YaLTeR/niri):A scrollable-tiling Wayland compositor.
* [bevyengine / bevy](https://github.com/bevyengine/bevy):A refreshingly simple data-driven game engine built in Rust
* [FuelLabs / fuel-core](https://github.com/FuelLabs/fuel-core):Rust full node implementation of the Fuel v2 protocol.
* [iced-rs / iced](https://github.com/iced-rs/iced):A cross-platform GUI library for Rust, inspired by Elm
* [dani-garcia / vaultwarden](https://github.com/dani-garcia/vaultwarden):Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs
* [TheAlgorithms / Rust](https://github.com/TheAlgorithms/Rust):All Algorithms implemented in Rust
* [tree-sitter / tree-sitter](https://github.com/tree-sitter/tree-sitter):An incremental parsing system for programming tools
* [bestinslot-xyz / OPI](https://github.com/bestinslot-xyz/OPI):Open Protocol Indexer, OPI, is the best-in-slot open-source indexing client for meta-protocols on Bitcoin.
* [tokio-rs / tokio](https://github.com/tokio-rs/tokio):A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ...
* [availproject / avail](https://github.com/availproject/avail):
* [vizia / vizia](https://github.com/vizia/vizia):A declarative GUI library written in Rust
* [apache / opendal](https://github.com/apache/opendal):Apache OpenDAL: access data freely.
* [wez / wezterm](https://github.com/wez/wezterm):A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust
* [FuelLabs / fuels-rs](https://github.com/FuelLabs/fuels-rs):Fuel Network Rust SDK
* [asterinas / asterinas](https://github.com/asterinas/asterinas):Asterinas is a safe, fast, and general-purpose OS kernel, written in Rust and providing Linux-compatible ABI.
* [rwf2 / Rocket](https://github.com/rwf2/Rocket):A web framework for Rust.
* [helix-editor / helix](https://github.com/helix-editor/helix):A post-modern modal text editor.
* [dandavison / delta](https://github.com/dandavison/delta):A syntax-highlighting pager for git, diff, and grep output
* [bgkillas / kalc](https://github.com/bgkillas/kalc):a complex numbers, 2d/3d graphing, arbitrary precision, vector, matrix, tui calculator with real-time output
* [launchbadge / sqlx](https://github.com/launchbadge/sqlx):🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.
* [aptos-labs / aptos-core](https://github.com/aptos-labs/aptos-core):Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience.
* [TabbyML / tabby](https://github.com/TabbyML/tabby):Self-hosted AI coding assistant
* [vectordotdev / vector](https://github.com/vectordotdev/vector):A high-performance observability data pipeline.
* [solana-labs / solana-program-library](https://github.com/solana-labs/solana-program-library):A collection of Solana programs maintained by Solana Labs
#### python
* [vikhyat / moondream](https://github.com/vikhyat/moondream):tiny vision language model
* [h4x0r-dz / CVE-2024-23897](https://github.com/h4x0r-dz/CVE-2024-23897):CVE-2024-23897
* [InkboxSoftware / excelCPU](https://github.com/InkboxSoftware/excelCPU):16-bit CPU for Excel, and related files
* [01-ai / Yi](https://github.com/01-ai/Yi):A series of large language models trained from scratch by developers @01-ai
* [danielmiessler / fabric](https://github.com/danielmiessler/fabric):fabric is an open-source framework for augmenting humans using AI.
* [TaskingAI / TaskingAI](https://github.com/TaskingAI/TaskingAI):The open source platform for AI-native application development.
* [Asabeneh / 30-Days-Of-Python](https://github.com/Asabeneh/30-Days-Of-Python):30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw
* [facebookresearch / codellama](https://github.com/facebookresearch/codellama):Inference code for CodeLlama models
* [kyegomez / MORPHEUS-1](https://github.com/kyegomez/MORPHEUS-1):Implementation of "MORPHEUS-1" from Prophetic AI and "The worlds first multi-modal generative ultrasonic transformer designed to induce and stabilize lucid dreams. "
* [cumulo-autumn / StreamDiffusion](https://github.com/cumulo-autumn/StreamDiffusion):StreamDiffusion: A Pipeline-Level Solution for Real-Time Interactive Generation
* [RVC-Boss / GPT-SoVITS](https://github.com/RVC-Boss/GPT-SoVITS):1 min voice data can also be used to train a good TTS model! (few shot voice cloning)
* [bclavie / RAGatouille](https://github.com/bclavie/RAGatouille):
* [FlagOpen / FlagEmbedding](https://github.com/FlagOpen/FlagEmbedding):Dense Retrieval and Retrieval-augmented LLMs
* [leptonai / leptonai](https://github.com/leptonai/leptonai):A Pythonic framework to simplify AI service building
* [Azure-Samples / azure-search-openai-demo](https://github.com/Azure-Samples/azure-search-openai-demo):A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure AI Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.
* [Fanghua-Yu / SUPIR](https://github.com/Fanghua-Yu/SUPIR):SUPIR aims at developing Practical Algorithms for Photo-Realistic Image Restoration In the Wild
* [psf / black](https://github.com/psf/black):The uncompromising Python code formatter
* [langchain-ai / langgraph](https://github.com/langchain-ai/langgraph):
* [QwenLM / Qwen-VL](https://github.com/QwenLM/Qwen-VL):The official repo of Qwen-VL (通义千问-VL) chat & pretrained large vision language model proposed by Alibaba Cloud.
* [cheahjs / palworld-save-tools](https://github.com/cheahjs/palworld-save-tools):Tools for converting PalWorld .sav files to JSON and back
* [getmoto / moto](https://github.com/getmoto/moto):A library that allows you to easily mock out tests based on AWS infrastructure.
* [explodinggradients / ragas](https://github.com/explodinggradients/ragas):Evaluation framework for your Retrieval Augmented Generation (RAG) pipelines
* [521xueweihan / GitHub520](https://github.com/521xueweihan/GitHub520):😘 让你“爱”上 GitHub解决访问时图裂、加载慢的问题。无需安装
* [sshuttle / sshuttle](https://github.com/sshuttle/sshuttle):Transparent proxy server that works as a poor man's VPN. Forwards over ssh. Doesn't require admin. Works with Linux and MacOS. Supports DNS tunneling.
* [goauthentik / authentik](https://github.com/goauthentik/authentik):The authentication glue you need.
#### swift
* [saagarjha / Ensemble](https://github.com/saagarjha/Ensemble):Cast Mac windows to visionOS
* [Alamofire / Alamofire](https://github.com/Alamofire/Alamofire):Elegant HTTP Networking in Swift
* [mrousavy / react-native-vision-camera](https://github.com/mrousavy/react-native-vision-camera):📸 A powerful, high-performance React Native Camera library.
* [pointfreeco / swift-composable-architecture](https://github.com/pointfreeco/swift-composable-architecture):A library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.
* [onevcat / Kingfisher](https://github.com/onevcat/Kingfisher):A lightweight, pure-Swift library for downloading and caching images from the web.
* [Whisky-App / Whisky](https://github.com/Whisky-App/Whisky):A modern Wine wrapper for macOS built with SwiftUI
* [krzyzanowskim / CryptoSwift](https://github.com/krzyzanowskim/CryptoSwift):CryptoSwift is a growing collection of standard and secure cryptographic algorithms implemented in Swift
* [airbnb / lottie-ios](https://github.com/airbnb/lottie-ios):An iOS library to natively render After Effects vector animations
* [ashleymills / Reachability.swift](https://github.com/ashleymills/Reachability.swift):Replacement for Apple's Reachability re-written in Swift with closures
* [tuist / tuist](https://github.com/tuist/tuist):🚀 Create, maintain, and interact with Xcode projects at scale
* [yonaskolb / XcodeGen](https://github.com/yonaskolb/XcodeGen):A Swift command line tool for generating your Xcode project
* [HeroTransitions / Hero](https://github.com/HeroTransitions/Hero):Elegant transition library for iOS & tvOS
* [SnapKit / SnapKit](https://github.com/SnapKit/SnapKit):A Swift Autolayout DSL for iOS & OS X
* [danielgindi / Charts](https://github.com/danielgindi/Charts):Beautiful charts for iOS/tvOS/OSX! The Apple side of the crossplatform MPAndroidChart.
* [nicklockwood / SwiftFormat](https://github.com/nicklockwood/SwiftFormat):A command-line tool and Xcode Extension for formatting Swift code
* [realm / SwiftLint](https://github.com/realm/SwiftLint):A tool to enforce Swift style and conventions.
* [pointfreeco / swift-dependencies](https://github.com/pointfreeco/swift-dependencies):A dependency management library inspired by SwiftUI's "environment."
* [apple / swift-protobuf](https://github.com/apple/swift-protobuf):Plugin and runtime library for using protobuf with Swift
* [vsouza / awesome-ios](https://github.com/vsouza/awesome-ios):A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects
* [Moya / Moya](https://github.com/Moya/Moya):Network abstraction layer written in Swift.
* [ianyh / Amethyst](https://github.com/ianyh/Amethyst):Automatic tiling window manager for macOS à la xmonad.
* [rxhanson / Rectangle](https://github.com/rxhanson/Rectangle):Move and resize windows on macOS with keyboard shortcuts and snap areas
* [ReactiveX / RxSwift](https://github.com/ReactiveX/RxSwift):Reactive Programming in Swift
* [peripheryapp / periphery](https://github.com/peripheryapp/periphery):A tool to identify unused code in Swift projects.
* [Carthage / Carthage](https://github.com/Carthage/Carthage):A simple, decentralized dependency manager for Cocoa
#### javascript
* [plasma-umass / scalene](https://github.com/plasma-umass/scalene):Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals
* [vercel / next.js](https://github.com/vercel/next.js):The React Framework
* [axios / axios](https://github.com/axios/axios):Promise based HTTP client for the browser and node.js
* [serverless / serverless](https://github.com/serverless/serverless):⚡ Serverless Framework Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more!
* [OAI / OpenAPI-Specification](https://github.com/OAI/OpenAPI-Specification):The OpenAPI Specification Repository
* [xenova / transformers.js](https://github.com/xenova/transformers.js):State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!
* [Asabeneh / 30-Days-Of-JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript):30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw
* [swagger-api / swagger-ui](https://github.com/swagger-api/swagger-ui):Swagger UI is a collection of HTML, JavaScript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API.
* [31b4 / Leetcode-Premium-Bypass](https://github.com/31b4/Leetcode-Premium-Bypass):Leetcode Premium Unlocker 2024
* [0x648 / luna-ai](https://github.com/0x648/luna-ai):Luna AI - 全自动的 AI 直播系统
* [SuhailTechInfo / Suhail-Md](https://github.com/SuhailTechInfo/Suhail-Md):meet Suhail-Md, Your All-in-One WhatsApp Excitement Buddy! Enjoy a thrilling messaging experience like never before. Suhail-Md brings a world of excitement and joy to your chats ✨🤖
* [sequelize / sequelize](https://github.com/sequelize/sequelize):Feature-rich ORM for modern Node.js and TypeScript, it supports PostgreSQL (with JSON and JSONB support), MySQL, MariaDB, SQLite, MS SQL Server, Snowflake, Oracle DB (v6), DB2 and DB2 for IBM i.
* [brave / brave-browser](https://github.com/brave/brave-browser):Next generation Brave browser for Android, Linux, macOS, Windows.
* [mrdoob / three.js](https://github.com/mrdoob/three.js):JavaScript 3D Library.
* [bpmn-io / bpmn-js](https://github.com/bpmn-io/bpmn-js):A BPMN 2.0 rendering toolkit and web modeler.
* [jgraph / drawio-desktop](https://github.com/jgraph/drawio-desktop):Official electron build of draw.io
* [100xdevs-cohort-2 / assignments](https://github.com/100xdevs-cohort-2/assignments):
* [brianc / node-postgres](https://github.com/brianc/node-postgres):PostgreSQL client for node.js.
* [webrtc / samples](https://github.com/webrtc/samples):WebRTC Web demos and samples
* [parallax / jsPDF](https://github.com/parallax/jsPDF):Client-side JavaScript PDF generation for everyone.
* [langchain-ai / langserve](https://github.com/langchain-ai/langserve):LangServe 🦜️🏓
* [haizlin / fe-interview](https://github.com/haizlin/fe-interview):前端面试每日 3+1以面试题来驱动学习提倡每日学习与思考每天进步一点每天早上5点纯手工发布面试题死磕自己愉悦大家6000+道前端面试题全面覆盖HTML/CSS/JavaScript/Vue/React/Nodejs/TypeScript/ECMAScritpt/Webpack/Jquery/小程序/软技能……
* [prebid / Prebid.js](https://github.com/prebid/Prebid.js):Setup and manage header bidding advertising partners without writing code or confusing line items. Prebid.js is open source and free.
* [Asabeneh / 30-Days-Of-React](https://github.com/Asabeneh/30-Days-Of-React):30 Days of React challenge is a step by step guide to learn React in 30 days. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw
* [open-telemetry / opentelemetry.io](https://github.com/open-telemetry/opentelemetry.io):The OpenTelemetry website and documentation
#### go
* [cloudnative-pg / cloudnative-pg](https://github.com/cloudnative-pg/cloudnative-pg):CloudNativePG is a Kubernetes operator that covers the full lifecycle of a PostgreSQL database cluster with a primary/standby architecture, using native streaming replication
* [deanxv / coze-discord-proxy](https://github.com/deanxv/coze-discord-proxy):代理discord-botapi调用coze-bot
* [onsi / ginkgo](https://github.com/onsi/ginkgo):A Modern Testing Framework for Go
* [Hoshinonyaruko / palworld-go](https://github.com/Hoshinonyaruko/palworld-go):Pal World all-in-one webui for pc and mobile devices.
* [golang / go](https://github.com/golang/go):The Go programming language
* [jmoiron / sqlx](https://github.com/jmoiron/sqlx):general purpose extensions to golang's database/sql
* [kyverno / kyverno](https://github.com/kyverno/kyverno):Kubernetes Native Policy Management
* [inancgumus / learngo](https://github.com/inancgumus/learngo):❤️ 1000+ Hand-Crafted Go Examples, Exercises, and Quizzes. 🚀 Learn Go by fixing 1000+ tiny programs.
* [charmbracelet / bubbletea](https://github.com/charmbracelet/bubbletea):A powerful little TUI framework 🏗
* [zeromicro / go-zero](https://github.com/zeromicro/go-zero):A cloud-native Go microservices framework with cli tool for productivity.
* [uber-go / zap](https://github.com/uber-go/zap):Blazing fast, structured, leveled logging in Go.
* [go-gorm / gorm](https://github.com/go-gorm/gorm):The fantastic ORM library for Golang, aims to be developer friendly
* [flyteorg / flyte](https://github.com/flyteorg/flyte):Scalable and flexible workflow orchestration platform that seamlessly unifies data, ML and analytics stacks.
* [getkin / kin-openapi](https://github.com/getkin/kin-openapi):OpenAPI 3.0 (and Swagger v2) implementation for Go (parsing, converting, validation, and more)
* [containerd / containerd](https://github.com/containerd/containerd):An open and reliable container runtime
* [goharbor / harbor](https://github.com/goharbor/harbor):An open source trusted cloud native registry project that stores, signs, and scans content.
* [grpc / grpc-go](https://github.com/grpc/grpc-go):The Go language implementation of gRPC. HTTP/2 based RPC
* [fullstorydev / grpcurl](https://github.com/fullstorydev/grpcurl):Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers
* [rancher / rancher](https://github.com/rancher/rancher):Complete container management platform
* [databus23 / helm-diff](https://github.com/databus23/helm-diff):A helm plugin that shows a diff explaining what a helm upgrade would change
* [cilium / ebpf](https://github.com/cilium/ebpf):ebpf-go is a pure-Go library to read, modify and load eBPF programs and attach them to various hooks in the Linux kernel.
* [HavocFramework / Havoc](https://github.com/HavocFramework/Havoc):The Havoc Framework.
* [hashicorp / terraform-provider-aws](https://github.com/hashicorp/terraform-provider-aws):Terraform AWS provider
* [lib / pq](https://github.com/lib/pq):Pure Go Postgres driver for database/sql
* [etcd-io / etcd](https://github.com/etcd-io/etcd):Distributed reliable key-value store for the most critical data of a distributed system
#### TypeScript
* [leptonai / search_with_lepton](https://github.com/leptonai/search_with_lepton):Building a quick conversation-based search demo with Lepton AI.
* [puppeteer / puppeteer](https://github.com/puppeteer/puppeteer):Node.js API for Chrome
* [FlowiseAI / Flowise](https://github.com/FlowiseAI/Flowise):Drag & drop UI to build your customized LLM flow
* [hasura / graphql-engine](https://github.com/hasura/graphql-engine):Blazing fast, instant realtime GraphQL APIs on your DB with fine grained access control, also trigger webhooks on database events.
* [FuelLabs / fuels-ts](https://github.com/FuelLabs/fuels-ts):Fuel Network Typescript SDK
* [abi / screenshot-to-code](https://github.com/abi/screenshot-to-code):Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue)
* [payloadcms / payload](https://github.com/payloadcms/payload):The best way to build a modern backend + admin UI. No black magic, all TypeScript, and fully open-source, Payload is both an app framework and a headless CMS.
* [a16z-infra / ai-town](https://github.com/a16z-infra/ai-town):A MIT-licensed, deployable starter kit for building and customizing your own version of AI town - a virtual town where AI characters live, chat and socialize.
* [josStorer / RWKV-Runner](https://github.com/josStorer/RWKV-Runner):A RWKV management and startup tool, full automation, only 8MB. And provides an interface compatible with the OpenAI API. RWKV is a large language model that is fully open source and available for commercial use.
* [type-challenges / type-challenges](https://github.com/type-challenges/type-challenges):Collection of TypeScript type challenges with online judge
* [farcasterxyz / fc-polls](https://github.com/farcasterxyz/fc-polls):
* [lucia-auth / lucia](https://github.com/lucia-auth/lucia):Authentication, simple and clean
* [Bluefissure / pal-conf](https://github.com/Bluefissure/pal-conf):PalWorld Server Configuration Generator
* [microsoft / typespec](https://github.com/microsoft/typespec):
* [mlg404 / palworld-paldex-api](https://github.com/mlg404/palworld-paldex-api):The first and complete Palworld Paldex Api
* [medusajs / medusa](https://github.com/medusajs/medusa):Building blocks for digital commerce
* [nsdonato / recursostech](https://github.com/nsdonato/recursostech):Recursos recopilados para compartir con la comunidad 🚀 Open source, aportes bienvenidos
♥️
* [Zizzamia / a-frame-in-100-lines](https://github.com/Zizzamia/a-frame-in-100-lines):Farcaster Frames in less than 100 lines, and ready to be deployed to Vercel.
* [enricoros / big-AGI](https://github.com/enricoros/big-AGI):💬 Personal AI application powered by GPT-4 and beyond, with AI personas, AGI functions, text-to-image, voice, response streaming, code highlighting and execution, PDF import, presets for developers, much more. Deploy and gift #big-AGI-energy! Using Next.js, React, Joy.
* [NG-ZORRO / ng-zorro-antd](https://github.com/NG-ZORRO/ng-zorro-antd):Angular UI Component Library based on Ant Design
* [QuantGeekDev / lmaolang](https://github.com/QuantGeekDev/lmaolang):👏🏼A👏🏼brand👏🏼new👏🏼way👏🏼to👏🏼write👏🏼HTML👏🏼
* [heyxyz / hey](https://github.com/heyxyz/hey):Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿
* [Blazity / next-enterprise](https://github.com/Blazity/next-enterprise):💼 An enterprise-grade Next.js boilerplate for high-performance, maintainable apps. Packed with features like Tailwind CSS, TypeScript, ESLint, Prettier, testing tools, and more to accelerate your development.
* [vuetifyjs / vuetify](https://github.com/vuetifyjs/vuetify):🐉 Vue Component Framework
* [vuejs / router](https://github.com/vuejs/router):🚦 The official router for Vue.js
#### swift
* [saagarjha / Ensemble](https://github.com/saagarjha/Ensemble):Cast Mac windows to visionOS
* [Alamofire / Alamofire](https://github.com/Alamofire/Alamofire):Elegant HTTP Networking in Swift
* [mrousavy / react-native-vision-camera](https://github.com/mrousavy/react-native-vision-camera):📸 A powerful, high-performance React Native Camera library.
* [pointfreeco / swift-composable-architecture](https://github.com/pointfreeco/swift-composable-architecture):A library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.
* [onevcat / Kingfisher](https://github.com/onevcat/Kingfisher):A lightweight, pure-Swift library for downloading and caching images from the web.
* [Whisky-App / Whisky](https://github.com/Whisky-App/Whisky):A modern Wine wrapper for macOS built with SwiftUI
* [krzyzanowskim / CryptoSwift](https://github.com/krzyzanowskim/CryptoSwift):CryptoSwift is a growing collection of standard and secure cryptographic algorithms implemented in Swift
* [airbnb / lottie-ios](https://github.com/airbnb/lottie-ios):An iOS library to natively render After Effects vector animations
* [ashleymills / Reachability.swift](https://github.com/ashleymills/Reachability.swift):Replacement for Apple's Reachability re-written in Swift with closures
* [tuist / tuist](https://github.com/tuist/tuist):🚀 Create, maintain, and interact with Xcode projects at scale
* [yonaskolb / XcodeGen](https://github.com/yonaskolb/XcodeGen):A Swift command line tool for generating your Xcode project
* [HeroTransitions / Hero](https://github.com/HeroTransitions/Hero):Elegant transition library for iOS & tvOS
* [SnapKit / SnapKit](https://github.com/SnapKit/SnapKit):A Swift Autolayout DSL for iOS & OS X
* [danielgindi / Charts](https://github.com/danielgindi/Charts):Beautiful charts for iOS/tvOS/OSX! The Apple side of the crossplatform MPAndroidChart.
* [nicklockwood / SwiftFormat](https://github.com/nicklockwood/SwiftFormat):A command-line tool and Xcode Extension for formatting Swift code
* [realm / SwiftLint](https://github.com/realm/SwiftLint):A tool to enforce Swift style and conventions.
* [pointfreeco / swift-dependencies](https://github.com/pointfreeco/swift-dependencies):A dependency management library inspired by SwiftUI's "environment."
* [apple / swift-protobuf](https://github.com/apple/swift-protobuf):Plugin and runtime library for using protobuf with Swift
* [vsouza / awesome-ios](https://github.com/vsouza/awesome-ios):A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects
* [Moya / Moya](https://github.com/Moya/Moya):Network abstraction layer written in Swift.
* [ianyh / Amethyst](https://github.com/ianyh/Amethyst):Automatic tiling window manager for macOS à la xmonad.
* [rxhanson / Rectangle](https://github.com/rxhanson/Rectangle):Move and resize windows on macOS with keyboard shortcuts and snap areas
* [ReactiveX / RxSwift](https://github.com/ReactiveX/RxSwift):Reactive Programming in Swift
* [peripheryapp / periphery](https://github.com/peripheryapp/periphery):A tool to identify unused code in Swift projects.
* [Carthage / Carthage](https://github.com/Carthage/Carthage):A simple, decentralized dependency manager for Cocoa
#### swift
* [saagarjha / Ensemble](https://github.com/saagarjha/Ensemble):Cast Mac windows to visionOS
* [Alamofire / Alamofire](https://github.com/Alamofire/Alamofire):Elegant HTTP Networking in Swift
* [mrousavy / react-native-vision-camera](https://github.com/mrousavy/react-native-vision-camera):📸 A powerful, high-performance React Native Camera library.
* [pointfreeco / swift-composable-architecture](https://github.com/pointfreeco/swift-composable-architecture):A library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.
* [onevcat / Kingfisher](https://github.com/onevcat/Kingfisher):A lightweight, pure-Swift library for downloading and caching images from the web.
* [Whisky-App / Whisky](https://github.com/Whisky-App/Whisky):A modern Wine wrapper for macOS built with SwiftUI
* [krzyzanowskim / CryptoSwift](https://github.com/krzyzanowskim/CryptoSwift):CryptoSwift is a growing collection of standard and secure cryptographic algorithms implemented in Swift
* [airbnb / lottie-ios](https://github.com/airbnb/lottie-ios):An iOS library to natively render After Effects vector animations
* [ashleymills / Reachability.swift](https://github.com/ashleymills/Reachability.swift):Replacement for Apple's Reachability re-written in Swift with closures
* [tuist / tuist](https://github.com/tuist/tuist):🚀 Create, maintain, and interact with Xcode projects at scale
* [yonaskolb / XcodeGen](https://github.com/yonaskolb/XcodeGen):A Swift command line tool for generating your Xcode project
* [HeroTransitions / Hero](https://github.com/HeroTransitions/Hero):Elegant transition library for iOS & tvOS
* [SnapKit / SnapKit](https://github.com/SnapKit/SnapKit):A Swift Autolayout DSL for iOS & OS X
* [danielgindi / Charts](https://github.com/danielgindi/Charts):Beautiful charts for iOS/tvOS/OSX! The Apple side of the crossplatform MPAndroidChart.
* [nicklockwood / SwiftFormat](https://github.com/nicklockwood/SwiftFormat):A command-line tool and Xcode Extension for formatting Swift code
* [realm / SwiftLint](https://github.com/realm/SwiftLint):A tool to enforce Swift style and conventions.
* [pointfreeco / swift-dependencies](https://github.com/pointfreeco/swift-dependencies):A dependency management library inspired by SwiftUI's "environment."
* [apple / swift-protobuf](https://github.com/apple/swift-protobuf):Plugin and runtime library for using protobuf with Swift
* [vsouza / awesome-ios](https://github.com/vsouza/awesome-ios):A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects
* [Moya / Moya](https://github.com/Moya/Moya):Network abstraction layer written in Swift.
* [ianyh / Amethyst](https://github.com/ianyh/Amethyst):Automatic tiling window manager for macOS à la xmonad.
* [rxhanson / Rectangle](https://github.com/rxhanson/Rectangle):Move and resize windows on macOS with keyboard shortcuts and snap areas
* [ReactiveX / RxSwift](https://github.com/ReactiveX/RxSwift):Reactive Programming in Swift
* [peripheryapp / periphery](https://github.com/peripheryapp/periphery):A tool to identify unused code in Swift projects.
* [Carthage / Carthage](https://github.com/Carthage/Carthage):A simple, decentralized dependency manager for Cocoa

13
run.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
git pull
cd /home/ubuntu/fine_tuning/CatwalkGlimpse-AISelections
python3 Scraper.py
python3 FindNew.py
python3 SendMail.py
git add ./
today=$(date +%Y%m%d)
git commit -m "${today} new update"
git push -u origin main