From 26686bd3bfda8d518e67fa10f09b87b8f1b0d568 Mon Sep 17 00:00:00 2001 From: aryamansharda Date: Fri, 19 Mar 2021 00:05:00 -0700 Subject: [PATCH 001/191] Add Awesome Viewer to Related section (#1969) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 5cd76f88dd..c7f77628bf 100755 --- a/readme.md +++ b/readme.md @@ -755,3 +755,4 @@ - [Awesome Search](https://awesomelists.top) - Quick search for Awesome lists. - [StumbleUponAwesome](https://github.com/basharovV/StumbleUponAwesome) - Discover random pages from the Awesome dataset using a browser extension. - [Awesome CLI](https://github.com/umutphp/awesome-cli) - A simple command-line tool to dive into Awesome lists. +- [Awesome Viewer](http://awesome.digitalbunker.dev) - A visualizer for all of the above Awesome lists. From b077f6fedd466d08b23dc586dc5daa5bbb24f8d0 Mon Sep 17 00:00:00 2001 From: David Houston Date: Fri, 2 Apr 2021 15:51:59 -0400 Subject: [PATCH 002/191] Add Nix (#1973) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c7f77628bf..7c49c5f599 100755 --- a/readme.md +++ b/readme.md @@ -142,6 +142,7 @@ - [ESP](https://github.com/agucova/awesome-esp#readme) - Low-cost microcontrollers with WiFi and broad IoT applications. - [Deno](https://github.com/denolib/awesome-deno#readme) - A secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust. - [DOS](https://github.com/balintkissdev/awesome-dos#readme) - Operating system for x86-based personal computers that was popular during the 1980s and early 1990s. +- [Nix](https://github.com/nix-community/awesome-nix#readme) - Package manager for Linux and other Unix systems that makes package management reliable and reproducible. ## Programming Languages From 2573b98bb6e60e6f6c19c5ef5aef4208f16e5df0 Mon Sep 17 00:00:00 2001 From: brianmingus2 <76971633+brianmingus2@users.noreply.github.com> Date: Mon, 19 Apr 2021 02:23:48 -0700 Subject: [PATCH 003/191] Add Chalice (#1984) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 7c49c5f599..56afe62404 100755 --- a/readme.md +++ b/readme.md @@ -332,6 +332,7 @@ - [FastAPI](https://github.com/mjhea0/awesome-fastapi#readme) - Python web app framework. - [CDK](https://github.com/kolomied/awesome-cdk#readme) - Open-source software development framework for defining cloud infrastructure in code. - [IAM](https://github.com/kdeldycke/awesome-iam#readme) - User accounts, authentication and authorization. +- [Chalice](https://github.com/chalice-dev/awesome-chalice#readme) - Python framework for serverless app development on AWS Lambda. ## Computer Science From ec9672252a2cddca52f0e154bdd8444a48f3913b Mon Sep 17 00:00:00 2001 From: Raymond Berger Date: Sun, 18 Apr 2021 23:59:15 -1000 Subject: [PATCH 004/191] Run `awesome-lint` on new additions (#1962) Co-authored-by: Sindre Sorhus --- .github/workflows/main.yml | 14 ++++++++++++++ .github/workflows/repo_linter.sh | 22 ++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .github/workflows/main.yml create mode 100755 .github/workflows/repo_linter.sh diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..db9455f3bf --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,14 @@ +on: + pull_request: + branches: [main] + paths: + - 'readme.md' +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: awesome-lint + run: ./.github/workflows/repo_linter.sh diff --git a/.github/workflows/repo_linter.sh b/.github/workflows/repo_linter.sh new file mode 100755 index 0000000000..a407f9c8b3 --- /dev/null +++ b/.github/workflows/repo_linter.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# Find the repo in the git diff and then set it to an env variables. +REPO_TO_LINT=$( + git diff main readme.md | + # Look for changes (indicated by lines starting with +). + grep ^+ | + # Get the line that includes the readme. + grep -Eo 'https.*#readme' | + # Get just the URL. + sed 's/#readme//') + +# If there's no repo found, exit quietly. +if [ -z ${REPO_TO_LINT+x} ]; then + echo "No new link found in the format: https://....#readme" +else + echo "Cloning $REPO_TO_LINT" + mkdir cloned + cd cloned + git clone --depth=1 "$REPO_TO_LINT" . + npx awesome-lint +fi From 7597b9013e04d253390fed8d6a67e837501dcc07 Mon Sep 17 00:00:00 2001 From: Rahul Singh Date: Sun, 2 May 2021 07:06:51 -0400 Subject: [PATCH 005/191] Add Cassandra (#1990) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 56afe62404..4e09d79ede 100755 --- a/readme.md +++ b/readme.md @@ -485,6 +485,7 @@ - [Contexture](https://github.com/chrislatorres/awesome-contexture#readme) - Abstracts queries/filters and results/aggregations from different backing data stores like ElasticSearch and MongoDB. - [Database Tools](https://github.com/mgramin/awesome-db-tools#readme) - Everything that makes working with databases easier. - [Grakn](https://github.com/graknlabs/awesome#readme) - Logical database to organize large and complex networks of data as one body of knowledge. +- [Cassandra](https://github.com/Anant/awesome-cassandra#readme) - Open-source, distributed, wide column store, NoSQL database management system. ## Media From 9c7a5d03dc55b50eba9b74ffdaa29bc5d450d550 Mon Sep 17 00:00:00 2001 From: Raymond Berger Date: Sun, 2 May 2021 08:20:26 -1000 Subject: [PATCH 006/191] Fix git diff command in repo linter (#2003) --- .github/workflows/repo_linter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/repo_linter.sh b/.github/workflows/repo_linter.sh index a407f9c8b3..27025e29da 100755 --- a/.github/workflows/repo_linter.sh +++ b/.github/workflows/repo_linter.sh @@ -2,7 +2,7 @@ # Find the repo in the git diff and then set it to an env variables. REPO_TO_LINT=$( - git diff main readme.md | + git diff main -- readme.md | # Look for changes (indicated by lines starting with +). grep ^+ | # Get the line that includes the readme. From 861c6c76b8b059d7aef7afd06dba35125087c2a0 Mon Sep 17 00:00:00 2001 From: brianmingus2 <76971633+brianmingus2@users.noreply.github.com> Date: Mon, 3 May 2021 12:44:04 -0600 Subject: [PATCH 007/191] Remove Chalice (#2005) --- readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/readme.md b/readme.md index 4e09d79ede..60294c2239 100755 --- a/readme.md +++ b/readme.md @@ -332,7 +332,6 @@ - [FastAPI](https://github.com/mjhea0/awesome-fastapi#readme) - Python web app framework. - [CDK](https://github.com/kolomied/awesome-cdk#readme) - Open-source software development framework for defining cloud infrastructure in code. - [IAM](https://github.com/kdeldycke/awesome-iam#readme) - User accounts, authentication and authorization. -- [Chalice](https://github.com/chalice-dev/awesome-chalice#readme) - Python framework for serverless app development on AWS Lambda. ## Computer Science From 61264dab2ac860912413c49c7676e07b7c8b6e9b Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 5 May 2021 23:08:22 +0700 Subject: [PATCH 008/191] Meta tweaks --- readme.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 60294c2239..330559a191 100755 --- a/readme.md +++ b/readme.md @@ -2,6 +2,7 @@ Awesome

+

@@ -23,7 +24,7 @@

All your environment variables, in one place
@@ -32,7 +33,20 @@ and avoiding access controls. Keep your team and servers in sync with Doppler.
+
+ +
+ WorkOS +
+ Your app, enterprise-ready. +
+ Start selling to enterprise customers with just a few lines of code. +
+ Add Single Sign-On (and more) in minutes instead of months. +
+

+



From 60ff4edaf707bd8be3529bba94704b1606c489f4 Mon Sep 17 00:00:00 2001 From: Dan Grahn Date: Wed, 12 May 2021 03:57:23 -0400 Subject: [PATCH 009/191] Add XAI (#1980) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 330559a191..4b15a27ff8 100755 --- a/readme.md +++ b/readme.md @@ -360,6 +360,7 @@ - [Software Engineering for Machine Learning](https://github.com/SE-ML/awesome-seml#readme) - From experiment to production-level machine learning. - [AI in Finance](https://github.com/georgezouq/awesome-ai-in-finance#readme) - Solving problems in finance with machine learning. - [JAX](https://github.com/n2cholas/awesome-jax#readme) - Automatic differentiation and XLA compilation brought together for high-performance machine learning research. + - [XAI](https://github.com/altamiracorp/awesome-xai#readme) - Providing insight, explanations, and interpretability to machine learning methods. - [Speech and Natural Language Processing](https://github.com/edobashira/speech-language-processing#readme) - [Spanish](https://github.com/dav009/awesome-spanish-nlp#readme) - [NLP with Ruby](https://github.com/arbox/nlp-with-ruby#readme) From 7941b7adf4ac4187b0bf188a09e8d534959c4eba Mon Sep 17 00:00:00 2001 From: Enzo Innocenzi Date: Mon, 17 May 2021 19:24:31 +0200 Subject: [PATCH 010/191] Add Inertia.js (#2006) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 4b15a27ff8..eb036ba9f5 100755 --- a/readme.md +++ b/readme.md @@ -315,6 +315,7 @@ - [Building Blocks for Web Apps](https://github.com/componently-com/awesome-building-blocks-for-web-apps#readme) - Standalone features to be integrated into web apps. - [Svelte](https://github.com/TheComputerM/awesome-svelte#readme) - App framework. - [Design systems](https://github.com/klaufel/awesome-design-systems#readme) - Collection of reusable components, guided by rules that ensure consistency and speed. +- [Inertia.js](https://github.com/innocenzi/awesome-inertiajs#readme) - Make single-page apps without building an API. ## Back-End Development From 8514baa5f8cfb67b61fef6f1da15fef9b3715977 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Fri, 21 May 2021 19:00:11 +0700 Subject: [PATCH 011/191] Meta tweaks --- readme.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/readme.md b/readme.md index eb036ba9f5..f275266918 100755 --- a/readme.md +++ b/readme.md @@ -45,6 +45,16 @@ Add Single Sign-On (and more) in minutes instead of months. +
+ +
+ Strapi +
+ Strapi is the leading open-source headless CMS. +
+ It’s 100% JavaScript, fully customizable, and developer-first. +
+



From 4e59fba4e20926991c31f86ae4dc29539c4f0750 Mon Sep 17 00:00:00 2001 From: Raymond Berger Date: Tue, 1 Jun 2021 09:07:57 -1000 Subject: [PATCH 012/191] Fix CI (GitHub actions) test failing (#2028) --- .github/workflows/repo_linter.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/repo_linter.sh b/.github/workflows/repo_linter.sh index 27025e29da..ab20a2e864 100755 --- a/.github/workflows/repo_linter.sh +++ b/.github/workflows/repo_linter.sh @@ -2,7 +2,7 @@ # Find the repo in the git diff and then set it to an env variables. REPO_TO_LINT=$( - git diff main -- readme.md | + git diff origin/main -- readme.md | # Look for changes (indicated by lines starting with +). grep ^+ | # Get the line that includes the readme. @@ -17,6 +17,6 @@ else echo "Cloning $REPO_TO_LINT" mkdir cloned cd cloned - git clone --depth=1 "$REPO_TO_LINT" . + git clone "$REPO_TO_LINT" . npx awesome-lint fi From 5a03b0f14238cd4476a184fef527f910a3056181 Mon Sep 17 00:00:00 2001 From: David Wasserman Date: Sat, 5 Jun 2021 05:22:25 -0700 Subject: [PATCH 013/191] Add Urban & Regional Planning (#2013) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index f275266918..c3bea00491 100755 --- a/readme.md +++ b/readme.md @@ -682,6 +682,7 @@ - [Open Source Photography](https://github.com/ibaaj/awesome-OpenSourcePhotography#readme) - [OpenGL](https://github.com/eug/awesome-opengl#readme) - Cross-platform API for rendering 2D and 3D graphics. - [GraphQL](https://github.com/chentsulin/awesome-graphql#readme) +- [Urban & Regional Planning](https://github.com/APA-Technology-Division/urban-and-regional-planning-resources#readme) - Concerning the built environment and communities. - [Transit](https://github.com/CUTR-at-USF/awesome-transit#readme) - [Research Tools](https://github.com/emptymalei/awesome-research#readme) - [Data Visualization](https://github.com/fasouto/awesome-dataviz#readme) From f3e167d9a2d259c53dae81b7599fefd739326682 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 9 Jun 2021 01:04:28 +0700 Subject: [PATCH 014/191] Meta tweaks --- readme.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/readme.md b/readme.md index c3bea00491..f87c4d7d33 100755 --- a/readme.md +++ b/readme.md @@ -55,6 +55,26 @@ It’s 100% JavaScript, fully customizable, and developer-first. +
+ +
+ OSS Capital +
+
+ Founded in 2018, OSS Capital is the first and only venture capital platform focused
exclusively on supporting early-stage COSS (commercial open source) startup founders.
+
+
+
+
+ +
+ bit.io +
+ Instant, shareable cloud PostgreSQL database +
+ Import any dataset in seconds, share with anyone with a click, try without signing up +
+



From b33748eaa472e1c10f3ca6dbe8c9946b86d56544 Mon Sep 17 00:00:00 2001 From: Mateusz Date: Sun, 4 Jul 2021 14:30:29 +0200 Subject: [PATCH 015/191] Add MDBootstrap (#2025) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index f87c4d7d33..8f0254ba81 100755 --- a/readme.md +++ b/readme.md @@ -346,6 +346,7 @@ - [Svelte](https://github.com/TheComputerM/awesome-svelte#readme) - App framework. - [Design systems](https://github.com/klaufel/awesome-design-systems#readme) - Collection of reusable components, guided by rules that ensure consistency and speed. - [Inertia.js](https://github.com/innocenzi/awesome-inertiajs#readme) - Make single-page apps without building an API. +- [MDBootstrap](https://github.com/mdbootstrap/awesome-mdbootstrap#readme) - Templates, layouts, components, and widgets to rapidly build websites. ## Back-End Development From 1a41d47bc97ee9491293d4b1743ea6be05d88e9e Mon Sep 17 00:00:00 2001 From: Mattias Nystrom <35585644+mat7ias@users.noreply.github.com> Date: Mon, 5 Jul 2021 18:46:14 +0200 Subject: [PATCH 016/191] Add Golem (#2024) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 8f0254ba81..e0a95ab977 100755 --- a/readme.md +++ b/readme.md @@ -650,6 +650,7 @@ - [Corda](https://github.com/chainstack/awesome-corda#readme) - Open source blockchain platform designed for business. - [Waves](https://github.com/msmolyakov/awesome-waves#readme) - Open source blockchain platform and development toolset for Web 3.0 apps and decentralized solutions. - [Substrate](https://github.com/substrate-developer-hub/awesome-substrate#readme) - Framework for writing scalable, upgradeable blockchains in Rust. +- [Golem](https://github.com/golemfactory/awesome-golem#readme) - Open source peer-to-peer marketplace for computing resources. ## Higher Education From c06e69bd30910cee1463f65780a40b3f43b19499 Mon Sep 17 00:00:00 2001 From: Owen Young <62473795+theowenyoung@users.noreply.github.com> Date: Tue, 6 Jul 2021 00:49:56 +0800 Subject: [PATCH 017/191] Add Track Awesome List (#2037) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index e0a95ab977..10591b6bc6 100755 --- a/readme.md +++ b/readme.md @@ -807,3 +807,4 @@ - [StumbleUponAwesome](https://github.com/basharovV/StumbleUponAwesome) - Discover random pages from the Awesome dataset using a browser extension. - [Awesome CLI](https://github.com/umutphp/awesome-cli) - A simple command-line tool to dive into Awesome lists. - [Awesome Viewer](http://awesome.digitalbunker.dev) - A visualizer for all of the above Awesome lists. +- [Track Awesome List](https://www.trackawesomelist.com) - View the latest updates of Awesome lists. From 0d52f9038f1714008e52c5b20fc1b874b6b340ed Mon Sep 17 00:00:00 2001 From: Mostafa Touny <56471405+mostafatouny@users.noreply.github.com> Date: Wed, 7 Jul 2021 15:52:21 +0200 Subject: [PATCH 018/191] Add Theoretical Computer Science (#1960) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 10591b6bc6..c71df3383b 100755 --- a/readme.md +++ b/readme.md @@ -415,6 +415,7 @@ - [Static Analysis & Code Quality](https://github.com/analysis-tools-dev/static-analysis#readme) - [Information Retrieval](https://github.com/harpribot/awesome-information-retrieval#readme) - Learn to develop your own search engine. - [Quantum Computing](https://github.com/desireevl/awesome-quantum-computing#readme) - Computing which utilizes quantum mechanics and qubits on quantum computers. +- [Theoretical Computer Science](https://github.com/mostafatouny/awesome-theoretical-computer-science#readme) - The interplay of computer science and pure mathematics, distinguished by its emphasis on mathematical rigour and technique. ## Big Data From e8d6a8f82ce371c69ae61c3871b31668b0394045 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 22 Jul 2021 14:24:45 +0200 Subject: [PATCH 019/191] Meta tweaks --- readme.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/readme.md b/readme.md index c71df3383b..b729bd530b 100755 --- a/readme.md +++ b/readme.md @@ -75,6 +75,23 @@ Import any dataset in seconds, share with anyone with a click, try without signing up +
+
+ +
+ Gitpod +
+ Dev environments built for the cloud +
+ + Natively integrated with GitLab, GitHub, and Bitbucket, Gitpod automatically and continuously prebuilds dev +
+ environments for all your branches. As a result team members can instantly start coding with fresh dev environments +
+ for each new task - no matter if you are building a new feature, want to fix a bug, or work on a code review. +
+
+



From 5fd9bb2dae1c9ad1199060732c9b66ee1039fd33 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 27 Jul 2021 14:13:41 +0200 Subject: [PATCH 020/191] Add some missing guidelines --- pull_request_template.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pull_request_template.md b/pull_request_template.md index 3c8183dc8d..10b7da993b 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -32,6 +32,8 @@ - ❌ `- [Framer](…)` - ❌ `- [Framer](…) - prototyping interactive UI designs` - Your entry should be added at the bottom of the appropriate category. +- The title of your entry should be title-cased and the URL to your list should end in `#readme`. + - Example: `- [Software Architecture](https://github.com/simskij/awesome-software-architecture#readme) - The discipline of designing and building software.` - The suggested Awesome list complies with the below requirements. ## Requirements for your Awesome list From f277e8f160ba087a88a6ba369da680d372aede39 Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Tue, 27 Jul 2021 14:24:44 +0200 Subject: [PATCH 021/191] Add Billing (#1926) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index b729bd530b..de21ed4db0 100755 --- a/readme.md +++ b/readme.md @@ -637,6 +637,7 @@ - [Social Enterprise](https://github.com/RayBB/awesome-social-enterprise#readme) - Building an organization primarily focused on social impact that is at least partially self-funded. - [Engineering Team Management](https://github.com/kdeldycke/awesome-engineering-team-management#readme) - How to transition from software development to engineering management. - [Developer-First Products](https://github.com/agamm/awesome-developer-first#readme) - Products that target developers as the user. +- [Billing](https://github.com/kdeldycke/awesome-billing#readme) - Payments, invoicing, pricing, accounting, marketplace, fraud, and business intelligence. ## Work From ec9127da2674958e10dba7188bb3cbb2c3137eb5 Mon Sep 17 00:00:00 2001 From: Igor Baliuk Date: Wed, 28 Jul 2021 03:06:23 +0300 Subject: [PATCH 022/191] Add Internships (#2034) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index de21ed4db0..3785452470 100755 --- a/readme.md +++ b/readme.md @@ -649,6 +649,7 @@ - [Programming Interviews](https://github.com/DopplerHQ/awesome-interview-questions#readme) - [Code Review](https://github.com/joho/awesome-code-review#readme) - Reviewing code. - [Creative Technology](https://github.com/j0hnm4r5/awesome-creative-technology#readme) - Businesses & groups that specialize in combining computing, design, art, and user experience. +- [Internships](https://github.com/lodthe/awesome-internships#readme) - CV writing guides and companies that hire interns. ## Networking From 761fc8c7043ddf8b54961de7e0e997df054cbb73 Mon Sep 17 00:00:00 2001 From: mfkl Date: Wed, 28 Jul 2021 19:16:14 +0700 Subject: [PATCH 023/191] Add VLC (#2038) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 3785452470..a5b25bf796 100755 --- a/readme.md +++ b/readme.md @@ -566,6 +566,7 @@ - [FFmpeg](https://github.com/transitive-bullshit/awesome-ffmpeg#readme) - Cross-platform solution to record, convert and stream audio and video. - [Icons](https://github.com/notlmn/awesome-icons#readme) - Downloadable SVG/PNG/font icon projects. - [Audiovisual](https://github.com/stingalleman/awesome-audiovisual#readme) - Lighting, audio and video in professional environments. +- [VLC](https://github.com/mfkl/awesome-vlc#readme) - Cross-platform media player software and streaming server. ## Learn From 781e6f2939b40b059af81cc955d4f7fbf69b55bc Mon Sep 17 00:00:00 2001 From: Patrick Gray <83602086+pgray-hiro@users.noreply.github.com> Date: Thu, 29 Jul 2021 07:27:55 -0400 Subject: [PATCH 024/191] Add Stacks (#2039) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index a5b25bf796..36462dde33 100755 --- a/readme.md +++ b/readme.md @@ -672,6 +672,7 @@ - [Waves](https://github.com/msmolyakov/awesome-waves#readme) - Open source blockchain platform and development toolset for Web 3.0 apps and decentralized solutions. - [Substrate](https://github.com/substrate-developer-hub/awesome-substrate#readme) - Framework for writing scalable, upgradeable blockchains in Rust. - [Golem](https://github.com/golemfactory/awesome-golem#readme) - Open source peer-to-peer marketplace for computing resources. +- [Stacks](https://github.com/friedger/awesome-stacks-chain#readme) - A smart contract platform secured by Bitcoin. ## Higher Education From 9c86285be2bd654e93c1d98d5630ce5025166504 Mon Sep 17 00:00:00 2001 From: dersvenhesse Date: Thu, 29 Jul 2021 13:58:23 +0200 Subject: [PATCH 025/191] Add Scriptable (#1953) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 36462dde33..eb4e7a7cee 100755 --- a/readme.md +++ b/readme.md @@ -820,6 +820,7 @@ - [QR Code](https://github.com/aureooms/awesome-qr-code#readme) - A type of matrix barcode that can be used to store and share a small amount of information. - [Veganism](https://github.com/sdassow/awesome-veganism#readme) - Making the plant-based lifestyle easy and accessible. - [Translations](https://github.com/mbiesiad/awesome-translations#readme) - The transfer of the meaning of a text from one language to another. +- [Scriptable](https://github.com/dersvenhesse/awesome-scriptable#readme) - An iOS app for automations in JavaScript. ## Related From 19a60c36da4024ea5f7e169ae383becb0eee1016 Mon Sep 17 00:00:00 2001 From: Max Vorobev Date: Thu, 29 Jul 2021 16:20:51 +0300 Subject: [PATCH 026/191] Update link to Grakn (#1987) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index eb4e7a7cee..ece97fae17 100755 --- a/readme.md +++ b/readme.md @@ -548,7 +548,7 @@ - [NoSQL Guides](https://github.com/erictleung/awesome-nosql-guides#readme) - Help on using non-relational, distributed, open-source, and horizontally scalable databases. - [Contexture](https://github.com/chrislatorres/awesome-contexture#readme) - Abstracts queries/filters and results/aggregations from different backing data stores like ElasticSearch and MongoDB. - [Database Tools](https://github.com/mgramin/awesome-db-tools#readme) - Everything that makes working with databases easier. -- [Grakn](https://github.com/graknlabs/awesome#readme) - Logical database to organize large and complex networks of data as one body of knowledge. +- [TypeDB](https://github.com/vaticle/typedb-awesome#readme) - Logical database to organize large and complex networks of data as one body of knowledge. - [Cassandra](https://github.com/Anant/awesome-cassandra#readme) - Open-source, distributed, wide column store, NoSQL database management system. ## Media From de091ca27633c8699512a308d4681f9a261b93bd Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sun, 15 Aug 2021 11:23:32 +0200 Subject: [PATCH 027/191] Meta tweaks --- readme.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/readme.md b/readme.md index ece97fae17..d3f2c1f4ec 100755 --- a/readme.md +++ b/readme.md @@ -92,6 +92,14 @@ +
+
+ +
+ Keygen +
+ A dead-simple software licensing and distribution API built for developers +



From c80a91168c6a11775b4586959b708534cc4669a0 Mon Sep 17 00:00:00 2001 From: Christian Cuevas Date: Mon, 16 Aug 2021 10:56:53 -0700 Subject: [PATCH 028/191] Update link to Godot list (#1936) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index d3f2c1f4ec..2d32044952 100755 --- a/readme.md +++ b/readme.md @@ -487,7 +487,7 @@ - [Game Development](https://github.com/ellisonleao/magictools#readme) - [Game Talks](https://github.com/hzoo/awesome-gametalks#readme) -- [Godot](https://github.com/Calinou/awesome-godot#readme) - Game engine. +- [Godot](https://github.com/godotengine/awesome-godot#readme) - Game engine. - [Open Source Games](https://github.com/leereilly/games#readme) - [Unity](https://github.com/RyanNielson/awesome-unity#readme) - Game engine. - [Chess](https://github.com/hkirat/awesome-chess#readme) From 671fd919bb2029056e032994125e2de4ea104f4a Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Wed, 1 Sep 2021 05:21:51 +0700 Subject: [PATCH 029/191] Remove macOS Command Line (#2051) --- .github/workflows/repo_linter.sh | 2 +- readme.md | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/repo_linter.sh b/.github/workflows/repo_linter.sh index ab20a2e864..d0d5824934 100755 --- a/.github/workflows/repo_linter.sh +++ b/.github/workflows/repo_linter.sh @@ -11,7 +11,7 @@ REPO_TO_LINT=$( sed 's/#readme//') # If there's no repo found, exit quietly. -if [ -z ${REPO_TO_LINT+x} ]; then +if [ -z "$REPO_TO_LINT" ]; then echo "No new link found in the format: https://....#readme" else echo "Cloning $REPO_TO_LINT" diff --git a/readme.md b/readme.md index 2d32044952..cf4e14bc86 100755 --- a/readme.md +++ b/readme.md @@ -176,7 +176,6 @@ - [eBPF](https://github.com/zoidbergwill/awesome-ebpf#readme) - Virtual machine that allows you to write more efficient and powerful tracing and monitoring for Linux systems. - [Arch-based Projects](https://github.com/PandaFoss/Awesome-Arch#readme) - Linux distributions and projects based on Arch Linux. - [macOS](https://github.com/iCHAIT/awesome-macOS#readme) - Operating system for Apple's Mac computers. - - [Command-Line](https://github.com/herrbischoff/awesome-macos-command-line#readme) - [Screensavers](https://github.com/agarrharr/awesome-macos-screensavers#readme) - [Apps](https://github.com/jaywcjlove/awesome-mac#readme) - [Open Source Apps](https://github.com/serhii-londar/open-source-mac-os-apps#readme) From fa3a1e8923198482dbacfb161dd7c1e665399784 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 2 Sep 2021 01:37:46 +0200 Subject: [PATCH 030/191] Prevent the lint script from affecting repo language stats --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index e3eda04765..c7c67fff44 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ * text=auto eol=lf *.ai binary readme.md merge=union +.github/workflows/repo_linter.sh -linguist-detectable From 5ca60d7ab45c7729a9ac9ef0ced537b517bf9f51 Mon Sep 17 00:00:00 2001 From: Daniel Adams <70986246+msub2@users.noreply.github.com> Date: Fri, 17 Sep 2021 04:44:10 -0400 Subject: [PATCH 031/191] Add WebXR (#2052) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index cf4e14bc86..e08bcf0b85 100755 --- a/readme.md +++ b/readme.md @@ -828,6 +828,7 @@ - [Veganism](https://github.com/sdassow/awesome-veganism#readme) - Making the plant-based lifestyle easy and accessible. - [Translations](https://github.com/mbiesiad/awesome-translations#readme) - The transfer of the meaning of a text from one language to another. - [Scriptable](https://github.com/dersvenhesse/awesome-scriptable#readme) - An iOS app for automations in JavaScript. +- [WebXR](https://github.com/msub2/awesome-webxr#readme) - Enables immersive virtual reality and augmented reality content on the web. ## Related From e6f6fa997f578115c65c59f6f63d11d00be7d67d Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 19 Sep 2021 10:45:45 +0200 Subject: [PATCH 032/191] Add AppImage (#2045) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index e08bcf0b85..94c884d032 100755 --- a/readme.md +++ b/readme.md @@ -175,6 +175,7 @@ - [Containers](https://github.com/Friz-zy/awesome-linux-containers#readme) - [eBPF](https://github.com/zoidbergwill/awesome-ebpf#readme) - Virtual machine that allows you to write more efficient and powerful tracing and monitoring for Linux systems. - [Arch-based Projects](https://github.com/PandaFoss/Awesome-Arch#readme) - Linux distributions and projects based on Arch Linux. + - [AppImage](https://github.com/AppImage/awesome-appimage#readme) - Package apps in a single file that works on various mainstream Linux distributions. - [macOS](https://github.com/iCHAIT/awesome-macOS#readme) - Operating system for Apple's Mac computers. - [Screensavers](https://github.com/agarrharr/awesome-macos-screensavers#readme) - [Apps](https://github.com/jaywcjlove/awesome-mac#readme) From 651ae50db0b85dc87ca6b14ed359e153193a453d Mon Sep 17 00:00:00 2001 From: stn1slv Date: Wed, 22 Sep 2021 14:14:55 +0300 Subject: [PATCH 033/191] Add Integration (#2054) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 94c884d032..f91e060969 100755 --- a/readme.md +++ b/readme.md @@ -212,6 +212,7 @@ - [Deno](https://github.com/denolib/awesome-deno#readme) - A secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust. - [DOS](https://github.com/balintkissdev/awesome-dos#readme) - Operating system for x86-based personal computers that was popular during the 1980s and early 1990s. - [Nix](https://github.com/nix-community/awesome-nix#readme) - Package manager for Linux and other Unix systems that makes package management reliable and reproducible. +- [Integration](https://github.com/stn1slv/awesome-integration#readme) - Linking together different IT systems (components) to functionally cooperate as a whole. ## Programming Languages From f76c1cebad4ab84ad39b55e450ca1619d93349d8 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sun, 3 Oct 2021 13:26:57 +0700 Subject: [PATCH 034/191] Remove Webpack It's no longer an Awesome list. Closes #2066 --- readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/readme.md b/readme.md index f91e060969..8745c5659d 100755 --- a/readme.md +++ b/readme.md @@ -346,7 +346,6 @@ - [Progressive Web Apps](https://github.com/TalAter/awesome-progressive-web-apps#readme) - [choo](https://github.com/choojs/awesome-choo#readme) - App framework. - [Redux](https://github.com/brillout/awesome-redux#readme) - State container for JavaScript apps. -- [webpack](https://github.com/webpack-contrib/awesome-webpack#readme) - Module bundler. - [Browserify](https://github.com/browserify/awesome-browserify#readme) - Module bundler. - [Sass](https://github.com/Famolus/awesome-sass#readme) - CSS preprocessor. - [Ant Design](https://github.com/websemantics/awesome-ant-design#readme) - Enterprise-class UI design language. From 3cba3ee1a3348bc11e11beaf16267b87aa18ff9d Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Wed, 20 Oct 2021 18:54:58 +0200 Subject: [PATCH 035/191] Use absolute links in pull request template (#2083) --- pull_request_template.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pull_request_template.md b/pull_request_template.md index 10b7da993b..0bf636b069 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -15,7 +15,7 @@ - **Don't waste my time.** Do a good job, adhere to all the guidelines, and be responsive. - **You have to review at least 2 other [open pull requests](https://github.com/sindresorhus/awesome/pulls?q=is%3Apr+is%3Aopen).** Try to prioritize unreviewed PRs, but you can also add more comments to reviewed PRs. Go through the below list when reviewing. This requirement is meant to help make the Awesome project self-sustaining. Comment here which PRs you reviewed. You're expected to put a good effort into this and to be thorough. Look at previous PR reviews for inspiration. **Just commenting “looks good” or simply marking the pull request as approved does not count!** You have to actually point out mistakes or improvement suggestions. -- You have read and understood the [instructions for creating a list](create-list.md). +- You have read and understood the [instructions for creating a list](https://github.com/sindresorhus/awesome/blob/main/create-list.md). - This pull request has a title in the format `Add Name of List`. - ✅ `Add Swift` - ✅ `Add Software Architecture` @@ -69,7 +69,7 @@ - The image should link to the project website or any relevant website. - **The image should be high-DPI.** Set it to maximum half the width of the original image. - Entries have a description, unless the title is descriptive enough by itself. It rarely is though. -- Includes the [Awesome badge](awesome.md#awesome-badge). +- Includes the [Awesome badge](https://github.com/sindresorhus/awesome/blob/main/awesome.md#awesome-badge). - Should be placed on the right side of the readme heading. - Can be placed centered if the list has a centered graphics header. - Should link back to this list. @@ -85,7 +85,7 @@ - Place a file named `license` or `LICENSE` in the repo root with the license text. - **Do not** add the license name, text, or a `Licence` section to the readme. GitHub already shows the license name and link to the full text at the top of the repo. - To verify that you've read all the guidelines, please comment on your pull request with just the word `unicorn`. -- Has [contribution guidelines](awesome.md#include-contribution-guidelines). +- Has [contribution guidelines](https://github.com/sindresorhus/awesome/blob/main/awesome.md#include-contribution-guidelines). - The file should be named `contributing.md`. Casing is up to you. - It can optionally be linked from the readme in a dedicated section titled `Contributing`, positioned at the top or bottom of the main content. - The section should not appear in the Table of Contents. From 357dff6853964dc02ceda119b0e6048dcce8e0e0 Mon Sep 17 00:00:00 2001 From: Thomas Versteeg Date: Fri, 26 Nov 2021 04:57:42 +0000 Subject: [PATCH 036/191] Add Neovim (#2053) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 8745c5659d..f8a3d8b621 100755 --- a/readme.md +++ b/readme.md @@ -479,6 +479,7 @@ - [Sublime Text](https://github.com/dreikanter/sublime-bookmarks#readme) - [Vim](https://github.com/mhinz/vim-galore#readme) +- [Neovim](https://github.com/rockerBOO/awesome-neovim#readme) - Vim-fork focused on extensibility and usability. - [Emacs](https://github.com/emacs-tw/awesome-emacs#readme) - [Atom](https://github.com/mehcode/awesome-atom#readme) - Open-source and hackable text editor. - [Visual Studio Code](https://github.com/viatsko/awesome-vscode#readme) - Cross-platform open-source text editor. From 6759a87def4bce1ee8b9713f497016a08d5549a9 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 18 Nov 2021 00:09:12 +0700 Subject: [PATCH 037/191] Meta tweaks --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index f8a3d8b621..6267509081 100755 --- a/readme.md +++ b/readme.md @@ -1,5 +1,7 @@
Awesome +

My Actions app is on Product Hunt

+



From 8b18e989a5574ede84af26a674d744c5e33d85be Mon Sep 17 00:00:00 2001 From: Benjamin Date: Mon, 17 Jan 2022 19:18:23 +0100 Subject: [PATCH 038/191] Add Node-RED (#2111) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 6267509081..ae83f826a7 100755 --- a/readme.md +++ b/readme.md @@ -215,6 +215,7 @@ - [DOS](https://github.com/balintkissdev/awesome-dos#readme) - Operating system for x86-based personal computers that was popular during the 1980s and early 1990s. - [Nix](https://github.com/nix-community/awesome-nix#readme) - Package manager for Linux and other Unix systems that makes package management reliable and reproducible. - [Integration](https://github.com/stn1slv/awesome-integration#readme) - Linking together different IT systems (components) to functionally cooperate as a whole. +- [Node-RED](https://github.com/naimo84/awesome-nodered#readme) - A programming tool for wiring together hardware devices, APIs, and online services. ## Programming Languages From 4b3a8e2a6244304cbbfb6f779d1059cb6a6f93d4 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 20 Jan 2022 14:41:48 +0700 Subject: [PATCH 039/191] Meta tweaks --- readme.md | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index ae83f826a7..4b33dc1008 100755 --- a/readme.md +++ b/readme.md @@ -1,7 +1,5 @@
Awesome -

My Actions app is on Product Hunt

-



@@ -102,6 +100,29 @@
A dead-simple software licensing and distribution API built for developers +
+
+
+ +
+ Stream +
+
+
+ Build Scalable Feeds & Chat Applications with Powerful APIs and Front End Components +
+
+ +
+ Stream +
+
+
+ Build Scalable Feeds & Chat Applications with Powerful APIs and Front End Components +
+
+
+



From b91265dd1a200a2d1276a236875398be3f85715f Mon Sep 17 00:00:00 2001 From: Aliaksandr Belik <1752374+aliesbelik@users.noreply.github.com> Date: Sun, 23 Jan 2022 14:19:55 +0300 Subject: [PATCH 040/191] Add Gatling (#2076) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 4b33dc1008..b8c8a45fbb 100755 --- a/readme.md +++ b/readme.md @@ -730,6 +730,7 @@ - [k6](https://github.com/k6io/awesome-k6#readme) - Open-source, developer-centric performance monitoring and load testing solution. - [Playwright](https://github.com/mxschmitt/awesome-playwright#readme) - Node.js library to automate Chromium, Firefox and WebKit with a single API. - [Quality Assurance Roadmap](https://github.com/fityanos/awesome-quality-assurance-roadmap#readme) - How to start & build a career in software testing. +- [Gatling](https://github.com/aliesbelik/awesome-gatling#readme) - Open-source load and performance testing framework based on Scala, Akka, and Netty. ## Miscellaneous From 7f88000be2d4f265c83465fec4b0b3613af347dd Mon Sep 17 00:00:00 2001 From: Strift Date: Sun, 23 Jan 2022 15:22:43 +0100 Subject: [PATCH 041/191] Add Esports (#2136) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index b8c8a45fbb..8784c38081 100755 --- a/readme.md +++ b/readme.md @@ -531,6 +531,7 @@ - [Discord Communities](https://github.com/mhxion/awesome-discord-communities#readme) - Chat with friends and communities. - [CHIP-8](https://github.com/tobiasvl/awesome-chip-8#readme) - Virtual computer game machine from the 70s. - [Games of Coding](https://github.com/michelpereira/awesome-games-of-coding#readme) - Learn a programming language by making games. +- [Esports](https://github.com/strift/awesome-esports#readme) - Video games played as a sport. ## Development Environment From 4b6d2822f10b696dd77b96627c87dc73aabee78f Mon Sep 17 00:00:00 2001 From: Michael Bargury <11074433+mbrg@users.noreply.github.com> Date: Mon, 24 Jan 2022 09:52:42 +0200 Subject: [PATCH 042/191] Add Low Code (#2079) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 8784c38081..0eae0c4987 100755 --- a/readme.md +++ b/readme.md @@ -237,6 +237,7 @@ - [Nix](https://github.com/nix-community/awesome-nix#readme) - Package manager for Linux and other Unix systems that makes package management reliable and reproducible. - [Integration](https://github.com/stn1slv/awesome-integration#readme) - Linking together different IT systems (components) to functionally cooperate as a whole. - [Node-RED](https://github.com/naimo84/awesome-nodered#readme) - A programming tool for wiring together hardware devices, APIs, and online services. +- [Low Code](https://github.com/zenitysec/awesome-low-code#readme) - Allowing business professionals to address their needs on their own with little to no coding skills. ## Programming Languages From cbcbed13785d120c34c6cb36132632a249e49e41 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 9 Feb 2022 15:11:05 +0700 Subject: [PATCH 043/191] Meta tweaks --- readme.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.md b/readme.md index 0eae0c4987..6bae382ad8 100755 --- a/readme.md +++ b/readme.md @@ -2,6 +2,9 @@ Awesome

+

Send love to open-source projects

+
+

From fcc13119f531f89a31d9677b0d30a0281a5e0ec0 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 13 Feb 2022 12:12:27 +0100 Subject: [PATCH 044/191] Add Executable Packing (#2151) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 6bae382ad8..bf85e1017e 100755 --- a/readme.md +++ b/readme.md @@ -640,6 +640,7 @@ - [Embedded and IoT Security](https://github.com/fkie-cad/awesome-embedded-and-iot-security#readme) - [GDPR](https://github.com/bakke92/awesome-gdpr#readme) - Regulation on data protection and privacy for all individuals within EU. - [DevSecOps](https://github.com/TaptuIT/awesome-devsecops#readme) - Integration of security practices into [DevOps](https://en.wikipedia.org/wiki/DevOps). +- [Executable Packing](https://github.com/dhondta/awesome-executable-packing#readme) - Packing and unpacking executable formats. ## Content Management Systems From 870dac642ac98274bc6ccae0fa8976694a9603c8 Mon Sep 17 00:00:00 2001 From: Al Date: Sun, 13 Feb 2022 12:37:09 +0100 Subject: [PATCH 045/191] Add Algorand (#2165) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index bf85e1017e..9931ffcc84 100755 --- a/readme.md +++ b/readme.md @@ -712,6 +712,7 @@ - [Substrate](https://github.com/substrate-developer-hub/awesome-substrate#readme) - Framework for writing scalable, upgradeable blockchains in Rust. - [Golem](https://github.com/golemfactory/awesome-golem#readme) - Open source peer-to-peer marketplace for computing resources. - [Stacks](https://github.com/friedger/awesome-stacks-chain#readme) - A smart contract platform secured by Bitcoin. +- [Algorand](https://github.com/aorumbayev/awesome-algorand#readme) - An open-source, proof of stake blockchain and smart contract computing platform. ## Higher Education From f0167f76fc70849275d5098c12e829c5c373001b Mon Sep 17 00:00:00 2001 From: zoorat <78788887+z00rat@users.noreply.github.com> Date: Mon, 14 Feb 2022 21:44:27 +0600 Subject: [PATCH 046/191] Update redirected links (#2180) --- readme.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/readme.md b/readme.md index 9931ffcc84..0284a674ec 100755 --- a/readme.md +++ b/readme.md @@ -413,7 +413,7 @@ - [Education](https://github.com/pehapkari/awesome-symfony-education#readme) - [Laravel](https://github.com/chiraggude/awesome-laravel#readme) - PHP framework. - [Education](https://github.com/fukuball/Awesome-Laravel-Education#readme) - - [TALL Stack](https://github.com/blade-ui-kit/awesome-tall-stack#readme) - Full-stack development solution featuring libraries built by the Laravel community. + - [TALL Stack](https://github.com/livewire/awesome-tall-stack#readme) - Full-stack development solution featuring libraries built by the Laravel community. - [Rails](https://github.com/gramantin/awesome-rails#readme) - Web app framework for Ruby. - [Gems](https://github.com/hothero/awesome-rails-gem#readme) - Packages. - [Phalcon](https://github.com/phalcon/awesome-phalcon#readme) - PHP framework. @@ -426,7 +426,7 @@ - [Apache Wicket](https://github.com/PhantomYdn/awesome-wicket#readme) - Java web app framework. - [Vert.x](https://github.com/vert-x3/vertx-awesome#readme) - Toolkit for building reactive apps on the JVM. - [Terraform](https://github.com/shuaibiyy/awesome-terraform#readme) - Tool for building, changing, and versioning infrastructure. -- [Vapor](https://github.com/Cellane/awesome-vapor#readme) - Server-side development in Swift. +- [Vapor](https://github.com/vapor-community/awesome-vapor#readme) - Server-side development in Swift. - [Dash](https://github.com/ucg8j/awesome-dash#readme) - Python web app framework. - [FastAPI](https://github.com/mjhea0/awesome-fastapi#readme) - Python web app framework. - [CDK](https://github.com/kolomied/awesome-cdk#readme) - Open-source software development framework for defining cloud infrastructure in code. @@ -450,7 +450,7 @@ - [Spanish](https://github.com/dav009/awesome-spanish-nlp#readme) - [NLP with Ruby](https://github.com/arbox/nlp-with-ruby#readme) - [Question Answering](https://github.com/seriousran/awesome-qa#readme) - The science of asking and answering in natural language with a machine. - - [Natural Language Generation](https://github.com/tokenmill/awesome-nlg#readme) - Generation of text used in data to text, conversational agents, and narrative generation applications. + - [Natural Language Generation](https://github.com/accelerated-text/awesome-nlg#readme) - Generation of text used in data to text, conversational agents, and narrative generation applications. - [Linguistics](https://github.com/theimpossibleastronaut/awesome-linguistics#readme) - [Cryptography](https://github.com/sobolevn/awesome-cryptography#readme) - [Papers](https://github.com/pFarb/awesome-crypto-papers#readme) - Theory basics for using cryptography by non-cryptographers. @@ -472,7 +472,7 @@ ## Big Data -- [Big Data](https://github.com/onurakpolat/awesome-bigdata#readme) +- [Big Data](https://github.com/0xnr/awesome-bigdata#readme) - [Public Datasets](https://github.com/awesomedata/awesome-public-datasets#readme) - [Hadoop](https://github.com/youngwookim/awesome-hadoop#readme) - Framework for distributed storage and processing of very large data sets. - [Data Engineering](https://github.com/igorbarinov/awesome-data-engineering#readme) @@ -523,7 +523,7 @@ - [LÖVE](https://github.com/love2d-community/awesome-love2d#readme) - Game engine. - [PICO-8](https://github.com/pico-8/awesome-PICO-8#readme) - Fantasy console. - [Game Boy Development](https://github.com/gbdev/awesome-gbdev#readme) -- [Construct 2](https://github.com/WebCreationClub/awesome-construct#readme) - Game engine. +- [Construct 2](https://github.com/ConstructCommunity/awesome-construct#readme) - Game engine. - [Gideros](https://github.com/stetso/awesome-gideros#readme) - Game engine. - [Minecraft](https://github.com/bs-community/awesome-minecraft#readme) - Sandbox video game. - [Game Datasets](https://github.com/leomaurodesenv/game-datasets#readme) - Materials and datasets for Artificial Intelligence in games. @@ -734,7 +734,7 @@ - [Appium](https://github.com/SrinivasanTarget/awesome-appium#readme) - Test automation tool for apps. - [TAP](https://github.com/sindresorhus/awesome-tap#readme) - Test Anything Protocol. - [JMeter](https://github.com/aliesbelik/awesome-jmeter#readme) - Load testing and performance measurement tool. -- [k6](https://github.com/k6io/awesome-k6#readme) - Open-source, developer-centric performance monitoring and load testing solution. +- [k6](https://github.com/grafana/awesome-k6#readme) - Open-source, developer-centric performance monitoring and load testing solution. - [Playwright](https://github.com/mxschmitt/awesome-playwright#readme) - Node.js library to automate Chromium, Firefox and WebKit with a single API. - [Quality Assurance Roadmap](https://github.com/fityanos/awesome-quality-assurance-roadmap#readme) - How to start & build a career in software testing. - [Gatling](https://github.com/aliesbelik/awesome-gatling#readme) - Open-source load and performance testing framework based on Scala, Akka, and Netty. @@ -748,7 +748,7 @@ - [Discounts for Student Developers](https://github.com/AchoArnold/discount-for-student-dev#readme) - [Radio](https://github.com/kyleterry/awesome-radio#readme) - [Awesome](https://github.com/sindresorhus/awesome#readme) - Recursion illustrated. -- [Analytics](https://github.com/onurakpolat/awesome-analytics#readme) +- [Analytics](https://github.com/0xnr/awesome-analytics#readme) - [REST](https://github.com/marmelab/awesome-rest#readme) - [Continuous Integration and Continuous Delivery](https://github.com/cicdops/awesome-ciandcd#readme) - [Services Engineering](https://github.com/mmcgrana/services-engineering#readme) @@ -770,7 +770,7 @@ - [Urban & Regional Planning](https://github.com/APA-Technology-Division/urban-and-regional-planning-resources#readme) - Concerning the built environment and communities. - [Transit](https://github.com/CUTR-at-USF/awesome-transit#readme) - [Research Tools](https://github.com/emptymalei/awesome-research#readme) -- [Data Visualization](https://github.com/fasouto/awesome-dataviz#readme) +- [Data Visualization](https://github.com/javierluraschi/awesome-dataviz#readme) - [Social Media Share Links](https://github.com/vinkla/shareable-links#readme) - [Microservices](https://github.com/mfornos/awesome-microservices#readme) - [Unicode](https://github.com/jagracey/Awesome-Unicode#readme) - Unicode standards, quirks, packages and resources. @@ -842,7 +842,7 @@ - [Scientific Computing](https://github.com/nschloe/awesome-scientific-computing#readme) - Solving complex scientific problems using computers. - [Amazon Sellers](https://github.com/ScaleLeap/awesome-amazon-seller#readme) - [Agriculture](https://github.com/brycejohnston/awesome-agriculture#readme) - Open source technology for farming and gardening. -- [Product Design](https://github.com/matttga/awesome-product-design#readme) - Design a product from the initial concept to production. +- [Product Design](https://github.com/ttt30ga/awesome-product-design#readme) - Design a product from the initial concept to production. - [Prisma](https://github.com/catalinmiron/awesome-prisma#readme) - Turn your database into a GraphQL API. - [Software Architecture](https://github.com/simskij/awesome-software-architecture#readme) - The discipline of designing and building software. - [Connectivity Data and Reports](https://github.com/stevesong/awesome-connectivity-info#readme) - Better understand who has access to telecommunication and internet infrastructure and on what terms. @@ -858,7 +858,7 @@ - [Credit Modeling](https://github.com/mourarthur/awesome-credit-modeling#readme) - Methods for classifying credit applicants into risk classes. - [Ansible](https://github.com/KeyboardInterrupt/awesome-ansible#readme) - A Python-based, open source IT configuration management and automation platform. - [Biological Visualizations](https://github.com/keller-mark/awesome-biological-visualizations#readme) - Interactive visualization of biological data on the web. -- [QR Code](https://github.com/aureooms/awesome-qr-code#readme) - A type of matrix barcode that can be used to store and share a small amount of information. +- [QR Code](https://github.com/make-github-pseudonymous-again/awesome-qr-code#readme) - A type of matrix barcode that can be used to store and share a small amount of information. - [Veganism](https://github.com/sdassow/awesome-veganism#readme) - Making the plant-based lifestyle easy and accessible. - [Translations](https://github.com/mbiesiad/awesome-translations#readme) - The transfer of the meaning of a text from one language to another. - [Scriptable](https://github.com/dersvenhesse/awesome-scriptable#readme) - An iOS app for automations in JavaScript. @@ -871,5 +871,5 @@ - [Awesome Search](https://awesomelists.top) - Quick search for Awesome lists. - [StumbleUponAwesome](https://github.com/basharovV/StumbleUponAwesome) - Discover random pages from the Awesome dataset using a browser extension. - [Awesome CLI](https://github.com/umutphp/awesome-cli) - A simple command-line tool to dive into Awesome lists. -- [Awesome Viewer](http://awesome.digitalbunker.dev) - A visualizer for all of the above Awesome lists. +- [Awesome Viewer](https://awesome.digitalbunker.dev) - A visualizer for all of the above Awesome lists. - [Track Awesome List](https://www.trackawesomelist.com) - View the latest updates of Awesome lists. From aaa3b77b6a35abe85a77b20086bca8d64f0a430f Mon Sep 17 00:00:00 2001 From: zoorat <78788887+z00rat@users.noreply.github.com> Date: Mon, 14 Feb 2022 21:45:30 +0600 Subject: [PATCH 047/191] Update info about `lit` (#2181) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0284a674ec..b153c448a1 100755 --- a/readme.md +++ b/readme.md @@ -382,7 +382,7 @@ - [Preact](https://github.com/preactjs/awesome-preact#readme) - App framework. - [Progressive Enhancement](https://github.com/jbmoelker/progressive-enhancement-resources#readme) - [Next.js](https://github.com/unicodeveloper/awesome-nextjs#readme) - Framework for server-rendered React apps. -- [lit-html](https://github.com/web-padawan/awesome-lit-html#readme) - HTML templating library for JavaScript. +- [lit](https://github.com/web-padawan/awesome-lit#readme) - Library for building web components with a declarative template system. - [JAMstack](https://github.com/automata/awesome-jamstack#readme) - Modern web development architecture based on client-side JavaScript, reusable APIs, and prebuilt markup. - [WordPress-Gatsby](https://github.com/henrikwirth/awesome-wordpress-gatsby#readme) - Web development technology stack with WordPress as a back end and Gatsby as a front end. - [Mobile Web Development](https://github.com/myshov/awesome-mobile-web-development#readme) - Creating a great mobile web experience. From 9170c40dc9ae84fb4a6bd9708085de6dabea3a32 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 15 Feb 2022 17:06:36 +0700 Subject: [PATCH 048/191] Meta tweaks --- readme.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/readme.md b/readme.md index b153c448a1..96970ce14f 100755 --- a/readme.md +++ b/readme.md @@ -2,9 +2,6 @@ Awesome

-

Send love to open-source projects

-
-

From 3309d39da246aa0be2e6e622979df83f1a91ec0d Mon Sep 17 00:00:00 2001 From: zoorat <78788887+z00rat@users.noreply.github.com> Date: Thu, 17 Feb 2022 11:07:07 +0600 Subject: [PATCH 049/191] Remove list `RubyMotion` (#2188) --- readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/readme.md b/readme.md index 96970ce14f..8618201cdc 100755 --- a/readme.md +++ b/readme.md @@ -214,7 +214,6 @@ - [Raspberry Pi](https://github.com/thibmaek/awesome-raspberry-pi#readme) - Credit card-sized computer aimed at teaching kids programming, but capable of a lot more. - [Qt](https://github.com/JesseTG/awesome-qt#readme) - Cross-platform GUI app framework. - [WebExtensions](https://github.com/fregante/Awesome-WebExtensions#readme) - Cross-browser extension system. -- [RubyMotion](https://github.com/motion-open-source/awesome-rubymotion#readme) - Write cross-platform native apps for iOS, Android, macOS, tvOS, and watchOS in Ruby. - [Smart TV](https://github.com/vitalets/awesome-smart-tv#readme) - Create apps for different TV platforms. - [GNOME](https://github.com/Kazhnuz/awesome-gnome#readme) - Simple and distraction-free desktop environment for Linux. - [KDE](https://github.com/francoism90/awesome-kde#readme) - A free software community dedicated to creating an open and user-friendly computing experience. From e6f699d651dbf53781a2394eccfa3e32a44386c1 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Sun, 27 Feb 2022 12:18:06 +0330 Subject: [PATCH 050/191] Add Slim (#2067) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 8618201cdc..ce78653010 100755 --- a/readme.md +++ b/readme.md @@ -427,6 +427,7 @@ - [FastAPI](https://github.com/mjhea0/awesome-fastapi#readme) - Python web app framework. - [CDK](https://github.com/kolomied/awesome-cdk#readme) - Open-source software development framework for defining cloud infrastructure in code. - [IAM](https://github.com/kdeldycke/awesome-iam#readme) - User accounts, authentication and authorization. +- [Slim](https://github.com/nekofar/awesome-slim#readme) - PHP framework. ## Computer Science From 19da8fe76c271d6e3043008dd1e4607f1e548714 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 7 Mar 2022 00:01:13 +0700 Subject: [PATCH 051/191] Remove macOS list It's badly maintained. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index ce78653010..cdfe67b3c5 100755 --- a/readme.md +++ b/readme.md @@ -199,7 +199,7 @@ - [eBPF](https://github.com/zoidbergwill/awesome-ebpf#readme) - Virtual machine that allows you to write more efficient and powerful tracing and monitoring for Linux systems. - [Arch-based Projects](https://github.com/PandaFoss/Awesome-Arch#readme) - Linux distributions and projects based on Arch Linux. - [AppImage](https://github.com/AppImage/awesome-appimage#readme) - Package apps in a single file that works on various mainstream Linux distributions. -- [macOS](https://github.com/iCHAIT/awesome-macOS#readme) - Operating system for Apple's Mac computers. +- macOS - Operating system for Apple's Mac computers. - [Screensavers](https://github.com/agarrharr/awesome-macos-screensavers#readme) - [Apps](https://github.com/jaywcjlove/awesome-mac#readme) - [Open Source Apps](https://github.com/serhii-londar/open-source-mac-os-apps#readme) From 842bb421f1764ed07a1b14ad8b44f0fcce128044 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 7 Mar 2022 17:55:47 +0700 Subject: [PATCH 052/191] Meta tweaks --- readme.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.md b/readme.md index cdfe67b3c5..30663da061 100755 --- a/readme.md +++ b/readme.md @@ -2,6 +2,9 @@ Awesome

+

Paste as plain text by default on macOS

+
+

From a7b5b7805ecc00b3396acb35022cf6e2c0699e03 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 15 Mar 2022 00:39:21 +0700 Subject: [PATCH 053/191] =?UTF-8?q?#StandWithUkraine=20=F0=9F=87=BA?= =?UTF-8?q?=F0=9F=87=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- media/logo-ua.svg | 1 + readme.md | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 media/logo-ua.svg diff --git a/media/logo-ua.svg b/media/logo-ua.svg new file mode 100644 index 0000000000..a901fa4356 --- /dev/null +++ b/media/logo-ua.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/readme.md b/readme.md index 30663da061..6e3743f669 100755 --- a/readme.md +++ b/readme.md @@ -1,8 +1,13 @@

- Awesome + + Awesome + + +
+
+


-

Paste as plain text by default on macOS




From 768d4f1168bb69a6015cee01553e230485560c17 Mon Sep 17 00:00:00 2001 From: Leonardo Furtado Date: Wed, 30 Mar 2022 06:11:43 -0300 Subject: [PATCH 054/191] Remove Contexture (#2219) --- readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/readme.md b/readme.md index 6e3743f669..443ba6c0fe 100755 --- a/readme.md +++ b/readme.md @@ -589,7 +589,6 @@ - [CouchDB](https://github.com/quangv/awesome-couchdb#readme) - Document-oriented NoSQL database. - [HBase](https://github.com/rayokota/awesome-hbase#readme) - Distributed, scalable, big data store. - [NoSQL Guides](https://github.com/erictleung/awesome-nosql-guides#readme) - Help on using non-relational, distributed, open-source, and horizontally scalable databases. -- [Contexture](https://github.com/chrislatorres/awesome-contexture#readme) - Abstracts queries/filters and results/aggregations from different backing data stores like ElasticSearch and MongoDB. - [Database Tools](https://github.com/mgramin/awesome-db-tools#readme) - Everything that makes working with databases easier. - [TypeDB](https://github.com/vaticle/typedb-awesome#readme) - Logical database to organize large and complex networks of data as one body of knowledge. - [Cassandra](https://github.com/Anant/awesome-cassandra#readme) - Open-source, distributed, wide column store, NoSQL database management system. From d98bcb69949593e822113f83067207077503b013 Mon Sep 17 00:00:00 2001 From: KeyboardInterrupt Date: Fri, 1 Apr 2022 08:34:13 +0200 Subject: [PATCH 055/191] Update link to Ansible (#2223) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 443ba6c0fe..baa3c40e52 100755 --- a/readme.md +++ b/readme.md @@ -860,7 +860,7 @@ - [Web Archiving](https://github.com/iipc/awesome-web-archiving#readme) - An effort to preserve the Web for future generations. - [WP-CLI](https://github.com/schlessera/awesome-wp-cli#readme) - Command-line interface for WordPress. - [Credit Modeling](https://github.com/mourarthur/awesome-credit-modeling#readme) - Methods for classifying credit applicants into risk classes. -- [Ansible](https://github.com/KeyboardInterrupt/awesome-ansible#readme) - A Python-based, open source IT configuration management and automation platform. +- [Ansible](https://github.com/ansible-community/awesome-ansible#readme) - A Python-based, open source IT configuration management and automation platform. - [Biological Visualizations](https://github.com/keller-mark/awesome-biological-visualizations#readme) - Interactive visualization of biological data on the web. - [QR Code](https://github.com/make-github-pseudonymous-again/awesome-qr-code#readme) - A type of matrix barcode that can be used to store and share a small amount of information. - [Veganism](https://github.com/sdassow/awesome-veganism#readme) - Making the plant-based lifestyle easy and accessible. From 1574d4842d1a81baa33eca32d8c4f7e5203b68d4 Mon Sep 17 00:00:00 2001 From: Chris <14341145+cnpryer@users.noreply.github.com> Date: Wed, 20 Apr 2022 10:51:48 -0400 Subject: [PATCH 056/191] Mention list incubation in pull request guidelines (#2243) --- pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pull_request_template.md b/pull_request_template.md index 0bf636b069..37ff5f5dc3 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -39,7 +39,7 @@ ## Requirements for your Awesome list - **Has been around for at least 30 days.**
That means 30 days from either the first real commit or when it was open-sourced. Whatever is most recent. -- Don't open a Draft / WIP pull request while you work on the guidelines. A pull request should be 100% ready and should adhere to all the guidelines when you open it. +- Don't open a Draft / WIP pull request while you work on the guidelines. A pull request should be 100% ready and should adhere to all the guidelines when you open it. **Instead use [#2242](https://github.com/sindresorhus/awesome/issues/2242) for incubation visibility**. - Run [`awesome-lint`](https://github.com/sindresorhus/awesome-lint) on your list and fix the reported issues. If there are false-positives or things that cannot/shouldn't be fixed, please [report it](https://github.com/sindresorhus/awesome-lint/issues/new). - The default branch should be named [`main`, not `master`](https://www.zdnet.com/article/github-to-replace-master-with-alternative-term-to-avoid-slavery-references/). - **Includes a succinct description of the project/theme at the top of the readme.** [(Example)](https://github.com/willempienaar/awesome-quantified-self) From 93f976bd92a8fd2017c84e010b41c878c8fe2cbc Mon Sep 17 00:00:00 2001 From: Kieran <32241933+KieranRobson@users.noreply.github.com> Date: Mon, 2 May 2022 13:24:09 +0100 Subject: [PATCH 057/191] Remove Social Media Share Links (#2252) --- readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/readme.md b/readme.md index baa3c40e52..b1e4c85170 100755 --- a/readme.md +++ b/readme.md @@ -775,7 +775,6 @@ - [Transit](https://github.com/CUTR-at-USF/awesome-transit#readme) - [Research Tools](https://github.com/emptymalei/awesome-research#readme) - [Data Visualization](https://github.com/javierluraschi/awesome-dataviz#readme) -- [Social Media Share Links](https://github.com/vinkla/shareable-links#readme) - [Microservices](https://github.com/mfornos/awesome-microservices#readme) - [Unicode](https://github.com/jagracey/Awesome-Unicode#readme) - Unicode standards, quirks, packages and resources. - [Code Points](https://github.com/Codepoints/awesome-codepoints#readme) From ec33c665b0dcd37cf6868f096929e5eeec310e22 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 10 May 2022 16:21:53 +0700 Subject: [PATCH 058/191] Meta tweaks --- readme.md | 97 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) diff --git a/readme.md b/readme.md index b1e4c85170..4f6d0e8ab1 100755 --- a/readme.md +++ b/readme.md @@ -102,6 +102,7 @@

+
Keygen @@ -111,6 +112,7 @@


+
Stream @@ -131,6 +133,72 @@

+
+ +
+ neverinstall +
+
+ All your favourite IDE's now available on the cloud +
+ + Neverinstall gives you an uninterrupted development experience and improved accessibility, +
+ allowing you to code faster, better and on-the-go on your favourite IDEs like +
+ Android Studio, VS Code, Jupyter and PyCharm using your browser. +
+
+
+ +
+ neverinstall +
+
+ All your favourite IDE's now available on the cloud +
+ + Neverinstall gives you an uninterrupted development experience and improved accessibility, +
+ allowing you to code faster, better and on-the-go on your favourite IDEs like +
+ Android Studio, VS Code, Jupyter and PyCharm using your browser. +
+
+
+
+
+
+ +
+ Anvil +
+
+ Paperwork that makes the data work. +
+ + Easy APIs for paperwork. PDF generation, e-signature and embeddable no-code webforms. +
+ The easiest way to build paperwork automation into your product. +
+
+
+ +
+ Anvil +
+
+ Paperwork that makes the data work. +
+ + Easy APIs for paperwork. PDF generation, e-signature and embeddable no-code webforms. +
+ The easiest way to build paperwork automation into your product. +
+
+
+
+



@@ -405,6 +473,35 @@ - [Inertia.js](https://github.com/innocenzi/awesome-inertiajs#readme) - Make single-page apps without building an API. - [MDBootstrap](https://github.com/mdbootstrap/awesome-mdbootstrap#readme) - Templates, layouts, components, and widgets to rapidly build websites. +
+ +--- + +
+ + +
+ neverinstall +
+
+ All your favourite IDE's now available on the cloud +
+
+ +
+ neverinstall +
+
+ All your favourite IDE's now available on the cloud +
+
+ +
+ +--- + +
+ ## Back-End Development - [Flask](https://github.com/mjhea0/awesome-flask#readme) - Python framework. From 4e919d9c1fbfbfb08e081f7f288277e797cd0c85 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 19 May 2022 03:24:23 +0700 Subject: [PATCH 059/191] Meta tweaks --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 4f6d0e8ab1..17ab1d4c1d 100755 --- a/readme.md +++ b/readme.md @@ -224,7 +224,7 @@

- Just type awesome.re to go here. Check out my blog and follow me on Twitter. + Just type awesome.re to go here. Check out my apps and follow me on Twitter.


From 978f08ab7a4c0390af6e701c7f9a272058a66e2f Mon Sep 17 00:00:00 2001 From: Erwan Le Merrer Date: Thu, 2 Jun 2022 13:14:47 +0200 Subject: [PATCH 060/191] Add Audit Algorithms (#2023) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 17ab1d4c1d..f42cda02c8 100755 --- a/readme.md +++ b/readme.md @@ -595,6 +595,7 @@ - [Competitive Programming](https://github.com/lnishan/awesome-competitive-programming#readme) - [Math](https://github.com/rossant/awesome-math#readme) - [Recursion Schemes](https://github.com/passy/awesome-recursion-schemes#readme) - Traversing nested data structures. +- [Audit Algorithms](https://github.com/erwanlemerrer/awesome-audit-algorithms#readme) - Algorithmic audits of algorithms. ## Books From ada2c3feab52e05114176f2398b443ee7bd0efba Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Thu, 2 Jun 2022 13:29:49 +0200 Subject: [PATCH 061/191] Add Directus (#2084) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index f42cda02c8..a5e3c556ea 100755 --- a/readme.md +++ b/readme.md @@ -754,6 +754,7 @@ - [Craft CMS](https://github.com/craftcms/awesome#readme) - Content-first CMS. - [Sitecore](https://github.com/MartinMiles/Awesome-Sitecore#readme) - .NET digital marketing platform that combines CMS with tools for managing multiple websites. - [Silverstripe CMS](https://github.com/wernerkrauss/awesome-silverstripe-cms#readme) - PHP MVC framework that serves as a classic or headless CMS. +- [Directus](https://github.com/directus-community/awesome-directus#readme) - A real-time API and app dashboard for managing SQL database content. ## Hardware From d45cd96d283a1f1b7a787806a92f149047edad88 Mon Sep 17 00:00:00 2001 From: Nulo <86896666+catdevnull@users.noreply.github.com> Date: Thu, 2 Jun 2022 11:33:32 +0000 Subject: [PATCH 062/191] Add Zig (#2153) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index a5e3c556ea..ca3925e5e7 100755 --- a/readme.md +++ b/readme.md @@ -390,6 +390,7 @@ - [Vala](https://github.com/desiderantes/awesome-vala#readme) - Programming language designed to take full advantage of the GLib and GNOME ecosystems, while preserving the speed of C code. - [Coq](https://github.com/coq-community/awesome-coq#readme) - Formal language and environment for programming and specification which facilitates interactive development of machine-checked proofs. - [V](https://github.com/vlang/awesome-v#readme) - Simple, fast, safe, compiled language for developing maintainable software. +- [Zig](https://github.com/catdevnull/awesome-zig#readme) - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. ## Front-End Development From 3eb93748644713d97108cdd8bff0489dda45c0ab Mon Sep 17 00:00:00 2001 From: Jean-Yves Guyomarc'h Date: Thu, 2 Jun 2022 05:24:33 -0700 Subject: [PATCH 063/191] Add Conversational AI (#2160) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index ca3925e5e7..c58d51b890 100755 --- a/readme.md +++ b/readme.md @@ -572,6 +572,7 @@ - [Information Retrieval](https://github.com/harpribot/awesome-information-retrieval#readme) - Learn to develop your own search engine. - [Quantum Computing](https://github.com/desireevl/awesome-quantum-computing#readme) - Computing which utilizes quantum mechanics and qubits on quantum computers. - [Theoretical Computer Science](https://github.com/mostafatouny/awesome-theoretical-computer-science#readme) - The interplay of computer science and pure mathematics, distinguished by its emphasis on mathematical rigour and technique. +- [Conversational AI](https://github.com/jyguyomarch/awesome-conversational-ai#readme) - Build awesome chatbots and digital assistants. ## Big Data From a67b90a7ca6986456f368a2935616a56fc72d3d1 Mon Sep 17 00:00:00 2001 From: Martin DONADIEU Date: Thu, 2 Jun 2022 15:53:53 +0200 Subject: [PATCH 064/191] Add Capacitor (#2161) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c58d51b890..919bcb325c 100755 --- a/readme.md +++ b/readme.md @@ -313,6 +313,7 @@ - [Integration](https://github.com/stn1slv/awesome-integration#readme) - Linking together different IT systems (components) to functionally cooperate as a whole. - [Node-RED](https://github.com/naimo84/awesome-nodered#readme) - A programming tool for wiring together hardware devices, APIs, and online services. - [Low Code](https://github.com/zenitysec/awesome-low-code#readme) - Allowing business professionals to address their needs on their own with little to no coding skills. +- [Capacitor](https://github.com/riderx/awesome-capacitor#readme) - Cross-platform open source runtime for building Web Native apps. ## Programming Languages From f48be5b58067325f94af8cbbc15818bc9222f730 Mon Sep 17 00:00:00 2001 From: Andreas Hunkeler Date: Sun, 5 Jun 2022 12:04:53 +0200 Subject: [PATCH 065/191] Add Malware Persistence (#2184) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 919bcb325c..bc9c885a6b 100755 --- a/readme.md +++ b/readme.md @@ -746,6 +746,7 @@ - [GDPR](https://github.com/bakke92/awesome-gdpr#readme) - Regulation on data protection and privacy for all individuals within EU. - [DevSecOps](https://github.com/TaptuIT/awesome-devsecops#readme) - Integration of security practices into [DevOps](https://en.wikipedia.org/wiki/DevOps). - [Executable Packing](https://github.com/dhondta/awesome-executable-packing#readme) - Packing and unpacking executable formats. +- [Malware Persistence](https://github.com/Karneades/awesome-malware-persistence#readme) - Techniques that adversaries use to keep access to systems across restarts. ## Content Management Systems From cc269f471257bf3de7c7143e1bada0ef77e0d935 Mon Sep 17 00:00:00 2001 From: Raul Jimenez Ortega Date: Sun, 5 Jun 2022 12:32:24 +0200 Subject: [PATCH 066/191] Add ArcGIS Developer (#2212) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index bc9c885a6b..e8604dd28c 100755 --- a/readme.md +++ b/readme.md @@ -314,6 +314,7 @@ - [Node-RED](https://github.com/naimo84/awesome-nodered#readme) - A programming tool for wiring together hardware devices, APIs, and online services. - [Low Code](https://github.com/zenitysec/awesome-low-code#readme) - Allowing business professionals to address their needs on their own with little to no coding skills. - [Capacitor](https://github.com/riderx/awesome-capacitor#readme) - Cross-platform open source runtime for building Web Native apps. +- [ArcGIS Developer](https://github.com/Esri/awesome-arcgis-developer#readme) - Mapping and location analysis platform for developers. ## Programming Languages From 693a32d71f900a08a0ce8e268186af3d6cb6bc7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Dupr=C3=A9?= <419946+kareniel@users.noreply.github.com> Date: Sun, 5 Jun 2022 06:47:59 -0400 Subject: [PATCH 067/191] Add EVM Security (#2213) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index e8604dd28c..61126614f0 100755 --- a/readme.md +++ b/readme.md @@ -748,6 +748,7 @@ - [DevSecOps](https://github.com/TaptuIT/awesome-devsecops#readme) - Integration of security practices into [DevOps](https://en.wikipedia.org/wiki/DevOps). - [Executable Packing](https://github.com/dhondta/awesome-executable-packing#readme) - Packing and unpacking executable formats. - [Malware Persistence](https://github.com/Karneades/awesome-malware-persistence#readme) - Techniques that adversaries use to keep access to systems across restarts. +- [EVM Security](https://github.com/kareniel/awesome-evm-security#readme) - Understanding the Ethereum Virtual Machine security ecosystem. ## Content Management Systems From eafa6a51309a2329a1244a48632efc6c15f2dd72 Mon Sep 17 00:00:00 2001 From: Kevin Kandlbinder Date: Sun, 5 Jun 2022 12:51:34 +0200 Subject: [PATCH 068/191] Add OpenStreetMap (#2215) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 61126614f0..dbdbaa9a63 100755 --- a/readme.md +++ b/readme.md @@ -971,6 +971,7 @@ - [Translations](https://github.com/mbiesiad/awesome-translations#readme) - The transfer of the meaning of a text from one language to another. - [Scriptable](https://github.com/dersvenhesse/awesome-scriptable#readme) - An iOS app for automations in JavaScript. - [WebXR](https://github.com/msub2/awesome-webxr#readme) - Enables immersive virtual reality and augmented reality content on the web. +- [OpenStreetMap](https://github.com/osmlab/awesome-openstreetmap#readme) - An open data mapping project utilized by many apps and devices. ## Related From d0b5c50cae3939df37d1e4ec243daebd08b9f2d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Efe=20=C3=87etin?= Date: Sun, 5 Jun 2022 13:55:45 +0300 Subject: [PATCH 069/191] Add Fiber (#2217) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index dbdbaa9a63..42e5eea7e3 100755 --- a/readme.md +++ b/readme.md @@ -536,6 +536,7 @@ - [CDK](https://github.com/kolomied/awesome-cdk#readme) - Open-source software development framework for defining cloud infrastructure in code. - [IAM](https://github.com/kdeldycke/awesome-iam#readme) - User accounts, authentication and authorization. - [Slim](https://github.com/nekofar/awesome-slim#readme) - PHP framework. +- [Fiber](https://github.com/gofiber/awesome-fiber#readme) - Web framework built on top of Fasthttp, the fastest HTTP engine for Go. ## Computer Science From 724c91b6d7e76b2aac92455f8f6104e0941a4e28 Mon Sep 17 00:00:00 2001 From: Pan YANG Date: Sun, 5 Jun 2022 19:02:13 +0800 Subject: [PATCH 070/191] Add TDengine (#2249) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 42e5eea7e3..16cc3e7c1d 100755 --- a/readme.md +++ b/readme.md @@ -695,6 +695,7 @@ - [Database Tools](https://github.com/mgramin/awesome-db-tools#readme) - Everything that makes working with databases easier. - [TypeDB](https://github.com/vaticle/typedb-awesome#readme) - Logical database to organize large and complex networks of data as one body of knowledge. - [Cassandra](https://github.com/Anant/awesome-cassandra#readme) - Open-source, distributed, wide column store, NoSQL database management system. +- [TDengine](https://github.com/taosdata/awesome-tdengine#readme) - An open-source time-series database with high-performance, scalability, and SQL support. ## Media From 54b8cf37d58195b9c2f7f2fd7f61d44f4192a8ce Mon Sep 17 00:00:00 2001 From: Yoshitaka Inoue <8393063+inoue0426@users.noreply.github.com> Date: Sun, 5 Jun 2022 06:07:30 -0500 Subject: [PATCH 071/191] Add Computational Biology (#2257) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 16cc3e7c1d..753f67cbb1 100755 --- a/readme.md +++ b/readme.md @@ -974,6 +974,7 @@ - [Scriptable](https://github.com/dersvenhesse/awesome-scriptable#readme) - An iOS app for automations in JavaScript. - [WebXR](https://github.com/msub2/awesome-webxr#readme) - Enables immersive virtual reality and augmented reality content on the web. - [OpenStreetMap](https://github.com/osmlab/awesome-openstreetmap#readme) - An open data mapping project utilized by many apps and devices. +- [Computational Biology](https://github.com/inoue0426/awesome-computational-biology#readme) - Computational approaches applied to problems in biology. ## Related From e4a2009d81e1aeb085a590237089762fe136d136 Mon Sep 17 00:00:00 2001 From: Delft-Open-Hardware <96619985+Delft-Open-Hardware@users.noreply.github.com> Date: Sun, 5 Jun 2022 13:14:54 +0200 Subject: [PATCH 072/191] Add Open Hardware (#2266) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 753f67cbb1..bbe769b9f8 100755 --- a/readme.md +++ b/readme.md @@ -774,6 +774,7 @@ - [Plotters](https://github.com/beardicus/awesome-plotters#readme) - Computer-controlled drawing machines and other visual art robots. - [Robotic Tooling](https://github.com/protontypes/awesome-robotic-tooling#readme) - Free and open tools for professional robotic development. - [LIDAR](https://github.com/szenergy/awesome-lidar#readme) - Sensor for measuring distances by illuminating the target with laser light. +- [Open Hardware](https://github.com/delftopenhardware/awesome-open-hardware#readme) - Open-source hardware projects. ## Business From c639cd18950b96c61efaa6cc570547420bc83a69 Mon Sep 17 00:00:00 2001 From: Philip Bauer Date: Sun, 5 Jun 2022 13:24:05 +0200 Subject: [PATCH 073/191] Add Plone (#2267) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index bbe769b9f8..225fbbce4a 100755 --- a/readme.md +++ b/readme.md @@ -763,6 +763,7 @@ - [Sitecore](https://github.com/MartinMiles/Awesome-Sitecore#readme) - .NET digital marketing platform that combines CMS with tools for managing multiple websites. - [Silverstripe CMS](https://github.com/wernerkrauss/awesome-silverstripe-cms#readme) - PHP MVC framework that serves as a classic or headless CMS. - [Directus](https://github.com/directus-community/awesome-directus#readme) - A real-time API and app dashboard for managing SQL database content. +- [Plone](https://github.com/collective/awesome-plone#readme) - Open source Python CMS. ## Hardware From 537ad564e517478a6909c4fcfe62c696e8850f29 Mon Sep 17 00:00:00 2001 From: Oaker Min <7734956+brootware@users.noreply.github.com> Date: Thu, 9 Jun 2022 22:29:01 +0800 Subject: [PATCH 074/191] Add Cyber Security University (#2268) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 225fbbce4a..a22fc9bf51 100755 --- a/readme.md +++ b/readme.md @@ -729,6 +729,7 @@ - [Product Management](https://github.com/dend/awesome-product-management#readme) - Learn how to be a better product manager. - [Roadmaps](https://github.com/liuchong/awesome-roadmaps#readme) - Gives you a clear route to improve your knowledge and skills. - [YouTubers](https://github.com/JoseDeFreitas/awesome-youtubers#readme) - Watch video tutorials from YouTubers that teach you about technology. +- [Cyber Security University](https://github.com/brootware/awesome-cyber-security-university#readme) - Free educational resources that focus on learning by doing. ## Security From 6e4c2a13355020b9f57b330db12696f30b384ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ege=20Can=20=C3=96ZER?= Date: Mon, 13 Jun 2022 10:38:12 +0300 Subject: [PATCH 075/191] Add SNMP (#2202) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index a22fc9bf51..dbace32903 100755 --- a/readme.md +++ b/readme.md @@ -811,6 +811,7 @@ - [Network Analysis](https://github.com/briatte/awesome-network-analysis#readme) - [PCAPTools](https://github.com/caesar0301/awesome-pcaptools#readme) - [Real-Time Communications](https://github.com/rtckit/awesome-rtc#readme) - Network protocols for near simultaneous exchange of media and data. +- [SNMP](https://github.com/eozer/awesome-snmp#readme) - A protocol for collecting, modifying, and organizing information about managed devices on IP networks. ## Decentralized Systems From e55a7d007f3e29c21a444050a6bf33e557f7d09e Mon Sep 17 00:00:00 2001 From: h3nk42 <35529607+h3nk42@users.noreply.github.com> Date: Sun, 26 Jun 2022 21:50:44 +0200 Subject: [PATCH 076/191] Improve description for React (#2300) Co-authored-by: Sindre Sorhus --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index dbace32903..62c7540532 100755 --- a/readme.md +++ b/readme.md @@ -405,9 +405,9 @@ - [Must-Watch Talks](https://github.com/AllThingsSmitty/must-watch-css#readme) - [Protips](https://github.com/AllThingsSmitty/css-protips#readme) - [Frameworks](https://github.com/troxler/awesome-css-frameworks#readme) -- [React](https://github.com/enaqx/awesome-react#readme) - App framework. +- [React](https://github.com/enaqx/awesome-react#readme) - JavaScript library for building user interfaces. - [Relay](https://github.com/expede/awesome-relay#readme) - Framework for building data-driven React apps. - - [React Hooks](https://github.com/glauberfc/awesome-react-hooks#readme) - A new feature that lets you use state and other React features without writing a class. + - [React Hooks](https://github.com/glauberfc/awesome-react-hooks#readme) - Lets you use state and other React features without writing a class. - [Web Components](https://github.com/mateusortiz/webcomponents-the-right-way#readme) - [Polymer](https://github.com/Granze/awesome-polymer#readme) - JavaScript library to develop Web Components. - [Angular](https://github.com/PatrickJS/awesome-angular#readme) - App framework. From 1870e51e0ae1438a0503854fa2b71f67bb434634 Mon Sep 17 00:00:00 2001 From: Alan Christian Date: Wed, 20 Jul 2022 08:13:25 -0300 Subject: [PATCH 077/191] Move some lists to other categories (#2330) --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 62c7540532..21c00967d1 100755 --- a/readme.md +++ b/readme.md @@ -729,16 +729,17 @@ - [Product Management](https://github.com/dend/awesome-product-management#readme) - Learn how to be a better product manager. - [Roadmaps](https://github.com/liuchong/awesome-roadmaps#readme) - Gives you a clear route to improve your knowledge and skills. - [YouTubers](https://github.com/JoseDeFreitas/awesome-youtubers#readme) - Watch video tutorials from YouTubers that teach you about technology. -- [Cyber Security University](https://github.com/brootware/awesome-cyber-security-university#readme) - Free educational resources that focus on learning by doing. ## Security - [Application Security](https://github.com/paragonie/awesome-appsec#readme) - [Security](https://github.com/sbilly/awesome-security#readme) - [CTF](https://github.com/apsdehal/awesome-ctf#readme) - Capture The Flag. +- [Cyber Security University](https://github.com/brootware/awesome-cyber-security-university#readme) - Free educational resources that focus on learning by doing. - [Malware Analysis](https://github.com/rshipp/awesome-malware-analysis#readme) - [Android Security](https://github.com/ashishb/android-security-awesome#readme) - [Hacking](https://github.com/carpedm20/awesome-hacking#readme) +- [Hacking Spots](https://github.com/daviddias/awesome-hacking-locations#readme) - [Honeypots](https://github.com/paralax/awesome-honeypots#readme) - Deception trap, designed to entice an attacker into attempting to compromise the information systems in an organization. - [Incident Response](https://github.com/meirwah/awesome-incident-response#readme) - [Vehicle Security and Car Hacking](https://github.com/jaredthecoder/awesome-vehicle-security#readme) @@ -894,7 +895,6 @@ - [Tools for Activism](https://github.com/drewrwilson/toolsforactivism#readme) - [Citizen Science](https://github.com/dylanrees/citizen-science#readme) - For community-based and non-institutional scientists. - [MQTT](https://github.com/hobbyquaker/awesome-mqtt#readme) - "Internet of Things" connectivity protocol. -- [Hacking Spots](https://github.com/daviddias/awesome-hacking-locations#readme) - [For Girls](https://github.com/cristianoliveira/awesome4girls#readme) - [Vorpal](https://github.com/vorpaljs/awesome-vorpal#readme) - Node.js CLI framework. - [Vulkan](https://github.com/vinjn/awesome-vulkan#readme) - Low-overhead, cross-platform 3D graphics and compute API. From d5832cebce13c2e91735c7ecf40bf26628042454 Mon Sep 17 00:00:00 2001 From: Yu-Zhe Shi Date: Sat, 23 Jul 2022 18:37:54 +0800 Subject: [PATCH 078/191] Add AGI & CoCoSci (#2320) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 21c00967d1..4707dd7343 100755 --- a/readme.md +++ b/readme.md @@ -601,6 +601,7 @@ - [Math](https://github.com/rossant/awesome-math#readme) - [Recursion Schemes](https://github.com/passy/awesome-recursion-schemes#readme) - Traversing nested data structures. - [Audit Algorithms](https://github.com/erwanlemerrer/awesome-audit-algorithms#readme) - Algorithmic audits of algorithms. +- [AGI & CoCoSci](https://github.com/YuzheSHI/awesome-agi-cocosci#readme) - The reciprocation of Artificial General Intelligence (AGI) and Computational Cognitive Sciences (CoCoSci). ## Books From 93ef511b7b70dc039b0b4ae6f7591488f41f8980 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 2 Aug 2022 13:08:22 +0200 Subject: [PATCH 079/191] Meta tweaks --- readme.md | 97 ++++++++++++++----------------------------------------- 1 file changed, 25 insertions(+), 72 deletions(-) diff --git a/readme.md b/readme.md index 4707dd7343..e4ca386c20 100755 --- a/readme.md +++ b/readme.md @@ -10,6 +10,17 @@


+
+
+
+

Check out: One Thing — Put a single task or goal in your menu bar

+
+
+
+
+
+
+

@@ -103,15 +114,6 @@


- -

- A dead-simple software licensing and distribution API built for developers - -
-
-

@@ -134,44 +136,23 @@


-
-
- neverinstall -
-
- All your favourite IDE's now available on the cloud -
- - Neverinstall gives you an uninterrupted development experience and improved accessibility, -
- allowing you to code faster, better and on-the-go on your favourite IDEs like -
- Android Studio, VS Code, Jupyter and PyCharm using your browser. -
-
-
- +
- neverinstall + Anvil

- All your favourite IDE's now available on the cloud + Paperwork that makes the data work.
- Neverinstall gives you an uninterrupted development experience and improved accessibility, -
- allowing you to code faster, better and on-the-go on your favourite IDEs like + Easy APIs for paperwork. PDF generation, e-signature and embeddable no-code webforms.
- Android Studio, VS Code, Jupyter and PyCharm using your browser. + The easiest way to build paperwork automation into your product.
-
-
-
- +
- Anvil + Anvil

Paperwork that makes the data work. @@ -183,17 +164,18 @@
- +
+
+
+
- Anvil + Sizzy
-
- Paperwork that makes the data work.
- Easy APIs for paperwork. PDF generation, e-signature and embeddable no-code webforms. + Before Sizzy: web development is stressing you out, responsive design is hard, you have an overwhelming amount of opened tabs & apps.
- The easiest way to build paperwork automation into your product. + After Sizzy: all the tools you need in one place, responsive design is a breeze, no more context switching.
@@ -476,35 +458,6 @@ - [Inertia.js](https://github.com/innocenzi/awesome-inertiajs#readme) - Make single-page apps without building an API. - [MDBootstrap](https://github.com/mdbootstrap/awesome-mdbootstrap#readme) - Templates, layouts, components, and widgets to rapidly build websites. -
- ---- - -
- - -
- neverinstall -
-
- All your favourite IDE's now available on the cloud -
-
- -
- neverinstall -
-
- All your favourite IDE's now available on the cloud -
-
- -
- ---- - -
- ## Back-End Development - [Flask](https://github.com/mjhea0/awesome-flask#readme) - Python framework. From 4735e7e6fe0307055be746c7c78bdaddd2da9bc6 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 21 Sep 2022 16:34:50 +0700 Subject: [PATCH 080/191] Meta tweaks --- readme.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index e4ca386c20..10e3aefecb 100755 --- a/readme.md +++ b/readme.md @@ -13,7 +13,15 @@


-

Check out: One Thing — Put a single task or goal in your menu bar

+
+ Check out my latest app +
+

+ Favorites Widget +
+ Call your favorite people directly from the iPhone Lock Screen +

+



From 52b6dbacde01c2595f2133a5378cb8d2f89906fa Mon Sep 17 00:00:00 2001 From: Roland Siegbert Date: Thu, 22 Sep 2022 13:22:20 +0200 Subject: [PATCH 081/191] Rename Higher Education (#2385) --- readme.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/readme.md b/readme.md index 10e3aefecb..7de772c038 100755 --- a/readme.md +++ b/readme.md @@ -242,7 +242,7 @@ - [Work](#work) - [Networking](#networking) - [Decentralized Systems](#decentralized-systems) -- [Higher Education](#higher-education) +- [Health and Social Science](#health-and-social-science) - [Events](#events) - [Testing](#testing) - [Miscellaneous](#miscellaneous) @@ -792,11 +792,17 @@ - [Stacks](https://github.com/friedger/awesome-stacks-chain#readme) - A smart contract platform secured by Bitcoin. - [Algorand](https://github.com/aorumbayev/awesome-algorand#readme) - An open-source, proof of stake blockchain and smart contract computing platform. -## Higher Education +## Health and Social Science +- [Biomedical Information Extraction](https://github.com/caufieldjh/awesome-bioie#readme) - How to extract information from unstructured biomedical data and text. - [Computational Neuroscience](https://github.com/eselkin/awesome-computational-neuroscience#readme) - A multidisciplinary science which uses computational approaches to study the nervous system. +- [Diversity](https://github.com/folkswhocode/awesome-diversity#readme) - Creating a more inclusive and diverse tech community. - [Digital History](https://github.com/maehr/awesome-digital-history#readme) - Computer-aided scientific investigation of history. -- [Scientific Writing](https://github.com/writing-resources/awesome-scientific-writing#readme) - Distraction-free scientific writing with Markdown, reStructuredText and Jupyter notebooks. +- [Empathy in Engineering](https://github.com/KimberlyMunoz/empathy-in-engineering#readme) - Building and promoting more compassionate engineering cultures. +- [Healthcare](https://github.com/kakoni/awesome-healthcare#readme) - Open source healthcare software for facilities, providers, developers, policy experts, and researchers. +- [Humane Technology](https://github.com/humanetech-community/awesome-humane-tech#readme) - Open source projects that help improve society. +- [Mental Health](https://github.com/dreamingechoes/awesome-mental-health#readme) - Mental health awareness and self-care in the software industry. +- [Neuroscience](https://github.com/analyticalmonk/awesome-neuroscience#readme) - Study of the nervous system and brain. ## Events @@ -819,6 +825,7 @@ ## Miscellaneous +- [Scientific Writing](https://github.com/writing-resources/awesome-scientific-writing#readme) - Distraction-free scientific writing with Markdown, reStructuredText and Jupyter notebooks. - [JSON](https://github.com/burningtree/awesome-json#readme) - Text based data interchange format. - [GeoJSON](https://github.com/tmcw/awesome-geojson#readme) - [Datasets](https://github.com/jdorfman/awesome-json-datasets#readme) @@ -869,7 +876,6 @@ - [Steam](https://github.com/scholtzm/awesome-steam#readme) - Digital distribution platform. - [Bots](https://github.com/hackerkid/bots#readme) - Building bots. - [Site Reliability Engineering](https://github.com/dastergon/awesome-sre#readme) -- [Empathy in Engineering](https://github.com/KimberlyMunoz/empathy-in-engineering#readme) - Building and promoting more compassionate engineering cultures. - [DTrace](https://github.com/xen0l/awesome-dtrace#readme) - Dynamic tracing framework. - [Userscripts](https://github.com/bvolpato/awesome-userscripts#readme) - Enhance your browsing experience. - [Pokémon](https://github.com/tobiasbueschel/awesome-pokemon#readme) - Pokémon and Pokémon GO. @@ -885,10 +891,8 @@ - [Framer](https://github.com/podo/awesome-framer#readme) - Prototyping interactive UI designs. - [Markdown](https://github.com/BubuAnabelas/awesome-markdown#readme) - Markup language. - [Dev Fun](https://github.com/mislavcimpersak/awesome-dev-fun#readme) - Funny developer projects. -- [Healthcare](https://github.com/kakoni/awesome-healthcare#readme) - Open source healthcare software for facilities, providers, developers, policy experts, and researchers. - [Magento 2](https://github.com/DavidLambauer/awesome-magento2#readme) - Open Source eCommerce built with PHP. - [TikZ](https://github.com/xiaohanyu/awesome-tikz#readme) - Graph drawing packages for TeX/LaTeX/ConTeXt. -- [Neuroscience](https://github.com/analyticalmonk/awesome-neuroscience#readme) - Study of the nervous system and brain. - [Ad-Free](https://github.com/johnjago/awesome-ad-free#readme) - Ad-free alternatives. - [Esolangs](https://github.com/angrykoala/awesome-esolangs#readme) - Programming languages designed for experimentation or as jokes rather than actual use. - [Prometheus](https://github.com/roaldnefs/awesome-prometheus#readme) - Open-source monitoring system. @@ -897,7 +901,6 @@ - [Web Monetization](https://github.com/thomasbnt/awesome-web-monetization#readme) - A free open web standard service that allows you to send money directly in your browser. - [Uncopyright](https://github.com/johnjago/awesome-uncopyright#readme) - Public domain works. - [Crypto Currency Tools & Algorithms](https://github.com/Zheaoli/awesome-coins#readme) - Digital currency where encryption is used to regulate the generation of units and verify transfers. -- [Diversity](https://github.com/folkswhocode/awesome-diversity#readme) - Creating a more inclusive and diverse tech community. - [Open Source Supporters](https://github.com/zachflower/awesome-open-source-supporters#readme) - Companies that offer their tools and services for free to open source projects. - [Design Principles](https://github.com/robinstickel/awesome-design-principles#readme) - Create better and more consistent designs and experiences. - [Theravada](https://github.com/johnjago/awesome-theravada#readme) - Teachings from the Theravada Buddhist tradition. @@ -907,13 +910,11 @@ - [Captcha](https://github.com/ZYSzys/awesome-captcha#readme) - A type of challenge–response test used in computing to determine whether or not the user is human. - [Jupyter](https://github.com/markusschanta/awesome-jupyter#readme) - Create and share documents that contain code, equations, visualizations and narrative text. - [FIRST Robotics Competition](https://github.com/andrewda/awesome-frc#readme) - International high school robotics championship. -- [Humane Technology](https://github.com/humanetech-community/awesome-humane-tech#readme) - Open source projects that help improve society. - [Speakers](https://github.com/karlhorky/awesome-speakers#readme) - Conference and meetup speakers in the programming and design community. - [Board Games](https://github.com/edm00se/awesome-board-games#readme) - Table-top gaming fun for all. - [Software Patreons](https://github.com/uraimo/awesome-software-patreons#readme) - Fund individual programmers or the development of open source projects. - [Parasite](https://github.com/ecohealthalliance/awesome-parasite#readme) - Parasites and host-pathogen interactions. - [Food](https://github.com/jzarca01/awesome-food#readme) - Food-related projects on GitHub. -- [Mental Health](https://github.com/dreamingechoes/awesome-mental-health#readme) - Mental health awareness and self-care in the software industry. - [Bitcoin Payment Processors](https://github.com/alexk111/awesome-bitcoin-payment-processors#readme) - Start accepting Bitcoin. - [Scientific Computing](https://github.com/nschloe/awesome-scientific-computing#readme) - Solving complex scientific problems using computers. - [Amazon Sellers](https://github.com/ScaleLeap/awesome-amazon-seller#readme) @@ -928,7 +929,6 @@ - [Advertising](https://github.com/cenoura/awesome-ads#readme) - Advertising and programmatic media for websites. - [Earth](https://github.com/philsturgeon/awesome-earth#readme) - Find ways to resolve the climate crisis. - [Naming](https://github.com/gruhn/awesome-naming#readme) - Naming things in computer science done right. -- [Biomedical Information Extraction](https://github.com/caufieldjh/awesome-bioie#readme) - How to extract information from unstructured biomedical data and text. - [Web Archiving](https://github.com/iipc/awesome-web-archiving#readme) - An effort to preserve the Web for future generations. - [WP-CLI](https://github.com/schlessera/awesome-wp-cli#readme) - Command-line interface for WordPress. - [Credit Modeling](https://github.com/mourarthur/awesome-credit-modeling#readme) - Methods for classifying credit applicants into risk classes. From 7ab5dfeb9e9febdacae31ce2b25ea4f754da8a17 Mon Sep 17 00:00:00 2001 From: Michel Pereira Date: Tue, 27 Sep 2022 05:50:44 -0300 Subject: [PATCH 082/191] Add Open Source Games (#2171) Co-authored-by: Sindre Sorhus --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7de772c038..1dbde6b656 100755 --- a/readme.md +++ b/readme.md @@ -587,7 +587,7 @@ - [Game Development](https://github.com/ellisonleao/magictools#readme) - [Game Talks](https://github.com/hzoo/awesome-gametalks#readme) - [Godot](https://github.com/godotengine/awesome-godot#readme) - Game engine. -- [Open Source Games](https://github.com/leereilly/games#readme) +- [Open Source Games](https://github.com/michelpereira/awesome-open-source-games#readme) - [Unity](https://github.com/RyanNielson/awesome-unity#readme) - Game engine. - [Chess](https://github.com/hkirat/awesome-chess#readme) - [LÖVE](https://github.com/love2d-community/awesome-love2d#readme) - Game engine. From 369962ce0253f3ff9521df777325a40bfa80bd62 Mon Sep 17 00:00:00 2001 From: Aaron Kirtland <16129775+atkirtland@users.noreply.github.com> Date: Sat, 19 Nov 2022 15:10:08 -0500 Subject: [PATCH 083/191] Add Computational Geometry (#2275) --- readme.md | 1 + 1 file changed, 1 insertion(+) mode change 100755 => 100644 readme.md diff --git a/readme.md b/readme.md old mode 100755 new mode 100644 index 1dbde6b656..224016897e --- a/readme.md +++ b/readme.md @@ -939,6 +939,7 @@ - [Translations](https://github.com/mbiesiad/awesome-translations#readme) - The transfer of the meaning of a text from one language to another. - [Scriptable](https://github.com/dersvenhesse/awesome-scriptable#readme) - An iOS app for automations in JavaScript. - [WebXR](https://github.com/msub2/awesome-webxr#readme) - Enables immersive virtual reality and augmented reality content on the web. +- [Computational Geometry](https://github.com/atkirtland/awesome-computational-geometry#readme) - Computational approaches for problems in geometry. - [OpenStreetMap](https://github.com/osmlab/awesome-openstreetmap#readme) - An open data mapping project utilized by many apps and devices. - [Computational Biology](https://github.com/inoue0426/awesome-computational-biology#readme) - Computational approaches applied to problems in biology. From 6e61355011bab89a66039524e12a3e775a64b19e Mon Sep 17 00:00:00 2001 From: gpotter2 <10530980+gpotter2@users.noreply.github.com> Date: Sat, 19 Nov 2022 21:16:15 +0100 Subject: [PATCH 084/191] Add Scapy (#2285) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 224016897e..36906fb002 100644 --- a/readme.md +++ b/readme.md @@ -775,6 +775,7 @@ - [PCAPTools](https://github.com/caesar0301/awesome-pcaptools#readme) - [Real-Time Communications](https://github.com/rtckit/awesome-rtc#readme) - Network protocols for near simultaneous exchange of media and data. - [SNMP](https://github.com/eozer/awesome-snmp#readme) - A protocol for collecting, modifying, and organizing information about managed devices on IP networks. +- [Scapy](https://github.com/secdev/awesome-scapy#readme) - Python-based interactive packet manipulation. ## Decentralized Systems From b26b35ee63358d4a209dff3d1adf8ee27338be16 Mon Sep 17 00:00:00 2001 From: Benjamin Sehl Date: Sat, 19 Nov 2022 15:26:56 -0500 Subject: [PATCH 085/191] Add Hydrogen (#2289) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 36906fb002..d0dea628a2 100644 --- a/readme.md +++ b/readme.md @@ -465,6 +465,7 @@ - [Design systems](https://github.com/klaufel/awesome-design-systems#readme) - Collection of reusable components, guided by rules that ensure consistency and speed. - [Inertia.js](https://github.com/innocenzi/awesome-inertiajs#readme) - Make single-page apps without building an API. - [MDBootstrap](https://github.com/mdbootstrap/awesome-mdbootstrap#readme) - Templates, layouts, components, and widgets to rapidly build websites. +- [Hydrogen](https://github.com/shopify/awesome-hydrogen#readme) - Edge-first framework for building Shopify storefronts with React. ## Back-End Development From 8d7eee662c0c5a39dc8e428a3013527fa4834941 Mon Sep 17 00:00:00 2001 From: Ville Sundell Date: Sat, 19 Nov 2022 22:45:58 +0200 Subject: [PATCH 086/191] Add Move (#2302) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index d0dea628a2..ef03108fb9 100644 --- a/readme.md +++ b/readme.md @@ -383,6 +383,7 @@ - [Coq](https://github.com/coq-community/awesome-coq#readme) - Formal language and environment for programming and specification which facilitates interactive development of machine-checked proofs. - [V](https://github.com/vlang/awesome-v#readme) - Simple, fast, safe, compiled language for developing maintainable software. - [Zig](https://github.com/catdevnull/awesome-zig#readme) - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. +- [Move](https://github.com/MystenLabs/awesome-move#readme) - Domain-specific programming language for writing safe smart contracts. ## Front-End Development From fd554844f149ee50529468dea3bd145abd23735f Mon Sep 17 00:00:00 2001 From: Hazel Kennedy Date: Sun, 20 Nov 2022 05:16:03 -0800 Subject: [PATCH 087/191] Add Learn Gamedev (#2372) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index ef03108fb9..4063b267bf 100644 --- a/readme.md +++ b/readme.md @@ -608,6 +608,7 @@ - [CHIP-8](https://github.com/tobiasvl/awesome-chip-8#readme) - Virtual computer game machine from the 70s. - [Games of Coding](https://github.com/michelpereira/awesome-games-of-coding#readme) - Learn a programming language by making games. - [Esports](https://github.com/strift/awesome-esports#readme) - Video games played as a sport. +- [Learn Gamedev](https://github.com/notpresident35/awesome-learn-gamedev#readme) - The craft of video game creation. ## Development Environment From d206b4ec5c3eac70b1dae7942698ce95d5d2be9d Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 28 Nov 2022 14:13:26 +0700 Subject: [PATCH 088/191] Meta tweaks --- readme.md | 45 --------------------------------------------- 1 file changed, 45 deletions(-) diff --git a/readme.md b/readme.md index 4063b267bf..facb152ffd 100644 --- a/readme.md +++ b/readme.md @@ -49,18 +49,6 @@

- -
- Doppler -
- All your environment variables, in one place -
- Stop struggling with scattered API keys, hacking together home-brewed tools, -
- and avoiding access controls. Keep your team and servers in sync with Doppler. -
-
-
WorkOS @@ -104,24 +92,6 @@

- -
- Gitpod -
- Dev environments built for the cloud -
- - Natively integrated with GitLab, GitHub, and Bitbucket, Gitpod automatically and continuously prebuilds dev -
- environments for all your branches. As a result team members can instantly start coding with fresh dev environments -
- for each new task - no matter if you are building a new feature, want to fix a bug, or work on a code review. -
-
-
-
-
-

@@ -174,21 +144,6 @@

-
- -
- Sizzy -
-
- - Before Sizzy: web development is stressing you out, responsive design is hard, you have an overwhelming amount of opened tabs & apps. -
- After Sizzy: all the tools you need in one place, responsive design is a breeze, no more context switching. -
-
-
-
-



From da84280d72bcde8cc556af8437eb698be88ef1f0 Mon Sep 17 00:00:00 2001 From: Lola Date: Wed, 7 Dec 2022 21:45:04 +0800 Subject: [PATCH 089/191] Add Master CSS (#2382) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index facb152ffd..9f4146189c 100644 --- a/readme.md +++ b/readme.md @@ -421,6 +421,7 @@ - [Design systems](https://github.com/klaufel/awesome-design-systems#readme) - Collection of reusable components, guided by rules that ensure consistency and speed. - [Inertia.js](https://github.com/innocenzi/awesome-inertiajs#readme) - Make single-page apps without building an API. - [MDBootstrap](https://github.com/mdbootstrap/awesome-mdbootstrap#readme) - Templates, layouts, components, and widgets to rapidly build websites. +- [Master CSS](https://github.com/master-co/awesome-master-css#readme) - A virtual CSS language with enhanced syntax. - [Hydrogen](https://github.com/shopify/awesome-hydrogen#readme) - Edge-first framework for building Shopify storefronts with React. ## Back-End Development From 49396c45738ebecfe6e7126d984a6c51e0a3920c Mon Sep 17 00:00:00 2001 From: Aleix Morgadas Date: Sat, 17 Dec 2022 00:29:47 +0100 Subject: [PATCH 090/191] Add Engineering Strategy (#2325) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 9f4146189c..99e9fa3ea3 100644 --- a/readme.md +++ b/readme.md @@ -714,6 +714,7 @@ - [Engineering Team Management](https://github.com/kdeldycke/awesome-engineering-team-management#readme) - How to transition from software development to engineering management. - [Developer-First Products](https://github.com/agamm/awesome-developer-first#readme) - Products that target developers as the user. - [Billing](https://github.com/kdeldycke/awesome-billing#readme) - Payments, invoicing, pricing, accounting, marketplace, fraud, and business intelligence. +- [Engineering Strategy](https://github.com/aleixmorgadas/awesome-engineering-strategy#readme) - How to design and execute engineering strategies for tech leadership. ## Work From 9478bdd402e4841ca1e89f4c7817867872616c4e Mon Sep 17 00:00:00 2001 From: Estee Tey Date: Sun, 18 Dec 2022 01:27:19 +0800 Subject: [PATCH 091/191] Add Supabase (#2426) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 99e9fa3ea3..b18c992e5c 100644 --- a/readme.md +++ b/readme.md @@ -617,6 +617,7 @@ - [TypeDB](https://github.com/vaticle/typedb-awesome#readme) - Logical database to organize large and complex networks of data as one body of knowledge. - [Cassandra](https://github.com/Anant/awesome-cassandra#readme) - Open-source, distributed, wide column store, NoSQL database management system. - [TDengine](https://github.com/taosdata/awesome-tdengine#readme) - An open-source time-series database with high-performance, scalability, and SQL support. +- [Supabase](https://github.com/lyqht/awesome-supabase#readme) - An open-source alternative to Firebase. ## Media From 2fe1c3705058df84124589686aaf79c5071a9123 Mon Sep 17 00:00:00 2001 From: Serhii Kulykov Date: Wed, 21 Dec 2022 23:03:28 +0200 Subject: [PATCH 092/191] Update link to Web Components (#2459) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index b18c992e5c..557336252c 100644 --- a/readme.md +++ b/readme.md @@ -354,7 +354,7 @@ - [React](https://github.com/enaqx/awesome-react#readme) - JavaScript library for building user interfaces. - [Relay](https://github.com/expede/awesome-relay#readme) - Framework for building data-driven React apps. - [React Hooks](https://github.com/glauberfc/awesome-react-hooks#readme) - Lets you use state and other React features without writing a class. -- [Web Components](https://github.com/mateusortiz/webcomponents-the-right-way#readme) +- [Web Components](https://github.com/web-padawan/awesome-web-components#readme) - [Polymer](https://github.com/Granze/awesome-polymer#readme) - JavaScript library to develop Web Components. - [Angular](https://github.com/PatrickJS/awesome-angular#readme) - App framework. - [Backbone](https://github.com/sadcitizen/awesome-backbone#readme) - App framework. From 75eac709f43c44128f1804257de4be99d5b60647 Mon Sep 17 00:00:00 2001 From: n0kovo Date: Mon, 26 Dec 2022 13:24:46 +0100 Subject: [PATCH 093/191] Add Password Cracking (#2386) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 557336252c..189feaf96b 100644 --- a/readme.md +++ b/readme.md @@ -675,6 +675,7 @@ - [Executable Packing](https://github.com/dhondta/awesome-executable-packing#readme) - Packing and unpacking executable formats. - [Malware Persistence](https://github.com/Karneades/awesome-malware-persistence#readme) - Techniques that adversaries use to keep access to systems across restarts. - [EVM Security](https://github.com/kareniel/awesome-evm-security#readme) - Understanding the Ethereum Virtual Machine security ecosystem. +- [Password Cracking](https://github.com/n0kovo/awesome-password-cracking#readme) - The process of recovering passwords from data that has been stored in or transmitted by a system in scrambled form. ## Content Management Systems From e78674dc2fe1b2d8043b7ec3e989fa2e8642f422 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 18 Jan 2023 18:02:48 +0700 Subject: [PATCH 094/191] Meta tweaks --- readme.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/readme.md b/readme.md index 189feaf96b..41b2068c1f 100644 --- a/readme.md +++ b/readme.md @@ -17,9 +17,9 @@ Check out my latest app

- Favorites Widget + Any Text
- Call your favorite people directly from the iPhone Lock Screen + Put any text on your iPhone's Lock Screen


@@ -71,15 +71,6 @@

- -
- OSS Capital -
-
- Founded in 2018, OSS Capital is the first and only venture capital platform focused
exclusively on supporting early-stage COSS (commercial open source) startup founders.
-
-
-

From 8aa3455ca943cb64edbcfe9a5329d880759b94a0 Mon Sep 17 00:00:00 2001 From: Tomo <68489118+tomodachi94@users.noreply.github.com> Date: Fri, 3 Feb 2023 06:12:47 -0800 Subject: [PATCH 095/191] Add ComputerCraft (#2405) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 41b2068c1f..6fe32a89ec 100644 --- a/readme.md +++ b/readme.md @@ -545,6 +545,7 @@ - [Construct 2](https://github.com/ConstructCommunity/awesome-construct#readme) - Game engine. - [Gideros](https://github.com/stetso/awesome-gideros#readme) - Game engine. - [Minecraft](https://github.com/bs-community/awesome-minecraft#readme) - Sandbox video game. +- [ComputerCraft](https://github.com/tomodachi94/awesome-computercraft#readme) - Minecraft mod that adds programmable computers. - [Game Datasets](https://github.com/leomaurodesenv/game-datasets#readme) - Materials and datasets for Artificial Intelligence in games. - [Haxe Game Development](https://github.com/Dvergar/awesome-haxe-gamedev#readme) - A high-level strongly typed programming language used to produce cross-platform native code. - [libGDX](https://github.com/rafaskb/awesome-libgdx#readme) - Java game framework. From 91cd8040106383dc10fece5e88b265f0ff2c6807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20M=C3=A4hr?= Date: Sat, 11 Feb 2023 07:57:35 +0100 Subject: [PATCH 096/191] Add Digital Humanities (#2394) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 6fe32a89ec..a33a63e92f 100644 --- a/readme.md +++ b/readme.md @@ -758,6 +758,7 @@ - [Humane Technology](https://github.com/humanetech-community/awesome-humane-tech#readme) - Open source projects that help improve society. - [Mental Health](https://github.com/dreamingechoes/awesome-mental-health#readme) - Mental health awareness and self-care in the software industry. - [Neuroscience](https://github.com/analyticalmonk/awesome-neuroscience#readme) - Study of the nervous system and brain. +- [Digital Humanities](https://github.com/dh-tech/awesome-digital-humanities#readme) - Software for humanities scholars using quantitative or computational methods. ## Events From abc8bb09858130d6867121c74864ec00ef4d531f Mon Sep 17 00:00:00 2001 From: Steven Van Vaerenbergh Date: Sat, 11 Feb 2023 18:08:46 +0100 Subject: [PATCH 097/191] Add Generative AI (#2445) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index a33a63e92f..3a6a86e5c5 100644 --- a/readme.md +++ b/readme.md @@ -486,6 +486,7 @@ - [Quantum Computing](https://github.com/desireevl/awesome-quantum-computing#readme) - Computing which utilizes quantum mechanics and qubits on quantum computers. - [Theoretical Computer Science](https://github.com/mostafatouny/awesome-theoretical-computer-science#readme) - The interplay of computer science and pure mathematics, distinguished by its emphasis on mathematical rigour and technique. - [Conversational AI](https://github.com/jyguyomarch/awesome-conversational-ai#readme) - Build awesome chatbots and digital assistants. +- [Generative AI](https://github.com/steven2358/awesome-generative-ai#readme) - Automatically generate a wide range of unique content in text, image and audio format. ## Big Data From c9da614a2b710079025c90803e2eb60ed3958965 Mon Sep 17 00:00:00 2001 From: Zola Gonano Date: Sun, 12 Feb 2023 06:39:26 +0000 Subject: [PATCH 098/191] Add ZeroNet (#2327) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 3a6a86e5c5..0583782124 100644 --- a/readme.md +++ b/readme.md @@ -747,6 +747,7 @@ - [Golem](https://github.com/golemfactory/awesome-golem#readme) - Open source peer-to-peer marketplace for computing resources. - [Stacks](https://github.com/friedger/awesome-stacks-chain#readme) - A smart contract platform secured by Bitcoin. - [Algorand](https://github.com/aorumbayev/awesome-algorand#readme) - An open-source, proof of stake blockchain and smart contract computing platform. +- [ZeroNet](https://github.com/zolagonano/awesome-zeronet#readme) - A decentralized web-like network of peer-to-peer users. ## Health and Social Science From 9729eeaee4e506aa8a46985a81a7adf848c5366f Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 14 Feb 2023 01:30:57 +0700 Subject: [PATCH 099/191] Update guidelines --- pull_request_template.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pull_request_template.md b/pull_request_template.md index 37ff5f5dc3..5cd28abd4f 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -12,11 +12,12 @@ ## Requirements for your pull request +- Don't open a Draft / WIP pull request while you work on the guidelines. A pull request should be 100% ready and should adhere to all the guidelines when you open it. **Instead use [#2242](https://github.com/sindresorhus/awesome/issues/2242) for incubation visibility**. - **Don't waste my time.** Do a good job, adhere to all the guidelines, and be responsive. - **You have to review at least 2 other [open pull requests](https://github.com/sindresorhus/awesome/pulls?q=is%3Apr+is%3Aopen).** - Try to prioritize unreviewed PRs, but you can also add more comments to reviewed PRs. Go through the below list when reviewing. This requirement is meant to help make the Awesome project self-sustaining. Comment here which PRs you reviewed. You're expected to put a good effort into this and to be thorough. Look at previous PR reviews for inspiration. **Just commenting “looks good” or simply marking the pull request as approved does not count!** You have to actually point out mistakes or improvement suggestions. + Try to prioritize unreviewed PRs, but you can also add more comments to reviewed PRs. Go through the below list when reviewing. This requirement is meant to help make the Awesome project self-sustaining. Comment here which PRs you reviewed. You're expected to put a good effort into this and to be thorough. Look at previous PR reviews for inspiration. **Just commenting “looks good” or simply marking the pull request as approved does not count!** You have to actually point out mistakes or improvement suggestions. Comments pointing out lint violation are allowed, but does **not** count as a review. - You have read and understood the [instructions for creating a list](https://github.com/sindresorhus/awesome/blob/main/create-list.md). -- This pull request has a title in the format `Add Name of List`. +- This pull request has a title in the format `Add Name of List`. It should not contain the word `Awesome`. - ✅ `Add Swift` - ✅ `Add Software Architecture` - ❌ `Update readme.md` @@ -39,7 +40,6 @@ ## Requirements for your Awesome list - **Has been around for at least 30 days.**
That means 30 days from either the first real commit or when it was open-sourced. Whatever is most recent. -- Don't open a Draft / WIP pull request while you work on the guidelines. A pull request should be 100% ready and should adhere to all the guidelines when you open it. **Instead use [#2242](https://github.com/sindresorhus/awesome/issues/2242) for incubation visibility**. - Run [`awesome-lint`](https://github.com/sindresorhus/awesome-lint) on your list and fix the reported issues. If there are false-positives or things that cannot/shouldn't be fixed, please [report it](https://github.com/sindresorhus/awesome-lint/issues/new). - The default branch should be named [`main`, not `master`](https://www.zdnet.com/article/github-to-replace-master-with-alternative-term-to-avoid-slavery-references/). - **Includes a succinct description of the project/theme at the top of the readme.** [(Example)](https://github.com/willempienaar/awesome-quantified-self) @@ -94,8 +94,8 @@ - The link and description are separated by a dash.
Example: `- [AVA](…) - JavaScript test runner.` - The description starts with an uppercase character and ends with a period. - Consistent and correct naming. For example, `Node.js`, not `NodeJS` or `node.js`. -- Doesn't use [hard-wrapping](https://stackoverflow.com/questions/319925/difference-between-hard-wrap-and-soft-wrap). -- Doesn't include a Travis badge.
You can still use Travis for list linting, but the badge has no value in the readme. -- Doesn't include an `Inspired by awesome-foo` or `Inspired by the Awesome project` kinda link at the top of the readme. The Awesome badge is enough. +- Does not use [hard-wrapping](https://stackoverflow.com/questions/319925/difference-between-hard-wrap-and-soft-wrap). +- Does not include a CI (e.g. GitHub Actions) badge.
You can still use a CI for linting, but the badge has no value in the readme. +- Does not include an `Inspired by awesome-foo` or `Inspired by the Awesome project` kinda link at the top of the readme. The Awesome badge is enough. **Go to the top and read it again.** From 76c17b22cc9d6b7ce9274cb3daf7c0141c6b6bda Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sat, 18 Feb 2023 16:59:12 +0700 Subject: [PATCH 100/191] Meta tweaks --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 0583782124..284402233a 100644 --- a/readme.md +++ b/readme.md @@ -17,9 +17,9 @@ Check out my latest app

- Any Text + Today
- Put any text on your iPhone's Lock Screen + Quickly view your schedule in the macOS menu bar


From 283d6d531fdc798f45726187e9037d85d4189c11 Mon Sep 17 00:00:00 2001 From: Eric Carboni Date: Fri, 10 Mar 2023 14:28:06 -0500 Subject: [PATCH 101/191] Remove dead link (#2546) --- readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/readme.md b/readme.md index 284402233a..b1103c9739 100644 --- a/readme.md +++ b/readme.md @@ -904,7 +904,6 @@ ## Related - [All Awesome Lists](https://github.com/topics/awesome) - All the Awesome lists on GitHub. -- [Awesome Indexed](https://awesome-indexed.mathew-davies.co.uk) - Search the Awesome dataset. - [Awesome Search](https://awesomelists.top) - Quick search for Awesome lists. - [StumbleUponAwesome](https://github.com/basharovV/StumbleUponAwesome) - Discover random pages from the Awesome dataset using a browser extension. - [Awesome CLI](https://github.com/umutphp/awesome-cli) - A simple command-line tool to dive into Awesome lists. From 81a63043156b3ae8fd8b77d4151dc10ed2090ea3 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 13 Mar 2023 01:09:50 +0700 Subject: [PATCH 102/191] Meta tweaks --- readme.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/readme.md b/readme.md index b1103c9739..52ed2fb686 100644 --- a/readme.md +++ b/readme.md @@ -135,6 +135,22 @@

+
+ +
+ SerpApi +
+ API to get search engine results with ease. +
+ +
+ SerpApi +
+ API to get search engine results with ease. +
+
+
+



From b26d26bd1ad3e80f971edd78640d5a98b2c8e875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Mon, 13 Mar 2023 08:17:37 +0100 Subject: [PATCH 103/191] Use checkbox list for pull request template (#2551) --- pull_request_template.md | 64 ++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/pull_request_template.md b/pull_request_template.md index 5cd28abd4f..f0d1188c24 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -12,12 +12,12 @@ ## Requirements for your pull request -- Don't open a Draft / WIP pull request while you work on the guidelines. A pull request should be 100% ready and should adhere to all the guidelines when you open it. **Instead use [#2242](https://github.com/sindresorhus/awesome/issues/2242) for incubation visibility**. -- **Don't waste my time.** Do a good job, adhere to all the guidelines, and be responsive. -- **You have to review at least 2 other [open pull requests](https://github.com/sindresorhus/awesome/pulls?q=is%3Apr+is%3Aopen).** +- [ ] Don't open a Draft / WIP pull request while you work on the guidelines. A pull request should be 100% ready and should adhere to all the guidelines when you open it. **Instead use [#2242](https://github.com/sindresorhus/awesome/issues/2242) for incubation visibility**. +- [ ] **Don't waste my time.** Do a good job, adhere to all the guidelines, and be responsive. +- [ ] **You have to review at least 2 other [open pull requests](https://github.com/sindresorhus/awesome/pulls?q=is%3Apr+is%3Aopen).** Try to prioritize unreviewed PRs, but you can also add more comments to reviewed PRs. Go through the below list when reviewing. This requirement is meant to help make the Awesome project self-sustaining. Comment here which PRs you reviewed. You're expected to put a good effort into this and to be thorough. Look at previous PR reviews for inspiration. **Just commenting “looks good” or simply marking the pull request as approved does not count!** You have to actually point out mistakes or improvement suggestions. Comments pointing out lint violation are allowed, but does **not** count as a review. -- You have read and understood the [instructions for creating a list](https://github.com/sindresorhus/awesome/blob/main/create-list.md). -- This pull request has a title in the format `Add Name of List`. It should not contain the word `Awesome`. +- [ ] You have read and understood the [instructions for creating a list](https://github.com/sindresorhus/awesome/blob/main/create-list.md). +- [ ] This pull request has a title in the format `Add Name of List`. It should not contain the word `Awesome`. - ✅ `Add Swift` - ✅ `Add Software Architecture` - ❌ `Update readme.md` @@ -26,76 +26,76 @@ - ❌ `add Swift` - ❌ `Adding Swift` - ❌ `Added Swift` -- Your entry here should include a short description about the project/theme of the list. **It should not describe the list itself.** The first character should be uppercase and the description should end in a dot. It should be an objective description and not a tagline or marketing blurb. +- [ ] Your entry here should include a short description about the project/theme of the list. **It should not describe the list itself.** The first character should be uppercase and the description should end in a dot. It should be an objective description and not a tagline or marketing blurb. - ✅ `- [iOS](…) - Mobile operating system for Apple phones and tablets.` - ✅ `- [Framer](…) - Prototyping interactive UI designs.` - ❌ `- [iOS](…) - Resources and tools for iOS development.` - ❌ `- [Framer](…)` - ❌ `- [Framer](…) - prototyping interactive UI designs` -- Your entry should be added at the bottom of the appropriate category. -- The title of your entry should be title-cased and the URL to your list should end in `#readme`. +- [ ] Your entry should be added at the bottom of the appropriate category. +- [ ] The title of your entry should be title-cased and the URL to your list should end in `#readme`. - Example: `- [Software Architecture](https://github.com/simskij/awesome-software-architecture#readme) - The discipline of designing and building software.` -- The suggested Awesome list complies with the below requirements. +- [ ] The suggested Awesome list complies with the below requirements. ## Requirements for your Awesome list -- **Has been around for at least 30 days.**
That means 30 days from either the first real commit or when it was open-sourced. Whatever is most recent. -- Run [`awesome-lint`](https://github.com/sindresorhus/awesome-lint) on your list and fix the reported issues. If there are false-positives or things that cannot/shouldn't be fixed, please [report it](https://github.com/sindresorhus/awesome-lint/issues/new). -- The default branch should be named [`main`, not `master`](https://www.zdnet.com/article/github-to-replace-master-with-alternative-term-to-avoid-slavery-references/). -- **Includes a succinct description of the project/theme at the top of the readme.** [(Example)](https://github.com/willempienaar/awesome-quantified-self) +- [ ] **Has been around for at least 30 days.**
That means 30 days from either the first real commit or when it was open-sourced. Whatever is most recent. +- [ ] Run [`awesome-lint`](https://github.com/sindresorhus/awesome-lint) on your list and fix the reported issues. If there are false-positives or things that cannot/shouldn't be fixed, please [report it](https://github.com/sindresorhus/awesome-lint/issues/new). +- [ ] The default branch should be named [`main`, not `master`](https://www.zdnet.com/article/github-to-replace-master-with-alternative-term-to-avoid-slavery-references/). +- [ ] **Includes a succinct description of the project/theme at the top of the readme.** [(Example)](https://github.com/willempienaar/awesome-quantified-self) - ✅ `Mobile operating system for Apple phones and tablets.` - ✅ `Prototyping interactive UI designs.` - ❌ `Resources and tools for iOS development.` - ❌ `Awesome Framer packages and tools.` -- It's the result of hard work and the best I could possibly produce. +- [ ] It's the result of hard work and the best I could possibly produce. **If you have not put in considerable effort into your list, your pull request will be immediately closed.** -- The repo name of your list should be in lowercase slug format: `awesome-name-of-list`. +- [ ] The repo name of your list should be in lowercase slug format: `awesome-name-of-list`. - ✅ `awesome-swift` - ✅ `awesome-web-typography` - ❌ `awesome-Swift` - ❌ `AwesomeWebTypography` -- The heading title of your list should be in [title case](https://capitalizemytitle.com/) format: `# Awesome Name of List`. +- [ ] The heading title of your list should be in [title case](https://capitalizemytitle.com/) format: `# Awesome Name of List`. - ✅ `# Awesome Swift` - ✅ `# Awesome Web Typography` - ❌ `# awesome-swift` - ❌ `# AwesomeSwift` -- Non-generated Markdown file in a GitHub repo. -- The repo should have `awesome-list` & `awesome` as [GitHub topics](https://help.github.com/articles/about-topics). I encourage you to add more relevant topics. -- Not a duplicate. Please search for existing submissions. -- Only has awesome items. Awesome lists are curations of the best, not everything. -- Does not contain items that are unmaintained, has archived repo, deprecated, or missing docs. If you really need to include such items, they should be in a separate Markdown file. -- Includes a project logo/illustration whenever possible. +- [ ] Non-generated Markdown file in a GitHub repo. +- [ ] The repo should have `awesome-list` & `awesome` as [GitHub topics](https://help.github.com/articles/about-topics). I encourage you to add more relevant topics. +- [ ] Not a duplicate. Please search for existing submissions. +- [ ] Only has awesome items. Awesome lists are curations of the best, not everything. +- [ ] Does not contain items that are unmaintained, has archived repo, deprecated, or missing docs. If you really need to include such items, they should be in a separate Markdown file. +- [ ] Includes a project logo/illustration whenever possible. - Either centered, fullwidth, or placed at the top-right of the readme. [(Example)](https://github.com/sindresorhus/awesome-electron) - The image should link to the project website or any relevant website. - **The image should be high-DPI.** Set it to maximum half the width of the original image. -- Entries have a description, unless the title is descriptive enough by itself. It rarely is though. -- Includes the [Awesome badge](https://github.com/sindresorhus/awesome/blob/main/awesome.md#awesome-badge). +- [ ] Entries have a description, unless the title is descriptive enough by itself. It rarely is though. +- [ ] Includes the [Awesome badge](https://github.com/sindresorhus/awesome/blob/main/awesome.md#awesome-badge). - Should be placed on the right side of the readme heading. - Can be placed centered if the list has a centered graphics header. - Should link back to this list. -- Has a Table of Contents section. +- [ ] Has a Table of Contents section. - Should be named `Contents`, not `Table of Contents`. - Should be the first section in the list. - Should only have one level of [nested lists](https://commonmark.org/help/tutorial/10-nestedLists.html), preferably none. - Must not feature `Contributing` or `Footnotes` sections. -- Has an appropriate license. +- [ ] Has an appropriate license. - **We strongly recommend the [CC0 license](https://creativecommons.org/publicdomain/zero/1.0/), but any [Creative Commons license](https://creativecommons.org/choose/) will work.** - Tip: You can quickly add it to your repo by going to this URL: `https://github.com///community/license/new?branch=main&template=cc0-1.0` (replace `` and `` accordingly). - A code license like MIT, BSD, Apache, GPL, etc, is not acceptable. Neither are WTFPL and [Unlicense](https://unlicense.org). - Place a file named `license` or `LICENSE` in the repo root with the license text. - **Do not** add the license name, text, or a `Licence` section to the readme. GitHub already shows the license name and link to the full text at the top of the repo. - To verify that you've read all the guidelines, please comment on your pull request with just the word `unicorn`. -- Has [contribution guidelines](https://github.com/sindresorhus/awesome/blob/main/awesome.md#include-contribution-guidelines). +- [ ] Has [contribution guidelines](https://github.com/sindresorhus/awesome/blob/main/awesome.md#include-contribution-guidelines). - The file should be named `contributing.md`. Casing is up to you. - It can optionally be linked from the readme in a dedicated section titled `Contributing`, positioned at the top or bottom of the main content. - The section should not appear in the Table of Contents. -- All non-important but necessary content (like extra copyright notices, hyperlinks to sources, pointers to expansive content, etc) should be grouped in a `Footnotes` section at the bottom of the readme. The section should not be present in the Table of Contents. -- Has consistent formatting and proper spelling/grammar. +- [ ] All non-important but necessary content (like extra copyright notices, hyperlinks to sources, pointers to expansive content, etc) should be grouped in a `Footnotes` section at the bottom of the readme. The section should not be present in the Table of Contents. +- [ ] Has consistent formatting and proper spelling/grammar. - The link and description are separated by a dash.
Example: `- [AVA](…) - JavaScript test runner.` - The description starts with an uppercase character and ends with a period. - Consistent and correct naming. For example, `Node.js`, not `NodeJS` or `node.js`. -- Does not use [hard-wrapping](https://stackoverflow.com/questions/319925/difference-between-hard-wrap-and-soft-wrap). -- Does not include a CI (e.g. GitHub Actions) badge.
You can still use a CI for linting, but the badge has no value in the readme. -- Does not include an `Inspired by awesome-foo` or `Inspired by the Awesome project` kinda link at the top of the readme. The Awesome badge is enough. +- [ ] Does not use [hard-wrapping](https://stackoverflow.com/questions/319925/difference-between-hard-wrap-and-soft-wrap). +- [ ] Does not include a CI (e.g. GitHub Actions) badge.
You can still use a CI for linting, but the badge has no value in the readme. +- [ ] Does not include an `Inspired by awesome-foo` or `Inspired by the Awesome project` kinda link at the top of the readme. The Awesome badge is enough. **Go to the top and read it again.** From 94d1068e6d6447c8988022fd72168c7e4255b367 Mon Sep 17 00:00:00 2001 From: Oleg Lavrovsky <31819+loleg@users.noreply.github.com> Date: Sun, 23 Apr 2023 10:31:52 +0200 Subject: [PATCH 104/191] Add Hackathon (#2433) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 52ed2fb686..f2e512afa6 100644 --- a/readme.md +++ b/readme.md @@ -660,6 +660,7 @@ - [Product Management](https://github.com/dend/awesome-product-management#readme) - Learn how to be a better product manager. - [Roadmaps](https://github.com/liuchong/awesome-roadmaps#readme) - Gives you a clear route to improve your knowledge and skills. - [YouTubers](https://github.com/JoseDeFreitas/awesome-youtubers#readme) - Watch video tutorials from YouTubers that teach you about technology. +- [Hackathon](https://github.com/dribdat/awesome-hackathon#readme) - Running fun and productive hackathons. ## Security From 572026c53f6f420982cf43ae4f4d365a8067fc6b Mon Sep 17 00:00:00 2001 From: bytecauldron Date: Sun, 23 Apr 2023 12:55:21 -0500 Subject: [PATCH 105/191] Add GameMaker (#2448) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index f2e512afa6..bd87f1f1e7 100644 --- a/readme.md +++ b/readme.md @@ -574,6 +574,7 @@ - [Games of Coding](https://github.com/michelpereira/awesome-games-of-coding#readme) - Learn a programming language by making games. - [Esports](https://github.com/strift/awesome-esports#readme) - Video games played as a sport. - [Learn Gamedev](https://github.com/notpresident35/awesome-learn-gamedev#readme) - The craft of video game creation. +- [GameMaker](https://github.com/bytecauldron/awesome-gamemaker#readme) - Game engine. ## Development Environment From 8eba3f354b2d90ae22cf44428fd927de006a3f2b Mon Sep 17 00:00:00 2001 From: Waleed Sadek <62147992+waleedsadek-panx@users.noreply.github.com> Date: Sun, 23 Apr 2023 20:36:05 +0200 Subject: [PATCH 106/191] Add Certificates (#2463) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index bd87f1f1e7..a2e8f67ba2 100644 --- a/readme.md +++ b/readme.md @@ -662,6 +662,7 @@ - [Roadmaps](https://github.com/liuchong/awesome-roadmaps#readme) - Gives you a clear route to improve your knowledge and skills. - [YouTubers](https://github.com/JoseDeFreitas/awesome-youtubers#readme) - Watch video tutorials from YouTubers that teach you about technology. - [Hackathon](https://github.com/dribdat/awesome-hackathon#readme) - Running fun and productive hackathons. +- [Certificates](https://github.com/PanXProject/awesome-certificates#readme) - Free computer science certifications to showcase your knowledge. ## Security From 4c6bfd9c17dc3ae6cecfcddb71a7fd6d0ab5ec2d Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Sun, 23 Apr 2023 22:46:20 +0300 Subject: [PATCH 107/191] Add GitHub Wiki (#2383) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index a2e8f67ba2..6d1c5f685f 100644 --- a/readme.md +++ b/readme.md @@ -819,6 +819,7 @@ - [Sketch](https://github.com/diessica/awesome-sketch#readme) - Design app for macOS. - [Boilerplate Projects](https://github.com/melvin0008/awesome-projects-boilerplates#readme) - [Readme](https://github.com/matiassingers/awesome-readme#readme) +- [GitHub Wiki](https://github.com/MyHoneyBadger/awesome-github-wiki#readme) - Comprehensive documentation on GitHub beyond README. - [Design and Development Guides](https://github.com/NARKOZ/guides#readme) - [Software Engineering Blogs](https://github.com/kilimchoi/engineering-blogs#readme) - [Self Hosted](https://github.com/awesome-selfhosted/awesome-selfhosted#readme) From fe3210d42188e1f20cd8184f738957beb127291b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Mon, 24 Apr 2023 21:43:58 +0200 Subject: [PATCH 108/191] Add Quarto (#2550) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 6d1c5f685f..7d50368549 100644 --- a/readme.md +++ b/readme.md @@ -920,6 +920,7 @@ - [Computational Geometry](https://github.com/atkirtland/awesome-computational-geometry#readme) - Computational approaches for problems in geometry. - [OpenStreetMap](https://github.com/osmlab/awesome-openstreetmap#readme) - An open data mapping project utilized by many apps and devices. - [Computational Biology](https://github.com/inoue0426/awesome-computational-biology#readme) - Computational approaches applied to problems in biology. +- [Quarto](https://github.com/mcanouil/awesome-quarto#readme) - Scientific and technical open-source publishing system built on Pandoc. ## Related From 78bde71c34e21954ae2a526fb5e9d3f9be2c0eec Mon Sep 17 00:00:00 2001 From: Benjamin Balder Bach Date: Mon, 8 May 2023 21:31:52 +0200 Subject: [PATCH 109/191] Add Read the Docs (#2424) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 7d50368549..c6e71e277e 100644 --- a/readme.md +++ b/readme.md @@ -920,6 +920,7 @@ - [Computational Geometry](https://github.com/atkirtland/awesome-computational-geometry#readme) - Computational approaches for problems in geometry. - [OpenStreetMap](https://github.com/osmlab/awesome-openstreetmap#readme) - An open data mapping project utilized by many apps and devices. - [Computational Biology](https://github.com/inoue0426/awesome-computational-biology#readme) - Computational approaches applied to problems in biology. +- [Read the Docs](https://github.com/readthedocs-examples/awesome-read-the-docs#readme) - Example documentation projects to inspire and help bootstrap new documentation projects. - [Quarto](https://github.com/mcanouil/awesome-quarto#readme) - Scientific and technical open-source publishing system built on Pandoc. ## Related From 6fec0ad89bc2e26922d47cb9a5bba54bcc7fae26 Mon Sep 17 00:00:00 2001 From: Vladimir Klepov Date: Fri, 19 May 2023 13:35:17 +0300 Subject: [PATCH 110/191] Add Tiny JS (#2571) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c6e71e277e..e1a1fcaf98 100644 --- a/readme.md +++ b/readme.md @@ -430,6 +430,7 @@ - [MDBootstrap](https://github.com/mdbootstrap/awesome-mdbootstrap#readme) - Templates, layouts, components, and widgets to rapidly build websites. - [Master CSS](https://github.com/master-co/awesome-master-css#readme) - A virtual CSS language with enhanced syntax. - [Hydrogen](https://github.com/shopify/awesome-hydrogen#readme) - Edge-first framework for building Shopify storefronts with React. +- [Tiny JS](https://github.com/thoughtspile/awesome-tiny-js#readme) - Frontend libraries that fit into 2 kB with dependencies. ## Back-End Development From 14874c92be830d4b0fe81290f6f1789157318adb Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Fri, 5 May 2023 01:48:57 +0700 Subject: [PATCH 111/191] Meta tweaks --- readme.md | 68 ++----------------------------------------------------- 1 file changed, 2 insertions(+), 66 deletions(-) diff --git a/readme.md b/readme.md index e1a1fcaf98..d222b170bb 100644 --- a/readme.md +++ b/readme.md @@ -17,9 +17,9 @@ Check out my latest app

- Today + Hyperduck
- Quickly view your schedule in the macOS menu bar + Send links from your iOS devices to your Mac (better than AirDrop)


@@ -72,70 +72,6 @@

- -
- bit.io -
- Instant, shareable cloud PostgreSQL database -
- Import any dataset in seconds, share with anyone with a click, try without signing up -
-
-
-
-
- -
- Stream -
-
-
- Build Scalable Feeds & Chat Applications with Powerful APIs and Front End Components -
-
- -
- Stream -
-
-
- Build Scalable Feeds & Chat Applications with Powerful APIs and Front End Components -
-
-
-
-
- -
- Anvil -
-
- Paperwork that makes the data work. -
- - Easy APIs for paperwork. PDF generation, e-signature and embeddable no-code webforms. -
- The easiest way to build paperwork automation into your product. -
-
-
- -
- Anvil -
-
- Paperwork that makes the data work. -
- - Easy APIs for paperwork. PDF generation, e-signature and embeddable no-code webforms. -
- The easiest way to build paperwork automation into your product. -
-
-
-
-
-
SerpApi From e75eddb0c0f47cb680ca9a10c077adac84b86234 Mon Sep 17 00:00:00 2001 From: Matthias84 Date: Tue, 20 Jun 2023 15:12:57 +0200 Subject: [PATCH 112/191] Add Flying FPV (#2400) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index d222b170bb..587205fc0c 100644 --- a/readme.md +++ b/readme.md @@ -650,6 +650,7 @@ - [Robotic Tooling](https://github.com/protontypes/awesome-robotic-tooling#readme) - Free and open tools for professional robotic development. - [LIDAR](https://github.com/szenergy/awesome-lidar#readme) - Sensor for measuring distances by illuminating the target with laser light. - [Open Hardware](https://github.com/delftopenhardware/awesome-open-hardware#readme) - Open-source hardware projects. +- [Flying FPV](https://github.com/Matthias84/awesome-flying-fpv#readme) - Open hardware and software related to drones / UAVs. ## Business From a0b0a2ce01cd7e9809089e4bf0d55367c473f7f7 Mon Sep 17 00:00:00 2001 From: Rahul Bir <30447336+RahulBirCodes@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:06:40 -0700 Subject: [PATCH 113/191] Add STEAM (#2453) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 587205fc0c..56e102cb1e 100644 --- a/readme.md +++ b/readme.md @@ -592,6 +592,7 @@ - [Dive into Machine Learning](https://github.com/hangtwenty/dive-into-machine-learning#readme) - [Computer History](https://github.com/watson/awesome-computer-history#readme) - [Programming for Kids](https://github.com/HollyAdele/awesome-programming-for-kids#readme) +- [STEAM](https://github.com/RahulBirCodes/awesome-steam#readme) - Supplements for specific science, technology, engineering, arts, and math (STEAM) courses across all grade levels. - [Educational Games](https://github.com/yrgo/awesome-educational-games#readme) - Learn while playing. - [JavaScript Learning](https://github.com/micromata/awesome-javascript-learning#readme) - [CSS Learning](https://github.com/micromata/awesome-css-learning#readme) - Mainly about CSS – the language and the modules. From 777789373bfa609fb4a80a4446bc1f6858bd89fd Mon Sep 17 00:00:00 2001 From: Sascha Steinbiss Date: Wed, 21 Jun 2023 12:01:47 +0200 Subject: [PATCH 114/191] Add Suricata (#2454) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 56e102cb1e..57aa80980b 100644 --- a/readme.md +++ b/readme.md @@ -626,6 +626,7 @@ - [Malware Persistence](https://github.com/Karneades/awesome-malware-persistence#readme) - Techniques that adversaries use to keep access to systems across restarts. - [EVM Security](https://github.com/kareniel/awesome-evm-security#readme) - Understanding the Ethereum Virtual Machine security ecosystem. - [Password Cracking](https://github.com/n0kovo/awesome-password-cracking#readme) - The process of recovering passwords from data that has been stored in or transmitted by a system in scrambled form. +- [Suricata](https://github.com/satta/awesome-suricata#readme) - Intrusion detection/prevention system and network security monitoring engine. ## Content Management Systems From 1a8fd64c387e3129cfeb4d3422b847e1691b7bd8 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Wed, 21 Jun 2023 12:07:48 +0200 Subject: [PATCH 115/191] Add Cosmos SDK (#2686) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 57aa80980b..da19691853 100644 --- a/readme.md +++ b/readme.md @@ -707,6 +707,7 @@ - [Stacks](https://github.com/friedger/awesome-stacks-chain#readme) - A smart contract platform secured by Bitcoin. - [Algorand](https://github.com/aorumbayev/awesome-algorand#readme) - An open-source, proof of stake blockchain and smart contract computing platform. - [ZeroNet](https://github.com/zolagonano/awesome-zeronet#readme) - A decentralized web-like network of peer-to-peer users. +- [Cosmos SDK](https://github.com/cosmos/awesome-cosmos#readme) - Modular framework for building app-specific blockchains in Go. ## Health and Social Science From 16c1cc65affead7fd90696cee39f3f54c31cc128 Mon Sep 17 00:00:00 2001 From: Andreas Hunkeler Date: Wed, 21 Jun 2023 12:16:28 +0200 Subject: [PATCH 116/191] Add Security Card Games (#2498) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index da19691853..36ca17267f 100644 --- a/readme.md +++ b/readme.md @@ -626,6 +626,7 @@ - [Malware Persistence](https://github.com/Karneades/awesome-malware-persistence#readme) - Techniques that adversaries use to keep access to systems across restarts. - [EVM Security](https://github.com/kareniel/awesome-evm-security#readme) - Understanding the Ethereum Virtual Machine security ecosystem. - [Password Cracking](https://github.com/n0kovo/awesome-password-cracking#readme) - The process of recovering passwords from data that has been stored in or transmitted by a system in scrambled form. +- [Security Card Games](https://github.com/Karneades/awesome-security-card-games#readme) - Train your skills and discuss various security topics. - [Suricata](https://github.com/satta/awesome-suricata#readme) - Intrusion detection/prevention system and network security monitoring engine. ## Content Management Systems From 28a36d686525e55c44183e4a1094dad1e6a56891 Mon Sep 17 00:00:00 2001 From: Vitalii <5185770+vhladiienko@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:32:17 +0300 Subject: [PATCH 117/191] Add Game Production (#2509) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 36ca17267f..a0c38760ef 100644 --- a/readme.md +++ b/readme.md @@ -512,6 +512,7 @@ - [Esports](https://github.com/strift/awesome-esports#readme) - Video games played as a sport. - [Learn Gamedev](https://github.com/notpresident35/awesome-learn-gamedev#readme) - The craft of video game creation. - [GameMaker](https://github.com/bytecauldron/awesome-gamemaker#readme) - Game engine. +- [Game Production](https://github.com/vhladiienko/awesome-game-production#readme) - Leading the process of designing, developing, testing and distributing a video game from concept to release. ## Development Environment From 7c4bdffb5fdf98a456f9469cf1769b0802db6d71 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 21 Jun 2023 13:41:53 +0300 Subject: [PATCH 118/191] Update guidelines --- pull_request_template.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pull_request_template.md b/pull_request_template.md index f0d1188c24..6c2508fcca 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -35,6 +35,7 @@ - [ ] Your entry should be added at the bottom of the appropriate category. - [ ] The title of your entry should be title-cased and the URL to your list should end in `#readme`. - Example: `- [Software Architecture](https://github.com/simskij/awesome-software-architecture#readme) - The discipline of designing and building software.` +- [ ] No blockchain-related lists. - [ ] The suggested Awesome list complies with the below requirements. ## Requirements for your Awesome list From 392719856b008969163faab5439ca95bd4ab5158 Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Wed, 21 Jun 2023 13:03:21 +0200 Subject: [PATCH 119/191] Add ADS-B (#2567) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index a0c38760ef..bab81f339a 100644 --- a/readme.md +++ b/readme.md @@ -654,6 +654,7 @@ - [Robotic Tooling](https://github.com/protontypes/awesome-robotic-tooling#readme) - Free and open tools for professional robotic development. - [LIDAR](https://github.com/szenergy/awesome-lidar#readme) - Sensor for measuring distances by illuminating the target with laser light. - [Open Hardware](https://github.com/delftopenhardware/awesome-open-hardware#readme) - Open-source hardware projects. +- [ADS-B](https://github.com/rickstaa/awesome-adsb#readme) - Technology broadcasting aircraft's identity, position, and data periodically. - [Flying FPV](https://github.com/Matthias84/awesome-flying-fpv#readme) - Open hardware and software related to drones / UAVs. ## Business From 050d069408986a86dab5f2e3eb37a96ad5685eb9 Mon Sep 17 00:00:00 2001 From: Stephens Nunnally <43077547+stevinz@users.noreply.github.com> Date: Thu, 22 Jun 2023 04:10:11 -0700 Subject: [PATCH 120/191] Add Game Engine Development (#2482) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index bab81f339a..e88495e1aa 100644 --- a/readme.md +++ b/readme.md @@ -511,6 +511,7 @@ - [Games of Coding](https://github.com/michelpereira/awesome-games-of-coding#readme) - Learn a programming language by making games. - [Esports](https://github.com/strift/awesome-esports#readme) - Video games played as a sport. - [Learn Gamedev](https://github.com/notpresident35/awesome-learn-gamedev#readme) - The craft of video game creation. +- [Game Engine Development](https://github.com/stevinz/awesome-game-engine-dev#readme) - Building software to speed up game creation. - [GameMaker](https://github.com/bytecauldron/awesome-gamemaker#readme) - Game engine. - [Game Production](https://github.com/vhladiienko/awesome-game-production#readme) - Leading the process of designing, developing, testing and distributing a video game from concept to release. From 5c9fded233a5332143ae18fe8f37552148c6647a Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 29 Jun 2023 13:56:09 +0200 Subject: [PATCH 121/191] Add ChatGPT --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index e88495e1aa..31abd109c4 100644 --- a/readme.md +++ b/readme.md @@ -867,6 +867,7 @@ - [Computational Biology](https://github.com/inoue0426/awesome-computational-biology#readme) - Computational approaches applied to problems in biology. - [Read the Docs](https://github.com/readthedocs-examples/awesome-read-the-docs#readme) - Example documentation projects to inspire and help bootstrap new documentation projects. - [Quarto](https://github.com/mcanouil/awesome-quarto#readme) - Scientific and technical open-source publishing system built on Pandoc. +- [ChatGPT](https://github.com/sindresorhus/awesome-chatgpt#readme) - Artificial intelligence chatbot developed by OpenAI. ## Related From 3a05b85ac2c175bce22f4cc791539f24d2ab06b3 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 29 Jun 2023 13:57:16 +0200 Subject: [PATCH 122/191] Add Whisper --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 31abd109c4..2597069284 100644 --- a/readme.md +++ b/readme.md @@ -868,6 +868,7 @@ - [Read the Docs](https://github.com/readthedocs-examples/awesome-read-the-docs#readme) - Example documentation projects to inspire and help bootstrap new documentation projects. - [Quarto](https://github.com/mcanouil/awesome-quarto#readme) - Scientific and technical open-source publishing system built on Pandoc. - [ChatGPT](https://github.com/sindresorhus/awesome-chatgpt#readme) - Artificial intelligence chatbot developed by OpenAI. +- [Whisper](https://github.com/sindresorhus/awesome-whisper#readme) - Open-source AI-powered speech recognition system developed by OpenAI. ## Related From 7a3c09580eaad3842705d42f6eb1157da30f6982 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 27 Jul 2023 01:04:04 +0200 Subject: [PATCH 123/191] Meta tweaks --- readme.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 2597069284..2767b00fbd 100644 --- a/readme.md +++ b/readme.md @@ -17,9 +17,9 @@ Check out my latest app

- Hyperduck + Camera Preview
- Send links from your iOS devices to your Mac (better than AirDrop) + Preview your Mac's webcam and take photos


@@ -87,6 +87,16 @@


+ + + + + Transloadit logo + + +
+
+



From efc8cefb820d47fa818d192c42ebd98c1bbdc407 Mon Sep 17 00:00:00 2001 From: Francesco Sardone Date: Sun, 24 Sep 2023 19:54:28 +0200 Subject: [PATCH 124/191] Add Steam Deck (#2743) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 2767b00fbd..6324b90c2a 100644 --- a/readme.md +++ b/readme.md @@ -879,6 +879,7 @@ - [Quarto](https://github.com/mcanouil/awesome-quarto#readme) - Scientific and technical open-source publishing system built on Pandoc. - [ChatGPT](https://github.com/sindresorhus/awesome-chatgpt#readme) - Artificial intelligence chatbot developed by OpenAI. - [Whisper](https://github.com/sindresorhus/awesome-whisper#readme) - Open-source AI-powered speech recognition system developed by OpenAI. +- [Steam Deck](https://github.com/airscripts/awesome-steam-deck#readme) - A handheld gaming computer developed by Valve. ## Related From 4e1a1fcc75ac3756b0eb68b61bca97dfe7e32641 Mon Sep 17 00:00:00 2001 From: Edwin Kofler Date: Fri, 6 Oct 2023 21:11:37 -0700 Subject: [PATCH 125/191] Update link to Awesome Mastodon (#2739) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 6324b90c2a..d6cd16a457 100644 --- a/readme.md +++ b/readme.md @@ -710,7 +710,7 @@ - [Bitcoin](https://github.com/igorbarinov/awesome-bitcoin#readme) - Bitcoin services and tools for software developers. - [Ripple](https://github.com/vhpoet/awesome-ripple#readme) - Open source distributed settlement network. - [Non-Financial Blockchain](https://github.com/machinomy/awesome-non-financial-blockchain#readme) - Non-financial blockchain applications. -- [Mastodon](https://github.com/tleb/awesome-mastodon#readme) - Open source decentralized microblogging network. +- [Mastodon](https://github.com/hyperupcall/awesome-mastodon#readme) - Open source decentralized microblogging network. - [Ethereum](https://github.com/ttumiel/Awesome-Ethereum#readme) - Distributed computing platform for smart contract development. - [Blockchain AI](https://github.com/steven2358/awesome-blockchain-ai#readme) - Blockchain projects for artificial intelligence and machine learning. - [EOSIO](https://github.com/DanailMinchev/awesome-eosio#readme) - A decentralized operating system supporting industrial-scale apps. From ee60acf76eca5a22bfe41d26f2dca09a750a085a Mon Sep 17 00:00:00 2001 From: Tomas Tauber <2410580+tomtau@users.noreply.github.com> Date: Sat, 14 Oct 2023 23:35:28 +0800 Subject: [PATCH 126/191] Add Pest (#2601) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index d6cd16a457..cb06e2b34e 100644 --- a/readme.md +++ b/readme.md @@ -244,6 +244,7 @@ - [Typing](https://github.com/typeddjango/awesome-python-typing#readme) - Optional static typing for Python. - [MicroPython](https://github.com/mcauser/awesome-micropython#readme) - A lean and efficient implementation of Python 3 for microcontrollers. - [Rust](https://github.com/rust-unofficial/awesome-rust#readme) + - [Pest](https://github.com/pest-parser/awesome-pest#readme) - Parser generator. - [Haskell](https://github.com/krispo/awesome-haskell#readme) - [PureScript](https://github.com/passy/awesome-purescript#readme) - [Go](https://github.com/avelino/awesome-go#readme) From 07510cb399a179d05069feef89bb40d7944c8dcf Mon Sep 17 00:00:00 2001 From: akail Date: Sat, 14 Oct 2023 11:58:54 -0400 Subject: [PATCH 127/191] Add HPC (#2640) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index cb06e2b34e..a93c0d2778 100644 --- a/readme.md +++ b/readme.md @@ -881,6 +881,7 @@ - [ChatGPT](https://github.com/sindresorhus/awesome-chatgpt#readme) - Artificial intelligence chatbot developed by OpenAI. - [Whisper](https://github.com/sindresorhus/awesome-whisper#readme) - Open-source AI-powered speech recognition system developed by OpenAI. - [Steam Deck](https://github.com/airscripts/awesome-steam-deck#readme) - A handheld gaming computer developed by Valve. +- [HPC](https://github.com/dstdev/awesome-hpc#readme) - High Performance Computing. ## Related From 2f7d2c71e6d7e0db8b99288779f78945d8b6c2b4 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sat, 14 Oct 2023 23:00:09 +0700 Subject: [PATCH 128/191] Update guidelines --- awesome.md | 2 ++ pull_request_template.md | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/awesome.md b/awesome.md index c683a8e432..1bae22f960 100644 --- a/awesome.md +++ b/awesome.md @@ -24,6 +24,8 @@ Add an awesome badge to the top of your list, right next to the title. [Example] [![Awesome](https://awesome.re/badge-flat2.svg)](https://awesome.re) ``` +You are allowed to use the badge on lists not included here and also private lists. + *The badges should not be modified in any way.* ## Awesome mentioned badge diff --git a/pull_request_template.md b/pull_request_template.md index 6c2508fcca..72dd17db9d 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -26,7 +26,7 @@ - ❌ `add Swift` - ❌ `Adding Swift` - ❌ `Added Swift` -- [ ] Your entry here should include a short description about the project/theme of the list. **It should not describe the list itself.** The first character should be uppercase and the description should end in a dot. It should be an objective description and not a tagline or marketing blurb. +- [ ] Your entry here should include a short description about the project/theme of the list. **It should not describe the list itself.** The first character should be uppercase and the description should end in a dot. It should be an objective description and not a tagline or marketing blurb. It should not contain the name of the list. - ✅ `- [iOS](…) - Mobile operating system for Apple phones and tablets.` - ✅ `- [Framer](…) - Prototyping interactive UI designs.` - ❌ `- [iOS](…) - Resources and tools for iOS development.` @@ -69,6 +69,7 @@ - Either centered, fullwidth, or placed at the top-right of the readme. [(Example)](https://github.com/sindresorhus/awesome-electron) - The image should link to the project website or any relevant website. - **The image should be high-DPI.** Set it to maximum half the width of the original image. + - Don't include both a title saying `Awesome X` and a logo with `Awesome X`. You can put the header image in a `#` (Markdown header) or `

`. - [ ] Entries have a description, unless the title is descriptive enough by itself. It rarely is though. - [ ] Includes the [Awesome badge](https://github.com/sindresorhus/awesome/blob/main/awesome.md#awesome-badge). - Should be placed on the right side of the readme heading. From 66605ca54d380cd21faaa71cfc08e9d413f0ee62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hallvard=20A=2E=20W=C3=A6hler?= <60000604+hallvaaw@users.noreply.github.com> Date: Sat, 14 Oct 2023 18:20:57 +0200 Subject: [PATCH 129/191] Add Biological Image Analysis (#2620) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index a93c0d2778..bfade508a2 100644 --- a/readme.md +++ b/readme.md @@ -878,6 +878,7 @@ - [Computational Biology](https://github.com/inoue0426/awesome-computational-biology#readme) - Computational approaches applied to problems in biology. - [Read the Docs](https://github.com/readthedocs-examples/awesome-read-the-docs#readme) - Example documentation projects to inspire and help bootstrap new documentation projects. - [Quarto](https://github.com/mcanouil/awesome-quarto#readme) - Scientific and technical open-source publishing system built on Pandoc. +- [Biological Image Analysis](https://github.com/hallvaaw/awesome-biological-image-analysis#readme) - Interpreting biological phenomena using images. - [ChatGPT](https://github.com/sindresorhus/awesome-chatgpt#readme) - Artificial intelligence chatbot developed by OpenAI. - [Whisper](https://github.com/sindresorhus/awesome-whisper#readme) - Open-source AI-powered speech recognition system developed by OpenAI. - [Steam Deck](https://github.com/airscripts/awesome-steam-deck#readme) - A handheld gaming computer developed by Valve. From 957bcf8950210d00b034227a25ca3fe31ea50efa Mon Sep 17 00:00:00 2001 From: Sam Partington Date: Sat, 14 Oct 2023 19:48:27 +0100 Subject: [PATCH 130/191] Move Esolangs into "Programming Languages" section (#2799) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index bfade508a2..0c0c70f5a2 100644 --- a/readme.md +++ b/readme.md @@ -293,6 +293,7 @@ - [V](https://github.com/vlang/awesome-v#readme) - Simple, fast, safe, compiled language for developing maintainable software. - [Zig](https://github.com/catdevnull/awesome-zig#readme) - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. - [Move](https://github.com/MystenLabs/awesome-move#readme) - Domain-specific programming language for writing safe smart contracts. +- [Esolangs](https://github.com/angrykoala/awesome-esolangs#readme) - Programming languages designed for experimentation or as jokes rather than actual use. ## Front-End Development @@ -828,7 +829,6 @@ - [Magento 2](https://github.com/DavidLambauer/awesome-magento2#readme) - Open Source eCommerce built with PHP. - [TikZ](https://github.com/xiaohanyu/awesome-tikz#readme) - Graph drawing packages for TeX/LaTeX/ConTeXt. - [Ad-Free](https://github.com/johnjago/awesome-ad-free#readme) - Ad-free alternatives. -- [Esolangs](https://github.com/angrykoala/awesome-esolangs#readme) - Programming languages designed for experimentation or as jokes rather than actual use. - [Prometheus](https://github.com/roaldnefs/awesome-prometheus#readme) - Open-source monitoring system. - [Homematic](https://github.com/homematic-community/awesome-homematic#readme) - Smart home devices. - [Ledger](https://github.com/sfischer13/awesome-ledger#readme) - Double-entry accounting on the command-line. From e443b28a228c113b1e136b71cb61632642b590f6 Mon Sep 17 00:00:00 2001 From: Hazana Date: Sat, 14 Oct 2023 19:57:02 +0100 Subject: [PATCH 131/191] Add Prompt Injection (#2734) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 0c0c70f5a2..3a88795dad 100644 --- a/readme.md +++ b/readme.md @@ -642,6 +642,7 @@ - [Password Cracking](https://github.com/n0kovo/awesome-password-cracking#readme) - The process of recovering passwords from data that has been stored in or transmitted by a system in scrambled form. - [Security Card Games](https://github.com/Karneades/awesome-security-card-games#readme) - Train your skills and discuss various security topics. - [Suricata](https://github.com/satta/awesome-suricata#readme) - Intrusion detection/prevention system and network security monitoring engine. +- [Prompt Injection](https://github.com/FonduAI/awesome-prompt-injection#readme) - A type of vulnerability that specifically targets machine learning models. ## Content Management Systems From 86a0adeea2d01a15bf83768e04133951aced762b Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 17 Oct 2023 02:45:31 +0700 Subject: [PATCH 132/191] Meta tweaks --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 3a88795dad..c40fa1a441 100644 --- a/readme.md +++ b/readme.md @@ -17,9 +17,9 @@ Check out my latest app

- Camera Preview + One Task
- Preview your Mac's webcam and take photos + Stop procrastination and get stuff done by focusing on one task at a time


From 5201a4acd085ba21df2629fa01ea8188c0890b61 Mon Sep 17 00:00:00 2001 From: Diamantis Sellis Date: Tue, 17 Oct 2023 10:34:03 +0200 Subject: [PATCH 133/191] Add Complexity (#2389) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c40fa1a441..ccc9732363 100644 --- a/readme.md +++ b/readme.md @@ -478,6 +478,7 @@ - [Recursion Schemes](https://github.com/passy/awesome-recursion-schemes#readme) - Traversing nested data structures. - [Audit Algorithms](https://github.com/erwanlemerrer/awesome-audit-algorithms#readme) - Algorithmic audits of algorithms. - [AGI & CoCoSci](https://github.com/YuzheSHI/awesome-agi-cocosci#readme) - The reciprocation of Artificial General Intelligence (AGI) and Computational Cognitive Sciences (CoCoSci). +- [Complex Systems](https://github.com/sellisd/awesome-complexity#readme) - The scientific field studying systems with multiple interacting parts and emergent properties. ## Books From 4abe2c023a7e818376cb9289d983b241ffea274f Mon Sep 17 00:00:00 2001 From: Vivek Gurudutt K <127002789+VivekGuruduttK28@users.noreply.github.com> Date: Thu, 26 Oct 2023 17:12:32 +0530 Subject: [PATCH 134/191] Fix typo (#2834) --- contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing.md b/contributing.md index 1809ee4235..c6935db549 100644 --- a/contributing.md +++ b/contributing.md @@ -4,7 +4,7 @@ Please note that this project is released with a [Contributor Code of Conduct](c ## Adding an awesome list -Please ensure your pull request adheres to the [list guidelines](pull_request_template.md). +Please ensure your pull request adheres to the [list of guidelines](pull_request_template.md). ## Creating your own awesome list From 8e71414aea13959f183b193f0bb62b1034c44fb4 Mon Sep 17 00:00:00 2001 From: S A G A R <110724849+tmsagarofficial@users.noreply.github.com> Date: Thu, 26 Oct 2023 20:29:56 +0530 Subject: [PATCH 135/191] Fix typos (#2835) --- awesome.md | 4 ++-- code-of-conduct.md | 4 ++-- contributing.md | 4 ++-- pull_request_template.md | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/awesome.md b/awesome.md index 1bae22f960..4c92438d47 100644 --- a/awesome.md +++ b/awesome.md @@ -24,7 +24,7 @@ Add an awesome badge to the top of your list, right next to the title. [Example] [![Awesome](https://awesome.re/badge-flat2.svg)](https://awesome.re) ``` -You are allowed to use the badge on lists not included here and also private lists. +You are allowed to use the badge on lists not included here and also on private lists. *The badges should not be modified in any way.* @@ -82,4 +82,4 @@ Create a [table of contents](https://github.com/sindresorhus/stuff/blob/main/toc ## Accept other people's opinion -If you're an owner of the list, respect other people's opinion. If there are plenty of users not agreeing to your decision, give it a second thought. +If you're an owner of the list, respect other people's opinions. If there are plenty of users not agreeing with your decision, give it a second thought. diff --git a/code-of-conduct.md b/code-of-conduct.md index 942d516bfa..506ad0c94a 100644 --- a/code-of-conduct.md +++ b/code-of-conduct.md @@ -26,9 +26,9 @@ Examples of unacceptable behavior by participants include: advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment -* Publishing others' private information, such as a physical or electronic +* Publishing others' private information, such as physical or electronic address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a +* Other conduct that could reasonably be considered inappropriate in a professional setting ## Our Responsibilities diff --git a/contributing.md b/contributing.md index c6935db549..a40af0e79a 100644 --- a/contributing.md +++ b/contributing.md @@ -19,7 +19,7 @@ You'll need a [GitHub account](https://github.com/join)! 1. Access the awesome list's GitHub page. For example: https://github.com/sindresorhus/awesome 2. Click on the `readme.md` file: ![Step 2 Click on Readme.md](https://cloud.githubusercontent.com/assets/170270/9402920/53a7e3ea-480c-11e5-9d81-aecf64be55eb.png) 3. Now click on the edit icon. ![Step 3 - Click on Edit](https://cloud.githubusercontent.com/assets/170270/9402927/6506af22-480c-11e5-8c18-7ea823530099.png) -4. You can start editing the text of the file in the in-browser editor. Make sure you follow guidelines above. You can use [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/). ![Step 4 - Edit the file](https://cloud.githubusercontent.com/assets/170270/9402932/7301c3a0-480c-11e5-81f5-7e343b71674f.png) +4. You can start editing the text of the file in the in-browser editor. Make sure you follow the guidelines above. You can use [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/). ![Step 4 - Edit the file](https://cloud.githubusercontent.com/assets/170270/9402932/7301c3a0-480c-11e5-81f5-7e343b71674f.png) 5. Say why you're proposing the changes, and then click on "Propose file change". ![Step 5 - Propose Changes](https://cloud.githubusercontent.com/assets/170270/9402937/7dd0652a-480c-11e5-9138-bd14244593d5.png) 6. Submit the [pull request](https://help.github.com/articles/using-pull-requests/)! @@ -27,4 +27,4 @@ You'll need a [GitHub account](https://github.com/join)! Sometimes, a maintainer of an awesome list will ask you to edit your Pull Request before it is included. This is normally due to spelling errors or because your PR didn't match the awesome-* list guidelines. -[Here](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) is a write up on how to change a Pull Request, and the different ways you can do that. +[Here](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) is a write up on how to change a Pull Request and the different ways you can do that. diff --git a/pull_request_template.md b/pull_request_template.md index 72dd17db9d..88c8b043fe 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -26,7 +26,7 @@ - ❌ `add Swift` - ❌ `Adding Swift` - ❌ `Added Swift` -- [ ] Your entry here should include a short description about the project/theme of the list. **It should not describe the list itself.** The first character should be uppercase and the description should end in a dot. It should be an objective description and not a tagline or marketing blurb. It should not contain the name of the list. +- [ ] Your entry here should include a short description of the project/theme of the list. **It should not describe the list itself.** The first character should be uppercase and the description should end in a dot. It should be an objective description and not a tagline or marketing blurb. It should not contain the name of the list. - ✅ `- [iOS](…) - Mobile operating system for Apple phones and tablets.` - ✅ `- [Framer](…) - Prototyping interactive UI designs.` - ❌ `- [iOS](…) - Resources and tools for iOS development.` @@ -68,7 +68,7 @@ - [ ] Includes a project logo/illustration whenever possible. - Either centered, fullwidth, or placed at the top-right of the readme. [(Example)](https://github.com/sindresorhus/awesome-electron) - The image should link to the project website or any relevant website. - - **The image should be high-DPI.** Set it to maximum half the width of the original image. + - **The image should be high-DPI.** Set it to a maximum of half the width of the original image. - Don't include both a title saying `Awesome X` and a logo with `Awesome X`. You can put the header image in a `#` (Markdown header) or `

`. - [ ] Entries have a description, unless the title is descriptive enough by itself. It rarely is though. - [ ] Includes the [Awesome badge](https://github.com/sindresorhus/awesome/blob/main/awesome.md#awesome-badge). @@ -88,7 +88,7 @@ - **Do not** add the license name, text, or a `Licence` section to the readme. GitHub already shows the license name and link to the full text at the top of the repo. - To verify that you've read all the guidelines, please comment on your pull request with just the word `unicorn`. - [ ] Has [contribution guidelines](https://github.com/sindresorhus/awesome/blob/main/awesome.md#include-contribution-guidelines). - - The file should be named `contributing.md`. Casing is up to you. + - The file should be named `contributing.md`. The casing is up to you. - It can optionally be linked from the readme in a dedicated section titled `Contributing`, positioned at the top or bottom of the main content. - The section should not appear in the Table of Contents. - [ ] All non-important but necessary content (like extra copyright notices, hyperlinks to sources, pointers to expansive content, etc) should be grouped in a `Footnotes` section at the bottom of the readme. The section should not be present in the Table of Contents. From 124c51bb98cde1a4a54159d1faa64ea0cdc5b597 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sat, 11 Nov 2023 05:07:23 +0700 Subject: [PATCH 136/191] Meta tweaks --- .github/funding.yml | 4 ---- .github/workflows/main.yml | 2 +- readme.md | 6 ++++++ 3 files changed, 7 insertions(+), 5 deletions(-) delete mode 100644 .github/funding.yml diff --git a/.github/funding.yml b/.github/funding.yml deleted file mode 100644 index 15edf6e257..0000000000 --- a/.github/funding.yml +++ /dev/null @@ -1,4 +0,0 @@ -github: sindresorhus -open_collective: sindresorhus -patreon: sindresorhus -custom: https://sindresorhus.com/donate diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index db9455f3bf..bc8499adca 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: awesome-lint diff --git a/readme.md b/readme.md index ccc9732363..c11fa32256 100644 --- a/readme.md +++ b/readme.md @@ -121,6 +121,12 @@
+ + +
+

Just type awesome.re to go here. Check out my apps and follow me on Twitter.

From 07c6be2660992e9b70232ddae0bc66a18693d1c8 Mon Sep 17 00:00:00 2001 From: Marc Anguera Date: Tue, 14 Nov 2023 20:49:31 +0100 Subject: [PATCH 137/191] =?UTF-8?q?Add=20=E2=80=9COpen=20Source=20Heroes?= =?UTF-8?q?=20-=20Awesome=E2=80=9D=20to=20Related=20section=20(#2858)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c11fa32256..bab4317d23 100644 --- a/readme.md +++ b/readme.md @@ -900,3 +900,4 @@ - [Awesome CLI](https://github.com/umutphp/awesome-cli) - A simple command-line tool to dive into Awesome lists. - [Awesome Viewer](https://awesome.digitalbunker.dev) - A visualizer for all of the above Awesome lists. - [Track Awesome List](https://www.trackawesomelist.com) - View the latest updates of Awesome lists. +- [Open Source Heroes - Awesome](https://opensource-heroes.com/awesome) - View Awesome lists with extra info like stars, last update, and license. From a20a1d816ca925212115494e27054cb0331e22d6 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 20 Dec 2023 13:21:51 +0100 Subject: [PATCH 138/191] Meta tweaks --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index bab4317d23..26d960b01f 100644 --- a/readme.md +++ b/readme.md @@ -17,7 +17,7 @@ Check out my latest app

- One Task + One Task
Stop procrastination and get stuff done by focusing on one task at a time

From b0ff6129aae7759cd5268db1c7afecb81d1f47c8 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 14 Feb 2024 02:23:06 +0700 Subject: [PATCH 139/191] Meta tweaks --- media/logo-ua.svg | 1 - readme.md | 50 +++++++++++++++++------------------------------ 2 files changed, 18 insertions(+), 33 deletions(-) delete mode 100644 media/logo-ua.svg diff --git a/media/logo-ua.svg b/media/logo-ua.svg deleted file mode 100644 index a901fa4356..0000000000 --- a/media/logo-ua.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/readme.md b/readme.md index 26d960b01f..fa7279222b 100644 --- a/readme.md +++ b/readme.md @@ -1,15 +1,6 @@
- - Awesome - - -
-
-
-
-
-
-
+ Awesome +


@@ -104,33 +92,19 @@

-

What is an awesome list?    Contribution guide    Creating a list    Twitter    - Stickers & t-shirts

- -
- -
- Follow the Awesome Twitter account for updates on new list additions. -
-
- - -
-

- Just type awesome.re to go here. Check out my apps and follow me on Twitter. + Just type awesome.re to go here. Check out my apps and follow me on Twitter.


+
## Contents @@ -162,6 +136,18 @@ - [Miscellaneous](#miscellaneous) - [Related](#related) +--- + +
+
+ + + +
+
+ +--- + ## Platforms - [Node.js](https://github.com/sindresorhus/awesome-nodejs#readme) - Async non-blocking event-driven JavaScript runtime built on Chrome's V8 JavaScript engine. From 5afa2a80f97eb03c046d415883fd1a9e2030cf6c Mon Sep 17 00:00:00 2001 From: Y <37100+lunohodov@users.noreply.github.com> Date: Tue, 13 Feb 2024 23:14:38 +0200 Subject: [PATCH 140/191] Add Astrophotography (#2803) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index fa7279222b..723e2b0436 100644 --- a/readme.md +++ b/readme.md @@ -876,6 +876,7 @@ - [ChatGPT](https://github.com/sindresorhus/awesome-chatgpt#readme) - Artificial intelligence chatbot developed by OpenAI. - [Whisper](https://github.com/sindresorhus/awesome-whisper#readme) - Open-source AI-powered speech recognition system developed by OpenAI. - [Steam Deck](https://github.com/airscripts/awesome-steam-deck#readme) - A handheld gaming computer developed by Valve. +- [Astrophotography](https://github.com/lunohodov/awesome-astrophotography#readme) - Photography of astronomical objects, celestial events, or areas of the night sky. - [HPC](https://github.com/dstdev/awesome-hpc#readme) - High Performance Computing. ## Related From e02a0522cf7d95eee7a4a0bf08d96b36c2c243d0 Mon Sep 17 00:00:00 2001 From: Ahmed AbouZaid <6760103+aabouzaid@users.noreply.github.com> Date: Tue, 13 Feb 2024 22:32:39 +0100 Subject: [PATCH 141/191] Add Kustomize (#2585) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 723e2b0436..2d57839b3e 100644 --- a/readme.md +++ b/readme.md @@ -404,6 +404,7 @@ - [IAM](https://github.com/kdeldycke/awesome-iam#readme) - User accounts, authentication and authorization. - [Slim](https://github.com/nekofar/awesome-slim#readme) - PHP framework. - [Fiber](https://github.com/gofiber/awesome-fiber#readme) - Web framework built on top of Fasthttp, the fastest HTTP engine for Go. +- [Kustomize](https://github.com/DevOpsHiveHQ/awesome-kustomize#readme) - Kubernetes native declarative configuration management tool. ## Computer Science From aebbfcaedae270cbde8652a736325ce05d95c5df Mon Sep 17 00:00:00 2001 From: Martin Zikmund Date: Tue, 13 Feb 2024 22:51:16 +0100 Subject: [PATCH 142/191] Add Uno Platform (#2622) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 2d57839b3e..d29467ec19 100644 --- a/readme.md +++ b/readme.md @@ -205,6 +205,7 @@ - [Low Code](https://github.com/zenitysec/awesome-low-code#readme) - Allowing business professionals to address their needs on their own with little to no coding skills. - [Capacitor](https://github.com/riderx/awesome-capacitor#readme) - Cross-platform open source runtime for building Web Native apps. - [ArcGIS Developer](https://github.com/Esri/awesome-arcgis-developer#readme) - Mapping and location analysis platform for developers. +- [Uno Platform](https://github.com/MartinZikmund/awesome-uno-platform#readme) - Open-source .NET UI platform for building cross-platform apps. ## Programming Languages From 52eff1051a683c9f71a85bb806bd6816516622db Mon Sep 17 00:00:00 2001 From: Matteo Crippa Date: Wed, 14 Feb 2024 08:53:55 +0100 Subject: [PATCH 143/191] Add Bluetooth Low Energy (#2690) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index d29467ec19..6b96d68d71 100644 --- a/readme.md +++ b/readme.md @@ -205,6 +205,7 @@ - [Low Code](https://github.com/zenitysec/awesome-low-code#readme) - Allowing business professionals to address their needs on their own with little to no coding skills. - [Capacitor](https://github.com/riderx/awesome-capacitor#readme) - Cross-platform open source runtime for building Web Native apps. - [ArcGIS Developer](https://github.com/Esri/awesome-arcgis-developer#readme) - Mapping and location analysis platform for developers. +- [Bluetooth Low Energy](https://github.com/dotintent/awesome-ble#readme) - Low-power wireless communication protocol ideal for IoT, wearables, and other battery-powered applications. - [Uno Platform](https://github.com/MartinZikmund/awesome-uno-platform#readme) - Open-source .NET UI platform for building cross-platform apps. ## Programming Languages From f56121308d0bc068830c886042f60db6418c27a9 Mon Sep 17 00:00:00 2001 From: Joe Davies Date: Wed, 14 Feb 2024 09:00:30 +0100 Subject: [PATCH 144/191] Add Frontend GIS (#2731) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 6b96d68d71..d35a739d34 100644 --- a/readme.md +++ b/readme.md @@ -373,6 +373,7 @@ - [Master CSS](https://github.com/master-co/awesome-master-css#readme) - A virtual CSS language with enhanced syntax. - [Hydrogen](https://github.com/shopify/awesome-hydrogen#readme) - Edge-first framework for building Shopify storefronts with React. - [Tiny JS](https://github.com/thoughtspile/awesome-tiny-js#readme) - Frontend libraries that fit into 2 kB with dependencies. +- [Frontend GIS](https://github.com/joewdavies/awesome-frontend-gis#readme) - Geographic Information Systems (GIS) for web browsers. ## Back-End Development From 95fef0e8f8f7bc178c937f2cbea183746f8a751d Mon Sep 17 00:00:00 2001 From: Dennis Shi-Rudo <42831102+shi-rudo@users.noreply.github.com> Date: Wed, 14 Feb 2024 09:09:43 +0100 Subject: [PATCH 145/191] Add Stock Trading (#2736) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index d35a739d34..75e069d92b 100644 --- a/readme.md +++ b/readme.md @@ -879,6 +879,7 @@ - [Biological Image Analysis](https://github.com/hallvaaw/awesome-biological-image-analysis#readme) - Interpreting biological phenomena using images. - [ChatGPT](https://github.com/sindresorhus/awesome-chatgpt#readme) - Artificial intelligence chatbot developed by OpenAI. - [Whisper](https://github.com/sindresorhus/awesome-whisper#readme) - Open-source AI-powered speech recognition system developed by OpenAI. +- [Stock Trading](https://github.com/shi-rudo/awesome-stock-trading#readme) - Purchase and sale of equities of publicly traded companies with the aim of generating profits. - [Steam Deck](https://github.com/airscripts/awesome-steam-deck#readme) - A handheld gaming computer developed by Valve. - [Astrophotography](https://github.com/lunohodov/awesome-astrophotography#readme) - Photography of astronomical objects, celestial events, or areas of the night sky. - [HPC](https://github.com/dstdev/awesome-hpc#readme) - High Performance Computing. From 924721c3f21d1ba7ce32ed454d83f029c957b9f4 Mon Sep 17 00:00:00 2001 From: Remigiusz Samborski Date: Mon, 25 Mar 2024 18:16:11 +0100 Subject: [PATCH 146/191] Fix Firebase description (#3004) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 75e069d92b..c8520fbbf3 100644 --- a/readme.md +++ b/readme.md @@ -191,7 +191,7 @@ - [Flutter](https://github.com/Solido/awesome-flutter#readme) - Google's mobile SDK for building native iOS and Android apps from a single codebase written in Dart. - [Home Assistant](https://github.com/frenck/awesome-home-assistant#readme) - Open source home automation that puts local control and privacy first. - [IBM Cloud](https://github.com/victorshinya/awesome-ibmcloud#readme) - Cloud platform for developers and companies. -- [Firebase](https://github.com/jthegedus/awesome-firebase#readme) - App development platform built on Google Cloud Platform. +- [Firebase](https://github.com/jthegedus/awesome-firebase#readme) - App development platform built on Google Cloud. - [Robot Operating System 2.0](https://github.com/fkromer/awesome-ros2#readme) - Set of software libraries and tools that help you build robot apps. - [Adafruit IO](https://github.com/adafruit/awesome-adafruitio#readme) - Visualize and store data from any device. - [Cloudflare](https://github.com/irazasyed/awesome-cloudflare#readme) - CDN, DNS, DDoS protection, and security for your site. From 99355bc6277019412e675ac5868e83d1ad5c24a6 Mon Sep 17 00:00:00 2001 From: Alejandro Lazaro Date: Wed, 3 Apr 2024 18:25:00 +0200 Subject: [PATCH 147/191] Add OpenTofu (#2978) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c8520fbbf3..c290116789 100644 --- a/readme.md +++ b/readme.md @@ -408,6 +408,7 @@ - [Slim](https://github.com/nekofar/awesome-slim#readme) - PHP framework. - [Fiber](https://github.com/gofiber/awesome-fiber#readme) - Web framework built on top of Fasthttp, the fastest HTTP engine for Go. - [Kustomize](https://github.com/DevOpsHiveHQ/awesome-kustomize#readme) - Kubernetes native declarative configuration management tool. +- [OpenTofu](https://github.com/virtualroot/awesome-opentofu#readme) - Open-source infrastructure as code tool. ## Computer Science From bbe1e6f5d75c642d7a40ca2cba044bef764b055b Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 9 Apr 2024 22:59:59 +0900 Subject: [PATCH 148/191] Meta tweaks --- readme.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/readme.md b/readme.md index c290116789..255f1d036c 100644 --- a/readme.md +++ b/readme.md @@ -85,6 +85,22 @@


+ +
+ + + + Logto logo + +
+ The better identity infrastructure for developers +
+ Logto is an open-source Auth0 alternative designed for every app +
+
+
+
+



From bff4772e2c4733e152c373e0f5f246f264fd9f0d Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Wed, 10 Apr 2024 11:36:31 +0800 Subject: [PATCH 149/191] Meta tweaks (#3019) --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 255f1d036c..261b1d09c2 100644 --- a/readme.md +++ b/readme.md @@ -85,7 +85,7 @@


- +
@@ -95,7 +95,7 @@
The better identity infrastructure for developers
- Logto is an open-source Auth0 alternative designed for every app + Logto is an open-source Auth0 alternative designed for every app.

From f0bdf003447dd11c9a20060153deef6f2a3835ef Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 13 May 2024 15:27:02 +0700 Subject: [PATCH 150/191] Meta tweaks --- readme.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index 261b1d09c2..7ec7dcb92b 100644 --- a/readme.md +++ b/readme.md @@ -1,18 +1,18 @@
Awesome - +



From 4ebef6afc223c28d5e7e328af8f8085894b2f483 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sat, 25 May 2024 17:52:01 +0200 Subject: [PATCH 151/191] Meta tweaks --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 7ec7dcb92b..d55153a256 100644 --- a/readme.md +++ b/readme.md @@ -8,9 +8,9 @@ Check out my macOS app

- Day Progress + Week Number
- Display the time remaining today in your menu bar + The current week number in your menu bar


From 4b7c6d06e495472a8cd75dda66a98968a30a6dbe Mon Sep 17 00:00:00 2001 From: Brendan Chamberlain Date: Sat, 25 May 2024 11:55:45 -0400 Subject: [PATCH 152/191] Add Detection Engineering (#2829) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index d55153a256..f4b11d256f 100644 --- a/readme.md +++ b/readme.md @@ -657,6 +657,7 @@ - [Security Card Games](https://github.com/Karneades/awesome-security-card-games#readme) - Train your skills and discuss various security topics. - [Suricata](https://github.com/satta/awesome-suricata#readme) - Intrusion detection/prevention system and network security monitoring engine. - [Prompt Injection](https://github.com/FonduAI/awesome-prompt-injection#readme) - A type of vulnerability that specifically targets machine learning models. +- [Detection Engineering](https://github.com/infosecB/awesome-detection-engineering#readme) - Design, build, and operate detective cybersecurity controls. ## Content Management Systems From 4abfd72da95c83c4cb6a30ec6550501a09bc0779 Mon Sep 17 00:00:00 2001 From: jorgoose Date: Sat, 25 May 2024 11:02:45 -0500 Subject: [PATCH 153/191] Add PocketBase (#2895) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index f4b11d256f..4f6492b452 100644 --- a/readme.md +++ b/readme.md @@ -593,6 +593,7 @@ - [Cassandra](https://github.com/Anant/awesome-cassandra#readme) - Open-source, distributed, wide column store, NoSQL database management system. - [TDengine](https://github.com/taosdata/awesome-tdengine#readme) - An open-source time-series database with high-performance, scalability, and SQL support. - [Supabase](https://github.com/lyqht/awesome-supabase#readme) - An open-source alternative to Firebase. +- [PocketBase](https://github.com/benallfree/awesome-pocketbase#readme) - An open-source, Go-based backend in one file. ## Media From d37f73b5dce436617daedcad58fe6e04de082045 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 28 May 2024 01:13:47 +0200 Subject: [PATCH 154/191] Fix wrong category for a list Fixes #1764 --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 4f6492b452..103c0be437 100644 --- a/readme.md +++ b/readme.md @@ -476,6 +476,7 @@ - [Apache Spark](https://github.com/awesome-spark/awesome-spark#readme) - Unified engine for large-scale data processing. - [Qlik](https://github.com/ambster-public/awesome-qlik#readme) - Business intelligence platform for data visualization, analytics, and reporting apps. - [Splunk](https://github.com/sduff/awesome-splunk#readme) - Platform for searching, monitoring, and analyzing structured and unstructured machine-generated big data in real-time. +- [Network Analysis](https://github.com/briatte/awesome-network-analysis#readme) ## Theory @@ -718,7 +719,6 @@ ## Networking - [Software-Defined Networking](https://github.com/sdnds-tw/awesome-sdn#readme) -- [Network Analysis](https://github.com/briatte/awesome-network-analysis#readme) - [PCAPTools](https://github.com/caesar0301/awesome-pcaptools#readme) - [Real-Time Communications](https://github.com/rtckit/awesome-rtc#readme) - Network protocols for near simultaneous exchange of media and data. - [SNMP](https://github.com/eozer/awesome-snmp#readme) - A protocol for collecting, modifying, and organizing information about managed devices on IP networks. From 9a9f40160ee49a5d3ea9271836139d9eac51c45e Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 29 May 2024 02:06:22 +0200 Subject: [PATCH 155/191] Meta tweaks --- readme.md | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/readme.md b/readme.md index 103c0be437..c47d98a53b 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ Awesome

-
+


@@ -121,6 +121,7 @@



+
## Contents @@ -152,17 +153,19 @@ - [Miscellaneous](#miscellaneous) - [Related](#related) ---- -
+

- - -
+ +
+
+

- ---- ## Platforms @@ -305,6 +308,18 @@ - [Move](https://github.com/MystenLabs/awesome-move#readme) - Domain-specific programming language for writing safe smart contracts. - [Esolangs](https://github.com/angrykoala/awesome-esolangs#readme) - Programming languages designed for experimentation or as jokes rather than actual use. +
+
+
+
+ + + +
+
+
+
+ ## Front-End Development - [ES6 Tools](https://github.com/addyosmani/es6-tools#readme) From b7a73e681b2ee0092e33c500bd61d5a4f0908e30 Mon Sep 17 00:00:00 2001 From: Philipp <83007290+FoxFil@users.noreply.github.com> Date: Fri, 31 May 2024 19:20:15 +0300 Subject: [PATCH 156/191] Add Geocaching (#3053) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c47d98a53b..f546f4324c 100644 --- a/readme.md +++ b/readme.md @@ -917,6 +917,7 @@ - [Steam Deck](https://github.com/airscripts/awesome-steam-deck#readme) - A handheld gaming computer developed by Valve. - [Astrophotography](https://github.com/lunohodov/awesome-astrophotography#readme) - Photography of astronomical objects, celestial events, or areas of the night sky. - [HPC](https://github.com/dstdev/awesome-hpc#readme) - High Performance Computing. +- [Geocaching](https://github.com/FoxFil/awesome-geocaching#readme) - Outdoor treasure-hunting activity that uses GPS-enabled devices. ## Related From 1b8146c0cf2b7b57ba6c7b67f9ce2fc8e204e11a Mon Sep 17 00:00:00 2001 From: Remigiusz Samborski Date: Tue, 4 Jun 2024 14:45:58 +0200 Subject: [PATCH 157/191] Add Google Cloud (#3003) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index f546f4324c..5e3b57aa8b 100644 --- a/readme.md +++ b/readme.md @@ -226,6 +226,7 @@ - [ArcGIS Developer](https://github.com/Esri/awesome-arcgis-developer#readme) - Mapping and location analysis platform for developers. - [Bluetooth Low Energy](https://github.com/dotintent/awesome-ble#readme) - Low-power wireless communication protocol ideal for IoT, wearables, and other battery-powered applications. - [Uno Platform](https://github.com/MartinZikmund/awesome-uno-platform#readme) - Open-source .NET UI platform for building cross-platform apps. +- [Google Cloud](https://github.com/GoogleCloudPlatform/awesome-google-cloud#readme) - Cloud computing services by Google. ## Programming Languages From 128572f38998845791fc68303162abe534d34d8a Mon Sep 17 00:00:00 2001 From: Ankur Tyagi Date: Mon, 22 Jul 2024 14:20:45 +0200 Subject: [PATCH 158/191] Add Neon (#3103) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 5e3b57aa8b..e8d8184b9f 100644 --- a/readme.md +++ b/readme.md @@ -611,6 +611,7 @@ - [TDengine](https://github.com/taosdata/awesome-tdengine#readme) - An open-source time-series database with high-performance, scalability, and SQL support. - [Supabase](https://github.com/lyqht/awesome-supabase#readme) - An open-source alternative to Firebase. - [PocketBase](https://github.com/benallfree/awesome-pocketbase#readme) - An open-source, Go-based backend in one file. +- [Neon](https://github.com/tyaga001/awesome-neon#readme) - An open-source alternative to AWS Aurora. ## Media From fd14af92d5942a45dd199fd7594546cbd44ae333 Mon Sep 17 00:00:00 2001 From: Polycarbohydrate Date: Tue, 23 Jul 2024 20:14:43 +0800 Subject: [PATCH 159/191] Add Tor (#3081) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index e8d8184b9f..942383e9fb 100644 --- a/readme.md +++ b/readme.md @@ -758,6 +758,7 @@ - [Algorand](https://github.com/aorumbayev/awesome-algorand#readme) - An open-source, proof of stake blockchain and smart contract computing platform. - [ZeroNet](https://github.com/zolagonano/awesome-zeronet#readme) - A decentralized web-like network of peer-to-peer users. - [Cosmos SDK](https://github.com/cosmos/awesome-cosmos#readme) - Modular framework for building app-specific blockchains in Go. +- [Tor](https://github.com/polycarbohydrate/awesome-tor#readme) - A free overlay network for enabling anonymous communication. ## Health and Social Science From 993cee41a5ecc4199a4fa240a27005ebe7515c4d Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Wed, 7 Aug 2024 23:26:48 +0200 Subject: [PATCH 160/191] Meta tweaks --- readme.md | 53 +++++++++++++++++++---------------------------------- 1 file changed, 19 insertions(+), 34 deletions(-) diff --git a/readme.md b/readme.md index 942383e9fb..9e929a2f28 100644 --- a/readme.md +++ b/readme.md @@ -2,17 +2,17 @@ Awesome

- +



@@ -32,11 +32,6 @@

- - - -
-
WorkOS @@ -49,31 +44,6 @@

- -
- Strapi -
- Strapi is the leading open-source headless CMS. -
- It’s 100% JavaScript, fully customizable, and developer-first. -
-
-
-
- -
- SerpApi -
- API to get search engine results with ease. -
- -
- SerpApi -
- API to get search engine results with ease. -
-
-

@@ -100,6 +70,21 @@

+ +
+ + + + Encore logo + +
+ The development platform for building type-safe distributed systems +
+ End-to-end tooling from local development to automated DevOps and infrastructure in your AWS/GCP. +
+
+
+


From 2aa0c9a6eb5bd75eaff3ac1868d2b383251dcf59 Mon Sep 17 00:00:00 2001 From: Martin DONADIEU Date: Wed, 14 Aug 2024 12:56:32 +0100 Subject: [PATCH 161/191] Update Ionic Framework title (#3149) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 9e929a2f28..f06fcce6ce 100644 --- a/readme.md +++ b/readme.md @@ -353,7 +353,7 @@ - [Marionette.js](https://github.com/sadcitizen/awesome-marionette#readme) - App framework. - [Aurelia](https://github.com/aurelia-contrib/awesome-aurelia#readme) - App framework. - [Charting](https://github.com/zingchart/awesome-charting#readme) -- [Ionic Framework 2](https://github.com/candelibas/awesome-ionic#readme) +- [Ionic Framework](https://github.com/candelibas/awesome-ionic#readme) - [Chrome DevTools](https://github.com/ChromeDevTools/awesome-chrome-devtools#readme) - [PostCSS](https://github.com/jdrgomes/awesome-postcss#readme) - CSS tool. - [Draft.js](https://github.com/nikgraf/awesome-draft-js#readme) - Rich text editor framework for React. From 690366ac55d0044ac9de82833c9db65a1f1e8ef7 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 9 Sep 2024 23:20:04 +0700 Subject: [PATCH 162/191] Meta tweaks --- readme.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/readme.md b/readme.md index f06fcce6ce..baed0403eb 100644 --- a/readme.md +++ b/readme.md @@ -27,11 +27,6 @@ Special thanks to:

- - - -
-
WorkOS @@ -138,20 +133,6 @@ - [Miscellaneous](#miscellaneous) - [Related](#related) -
-
-
-
-
-
-
-
-
- ## Platforms - [Node.js](https://github.com/sindresorhus/awesome-nodejs#readme) - Async non-blocking event-driven JavaScript runtime built on Chrome's V8 JavaScript engine. From 460f1a944f3ac8b9f51967a244abf47f1edf6ab9 Mon Sep 17 00:00:00 2001 From: Henrik Lau Eriksson Date: Tue, 22 Oct 2024 19:24:51 +0200 Subject: [PATCH 163/191] Add PowerToys Run Plugins (#3075) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index baed0403eb..c0ab04320e 100644 --- a/readme.md +++ b/readme.md @@ -159,6 +159,7 @@ - [Salesforce](https://github.com/mailtoharshit/awesome-salesforce#readme) - [Amazon Web Services](https://github.com/donnemartin/awesome-aws#readme) - [Windows](https://github.com/Awesome-Windows/Awesome#readme) + - [PowerToys Run Plugins](https://github.com/hlaueriksson/awesome-powertoys-run-plugins#readme) - Community plugins for the Windows quick launcher. - [IPFS](https://github.com/ipfs/awesome-ipfs#readme) - P2P hypermedia protocol. - [Fuse](https://github.com/fuse-compound/awesome-fuse#readme) - Mobile development tools. - [Heroku](https://github.com/ianstormtaylor/awesome-heroku#readme) - Cloud platform as a service. From d1448ed9dcdc1193de494d7279f0b8a28df0bb66 Mon Sep 17 00:00:00 2001 From: Steven Levithan Date: Tue, 22 Oct 2024 20:14:51 +0200 Subject: [PATCH 164/191] Add Regex (#3071) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c0ab04320e..c7d3fe3c9d 100644 --- a/readme.md +++ b/readme.md @@ -888,6 +888,7 @@ - [Astrophotography](https://github.com/lunohodov/awesome-astrophotography#readme) - Photography of astronomical objects, celestial events, or areas of the night sky. - [HPC](https://github.com/dstdev/awesome-hpc#readme) - High Performance Computing. - [Geocaching](https://github.com/FoxFil/awesome-geocaching#readme) - Outdoor treasure-hunting activity that uses GPS-enabled devices. +- [Regex](https://github.com/slevithan/awesome-regex#readme) - Specialized language for matching patterns in text. ## Related From 9d2c6b5ef36ce5575acbf7be1c8b2e18b1c4fb37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kay=20Aydo=C4=9Fan?= <88277926+gokayfem@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:19:48 +0300 Subject: [PATCH 165/191] Add VLM Architectures (#2996) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c7d3fe3c9d..190a3f1bd3 100644 --- a/readme.md +++ b/readme.md @@ -476,6 +476,7 @@ - [Audit Algorithms](https://github.com/erwanlemerrer/awesome-audit-algorithms#readme) - Algorithmic audits of algorithms. - [AGI & CoCoSci](https://github.com/YuzheSHI/awesome-agi-cocosci#readme) - The reciprocation of Artificial General Intelligence (AGI) and Computational Cognitive Sciences (CoCoSci). - [Complex Systems](https://github.com/sellisd/awesome-complexity#readme) - The scientific field studying systems with multiple interacting parts and emergent properties. +- [VLM Architectures](https://github.com/gokayfem/awesome-vlm-architectures#readme) - Vision Language Model architectures. ## Books From 281714e50ddb6973ceec90ecf8e2946c8f40e50f Mon Sep 17 00:00:00 2001 From: Michael Paul Coder Date: Tue, 29 Oct 2024 17:59:03 +1100 Subject: [PATCH 166/191] Add Lucid Dreams (#3091) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 190a3f1bd3..e89c403350 100644 --- a/readme.md +++ b/readme.md @@ -740,6 +740,7 @@ - [Mental Health](https://github.com/dreamingechoes/awesome-mental-health#readme) - Mental health awareness and self-care in the software industry. - [Neuroscience](https://github.com/analyticalmonk/awesome-neuroscience#readme) - Study of the nervous system and brain. - [Digital Humanities](https://github.com/dh-tech/awesome-digital-humanities#readme) - Software for humanities scholars using quantitative or computational methods. +- [Lucid Dreams](https://github.com/IAmCoder/awesome-lucid-dreams#readme) - A dream where one becomes aware they are dreaming. ## Events From 422c90ac7968192a7bbdfbe0fc9a21f34bbddae1 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 29 Oct 2024 04:09:50 -0700 Subject: [PATCH 167/191] Add Babylon.js (#2960) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index e89c403350..5dbb57ae95 100644 --- a/readme.md +++ b/readme.md @@ -525,6 +525,7 @@ - [Game Engine Development](https://github.com/stevinz/awesome-game-engine-dev#readme) - Building software to speed up game creation. - [GameMaker](https://github.com/bytecauldron/awesome-gamemaker#readme) - Game engine. - [Game Production](https://github.com/vhladiienko/awesome-game-production#readme) - Leading the process of designing, developing, testing and distributing a video game from concept to release. +- [Babylon.js](https://github.com/Symbitic/awesome-babylonjs#readme) - Game engine for cross-platform web and native game development. ## Development Environment From cece334d95d7bccdb1dd9361119c1324e00e7bbe Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 21 Nov 2024 15:53:20 +0700 Subject: [PATCH 168/191] Meta tweaks --- readme.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/readme.md b/readme.md index 5dbb57ae95..77ba0cfc00 100644 --- a/readme.md +++ b/readme.md @@ -80,6 +80,17 @@

+ +
+ nitric logo +
+ Effortless backends with infrastructure from code +
+ An open-source framework that supports any programming language, cloud provider, or deployment automation tool. +
+
+
+


From 843bbf9242284d80710ee8fe8e42ae094943d4d1 Mon Sep 17 00:00:00 2001 From: Jacob Wilson <9290098+jacobdjwilson@users.noreply.github.com> Date: Fri, 22 Nov 2024 04:22:44 -0500 Subject: [PATCH 169/191] Add Annual Security Reports (#2850) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 77ba0cfc00..7d98b5b80c 100644 --- a/readme.md +++ b/readme.md @@ -657,6 +657,7 @@ - [Suricata](https://github.com/satta/awesome-suricata#readme) - Intrusion detection/prevention system and network security monitoring engine. - [Prompt Injection](https://github.com/FonduAI/awesome-prompt-injection#readme) - A type of vulnerability that specifically targets machine learning models. - [Detection Engineering](https://github.com/infosecB/awesome-detection-engineering#readme) - Design, build, and operate detective cybersecurity controls. +- [Annual Security Reports](https://github.com/jacobdjwilson/awesome-annual-security-reports#readme) - Exploring cybersecurity trends, insights, and challenges. ## Content Management Systems From 61974e3bc905074402c514415c4a289788f0e50a Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Sun, 24 Nov 2024 00:44:06 +1000 Subject: [PATCH 170/191] Add Windows (#3227) Co-authored-by: Sindre Sorhus --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7d98b5b80c..3ebe7d3217 100644 --- a/readme.md +++ b/readme.md @@ -169,7 +169,7 @@ - [JVM](https://github.com/deephacks/awesome-jvm#readme) - [Salesforce](https://github.com/mailtoharshit/awesome-salesforce#readme) - [Amazon Web Services](https://github.com/donnemartin/awesome-aws#readme) -- [Windows](https://github.com/Awesome-Windows/Awesome#readme) +- [Windows](https://github.com/0pandadev/awesome-windows#readme) - Consumer desktop operating system. - [PowerToys Run Plugins](https://github.com/hlaueriksson/awesome-powertoys-run-plugins#readme) - Community plugins for the Windows quick launcher. - [IPFS](https://github.com/ipfs/awesome-ipfs#readme) - P2P hypermedia protocol. - [Fuse](https://github.com/fuse-compound/awesome-fuse#readme) - Mobile development tools. From c729cae2aedeabe4d83a8a00a54eed42e5aa33f4 Mon Sep 17 00:00:00 2001 From: Adarsh Gourab Mahalik <71959210+itsmeadarsh2008@users.noreply.github.com> Date: Sat, 23 Nov 2024 21:54:13 +0530 Subject: [PATCH 171/191] Add Reflex (#3228) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 3ebe7d3217..87d1e2199d 100644 --- a/readme.md +++ b/readme.md @@ -419,6 +419,7 @@ - [Fiber](https://github.com/gofiber/awesome-fiber#readme) - Web framework built on top of Fasthttp, the fastest HTTP engine for Go. - [Kustomize](https://github.com/DevOpsHiveHQ/awesome-kustomize#readme) - Kubernetes native declarative configuration management tool. - [OpenTofu](https://github.com/virtualroot/awesome-opentofu#readme) - Open-source infrastructure as code tool. +- [Reflex](https://github.com/reflex-dev/awesome-reflex#readme) - Python web framework for building both your frontend and backend with no JavaScript. ## Computer Science From 5d4b5fe199ba39276b36fa4ec06322aa414442da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lutz=20H=C3=BChnken?= <944838+lutzh@users.noreply.github.com> Date: Thu, 28 Nov 2024 20:02:18 +0100 Subject: [PATCH 172/191] Add Event-Driven Architecture (#3152) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 87d1e2199d..054d889d6d 100644 --- a/readme.md +++ b/readme.md @@ -905,6 +905,7 @@ - [HPC](https://github.com/dstdev/awesome-hpc#readme) - High Performance Computing. - [Geocaching](https://github.com/FoxFil/awesome-geocaching#readme) - Outdoor treasure-hunting activity that uses GPS-enabled devices. - [Regex](https://github.com/slevithan/awesome-regex#readme) - Specialized language for matching patterns in text. +- [Event-Driven Architecture](https://github.com/lutzh/awesome-event-driven-architecture#readme) - A software architecture approach where services collaborate by publishing and subscribing to events. ## Related From 36d8bf5835c35f691f0ecdac9b05118c800d1cd4 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 12 Dec 2024 01:41:42 +0100 Subject: [PATCH 173/191] Meta tweaks --- readme.md | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/readme.md b/readme.md index 054d889d6d..4b10edcf52 100644 --- a/readme.md +++ b/readme.md @@ -8,9 +8,9 @@ Check out my macOS app

- Menu Bar Spacing + Supercharge
- Customize the gap between menu bar items on macOS + Elevate your Mac experience


@@ -65,21 +65,6 @@

- -
- - - - Encore logo - -
- The development platform for building type-safe distributed systems -
- End-to-end tooling from local development to automated DevOps and infrastructure in your AWS/GCP. -
-
-
-
nitric logo From 56d5856a305f45ae25008ee3985ecdcddccde57e Mon Sep 17 00:00:00 2001 From: Pranjal Pokharel Date: Wed, 5 Feb 2025 23:39:43 +0545 Subject: [PATCH 174/191] Remove dead links (#3349) --- readme.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/readme.md b/readme.md index 4b10edcf52..9a9178e713 100644 --- a/readme.md +++ b/readme.md @@ -581,7 +581,6 @@ ## Media -- [Creative Commons Media](https://github.com/shime/creative-commons-media#readme) - [Fonts](https://github.com/brabadu/awesome-fonts#readme) - [Codeface](https://github.com/chrissimpkins/codeface#readme) - Text editor fonts. - [Stock Resources](https://github.com/neutraltone/awesome-stock-resources#readme) @@ -677,7 +676,6 @@ - [Open Companies](https://github.com/opencompany/awesome-open-company#readme) - [Places to Post Your Startup](https://github.com/mmccaff/PlacesToPostYourStartup#readme) - [OKR Methodology](https://github.com/domenicosolazzo/awesome-okr#readme) - Goal setting & communication best practices. -- [Leading and Managing](https://github.com/LappleApple/awesome-leading-and-managing#readme) - Leading people and being a manager in a technology company/environment. - [Indie](https://github.com/mezod/awesome-indie#readme) - Independent developer businesses. - [Tools of the Trade](https://github.com/cjbarber/ToolsOfTheTrade#readme) - Tools used by companies on Hacker News. - [Clean Tech](https://github.com/nglgzz/awesome-clean-tech#readme) - Fighting climate change with technology. @@ -900,4 +898,3 @@ - [Awesome CLI](https://github.com/umutphp/awesome-cli) - A simple command-line tool to dive into Awesome lists. - [Awesome Viewer](https://awesome.digitalbunker.dev) - A visualizer for all of the above Awesome lists. - [Track Awesome List](https://www.trackawesomelist.com) - View the latest updates of Awesome lists. -- [Open Source Heroes - Awesome](https://opensource-heroes.com/awesome) - View Awesome lists with extra info like stars, last update, and license. From f6d534211855dcfe39708f02377526e3e891a1e5 Mon Sep 17 00:00:00 2001 From: Isabela de Matos Date: Fri, 28 Feb 2025 05:32:36 +0100 Subject: [PATCH 175/191] Add Permacomputing (#3293) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 9a9178e713..3711f56274 100644 --- a/readme.md +++ b/readme.md @@ -889,6 +889,7 @@ - [Geocaching](https://github.com/FoxFil/awesome-geocaching#readme) - Outdoor treasure-hunting activity that uses GPS-enabled devices. - [Regex](https://github.com/slevithan/awesome-regex#readme) - Specialized language for matching patterns in text. - [Event-Driven Architecture](https://github.com/lutzh/awesome-event-driven-architecture#readme) - A software architecture approach where services collaborate by publishing and subscribing to events. +- [Permacomputing](https://github.com/idematos/awesome-permacomputing#readme) - Resilient and regenerative computing practices inspired by permaculture. ## Related From 7ac2054d73d003f2a4d7b3235c5d235975238eb0 Mon Sep 17 00:00:00 2001 From: Ankur Tyagi Date: Tue, 4 Mar 2025 09:42:02 +0100 Subject: [PATCH 176/191] Add CodeRabbit (#3335) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 3711f56274..355a5c0c35 100644 --- a/readme.md +++ b/readme.md @@ -757,6 +757,7 @@ - [Playwright](https://github.com/mxschmitt/awesome-playwright#readme) - Node.js library to automate Chromium, Firefox and WebKit with a single API. - [Quality Assurance Roadmap](https://github.com/fityanos/awesome-quality-assurance-roadmap#readme) - How to start & build a career in software testing. - [Gatling](https://github.com/aliesbelik/awesome-gatling#readme) - Open-source load and performance testing framework based on Scala, Akka, and Netty. +- [CodeRabbit](https://github.com/coderabbitai/awesome-coderabbit#readme) - AI-powered code review platform. ## Miscellaneous From f4a2c36f1fe1b9d5a0784de816b749e2f6e01add Mon Sep 17 00:00:00 2001 From: Noor E Mobeen <38805682+NoorEMobeen@users.noreply.github.com> Date: Thu, 13 Mar 2025 12:57:42 +0100 Subject: [PATCH 177/191] Minor description improvements (#3375) --- readme.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/readme.md b/readme.md index 355a5c0c35..be675c58d3 100644 --- a/readme.md +++ b/readme.md @@ -424,7 +424,7 @@ - [Spanish](https://github.com/dav009/awesome-spanish-nlp#readme) - [NLP with Ruby](https://github.com/arbox/nlp-with-ruby#readme) - [Question Answering](https://github.com/seriousran/awesome-qa#readme) - The science of asking and answering in natural language with a machine. - - [Natural Language Generation](https://github.com/accelerated-text/awesome-nlg#readme) - Generation of text used in data to text, conversational agents, and narrative generation applications. + - [Natural Language Generation](https://github.com/accelerated-text/awesome-nlg#readme) - Generation of text used in data-to-text, conversational agents, and narrative generation applications. - [Linguistics](https://github.com/theimpossibleastronaut/awesome-linguistics#readme) - [Cryptography](https://github.com/sobolevn/awesome-cryptography#readme) - [Papers](https://github.com/pFarb/awesome-crypto-papers#readme) - Theory basics for using cryptography by non-cryptographers. @@ -441,10 +441,10 @@ - [Empirical Software Engineering](https://github.com/dspinellis/awesome-msr#readme) - Evidence-based research on software systems. - [Static Analysis & Code Quality](https://github.com/analysis-tools-dev/static-analysis#readme) - [Information Retrieval](https://github.com/harpribot/awesome-information-retrieval#readme) - Learn to develop your own search engine. -- [Quantum Computing](https://github.com/desireevl/awesome-quantum-computing#readme) - Computing which utilizes quantum mechanics and qubits on quantum computers. +- [Quantum Computing](https://github.com/desireevl/awesome-quantum-computing#readme) - Computing that utilizes quantum mechanics and qubits on quantum computers. - [Theoretical Computer Science](https://github.com/mostafatouny/awesome-theoretical-computer-science#readme) - The interplay of computer science and pure mathematics, distinguished by its emphasis on mathematical rigour and technique. - [Conversational AI](https://github.com/jyguyomarch/awesome-conversational-ai#readme) - Build awesome chatbots and digital assistants. -- [Generative AI](https://github.com/steven2358/awesome-generative-ai#readme) - Automatically generate a wide range of unique content in text, image and audio format. +- [Generative AI](https://github.com/steven2358/awesome-generative-ai#readme) - Automatically generates a wide range of unique content in text, image, and audio format. ## Big Data @@ -455,7 +455,7 @@ - [Streaming](https://github.com/manuzhang/awesome-streaming#readme) - [Apache Spark](https://github.com/awesome-spark/awesome-spark#readme) - Unified engine for large-scale data processing. - [Qlik](https://github.com/ambster-public/awesome-qlik#readme) - Business intelligence platform for data visualization, analytics, and reporting apps. -- [Splunk](https://github.com/sduff/awesome-splunk#readme) - Platform for searching, monitoring, and analyzing structured and unstructured machine-generated big data in real-time. +- [Splunk](https://github.com/sduff/awesome-splunk#readme) - Platform for searching, monitoring, and analyzing structured and unstructured machine-generated big data in real time. - [Network Analysis](https://github.com/briatte/awesome-network-analysis#readme) ## Theory @@ -868,12 +868,12 @@ - [Web Archiving](https://github.com/iipc/awesome-web-archiving#readme) - An effort to preserve the Web for future generations. - [WP-CLI](https://github.com/schlessera/awesome-wp-cli#readme) - Command-line interface for WordPress. - [Credit Modeling](https://github.com/mourarthur/awesome-credit-modeling#readme) - Methods for classifying credit applicants into risk classes. -- [Ansible](https://github.com/ansible-community/awesome-ansible#readme) - A Python-based, open source IT configuration management and automation platform. +- [Ansible](https://github.com/ansible-community/awesome-ansible#readme) - A Python-based, open-source IT configuration management and automation platform. - [Biological Visualizations](https://github.com/keller-mark/awesome-biological-visualizations#readme) - Interactive visualization of biological data on the web. - [QR Code](https://github.com/make-github-pseudonymous-again/awesome-qr-code#readme) - A type of matrix barcode that can be used to store and share a small amount of information. - [Veganism](https://github.com/sdassow/awesome-veganism#readme) - Making the plant-based lifestyle easy and accessible. - [Translations](https://github.com/mbiesiad/awesome-translations#readme) - The transfer of the meaning of a text from one language to another. -- [Scriptable](https://github.com/dersvenhesse/awesome-scriptable#readme) - An iOS app for automations in JavaScript. +- [Scriptable](https://github.com/dersvenhesse/awesome-scriptable#readme) - An iOS app for automation in JavaScript. - [WebXR](https://github.com/msub2/awesome-webxr#readme) - Enables immersive virtual reality and augmented reality content on the web. - [Computational Geometry](https://github.com/atkirtland/awesome-computational-geometry#readme) - Computational approaches for problems in geometry. - [OpenStreetMap](https://github.com/osmlab/awesome-openstreetmap#readme) - An open data mapping project utilized by many apps and devices. @@ -883,7 +883,7 @@ - [Biological Image Analysis](https://github.com/hallvaaw/awesome-biological-image-analysis#readme) - Interpreting biological phenomena using images. - [ChatGPT](https://github.com/sindresorhus/awesome-chatgpt#readme) - Artificial intelligence chatbot developed by OpenAI. - [Whisper](https://github.com/sindresorhus/awesome-whisper#readme) - Open-source AI-powered speech recognition system developed by OpenAI. -- [Stock Trading](https://github.com/shi-rudo/awesome-stock-trading#readme) - Purchase and sale of equities of publicly traded companies with the aim of generating profits. +- [Stock Trading](https://github.com/shi-rudo/awesome-stock-trading#readme) - Purchase and sale of equities of publicly traded companies to generate profits. - [Steam Deck](https://github.com/airscripts/awesome-steam-deck#readme) - A handheld gaming computer developed by Valve. - [Astrophotography](https://github.com/lunohodov/awesome-astrophotography#readme) - Photography of astronomical objects, celestial events, or areas of the night sky. - [HPC](https://github.com/dstdev/awesome-hpc#readme) - High Performance Computing. From 22310294d148ba1cc130d3d85623a04620947f54 Mon Sep 17 00:00:00 2001 From: Danail Date: Tue, 8 Apr 2025 13:52:39 +0300 Subject: [PATCH 178/191] Add Payload (#3350) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index be675c58d3..4e1f2bfd3c 100644 --- a/readme.md +++ b/readme.md @@ -656,6 +656,7 @@ - [Silverstripe CMS](https://github.com/wernerkrauss/awesome-silverstripe-cms#readme) - PHP MVC framework that serves as a classic or headless CMS. - [Directus](https://github.com/directus-community/awesome-directus#readme) - A real-time API and app dashboard for managing SQL database content. - [Plone](https://github.com/collective/awesome-plone#readme) - Open source Python CMS. +- [Payload](https://github.com/DanailMinchev/awesome-payload#readme) - Next.js native and open source headless CMS. ## Hardware From c1fa742ddbb0259441ba552276bc9d3d8414d94b Mon Sep 17 00:00:00 2001 From: Saifeddine Rajhi Date: Thu, 15 May 2025 13:04:08 +0200 Subject: [PATCH 179/191] Add Cilium (#2930) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 4e1f2bfd3c..6ab247f4a4 100644 --- a/readme.md +++ b/readme.md @@ -706,6 +706,7 @@ - [Real-Time Communications](https://github.com/rtckit/awesome-rtc#readme) - Network protocols for near simultaneous exchange of media and data. - [SNMP](https://github.com/eozer/awesome-snmp#readme) - A protocol for collecting, modifying, and organizing information about managed devices on IP networks. - [Scapy](https://github.com/secdev/awesome-scapy#readme) - Python-based interactive packet manipulation. +- [Cilium](https://github.com/seifrajhi/awesome-cilium#readme) - Provides networking and security capabilities for containerized apps, microservices, and virtual machines. ## Decentralized Systems From 2ed278fc84c140dc48b4d1bfb2dba10b80bd097f Mon Sep 17 00:00:00 2001 From: Harshit Sethi Date: Thu, 15 May 2025 16:55:39 +0530 Subject: [PATCH 180/191] Add J2ME (#3115) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 6ab247f4a4..cb1bbbea16 100644 --- a/readme.md +++ b/readme.md @@ -247,6 +247,7 @@ - [Dart](https://github.com/yissachar/awesome-dart#readme) - [Java](https://github.com/akullpp/awesome-java#readme) - Popular secure object-oriented language designed for flexibility to "write once, run anywhere". - [RxJava](https://github.com/eleventigers/awesome-rxjava#readme) + - [J2ME](https://github.com/hstsethi/awesome-j2me#readme) - Java specification designed for old keypad phones and PDAs. - [Kotlin](https://github.com/KotlinBy/awesome-kotlin#readme) - [OCaml](https://github.com/ocaml-community/awesome-ocaml#readme) - [ColdFusion](https://github.com/seancoyne/awesome-coldfusion#readme) From 565212986aa916ba0f1c3fd4d4b270011a47021d Mon Sep 17 00:00:00 2001 From: Xavier Portilla Edo Date: Thu, 15 May 2025 13:33:25 +0200 Subject: [PATCH 181/191] Add Firebase Genkit (#3205) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index cb1bbbea16..0d9eeff964 100644 --- a/readme.md +++ b/readme.md @@ -190,6 +190,7 @@ - [Bluetooth Low Energy](https://github.com/dotintent/awesome-ble#readme) - Low-power wireless communication protocol ideal for IoT, wearables, and other battery-powered applications. - [Uno Platform](https://github.com/MartinZikmund/awesome-uno-platform#readme) - Open-source .NET UI platform for building cross-platform apps. - [Google Cloud](https://github.com/GoogleCloudPlatform/awesome-google-cloud#readme) - Cloud computing services by Google. +- [Firebase Genkit](https://github.com/xavidop/awesome-firebase-genkit#readme) - An open-source framework for building AI-powered apps and features. ## Programming Languages From 10739d944f173f1ba1a07bfff14aa54d97edcecf Mon Sep 17 00:00:00 2001 From: Will Foran Date: Thu, 15 May 2025 07:44:00 -0400 Subject: [PATCH 182/191] Add Neuroimaging (#3171) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 0d9eeff964..6e7eaa52e1 100644 --- a/readme.md +++ b/readme.md @@ -742,6 +742,7 @@ - [Neuroscience](https://github.com/analyticalmonk/awesome-neuroscience#readme) - Study of the nervous system and brain. - [Digital Humanities](https://github.com/dh-tech/awesome-digital-humanities#readme) - Software for humanities scholars using quantitative or computational methods. - [Lucid Dreams](https://github.com/IAmCoder/awesome-lucid-dreams#readme) - A dream where one becomes aware they are dreaming. +- [Neuroimaging](https://github.com/NPACore/awesome-neuroimaging#readme) - Software for analyzing brain data from living subjects. ## Events From 1a3802b354fd8a1bfcb9f085c750f008191cd1e3 Mon Sep 17 00:00:00 2001 From: Fermin Lozano Date: Thu, 15 May 2025 13:49:06 +0200 Subject: [PATCH 183/191] Add WebGPU (#3210) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 6e7eaa52e1..c5949b2be1 100644 --- a/readme.md +++ b/readme.md @@ -371,6 +371,7 @@ - [Hydrogen](https://github.com/shopify/awesome-hydrogen#readme) - Edge-first framework for building Shopify storefronts with React. - [Tiny JS](https://github.com/thoughtspile/awesome-tiny-js#readme) - Frontend libraries that fit into 2 kB with dependencies. - [Frontend GIS](https://github.com/joewdavies/awesome-frontend-gis#readme) - Geographic Information Systems (GIS) for web browsers. +- [WebGPU](https://github.com/mikbry/awesome-webgpu#readme) - JavaScript API for rendering and compute on GPUs. ## Back-End Development From 629aad89f30881c80415ebd00d3c6e51caea8cab Mon Sep 17 00:00:00 2001 From: Michael Brusegard <56915010+michaelbrusegard@users.noreply.github.com> Date: Thu, 15 May 2025 13:53:01 +0200 Subject: [PATCH 184/191] Add WezTerm (#3234) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index c5949b2be1..9be31ccf82 100644 --- a/readme.md +++ b/readme.md @@ -551,6 +551,7 @@ - [Alfred Workflows](https://github.com/alfred-workflows/awesome-alfred-workflows#readme) - Productivity app for macOS. - [Terminals Are Sexy](https://github.com/k4m4/terminals-are-sexy#readme) - [GitHub Actions](https://github.com/sdras/awesome-actions#readme) - Create tasks to automate your workflow and share them with others on GitHub. +- [WezTerm](https://github.com/michaelbrusegard/awesome-wezterm#readme) - Powerful cross-platform terminal emulator. ## Entertainment From 74a7800ca6ceb30928ac4cf16452a99f05d883c1 Mon Sep 17 00:00:00 2001 From: Asi Greenholts <88270351+TupleType@users.noreply.github.com> Date: Thu, 15 May 2025 15:13:17 +0300 Subject: [PATCH 185/191] Add CI/CD Attacks (#3111) --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 9be31ccf82..9f3f471338 100644 --- a/readme.md +++ b/readme.md @@ -647,6 +647,7 @@ - [Prompt Injection](https://github.com/FonduAI/awesome-prompt-injection#readme) - A type of vulnerability that specifically targets machine learning models. - [Detection Engineering](https://github.com/infosecB/awesome-detection-engineering#readme) - Design, build, and operate detective cybersecurity controls. - [Annual Security Reports](https://github.com/jacobdjwilson/awesome-annual-security-reports#readme) - Exploring cybersecurity trends, insights, and challenges. +- [CI/CD Attacks](https://github.com/TupleType/awesome-cicd-attacks#readme) - Offensive research of systems and processes related to developing and deploying code. ## Content Management Systems From aea85d30bba5502d3da9dc713ff522a467aa3828 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dario=20Casta=C3=B1=C3=A9?= Date: Thu, 15 May 2025 14:37:25 +0200 Subject: [PATCH 186/191] Add ATProto (#3323) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 9f3f471338..ec2d5938fe 100644 --- a/readme.md +++ b/readme.md @@ -731,6 +731,7 @@ - [ZeroNet](https://github.com/zolagonano/awesome-zeronet#readme) - A decentralized web-like network of peer-to-peer users. - [Cosmos SDK](https://github.com/cosmos/awesome-cosmos#readme) - Modular framework for building app-specific blockchains in Go. - [Tor](https://github.com/polycarbohydrate/awesome-tor#readme) - A free overlay network for enabling anonymous communication. +- [ATProto](https://github.com/atblueprints/awesome-atproto#readme) - Open, decentralized network for building social apps. ## Health and Social Science From 62f88598f2ea9640619739fab0d6ac354cd2944a Mon Sep 17 00:00:00 2001 From: Sancarn Date: Thu, 15 May 2025 14:01:57 +0100 Subject: [PATCH 187/191] Add VBA (#3153) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index ec2d5938fe..fea020b119 100644 --- a/readme.md +++ b/readme.md @@ -273,6 +273,7 @@ - [Zig](https://github.com/catdevnull/awesome-zig#readme) - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. - [Move](https://github.com/MystenLabs/awesome-move#readme) - Domain-specific programming language for writing safe smart contracts. - [Esolangs](https://github.com/angrykoala/awesome-esolangs#readme) - Programming languages designed for experimentation or as jokes rather than actual use. +- [VBA](https://github.com/sancarn/awesome-vba#readme) - An event-driven version of Visual Basic 6.0 built into most Microsoft Office apps for automation and scripting.

From 30f105b071b95e540f2923ac3d4393a6d0f13fec Mon Sep 17 00:00:00 2001 From: Semyon Moroz Date: Thu, 15 May 2025 13:13:42 +0000 Subject: [PATCH 188/191] Add Standards (#3351) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index fea020b119..6c71cb4ae1 100644 --- a/readme.md +++ b/readme.md @@ -901,6 +901,7 @@ - [Regex](https://github.com/slevithan/awesome-regex#readme) - Specialized language for matching patterns in text. - [Event-Driven Architecture](https://github.com/lutzh/awesome-event-driven-architecture#readme) - A software architecture approach where services collaborate by publishing and subscribing to events. - [Permacomputing](https://github.com/idematos/awesome-permacomputing#readme) - Resilient and regenerative computing practices inspired by permaculture. +- [Standards](https://github.com/donBarbos/awesome-standards#readme) - Standards and proposals that define and enhance software, languages, and related technologies. ## Related From 1350de9bc333dee61d516ab486d055eb48be7931 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 19 May 2025 12:22:47 +0200 Subject: [PATCH 189/191] Meta tweaks --- readme.md | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/readme.md b/readme.md index 6c71cb4ae1..6e3ced3dfe 100644 --- a/readme.md +++ b/readme.md @@ -27,43 +27,6 @@ Special thanks to:

-
-
- WorkOS -
- Your app, enterprise-ready. -
- Start selling to enterprise customers with just a few lines of code. -
- Add Single Sign-On (and more) in minutes instead of months. -
-
-
-
- - - - - Transloadit logo - - -
-
-
- -
- - - - Logto logo - -
- The better identity infrastructure for developers -
- Logto is an open-source Auth0 alternative designed for every app. -
-
-

@@ -76,7 +39,6 @@

-



From d1d8343688949e9b3b1fdd48870325deaf540564 Mon Sep 17 00:00:00 2001 From: Yuri Date: Fri, 6 Jun 2025 20:42:13 +0900 Subject: [PATCH 190/191] Improve clarity in badge usage explanation (#3471) --- awesome.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesome.md b/awesome.md index 4c92438d47..96ad1b1fd8 100644 --- a/awesome.md +++ b/awesome.md @@ -30,7 +30,7 @@ You are allowed to use the badge on lists not included here and also on private ## Awesome mentioned badge -This badge is for projects being mentioned in an Awesome list (**NOT for use in Awesome lists**). For example, the [Chalk](https://github.com/chalk/chalk) project could feature this badge because it's listed in [Awesome Node.js](https://github.com/sindresorhus/awesome-nodejs). It's totally optional for projects, but it's a nice way to show they've been featured in an Awesome list. You can choose either the regular badge or the flat one. +This badge is intended for projects featured in an Awesome list (**not for Awesome lists themselves**). For example, the [Chalk](https://github.com/chalk/chalk) project could feature this badge because it's listed in [Awesome Node.js](https://github.com/sindresorhus/awesome-nodejs). It's totally optional for projects, but it's a nice way to show they've been featured in an Awesome list. You can choose either the regular badge or the flat one. [![Mentioned in Awesome](https://awesome.re/mentioned-badge.svg)](https://awesome.re) [![Mentioned in Awesome](https://awesome.re/mentioned-badge-flat.svg)](https://awesome.re) From 670f82b1a9b986d47359c514b0422e12dba82670 Mon Sep 17 00:00:00 2001 From: Really Him Date: Wed, 11 Jun 2025 08:48:07 -0400 Subject: [PATCH 191/191] Add Claude Code (#3455) Co-authored-by: Sindre Sorhus --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 6e3ced3dfe..6747d3b656 100644 --- a/readme.md +++ b/readme.md @@ -864,6 +864,7 @@ - [Event-Driven Architecture](https://github.com/lutzh/awesome-event-driven-architecture#readme) - A software architecture approach where services collaborate by publishing and subscribing to events. - [Permacomputing](https://github.com/idematos/awesome-permacomputing#readme) - Resilient and regenerative computing practices inspired by permaculture. - [Standards](https://github.com/donBarbos/awesome-standards#readme) - Standards and proposals that define and enhance software, languages, and related technologies. +- [Claude Code](https://github.com/hesreallyhim/awesome-claude-code#readme) - Terminal-based AI coding assistant by Anthropic. ## Related