(refactor) try-except blocks reduced
Browse files- .gitignore +2 -0
- data_collection_utils/parse_gh_docs_config.yaml +2 -2
- data_collection_utils/scrape_gh_docs.py +21 -49
- md-failed.txt +799 -0
- requirements.txt +5 -3
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.secret
|
| 2 |
+
output/
|
data_collection_utils/parse_gh_docs_config.yaml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
# You can override any of these on the CLI, but by default the script will read this file.
|
| 3 |
|
| 4 |
# Input: file with one repo per line; either owner/repo or a full GitHub URL.
|
| 5 |
-
input:
|
| 6 |
|
| 7 |
# Output directories/files
|
| 8 |
outdir: ../output
|
|
@@ -13,7 +13,7 @@ texts_parquet: ../output/texts.parquet
|
|
| 13 |
# Concurrency and behavior
|
| 14 |
workers: 4
|
| 15 |
dry_run: false
|
| 16 |
-
no_fetch:
|
| 17 |
|
| 18 |
# Auth
|
| 19 |
# Path to a file that contains your GitHub token (no quotes, single line)
|
|
|
|
| 2 |
# You can override any of these on the CLI, but by default the script will read this file.
|
| 3 |
|
| 4 |
# Input: file with one repo per line; either owner/repo or a full GitHub URL.
|
| 5 |
+
input: ./github_links.txt
|
| 6 |
|
| 7 |
# Output directories/files
|
| 8 |
outdir: ../output
|
|
|
|
| 13 |
# Concurrency and behavior
|
| 14 |
workers: 4
|
| 15 |
dry_run: false
|
| 16 |
+
no_fetch: false
|
| 17 |
|
| 18 |
# Auth
|
| 19 |
# Path to a file that contains your GitHub token (no quotes, single line)
|
data_collection_utils/scrape_gh_docs.py
CHANGED
|
@@ -579,14 +579,10 @@ def process_repo_entry(
|
|
| 579 |
"status": "age-unknown",
|
| 580 |
"note": "created_at missing",
|
| 581 |
}
|
| 582 |
-
|
| 583 |
-
|
| 584 |
-
|
| 585 |
-
|
| 586 |
-
age_years = (now - created_dt).days / 365.25
|
| 587 |
-
except Exception as e:
|
| 588 |
-
logger.warning(f"Failed to parse created_at for {owner}/{repo}: {e}")
|
| 589 |
-
age_years = 0
|
| 590 |
if age_years < min_repo_age_years:
|
| 591 |
logger.info(
|
| 592 |
f"Skipping {owner}/{repo}: age {age_years:.2f}y < {min_repo_age_years}y"
|
|
@@ -787,10 +783,8 @@ def process_repo_entry(
|
|
| 787 |
f"Found {md_count} .md files for {owner}/{repo} in '{docs_folder.relative_to(outdir)}'"
|
| 788 |
)
|
| 789 |
result["docs_found"] = True
|
| 790 |
-
|
| 791 |
-
|
| 792 |
-
except Exception:
|
| 793 |
-
result["docs_folder"] = str(docs_folder)
|
| 794 |
result["md_count"] = int(md_count)
|
| 795 |
if md_count < 10:
|
| 796 |
append_line_threadsafe(
|
|
@@ -924,11 +918,7 @@ def main():
|
|
| 924 |
cfg: Dict[str, Any] = {}
|
| 925 |
cfg_path = Path(args.config) if args.config else None
|
| 926 |
if cfg_path and cfg_path.exists():
|
| 927 |
-
|
| 928 |
-
cfg = yaml.safe_load(cfg_path.read_text(encoding="utf-8")) or {}
|
| 929 |
-
except Exception as e:
|
| 930 |
-
# Logging not yet configured; fall back to stderr
|
| 931 |
-
sys.stderr.write(f"[WARN] Failed to read config {cfg_path}: {e}\n")
|
| 932 |
|
| 933 |
# Resolve effective configuration (YAML takes precedence for simplicity)
|
| 934 |
# IMPORTANT: resolve any relative paths in YAML against the config file directory
|
|
@@ -982,11 +972,7 @@ def main():
|
|
| 982 |
]
|
| 983 |
with tqdm(total=len(repo_dirs), desc="Existing repos") as pbar:
|
| 984 |
for d in repo_dirs:
|
| 985 |
-
|
| 986 |
-
owner, repo = d.name.split("__", 1)
|
| 987 |
-
except ValueError:
|
| 988 |
-
pbar.update(1)
|
| 989 |
-
continue
|
| 990 |
# Detect docs folder as in process_repo_entry
|
| 991 |
if (d / "docs").exists():
|
| 992 |
docs_folder = d / "docs"
|
|
@@ -1020,10 +1006,7 @@ def main():
|
|
| 1020 |
|
| 1021 |
# Collect all markdown files content rows (with optional language filtering)
|
| 1022 |
for md_file in d.rglob("*.md"):
|
| 1023 |
-
|
| 1024 |
-
rel_repo = md_file.relative_to(d)
|
| 1025 |
-
except Exception:
|
| 1026 |
-
rel_repo = md_file.name
|
| 1027 |
text = md_file.read_text(encoding="utf-8", errors="replace")
|
| 1028 |
lang_code = None
|
| 1029 |
lang_prob = None
|
|
@@ -1056,23 +1039,17 @@ def main():
|
|
| 1056 |
|
| 1057 |
# Save results to Parquet
|
| 1058 |
parquet_path = Path(parquet_value) if parquet_value else (outdir / "results.parquet")
|
| 1059 |
-
|
| 1060 |
-
|
| 1061 |
-
|
| 1062 |
-
|
| 1063 |
-
logger.info(f"Wrote results to {parquet_path}")
|
| 1064 |
-
except Exception as e:
|
| 1065 |
-
logger.error(f"Failed to write Parquet to {parquet_path}: {e}")
|
| 1066 |
|
| 1067 |
# Save per-file texts parquet (if any)
|
| 1068 |
texts_parquet_path = Path(texts_parquet_value) if texts_parquet_value else (outdir / "texts.parquet")
|
| 1069 |
-
|
| 1070 |
-
|
| 1071 |
-
|
| 1072 |
-
|
| 1073 |
-
logger.info(f"Wrote texts to {texts_parquet_path} (rows={len(md_rows)})")
|
| 1074 |
-
except Exception as e:
|
| 1075 |
-
logger.error(f"Failed to write texts Parquet to {texts_parquet_path}: {e}")
|
| 1076 |
logger.info("Done (no-fetch mode).")
|
| 1077 |
return
|
| 1078 |
|
|
@@ -1139,15 +1116,10 @@ def main():
|
|
| 1139 |
# Save results to Parquet
|
| 1140 |
parquet_path = Path(parquet_value) if parquet_value else (outdir / "results.parquet")
|
| 1141 |
if True: # was "if pandas import successful..."
|
| 1142 |
-
|
| 1143 |
-
|
| 1144 |
-
|
| 1145 |
-
|
| 1146 |
-
logger.info(f"Wrote results to {parquet_path}")
|
| 1147 |
-
except Exception as e:
|
| 1148 |
-
logger.error(
|
| 1149 |
-
f"Failed to write Parquet to {parquet_path}: {e}"
|
| 1150 |
-
)
|
| 1151 |
else:
|
| 1152 |
logger.warning(
|
| 1153 |
"pandas not available, cannot write Parquet. Install pandas and pyarrow to enable Parquet output."
|
|
|
|
| 579 |
"status": "age-unknown",
|
| 580 |
"note": "created_at missing",
|
| 581 |
}
|
| 582 |
+
# Normalize ISO8601 (Z -> +00:00)
|
| 583 |
+
created_dt = datetime.fromisoformat(created_at.replace("Z", "+00:00"))
|
| 584 |
+
now = datetime.now(timezone.utc)
|
| 585 |
+
age_years = (now - created_dt).days / 365.25
|
|
|
|
|
|
|
|
|
|
|
|
|
| 586 |
if age_years < min_repo_age_years:
|
| 587 |
logger.info(
|
| 588 |
f"Skipping {owner}/{repo}: age {age_years:.2f}y < {min_repo_age_years}y"
|
|
|
|
| 783 |
f"Found {md_count} .md files for {owner}/{repo} in '{docs_folder.relative_to(outdir)}'"
|
| 784 |
)
|
| 785 |
result["docs_found"] = True
|
| 786 |
+
assert docs_folder.is_relative_to(outdir)
|
| 787 |
+
result["docs_folder"] = str(docs_folder.relative_to(outdir))
|
|
|
|
|
|
|
| 788 |
result["md_count"] = int(md_count)
|
| 789 |
if md_count < 10:
|
| 790 |
append_line_threadsafe(
|
|
|
|
| 918 |
cfg: Dict[str, Any] = {}
|
| 919 |
cfg_path = Path(args.config) if args.config else None
|
| 920 |
if cfg_path and cfg_path.exists():
|
| 921 |
+
cfg = yaml.safe_load(cfg_path.read_text(encoding="utf-8")) or {}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 922 |
|
| 923 |
# Resolve effective configuration (YAML takes precedence for simplicity)
|
| 924 |
# IMPORTANT: resolve any relative paths in YAML against the config file directory
|
|
|
|
| 972 |
]
|
| 973 |
with tqdm(total=len(repo_dirs), desc="Existing repos") as pbar:
|
| 974 |
for d in repo_dirs:
|
| 975 |
+
owner, repo = d.name.split("__", 1)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 976 |
# Detect docs folder as in process_repo_entry
|
| 977 |
if (d / "docs").exists():
|
| 978 |
docs_folder = d / "docs"
|
|
|
|
| 1006 |
|
| 1007 |
# Collect all markdown files content rows (with optional language filtering)
|
| 1008 |
for md_file in d.rglob("*.md"):
|
| 1009 |
+
rel_repo = md_file.relative_to(d)
|
|
|
|
|
|
|
|
|
|
| 1010 |
text = md_file.read_text(encoding="utf-8", errors="replace")
|
| 1011 |
lang_code = None
|
| 1012 |
lang_prob = None
|
|
|
|
| 1039 |
|
| 1040 |
# Save results to Parquet
|
| 1041 |
parquet_path = Path(parquet_value) if parquet_value else (outdir / "results.parquet")
|
| 1042 |
+
df = pd.DataFrame(results)
|
| 1043 |
+
parquet_path.parent.mkdir(parents=True, exist_ok=True)
|
| 1044 |
+
df.to_parquet(parquet_path, index=False)
|
| 1045 |
+
logger.info(f"Wrote results to {parquet_path}")
|
|
|
|
|
|
|
|
|
|
| 1046 |
|
| 1047 |
# Save per-file texts parquet (if any)
|
| 1048 |
texts_parquet_path = Path(texts_parquet_value) if texts_parquet_value else (outdir / "texts.parquet")
|
| 1049 |
+
df_txt = pd.DataFrame(md_rows)
|
| 1050 |
+
texts_parquet_path.parent.mkdir(parents=True, exist_ok=True)
|
| 1051 |
+
df_txt.to_parquet(texts_parquet_path, index=False)
|
| 1052 |
+
logger.info(f"Wrote texts to {texts_parquet_path} (rows={len(md_rows)})")
|
|
|
|
|
|
|
|
|
|
| 1053 |
logger.info("Done (no-fetch mode).")
|
| 1054 |
return
|
| 1055 |
|
|
|
|
| 1116 |
# Save results to Parquet
|
| 1117 |
parquet_path = Path(parquet_value) if parquet_value else (outdir / "results.parquet")
|
| 1118 |
if True: # was "if pandas import successful..."
|
| 1119 |
+
df = pd.DataFrame(results)
|
| 1120 |
+
parquet_path.parent.mkdir(parents=True, exist_ok=True)
|
| 1121 |
+
df.to_parquet(parquet_path, index=False)
|
| 1122 |
+
logger.info(f"Wrote results to {parquet_path}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1123 |
else:
|
| 1124 |
logger.warning(
|
| 1125 |
"pandas not available, cannot write Parquet. Install pandas and pyarrow to enable Parquet output."
|
md-failed.txt
ADDED
|
@@ -0,0 +1,799 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
0xAX/linux-insides # docs-not-found
|
| 2 |
+
2dust/v2rayN # docs-not-found
|
| 3 |
+
1Panel-dev/1Panel # md-count=0
|
| 4 |
+
0voice/interview_internal_reference # md-count=0
|
| 5 |
+
2noise/ChatTTS # too-young
|
| 6 |
+
3b1b/manim # md-count=0
|
| 7 |
+
2dust/v2rayNG # docs-not-found
|
| 8 |
+
996icu/996.ICU # docs-not-found
|
| 9 |
+
521xueweihan/HelloGitHub # docs-not-found
|
| 10 |
+
9001/copyparty # docs-not-found
|
| 11 |
+
AFNetworking/AFNetworking # docs-not-found
|
| 12 |
+
AUTOMATIC1111/stable-diffusion-webui # docs-not-found
|
| 13 |
+
AMAI-GmbH/AI-Expert-Roadmap # docs-not-found
|
| 14 |
+
Aider-AI/aider # too-young
|
| 15 |
+
AdguardTeam/AdGuardHome # md-count=0
|
| 16 |
+
All-Hands-AI/OpenHands # too-young
|
| 17 |
+
1c7/chinese-independent-developer # md-count=0
|
| 18 |
+
AlistGo/alist # md-count=0
|
| 19 |
+
AllThingsSmitty/css-protips # docs-not-found
|
| 20 |
+
Alamofire/Alamofire # md-count=0
|
| 21 |
+
AntonOsika/gpt-engineer # too-young
|
| 22 |
+
Alvin9999/new-pac # docs-not-found
|
| 23 |
+
AppFlowy-IO/AppFlowy # md-count=2
|
| 24 |
+
Anduin2017/HowToCook # md-count=0
|
| 25 |
+
AmruthPillai/Reactive-Resume # md-count=0
|
| 26 |
+
AvaloniaUI/Avalonia # md-count=8
|
| 27 |
+
Avik-Jain/100-Days-Of-ML-Code # docs-not-found
|
| 28 |
+
Asabeneh/30-Days-Of-JavaScript # md-count=0
|
| 29 |
+
BerriAI/litellm # too-young
|
| 30 |
+
Asabeneh/30-Days-Of-Python # md-count=0
|
| 31 |
+
AykutSarac/jsoncrack.com # docs-not-found
|
| 32 |
+
ByteByteGoHq/system-design-101 # too-young
|
| 33 |
+
Binaryify/NeteaseCloudMusicApi # md-count=0
|
| 34 |
+
Blankj/AndroidUtilCode # docs-not-found
|
| 35 |
+
BurntSushi/ripgrep # md-count=0
|
| 36 |
+
Chanzhaoyu/chatgpt-web # too-young
|
| 37 |
+
CSSEGISandData/COVID-19 # docs-not-found
|
| 38 |
+
ChatGPTNextWeb/NextChat # too-young
|
| 39 |
+
CherryHQ/cherry-studio # too-young
|
| 40 |
+
ChartsOrg/Charts # docs-not-found
|
| 41 |
+
Chalarangelo/30-seconds-of-code # docs-not-found
|
| 42 |
+
CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers # md-count=0
|
| 43 |
+
ChrisTitusTech/winutil # md-count=0
|
| 44 |
+
ColorlibHQ/AdminLTE # md-count=0
|
| 45 |
+
CompVis/stable-diffusion # docs-not-found
|
| 46 |
+
CorentinJ/Real-Time-Voice-Cloning # docs-not-found
|
| 47 |
+
CorentinTh/it-tools # md-count=0
|
| 48 |
+
DataExpert-io/data-engineer-handbook # too-young
|
| 49 |
+
CyC2018/CS-Notes # md-count=5
|
| 50 |
+
DIYgod/RSSHub # md-count=0
|
| 51 |
+
DataTalksClub/data-engineering-zoomcamp # md-count=1
|
| 52 |
+
DefinitelyTyped/DefinitelyTyped # md-count=1
|
| 53 |
+
DigitalPlatDev/FreeDomain # too-young
|
| 54 |
+
Developer-Y/cs-video-courses # docs-not-found
|
| 55 |
+
DevToys-app/DevToys # md-count=0
|
| 56 |
+
DioxusLabs/dioxus # md-count=3
|
| 57 |
+
DopplerHQ/awesome-interview-questions # docs-not-found
|
| 58 |
+
DovAmir/awesome-design-patterns # md-count=0
|
| 59 |
+
Dogfalo/materialize # docs-not-found
|
| 60 |
+
Eugeny/tabby # md-count=0
|
| 61 |
+
FFmpeg/FFmpeg # md-count=1
|
| 62 |
+
FlowiseAI/Flowise # too-young
|
| 63 |
+
Ebazhanov/linkedin-skill-assessments-quizzes # md-count=0
|
| 64 |
+
FoundationAgents/MetaGPT # too-young
|
| 65 |
+
FoundationAgents/OpenManus # too-young
|
| 66 |
+
FortAwesome/Font-Awesome # md-count=0
|
| 67 |
+
FiloSottile/mkcert # md-count=0
|
| 68 |
+
FreeCodeCampChina/freecodecamp.cn # docs-not-found
|
| 69 |
+
FuelLabs/fuel-core # md-count=4
|
| 70 |
+
GitHubDaily/GitHubDaily # docs-not-found
|
| 71 |
+
GitSquared/edex-ui # docs-not-found
|
| 72 |
+
GokuMohandas/Made-With-ML # md-count=9
|
| 73 |
+
GrowingGit/GitHub-Chinese-Top-Charts # md-count=5
|
| 74 |
+
GitbookIO/gitbook # md-count=0
|
| 75 |
+
HeyPuter/puter # too-young
|
| 76 |
+
GorvGoyl/Clone-Wars # md-count=0
|
| 77 |
+
GyulyVGC/sniffnet # md-count=0
|
| 78 |
+
Hack-with-Github/Awesome-Hacking # docs-not-found
|
| 79 |
+
IanLunn/Hover # docs-not-found
|
| 80 |
+
JedWatson/react-select # md-count=1
|
| 81 |
+
JaidedAI/EasyOCR # docs-not-found
|
| 82 |
+
JushBJJ/Mr.-Ranedeer-AI-Tutor # too-young
|
| 83 |
+
IceWhaleTech/CasaOS # md-count=0
|
| 84 |
+
KRTirtho/spotube # md-count=0
|
| 85 |
+
LAION-AI/Open-Assistant # too-young
|
| 86 |
+
LC044/WeChatMsg # too-young
|
| 87 |
+
JuliaLang/julia # md-count=1
|
| 88 |
+
LadybirdBrowser/ladybird # too-young
|
| 89 |
+
LeCoupa/awesome-cheatsheets # md-count=0
|
| 90 |
+
Lightning-AI/pytorch-lightning # md-count=1
|
| 91 |
+
Kong/insomnia # md-count=0
|
| 92 |
+
Light-City/CPlusPlusThings # md-count=0
|
| 93 |
+
Mintplex-Labs/anything-llm # too-young
|
| 94 |
+
Kong/kong # md-count=0
|
| 95 |
+
ManimCommunity/manim # docs-not-found
|
| 96 |
+
MichaelCade/90DaysOfDevOps # docs-not-found
|
| 97 |
+
MonitorControl/MonitorControl # docs-not-found
|
| 98 |
+
MisterBooo/LeetCodeAnimation # docs-not-found
|
| 99 |
+
NanmiCoder/MediaCrawler # too-young
|
| 100 |
+
NaiboWang/EasySpider # md-count=0
|
| 101 |
+
NationalSecurityAgency/ghidra # md-count=2
|
| 102 |
+
MunGell/awesome-for-beginners # md-count=0
|
| 103 |
+
NARKOZ/hacker-scripts # md-count=0
|
| 104 |
+
NervJS/taro # md-count=8
|
| 105 |
+
NginxProxyManager/nginx-proxy-manager # md-count=8
|
| 106 |
+
OpenCut-app/OpenCut # too-young
|
| 107 |
+
OAI/OpenAPI-Specification # docs-not-found
|
| 108 |
+
OpenBB-finance/OpenBB # md-count=0
|
| 109 |
+
PKUanonym/REKCARC-TSC-UHT # md-count=5
|
| 110 |
+
PatrickJS/awesome-cursorrules # too-young
|
| 111 |
+
PanJiaChen/vue-element-admin # md-count=0
|
| 112 |
+
PlexPt/awesome-chatgpt-prompts-zh # too-young
|
| 113 |
+
PhilJay/MPAndroidChart # md-count=0
|
| 114 |
+
Pierian-Data/Complete-Python-3-Bootcamp # md-count=0
|
| 115 |
+
Pythagora-io/gpt-pilot # too-young
|
| 116 |
+
PostHog/posthog # md-count=2
|
| 117 |
+
QuivrHQ/quivr # too-young
|
| 118 |
+
RSSNext/Folo # too-young
|
| 119 |
+
QSCTech/zju-icicles # md-count=0
|
| 120 |
+
RVC-Boss/GPT-SoVITS # too-young
|
| 121 |
+
RVC-Project/Retrieval-based-Voice-Conversion-WebUI # too-young
|
| 122 |
+
ReactiveX/RxJava # md-count=0
|
| 123 |
+
OWASP/CheatSheetSeries # md-count=0
|
| 124 |
+
ReactiveX/rxjs # md-count=0
|
| 125 |
+
Semantic-Org/Semantic-UI # md-count=0
|
| 126 |
+
SeleniumHQ/selenium # md-count=0
|
| 127 |
+
SerenityOS/serenity # docs-not-found
|
| 128 |
+
Shubhamsaboo/awesome-llm-apps # too-young
|
| 129 |
+
RocketChat/Rocket.Chat # md-count=0
|
| 130 |
+
Significant-Gravitas/AutoGPT # too-young
|
| 131 |
+
ShareX/ShareX # docs-not-found
|
| 132 |
+
SheetJS/sheetjs # md-count=0
|
| 133 |
+
SimplifyJobs/Summer2026-Internships # docs-not-found
|
| 134 |
+
Stability-AI/stablediffusion # too-young
|
| 135 |
+
Stirling-Tools/Stirling-PDF # too-young
|
| 136 |
+
TabbyML/tabby # too-young
|
| 137 |
+
Solido/awesome-flutter # docs-not-found
|
| 138 |
+
SortableJS/Sortable # docs-not-found
|
| 139 |
+
TapXWorld/ChinaTextbook # docs-not-found
|
| 140 |
+
TencentARC/GFPGAN # docs-not-found
|
| 141 |
+
Textualize/rich # md-count=0
|
| 142 |
+
StevenBlack/hosts # md-count=0
|
| 143 |
+
TheAlgorithms/C-Plus-Plus # md-count=0
|
| 144 |
+
The-Run-Philosophy-Organization/run # docs-not-found
|
| 145 |
+
TheAlgorithms/Java # docs-not-found
|
| 146 |
+
TheAlgorithms/Python # md-count=0
|
| 147 |
+
TheAlgorithms/JavaScript # docs-not-found
|
| 148 |
+
Trinea/android-open-project # docs-not-found
|
| 149 |
+
TryGhost/Ghost # md-count=0
|
| 150 |
+
VincentGarreau/particles.js # docs-not-found
|
| 151 |
+
https://github.com/XIU2/TrackersListCollection # exception
|
| 152 |
+
Unitech/pm2 # md-count=0
|
| 153 |
+
WerWolv/ImHex # md-count=0
|
| 154 |
+
XingangPan/DragGAN # too-young
|
| 155 |
+
XX-net/XX-Net # md-count=0
|
| 156 |
+
XTLS/Xray-core # md-count=0
|
| 157 |
+
YunaiV/ruoyi-vue-pro # md-count=0
|
| 158 |
+
abi/screenshot-to-code # too-young
|
| 159 |
+
acheong08/ChatGPT # too-young
|
| 160 |
+
Z4nzu/hackingtool # md-count=0
|
| 161 |
+
ZuzooVn/machine-learning-for-software-engineers # docs-not-found
|
| 162 |
+
acmesh-official/acme.sh # docs-not-found
|
| 163 |
+
adam-p/markdown-here # docs-not-found
|
| 164 |
+
ageitgey/face_recognition # md-count=0
|
| 165 |
+
agalwood/Motrix # docs-not-found
|
| 166 |
+
ageron/handson-ml2 # md-count=0
|
| 167 |
+
adobe/brackets # md-count=0
|
| 168 |
+
airbnb/javascript # md-count=0
|
| 169 |
+
airbnb/lottie-web # md-count=0
|
| 170 |
+
agno-agi/agno # md-count=0
|
| 171 |
+
ajeetdsouza/zoxide # docs-not-found
|
| 172 |
+
airbnb/lottie-android # md-count=0
|
| 173 |
+
alacritty/alacritty # md-count=2
|
| 174 |
+
akullpp/awesome-java # md-count=0
|
| 175 |
+
algorithm-visualizer/algorithm-visualizer # docs-not-found
|
| 176 |
+
alibaba/druid # md-count=1
|
| 177 |
+
alebcay/awesome-shell # md-count=0
|
| 178 |
+
alibaba/nacos # md-count=0
|
| 179 |
+
alibaba/easyexcel # md-count=2
|
| 180 |
+
alibaba/p3c # md-count=0
|
| 181 |
+
alex/what-happens-when # md-count=0
|
| 182 |
+
alibaba/canal # md-count=0
|
| 183 |
+
amix/vimrc # md-count=0
|
| 184 |
+
alibaba/spring-cloud-alibaba # md-count=0
|
| 185 |
+
alvarotrigo/fullPage.js # docs-not-found
|
| 186 |
+
animate-css/animate.css # md-count=0
|
| 187 |
+
angular/angular.js # md-count=0
|
| 188 |
+
angular/angular # md-count=4
|
| 189 |
+
android/architecture-samples # docs-not-found
|
| 190 |
+
anoma/anoma # md-count=0
|
| 191 |
+
anthropics/claude-code # too-young
|
| 192 |
+
ant-design/ant-design-pro # md-count=0
|
| 193 |
+
ansible/ansible # md-count=0
|
| 194 |
+
aosabook/500lines # md-count=1
|
| 195 |
+
anuraghazra/github-readme-stats # md-count=0
|
| 196 |
+
apache/airflow # md-count=1
|
| 197 |
+
appsmithorg/appsmith # md-count=8
|
| 198 |
+
apache/dubbo # md-count=0
|
| 199 |
+
aria2/aria2 # md-count=0
|
| 200 |
+
apache/echarts # md-count=0
|
| 201 |
+
ariya/phantomjs # docs-not-found
|
| 202 |
+
apache/kafka # md-count=0
|
| 203 |
+
aseprite/aseprite # md-count=4
|
| 204 |
+
ascoders/weekly # docs-not-found
|
| 205 |
+
astral-sh/uv # too-young
|
| 206 |
+
astaxie/build-web-application-with-golang # md-count=0
|
| 207 |
+
awesome-foss/awesome-sysadmin # docs-not-found
|
| 208 |
+
awesome-selfhosted/awesome-selfhosted # docs-not-found
|
| 209 |
+
atom/atom # md-count=3
|
| 210 |
+
avelino/awesome-go # md-count=0
|
| 211 |
+
awesomedata/awesome-public-datasets # docs-not-found
|
| 212 |
+
axios/axios # md-count=0
|
| 213 |
+
babel/babel # md-count=5
|
| 214 |
+
aymericdamien/TensorFlow-Examples # docs-not-found
|
| 215 |
+
babysor/MockingBird # docs-not-found
|
| 216 |
+
bailicangdu/vue2-elm # docs-not-found
|
| 217 |
+
azl397985856/leetcode # md-count=0
|
| 218 |
+
base/node # too-young
|
| 219 |
+
balena-io/etcher # md-count=9
|
| 220 |
+
bevyengine/bevy # md-count=5
|
| 221 |
+
beego/beego # md-count=0
|
| 222 |
+
bannedbook/fanqiang # md-count=0
|
| 223 |
+
binary-husky/gpt_academic # too-young
|
| 224 |
+
bilibili/ijkplayer # md-count=1
|
| 225 |
+
bigskysoftware/htmx # docs-not-found
|
| 226 |
+
binarywang/WxJava # md-count=0
|
| 227 |
+
bayandin/awesome-awesomeness # md-count=0
|
| 228 |
+
binhnguyennus/awesome-scalability # docs-not-found
|
| 229 |
+
bregman-arie/devops-exercises # docs-not-found
|
| 230 |
+
bradtraversy/50projects50days # md-count=0
|
| 231 |
+
browser-use/browser-use # too-young
|
| 232 |
+
blueimp/jQuery-File-Upload # docs-not-found
|
| 233 |
+
bradtraversy/design-resources-for-developers # md-count=0
|
| 234 |
+
caddyserver/caddy # md-count=0
|
| 235 |
+
byoungd/English-level-up-tips # md-count=0
|
| 236 |
+
bumptech/glide # docs-not-found
|
| 237 |
+
calcom/cal.com # md-count=1
|
| 238 |
+
caolan/async # md-count=0
|
| 239 |
+
carbon-language/carbon-lang # docs-not-found
|
| 240 |
+
ccxt/ccxt # md-count=0
|
| 241 |
+
certbot/certbot # md-count=0
|
| 242 |
+
chakra-ui/chakra-ui # md-count=0
|
| 243 |
+
cfenollosa/os-tutorial # docs-not-found
|
| 244 |
+
charlax/professional-programming # md-count=0
|
| 245 |
+
charmbracelet/bubbletea # docs-not-found
|
| 246 |
+
chatanywhere/GPT_API_free # too-young
|
| 247 |
+
chatboxai/chatbox # too-young
|
| 248 |
+
chatchat-space/Langchain-Chatchat # too-young
|
| 249 |
+
chenfei-wu/TaskMatrix # too-young
|
| 250 |
+
cheeriojs/cheerio # md-count=8
|
| 251 |
+
chinabugotech/hutool # docs-not-found
|
| 252 |
+
chinese-poetry/chinese-poetry # docs-not-found
|
| 253 |
+
clash-verge-rev/clash-verge-rev # too-young
|
| 254 |
+
chubin/cheat.sh # md-count=2
|
| 255 |
+
cline/cline # too-young
|
| 256 |
+
brillout/awesome-react-components # md-count=0
|
| 257 |
+
chrislgarry/Apollo-11 # docs-not-found
|
| 258 |
+
cli/cli # docs-not-found
|
| 259 |
+
cloudcommunity/Free-Certifications # md-count=0
|
| 260 |
+
codecrafters-io/build-your-own-x # md-count=0
|
| 261 |
+
comfyanonymous/ComfyUI # too-young
|
| 262 |
+
colinhacks/zod # md-count=1
|
| 263 |
+
conductor-oss/conductor # too-young
|
| 264 |
+
codepath/android_guides # docs-not-found
|
| 265 |
+
continuedev/continue # too-young
|
| 266 |
+
coolsnowwolf/lede # md-count=0
|
| 267 |
+
crewAIInc/crewAI # too-young
|
| 268 |
+
cursor/cursor # too-young
|
| 269 |
+
coollabsio/coolify # md-count=0
|
| 270 |
+
coreybutler/nvm-windows # md-count=0
|
| 271 |
+
cypress-io/cypress # md-count=1
|
| 272 |
+
dair-ai/Prompt-Engineering-Guide # too-young
|
| 273 |
+
danielmiessler/Fabric # too-young
|
| 274 |
+
d2l-ai/d2l-zh # docs-not-found
|
| 275 |
+
danny-avila/LibreChat # too-young
|
| 276 |
+
datalab-to/marker # too-young
|
| 277 |
+
dani-garcia/vaultwarden # docs-not-found
|
| 278 |
+
danielmiessler/SecLists # docs-not-found
|
| 279 |
+
date-fns/date-fns # md-count=9
|
| 280 |
+
deepseek-ai/DeepSeek-R1 # too-young
|
| 281 |
+
deepseek-ai/DeepSeek-V3 # too-young
|
| 282 |
+
deepseek-ai/awesome-deepseek-integration # too-young
|
| 283 |
+
dbeaver/dbeaver # docs-not-found
|
| 284 |
+
dcloudio/uni-app # md-count=1
|
| 285 |
+
deepfakes/faceswap # md-count=0
|
| 286 |
+
denoland/deno # md-count=0
|
| 287 |
+
denysdovhan/wtfjs # docs-not-found
|
| 288 |
+
derailed/k9s # docs-not-found
|
| 289 |
+
django/django # md-count=1
|
| 290 |
+
dkhamsing/open-source-ios-apps # docs-not-found
|
| 291 |
+
digitalocean/nginxconfig.io # md-count=0
|
| 292 |
+
dnSpy/dnSpy # docs-not-found
|
| 293 |
+
dockur/windows # too-young
|
| 294 |
+
docling-project/docling # too-young
|
| 295 |
+
directus/directus # md-count=0
|
| 296 |
+
donnemartin/data-science-ipython-notebooks # docs-not-found
|
| 297 |
+
docker/awesome-compose # md-count=0
|
| 298 |
+
donnemartin/interactive-coding-challenges # docs-not-found
|
| 299 |
+
donnemartin/system-design-primer # docs-not-found
|
| 300 |
+
drawdb-io/drawdb # too-young
|
| 301 |
+
doocs/leetcode # md-count=0
|
| 302 |
+
drizzle-team/drizzle-orm # md-count=4
|
| 303 |
+
dypsilon/frontend-dev-bookmarks # docs-not-found
|
| 304 |
+
dylanaraps/pure-bash-bible # docs-not-found
|
| 305 |
+
duckdb/duckdb # docs-not-found
|
| 306 |
+
elsewhencode/project-guidelines # md-count=0
|
| 307 |
+
enaqx/awesome-react # md-count=0
|
| 308 |
+
etcd-io/etcd # md-count=1
|
| 309 |
+
eriklindernoren/ML-From-Scratch # docs-not-found
|
| 310 |
+
ethereum/go-ethereum # md-count=1
|
| 311 |
+
eugeneyan/applied-ml # md-count=0
|
| 312 |
+
evanw/esbuild # md-count=2
|
| 313 |
+
exo-explore/exo # too-young
|
| 314 |
+
eugenp/tutorials # md-count=9
|
| 315 |
+
excalidraw/excalidraw # md-count=1
|
| 316 |
+
exelban/stats # docs-not-found
|
| 317 |
+
f/awesome-chatgpt-prompts # too-young
|
| 318 |
+
explosion/spaCy # md-count=0
|
| 319 |
+
expressjs/express # docs-not-found
|
| 320 |
+
fabricjs/fabric.js # docs-not-found
|
| 321 |
+
facebook/docusaurus # md-count=0
|
| 322 |
+
facebook/react # md-count=2
|
| 323 |
+
expo/expo # md-count=1
|
| 324 |
+
facebookresearch/fairseq # md-count=1
|
| 325 |
+
facebookresearch/segment-anything # too-young
|
| 326 |
+
facebook/react-native # md-count=0
|
| 327 |
+
faif/python-patterns # md-count=0
|
| 328 |
+
fastapi/full-stack-fastapi-template # docs-not-found
|
| 329 |
+
fatedier/frp # md-count=3
|
| 330 |
+
feder-cr/Jobs_Applier_AI_Agent_AIHawk # too-young
|
| 331 |
+
facebookresearch/detectron2 # md-count=4
|
| 332 |
+
fffaraz/awesome-cpp # md-count=0
|
| 333 |
+
fengdu78/Coursera-ML-AndrewNg-Notes # docs-not-found
|
| 334 |
+
facebookresearch/faiss # md-count=0
|
| 335 |
+
filebrowser/filebrowser # md-count=4
|
| 336 |
+
firecrawl/firecrawl # too-young
|
| 337 |
+
files-community/Files # docs-not-found
|
| 338 |
+
floating-ui/floating-ui # md-count=0
|
| 339 |
+
fish-shell/fish-shell # docs-not-found
|
| 340 |
+
fighting41love/funNLP # md-count=0
|
| 341 |
+
floodsung/Deep-Learning-Papers-Reading-Roadmap # docs-not-found
|
| 342 |
+
florinpop17/app-ideas # md-count=0
|
| 343 |
+
freeCodeCamp/devdocs # md-count=5
|
| 344 |
+
freefq/free # docs-not-found
|
| 345 |
+
freqtrade/freqtrade # docs-not-found
|
| 346 |
+
freeCodeCamp/freeCodeCamp # md-count=0
|
| 347 |
+
fxsjy/jieba # md-count=0
|
| 348 |
+
gchq/CyberChef # md-count=0
|
| 349 |
+
gedoor/legado # docs-not-found
|
| 350 |
+
geekcompany/ResumeSample # docs-not-found
|
| 351 |
+
geekcomputers/Python # md-count=4
|
| 352 |
+
geekan/HowToLiveLonger # md-count=0
|
| 353 |
+
geekxh/hello-algorithm # docs-not-found
|
| 354 |
+
getsentry/sentry # md-count=1
|
| 355 |
+
ggml-org/llama.cpp # too-young
|
| 356 |
+
ggml-org/whisper.cpp # too-young
|
| 357 |
+
getify/You-Dont-Know-JS # docs-not-found
|
| 358 |
+
gin-gonic/gin # md-count=1
|
| 359 |
+
ghostty-org/ghostty # docs-not-found
|
| 360 |
+
git/git # md-count=0
|
| 361 |
+
gkd-kit/gkd # too-young
|
| 362 |
+
go-gitea/gitea # md-count=0
|
| 363 |
+
go-gorm/gorm # docs-not-found
|
| 364 |
+
goabstract/Awesome-Design-Tools # md-count=1
|
| 365 |
+
frappe/erpnext # md-count=0
|
| 366 |
+
gogs/gogs # md-count=6
|
| 367 |
+
github/gitignore # md-count=0
|
| 368 |
+
godotengine/godot # md-count=0
|
| 369 |
+
golang-standards/project-layout # md-count=1
|
| 370 |
+
google-gemini/gemini-cli # too-young
|
| 371 |
+
goldbergyoni/nodebestpractices # md-count=0
|
| 372 |
+
google-research/tuning_playbook # too-young
|
| 373 |
+
google/comprehensive-rust # too-young
|
| 374 |
+
google-research/google-research # md-count=2
|
| 375 |
+
google/leveldb # md-count=4
|
| 376 |
+
google-research/bert # docs-not-found
|
| 377 |
+
formulahendry/955.WLB # md-count=0
|
| 378 |
+
google/python-fire # md-count=7
|
| 379 |
+
google/guava # md-count=0
|
| 380 |
+
gorhill/uBlock # md-count=1
|
| 381 |
+
google/material-design-lite # md-count=0
|
| 382 |
+
gradio-app/gradio # md-count=0
|
| 383 |
+
grafana/k6 # md-count=3
|
| 384 |
+
gto76/python-cheatsheet # docs-not-found
|
| 385 |
+
google/material-design-icons # md-count=0
|
| 386 |
+
hacksider/Deep-Live-Cam # too-young
|
| 387 |
+
h5bp/html5-boilerplate # md-count=9
|
| 388 |
+
h5bp/Front-end-Developer-Interview-Questions # docs-not-found
|
| 389 |
+
hakimel/reveal.js # docs-not-found
|
| 390 |
+
harry0703/MoneyPrinterTurbo # too-young
|
| 391 |
+
harness/harness # md-count=0
|
| 392 |
+
hashicorp/vault # md-count=1
|
| 393 |
+
helm/helm # md-count=1
|
| 394 |
+
helix-editor/helix # md-count=4
|
| 395 |
+
herrbischoff/awesome-macos-command-line # md-count=0
|
| 396 |
+
hexojs/hexo # md-count=0
|
| 397 |
+
hasura/graphql-engine # md-count=3
|
| 398 |
+
hiyouga/LLaMA-Factory # too-young
|
| 399 |
+
heyverse/hey # docs-not-found
|
| 400 |
+
home-assistant/core # md-count=0
|
| 401 |
+
hiroi-sora/Umi-OCR # md-count=6
|
| 402 |
+
hoppscotch/hoppscotch # md-count=0
|
| 403 |
+
google/styleguide # md-count=0
|
| 404 |
+
huginn/huginn # md-count=9
|
| 405 |
+
huihut/interview # md-count=3
|
| 406 |
+
hyprwm/Hyprland # md-count=1
|
| 407 |
+
huggingface/pytorch-image-models # md-count=0
|
| 408 |
+
huiyadanli/RevokeMsgPatcher # md-count=0
|
| 409 |
+
iawia002/lux # md-count=0
|
| 410 |
+
ibraheemdev/modern-unix # docs-not-found
|
| 411 |
+
imambungo/top1000repos # too-young
|
| 412 |
+
iina/iina # docs-not-found
|
| 413 |
+
iluwatar/java-design-patterns # docs-not-found
|
| 414 |
+
infiniflow/ragflow # too-young
|
| 415 |
+
immutable-js/immutable-js # md-count=0
|
| 416 |
+
imputnet/cobalt # md-count=4
|
| 417 |
+
inkonchain/docs # too-young
|
| 418 |
+
inkonchain/ink-kit # too-young
|
| 419 |
+
inkonchain/node # too-young
|
| 420 |
+
impress/impress.js # docs-not-found
|
| 421 |
+
iptv-org/iptv # docs-not-found
|
| 422 |
+
isocpp/CppCoreGuidelines # md-count=1
|
| 423 |
+
istio/istio # md-count=0
|
| 424 |
+
ityouknow/spring-boot-examples # md-count=0
|
| 425 |
+
influxdata/influxdb # md-count=0
|
| 426 |
+
jackfrued/Python-100-Days # docs-not-found
|
| 427 |
+
jashkenas/backbone # md-count=0
|
| 428 |
+
jakevdp/PythonDataScienceHandbook # md-count=0
|
| 429 |
+
jaywcjlove/awesome-mac # md-count=2
|
| 430 |
+
jeecgboot/JeecgBoot # md-count=0
|
| 431 |
+
jaywcjlove/linux-command # md-count=0
|
| 432 |
+
jamiebuilds/the-super-tiny-compiler # md-count=0
|
| 433 |
+
jellyfin/jellyfin # docs-not-found
|
| 434 |
+
https://github.com/jlevy/the-art-of-command-line # exception
|
| 435 |
+
jobbole/awesome-python-cn # md-count=0
|
| 436 |
+
jgraph/drawio-desktop # md-count=0
|
| 437 |
+
josephmisiti/awesome-machine-learning # md-count=0
|
| 438 |
+
joshbuchea/HEAD # md-count=0
|
| 439 |
+
jqlang/jq # md-count=1
|
| 440 |
+
jquery/jquery # md-count=0
|
| 441 |
+
jondot/awesome-react-native # md-count=0
|
| 442 |
+
jumpserver/jumpserver # md-count=1
|
| 443 |
+
juliangarnier/anime # docs-not-found
|
| 444 |
+
junegunn/fzf # md-count=0
|
| 445 |
+
junegunn/vim-plug # md-count=0
|
| 446 |
+
jwasham/coding-interview-university # md-count=0
|
| 447 |
+
justjavac/awesome-wechat-weapp # md-count=0
|
| 448 |
+
https://github.com/justjavac/free-programming-books-zh_CN # exception
|
| 449 |
+
kamranahmedse/design-patterns-for-humans # docs-not-found
|
| 450 |
+
karan/Projects # md-count=0
|
| 451 |
+
karpathy/LLM101n # too-young
|
| 452 |
+
karpathy/nanoGPT # too-young
|
| 453 |
+
k88hudson/git-flight-rules # md-count=0
|
| 454 |
+
kamranahmedse/developer-roadmap # docs-not-found
|
| 455 |
+
karanpratapsingh/system-design # docs-not-found
|
| 456 |
+
kdn251/interviews # docs-not-found
|
| 457 |
+
keras-team/keras # md-count=0
|
| 458 |
+
kenwheeler/slick # docs-not-found
|
| 459 |
+
kelseyhightower/nocode # md-count=0
|
| 460 |
+
kingToolbox/WindTerm # md-count=1
|
| 461 |
+
kilimchoi/engineering-blogs # md-count=0
|
| 462 |
+
koalaman/shellcheck # md-count=0
|
| 463 |
+
krahets/hello-algo # too-young
|
| 464 |
+
kovidgoyal/kitty # md-count=0
|
| 465 |
+
kubernetes/kubernetes # md-count=3
|
| 466 |
+
kuchin/awesome-cto # docs-not-found
|
| 467 |
+
labstack/echo # md-count=0
|
| 468 |
+
langchain-ai/langchain # too-young
|
| 469 |
+
langflow-ai/langflow # too-young
|
| 470 |
+
langgenius/dify # too-young
|
| 471 |
+
labmlai/annotated_deep_learning_paper_implementations # md-count=0
|
| 472 |
+
labuladong/fucking-algorithm # docs-not-found
|
| 473 |
+
lapce/lapce # md-count=3
|
| 474 |
+
kodecocodes/swift-algorithm-club # md-count=0
|
| 475 |
+
laravel/framework # md-count=0
|
| 476 |
+
lencx/ChatGPT # too-young
|
| 477 |
+
laurent22/joplin # md-count=2
|
| 478 |
+
laravel/laravel # md-count=0
|
| 479 |
+
leonardomso/33-js-concepts # md-count=0
|
| 480 |
+
lib-pku/libpku # docs-not-found
|
| 481 |
+
linera-io/linera-protocol # md-count=9
|
| 482 |
+
lenve/vhr # docs-not-found
|
| 483 |
+
linexjlin/GPTs # too-young
|
| 484 |
+
lizongying/my-tv # too-young
|
| 485 |
+
lllyasviel/ControlNet # too-young
|
| 486 |
+
lllyasviel/Fooocus # too-young
|
| 487 |
+
lm-sys/FastChat # too-young
|
| 488 |
+
lobehub/lobe-chat # too-young
|
| 489 |
+
localsend/localsend # too-young
|
| 490 |
+
lodash/lodash # md-count=1
|
| 491 |
+
logseq/logseq # md-count=9
|
| 492 |
+
louislam/uptime-kuma # md-count=0
|
| 493 |
+
lukasz-madon/awesome-remote-job # md-count=0
|
| 494 |
+
llvm/llvm-project # md-count=7
|
| 495 |
+
lutzroeder/netron # docs-not-found
|
| 496 |
+
lukehoban/es6features # md-count=0
|
| 497 |
+
makeplane/plane # too-young
|
| 498 |
+
lyswhut/lx-music-desktop # md-count=0
|
| 499 |
+
lydiahallie/javascript-questions # docs-not-found
|
| 500 |
+
macrozheng/mall # docs-not-found
|
| 501 |
+
mantinedev/mantine # md-count=0
|
| 502 |
+
mastodon/mastodon # md-count=1
|
| 503 |
+
maybe-finance/maybe # too-young
|
| 504 |
+
mckaywrigley/chatbot-ui # too-young
|
| 505 |
+
massgravel/Microsoft-Activation-Scripts # docs-not-found
|
| 506 |
+
mattermost/mattermost # md-count=1
|
| 507 |
+
mem0ai/mem0 # too-young
|
| 508 |
+
meilisearch/meilisearch # md-count=4
|
| 509 |
+
menloresearch/jan # too-young
|
| 510 |
+
meta-llama/llama # too-young
|
| 511 |
+
meta-llama/llama3 # too-young
|
| 512 |
+
michalsnik/aos # md-count=0
|
| 513 |
+
microsoft/Data-Science-For-Beginners # md-count=1
|
| 514 |
+
microsoft/ML-For-Beginners # md-count=1
|
| 515 |
+
microsoft/AI-For-Beginners # md-count=0
|
| 516 |
+
microsoft/Web-Dev-For-Beginners # md-count=2
|
| 517 |
+
microsoft/ai-agents-for-beginners # too-young
|
| 518 |
+
microsoft/autogen # too-young
|
| 519 |
+
microsoft/MS-DOS # md-count=0
|
| 520 |
+
microsoft/generative-ai-for-beginners # too-young
|
| 521 |
+
microsoft/calculator # md-count=4
|
| 522 |
+
microsoft/graphrag # too-young
|
| 523 |
+
microsoft/markitdown # too-young
|
| 524 |
+
microsoft/monaco-editor # md-count=1
|
| 525 |
+
microsoft/TypeScript # md-count=0
|
| 526 |
+
microsoft/qlib # md-count=0
|
| 527 |
+
microsoft/vscode # md-count=3
|
| 528 |
+
mifi/lossless-cut # md-count=0
|
| 529 |
+
mindsdb/mindsdb # md-count=1
|
| 530 |
+
minimaxir/big-list-of-naughty-strings # md-count=0
|
| 531 |
+
mlabonne/llm-course # too-young
|
| 532 |
+
modelcontextprotocol/servers # too-young
|
| 533 |
+
mli/paper-reading # md-count=0
|
| 534 |
+
moment/moment # docs-not-found
|
| 535 |
+
motiondivision/motion # docs-not-found
|
| 536 |
+
mouredev/Hello-Python # docs-not-found
|
| 537 |
+
mozilla/pdf.js # md-count=4
|
| 538 |
+
mpv-player/mpv # docs-not-found
|
| 539 |
+
mqyqingfeng/Blog # md-count=0
|
| 540 |
+
mrdoob/three.js # md-count=1
|
| 541 |
+
mudler/LocalAI # too-young
|
| 542 |
+
myshell-ai/OpenVoice # too-young
|
| 543 |
+
mtdvio/every-programmer-should-know # docs-not-found
|
| 544 |
+
n8n-io/n8n # md-count=2
|
| 545 |
+
naptha/tesseract.js # md-count=8
|
| 546 |
+
nagadomi/waifu2x # docs-not-found
|
| 547 |
+
nativefier/nativefier # docs-not-found
|
| 548 |
+
necolas/normalize.css # docs-not-found
|
| 549 |
+
nektos/act # md-count=0
|
| 550 |
+
neovim/neovim # md-count=0
|
| 551 |
+
netty/netty # docs-not-found
|
| 552 |
+
nginx/nginx # md-count=0
|
| 553 |
+
nextcloud/server # md-count=0
|
| 554 |
+
ngosang/trackerslist # md-count=0
|
| 555 |
+
nicolargo/glances # md-count=0
|
| 556 |
+
niklasvh/html2canvas # md-count=6
|
| 557 |
+
nestjs/nest # md-count=0
|
| 558 |
+
nodejs/node-v0.x-archive # md-count=1
|
| 559 |
+
nomic-ai/gpt4all # too-young
|
| 560 |
+
nothings/stb # md-count=3
|
| 561 |
+
nolimits4web/swiper # docs-not-found
|
| 562 |
+
numpy/numpy # md-count=0
|
| 563 |
+
novuhq/novu # md-count=0
|
| 564 |
+
nushell/nushell # docs-not-found
|
| 565 |
+
nocodb/nocodb # md-count=0
|
| 566 |
+
nvm-sh/nvm # docs-not-found
|
| 567 |
+
nvbn/thefuck # md-count=0
|
| 568 |
+
obsproject/obs-studio # md-count=0
|
| 569 |
+
ocornut/imgui # md-count=6
|
| 570 |
+
ollama/ollama # too-young
|
| 571 |
+
oobabooga/text-generation-webui # too-young
|
| 572 |
+
ohmyzsh/ohmyzsh # md-count=0
|
| 573 |
+
open-webui/open-webui # too-young
|
| 574 |
+
open-guides/og-aws # docs-not-found
|
| 575 |
+
openai/codex # too-young
|
| 576 |
+
openai/CLIP # docs-not-found
|
| 577 |
+
openai/gym # docs-not-found
|
| 578 |
+
openai/openai-cookbook # docs-not-found
|
| 579 |
+
openai/whisper # too-young
|
| 580 |
+
opendatalab/MinerU # too-young
|
| 581 |
+
openinterpreter/open-interpreter # too-young
|
| 582 |
+
opentofu/manifesto # too-young
|
| 583 |
+
openai/openai-python # docs-not-found
|
| 584 |
+
outline/outline # md-count=5
|
| 585 |
+
ossu/computer-science # docs-not-found
|
| 586 |
+
pallets/flask # md-count=0
|
| 587 |
+
pandas-dev/pandas # md-count=1
|
| 588 |
+
papers-we-love/papers-we-love # docs-not-found
|
| 589 |
+
pathwaycom/llm-app # too-young
|
| 590 |
+
parallax/jsPDF # md-count=0
|
| 591 |
+
pathwaycom/pathway # too-young
|
| 592 |
+
parcel-bundler/parcel # docs-not-found
|
| 593 |
+
payloadcms/payload # md-count=1
|
| 594 |
+
pbatard/rufus # docs-not-found
|
| 595 |
+
pcottle/learnGitBranching # docs-not-found
|
| 596 |
+
phaserjs/phaser # docs-not-found
|
| 597 |
+
photoprism/photoprism # md-count=0
|
| 598 |
+
php/php-src # md-count=3
|
| 599 |
+
pi-hole/pi-hole # md-count=0
|
| 600 |
+
pixijs/pixijs # md-count=0
|
| 601 |
+
pmndrs/react-spring # md-count=1
|
| 602 |
+
pmndrs/react-three-fiber # md-count=2
|
| 603 |
+
pocketbase/pocketbase # md-count=0
|
| 604 |
+
pnpm/pnpm # md-count=0
|
| 605 |
+
postcss/postcss # md-count=9
|
| 606 |
+
poteto/hiring-without-whiteboards # docs-not-found
|
| 607 |
+
practical-tutorials/project-based-learning # docs-not-found
|
| 608 |
+
preactjs/preact # docs-not-found
|
| 609 |
+
prakhar1989/awesome-courses # md-count=0
|
| 610 |
+
portainer/portainer # md-count=0
|
| 611 |
+
prisma/prisma # md-count=0
|
| 612 |
+
punkpeye/awesome-mcp-servers # too-young
|
| 613 |
+
psf/requests # md-count=0
|
| 614 |
+
public-apis/public-apis # docs-not-found
|
| 615 |
+
pyenv/pyenv # md-count=0
|
| 616 |
+
mathiasbynens/dotfiles # md-count=0
|
| 617 |
+
python-telegram-bot/python-telegram-bot # md-count=1
|
| 618 |
+
python/cpython # md-count=0
|
| 619 |
+
qbittorrent/qBittorrent # md-count=5
|
| 620 |
+
qianguyihao/Web # md-count=0
|
| 621 |
+
qier222/YesPlayMusic # docs-not-found
|
| 622 |
+
rasbt/LLMs-from-scratch # too-young
|
| 623 |
+
qishibo/AnotherRedisDesktopManager # md-count=0
|
| 624 |
+
rails/rails # md-count=0
|
| 625 |
+
raysan5/raylib # docs-not-found
|
| 626 |
+
realpython/python-guide # md-count=0
|
| 627 |
+
redis/redis # md-count=0
|
| 628 |
+
refined-github/refined-github # docs-not-found
|
| 629 |
+
remix-run/remix # md-count=0
|
| 630 |
+
remoteintech/remote-jobs # docs-not-found
|
| 631 |
+
reworkd/AgentGPT # too-young
|
| 632 |
+
roboflow/supervision # too-young
|
| 633 |
+
restic/restic # md-count=0
|
| 634 |
+
resume/resume.github.com # docs-not-found
|
| 635 |
+
run-llama/llama_index # too-young
|
| 636 |
+
romkatv/powerlevel10k # md-count=1
|
| 637 |
+
ripienaar/free-for-dev # md-count=0
|
| 638 |
+
rust-unofficial/awesome-rust # docs-not-found
|
| 639 |
+
rust-lang/rust # md-count=3
|
| 640 |
+
rust-lang/rustlings # md-count=0
|
| 641 |
+
s0md3v/roop # too-young
|
| 642 |
+
ryanmcdermott/clean-code-javascript # md-count=0
|
| 643 |
+
ryanhanwu/How-To-Ask-Questions-The-Smart-Way # md-count=0
|
| 644 |
+
sampotts/plyr # docs-not-found
|
| 645 |
+
ryanoasis/nerd-fonts # md-count=0
|
| 646 |
+
sahat/hackathon-starter # docs-not-found
|
| 647 |
+
scrapy/scrapy # md-count=0
|
| 648 |
+
scikit-learn/scikit-learn # md-count=3
|
| 649 |
+
scutan90/DeepLearning-500-questions # docs-not-found
|
| 650 |
+
satwikkansal/wtfpython # md-count=0
|
| 651 |
+
sdmg15/Best-websites-a-programmer-should-visit # md-count=0
|
| 652 |
+
shadcn-ui/ui # too-young
|
| 653 |
+
serhii-londar/open-source-mac-os-apps # md-count=0
|
| 654 |
+
shadowsocks/ShadowsocksX-NG # docs-not-found
|
| 655 |
+
servo/servo # md-count=8
|
| 656 |
+
schollz/croc # md-count=0
|
| 657 |
+
shardeum/shardeum # too-young
|
| 658 |
+
shadowsocks/shadowsocks # docs-not-found
|
| 659 |
+
shadowsocks/shadowsocks-android # docs-not-found
|
| 660 |
+
shadowsocks/shadowsocks-windows # docs-not-found
|
| 661 |
+
sharkdp/bat # md-count=8
|
| 662 |
+
sharkdp/fd # md-count=2
|
| 663 |
+
shengxinjing/programmer-job-blacklist # md-count=8
|
| 664 |
+
sherlock-project/sherlock # md-count=4
|
| 665 |
+
siyuan-note/siyuan # docs-not-found
|
| 666 |
+
skylot/jadx # docs-not-found
|
| 667 |
+
sickcodes/Docker-OSX # md-count=9
|
| 668 |
+
slab/quill # md-count=0
|
| 669 |
+
socketio/socket.io # md-count=6
|
| 670 |
+
solidjs/solid # md-count=1
|
| 671 |
+
sindresorhus/awesome-nodejs # md-count=0
|
| 672 |
+
sindresorhus/awesome # md-count=0
|
| 673 |
+
soimort/you-get # md-count=0
|
| 674 |
+
spf13/cobra # md-count=0
|
| 675 |
+
spacedriveapp/spacedrive # md-count=0
|
| 676 |
+
spf13/viper # md-count=0
|
| 677 |
+
spring-projects/spring-framework # md-count=1
|
| 678 |
+
spring-projects/spring-boot # md-count=1
|
| 679 |
+
sorrycc/awesome-javascript # md-count=0
|
| 680 |
+
stanfordnlp/dspy # too-young
|
| 681 |
+
standard/standard # docs-not-found
|
| 682 |
+
starship/starship # docs-not-found
|
| 683 |
+
square/retrofit # md-count=0
|
| 684 |
+
suno-ai/bark # too-young
|
| 685 |
+
streamlit/streamlit # md-count=0
|
| 686 |
+
sudheerj/reactjs-interview-questions # md-count=0
|
| 687 |
+
sunface/rust-course # docs-not-found
|
| 688 |
+
surrealdb/surrealdb # md-count=4
|
| 689 |
+
swc-project/swc # md-count=7
|
| 690 |
+
sxyazi/yazi # too-young
|
| 691 |
+
swisskyrepo/PayloadsAllTheThings # docs-not-found
|
| 692 |
+
syncthing/syncthing # md-count=0
|
| 693 |
+
t3-oss/create-t3-app # md-count=0
|
| 694 |
+
symfony/symfony # md-count=0
|
| 695 |
+
supabase/supabase # md-count=5
|
| 696 |
+
tatsu-lab/stanford_alpaca # too-young
|
| 697 |
+
tailwindlabs/headlessui # docs-not-found
|
| 698 |
+
tastejs/todomvc # md-count=1
|
| 699 |
+
tailwindlabs/tailwindcss # docs-not-found
|
| 700 |
+
telegramdesktop/tdesktop # md-count=6
|
| 701 |
+
tensorflow/models # md-count=2
|
| 702 |
+
tauri-apps/tauri # md-count=0
|
| 703 |
+
termux/termux-app # md-count=1
|
| 704 |
+
tesseract-ocr/tesseract # md-count=0
|
| 705 |
+
thedaviddias/Front-End-Checklist # docs-not-found
|
| 706 |
+
tiimgreen/github-cheat-sheet # md-count=0
|
| 707 |
+
tldr-pages/tldr # docs-not-found
|
| 708 |
+
testerSunshine/12306 # docs-not-found
|
| 709 |
+
tmux/tmux # docs-not-found
|
| 710 |
+
tokio-rs/tokio # md-count=1
|
| 711 |
+
tonsky/FiraCode # md-count=1
|
| 712 |
+
toeverything/AFFiNE # md-count=0
|
| 713 |
+
torvalds/linux # md-count=0
|
| 714 |
+
tqdm/tqdm # md-count=0
|
| 715 |
+
trekhleb/javascript-algorithms # md-count=0
|
| 716 |
+
transloadit/uppy # docs-not-found
|
| 717 |
+
tw93/Pake # too-young
|
| 718 |
+
trimstray/the-book-of-secret-knowledge # docs-not-found
|
| 719 |
+
twentyhq/twenty # too-young
|
| 720 |
+
twitter/the-algorithm # too-young
|
| 721 |
+
twbs/bootstrap # md-count=0
|
| 722 |
+
type-challenges/type-challenges # docs-not-found
|
| 723 |
+
ultralytics/ultralytics # too-young
|
| 724 |
+
typicode/json-server # docs-not-found
|
| 725 |
+
tldraw/tldraw # md-count=3
|
| 726 |
+
unclecode/crawl4ai # too-young
|
| 727 |
+
unionlabs/union # too-young
|
| 728 |
+
ultralytics/yolov5 # md-count=0
|
| 729 |
+
ueberdosis/tiptap # md-count=0
|
| 730 |
+
unslothai/unsloth # too-young
|
| 731 |
+
upstash/context7 # too-young
|
| 732 |
+
usebruno/bruno # too-young
|
| 733 |
+
umami-software/umami # md-count=0
|
| 734 |
+
unknwon/the-way-to-go_ZH_CN # md-count=0
|
| 735 |
+
upscayl/upscayl # md-count=5
|
| 736 |
+
usememos/memos # docs-not-found
|
| 737 |
+
utmapp/UTM # md-count=0
|
| 738 |
+
v2fly/v2ray-core # md-count=0
|
| 739 |
+
v2ray/v2ray-core # docs-not-found
|
| 740 |
+
valinet/ExplorerPatcher # docs-not-found
|
| 741 |
+
vadimdemedes/ink # docs-not-found
|
| 742 |
+
ventoy/Ventoy # docs-not-found
|
| 743 |
+
veggiemonk/awesome-docker # md-count=5
|
| 744 |
+
vercel/next.js # docs-not-found
|
| 745 |
+
vercel/hyper # docs-not-found
|
| 746 |
+
videojs/video.js # md-count=2
|
| 747 |
+
vercel/swr # docs-not-found
|
| 748 |
+
https://github.com/vercel/turborepo # exception
|
| 749 |
+
vim/vim # md-count=0
|
| 750 |
+
virattt/ai-hedge-fund # too-young
|
| 751 |
+
vinta/awesome-python # md-count=0
|
| 752 |
+
vllm-project/vllm # too-young
|
| 753 |
+
vlang/v # md-count=5
|
| 754 |
+
viraptor/reverse-interview # md-count=0
|
| 755 |
+
vsouza/awesome-ios # md-count=0
|
| 756 |
+
vuejs/awesome-vue # md-count=0
|
| 757 |
+
vuejs/core # md-count=0
|
| 758 |
+
vuejs/vue # md-count=0
|
| 759 |
+
wailsapp/wails # md-count=0
|
| 760 |
+
wasabeef/awesome-android-ui # md-count=0
|
| 761 |
+
wagoodman/dive # md-count=0
|
| 762 |
+
webtorrent/webtorrent # md-count=6
|
| 763 |
+
webpack/webpack # md-count=0
|
| 764 |
+
withastro/astro # md-count=1
|
| 765 |
+
x1xhlol/system-prompts-and-models-of-ai-tools # too-young
|
| 766 |
+
wg/wrk # docs-not-found
|
| 767 |
+
wuyouzhuguli/SpringAll # docs-not-found
|
| 768 |
+
xai-org/grok-1 # too-young
|
| 769 |
+
x64dbg/x64dbg # md-count=0
|
| 770 |
+
wesbos/JavaScript30 # md-count=0
|
| 771 |
+
xingshaocheng/architect-awesome # docs-not-found
|
| 772 |
+
xtekky/gpt4free # too-young
|
| 773 |
+
xkcoding/spring-boot-demo # md-count=0
|
| 774 |
+
xuxueli/xxl-job # md-count=2
|
| 775 |
+
xitu/gold-miner # md-count=0
|
| 776 |
+
xyflow/xyflow # md-count=0
|
| 777 |
+
yeongpin/cursor-free-vip # too-young
|
| 778 |
+
yangshun/front-end-interview-handbook # md-count=0
|
| 779 |
+
yarnpkg/yarn # docs-not-found
|
| 780 |
+
yewstack/yew # md-count=0
|
| 781 |
+
yangshun/tech-interview-handbook # md-count=0
|
| 782 |
+
ytdl-org/youtube-dl # md-count=1
|
| 783 |
+
zai-org/ChatGLM-6B # too-young
|
| 784 |
+
youngyangyang04/leetcode-master # md-count=0
|
| 785 |
+
yt-dlp/yt-dlp # docs-not-found
|
| 786 |
+
zen-browser/desktop # too-young
|
| 787 |
+
yunjey/pytorch-tutorial # docs-not-found
|
| 788 |
+
zbezj/HEU_KMS_Activator # docs-not-found
|
| 789 |
+
zhayujie/chatgpt-on-wechat # md-count=1
|
| 790 |
+
zenorocha/clipboard.js # md-count=0
|
| 791 |
+
zeromicro/go-zero # md-count=0
|
| 792 |
+
zhongyang219/TrafficMonitor # docs-not-found
|
| 793 |
+
zhiwehu/Python-programming-exercises # docs-not-found
|
| 794 |
+
ziglang/zig # md-count=1
|
| 795 |
+
ziadoz/awesome-php # md-count=0
|
| 796 |
+
zylon-ai/private-gpt # too-young
|
| 797 |
+
ziishaned/learn-regex # docs-not-found
|
| 798 |
+
zsh-users/zsh-autosuggestions # md-count=0
|
| 799 |
+
zxing/zxing # md-count=2
|
requirements.txt
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
pandas
|
| 2 |
-
|
| 3 |
-
|
|
|
|
| 4 |
pyyaml
|
| 5 |
-
|
|
|
|
|
|
| 1 |
pandas
|
| 2 |
+
pyarrow
|
| 3 |
+
requests
|
| 4 |
+
tqdm
|
| 5 |
pyyaml
|
| 6 |
+
langid
|
| 7 |
+
playwright
|