id
large_stringlengths
54
122
language
large_stringclasses
5 values
repo_owner
large_stringlengths
2
28
repo_name
large_stringlengths
2
61
repo_stars
int64
501
245k
repo_forks
int64
7
109k
repo_description
large_stringlengths
9
468
repo_topics
listlengths
0
20
license
large_stringclasses
17 values
file_path
large_stringlengths
4
74
file_name
large_stringlengths
4
59
file_size
int64
101
610k
code
large_stringlengths
101
610k
word_count
int64
4
82.9k
char_count
int64
101
610k
line_count
int64
1
24.6k
data_quality_score
float64
0.95
0.98
timestamp
large_stringdate
2026-04-13 13:39:58
2026-04-23 15:56:29
scrubbed
bool
1 class
github_ipfs_kubo_56b0ca6339fbb616724cf17a59ea6ed09b705821
Go
ipfs
kubo
16,988
3,152
An IPFS implementation in Go
[ "ipfs" ]
NOASSERTION
core/commands/refs.go
refs.go
9,193
package commands import ( "context" "errors" "fmt" "io" "strings" cmdenv "github.com/ipfs/kubo/core/commands/cmdenv" "github.com/ipfs/kubo/core/commands/cmdutils" merkledag "github.com/ipfs/boxo/ipld/merkledag" cid "github.com/ipfs/go-cid" cidenc "github.com/ipfs/go-cidutil/cidenc" cmds "github.com/ipfs/g...
1,328
9,193
351
0.98
2026-04-17T10:17:59.902248
true
github_AstrBotDevs_AstrBot_1e9d109d65c6abe1ce4b7a991876de3bb78e5301
Python
AstrBotDevs
AstrBot
30,157
2,039
AI Agent Assistant that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
[ "agent", "ai", "chatbot", "chatgpt", "discord", "docker", "gemini", "gpt", "llama", "llm", "mcp", "openai", "python", "qq", "qqbot", "telegram" ]
AGPL-3.0
runtime_bootstrap.py
runtime_bootstrap.py
1,600
import logging import ssl from typing import Any import aiohttp.connector as aiohttp_connector from astrbot.utils.http_ssl_common import build_ssl_context_with_certifi logger = logging.getLogger(__name__) def _try_patch_aiohttp_ssl_context( ssl_context: ssl.SSLContext, log_obj: Any | None = None, ) -> bool...
149
1,600
51
0.98
2026-04-17T15:28:08.617488
true
github_Mai-with-u_MaiBot_0f5a7b3e301d23b690bc0157406445fe06610391
Python
Mai-with-u
MaiBot
4,665
500
MaiSaka, an LLM-based intelligent agent, is a digital lifeform devoted to understanding you and interacting in the style of a real human. She does not pursue perfection, nor does she seek efficiency; instead, she values warmth, authenticity, and genuine connection.
[ "agent", "chat", "chatbot", "llm", "llm-agent", "llms", "python", "qq-bot", "qqbot" ]
GPL-3.0
src/maisaka/monitor_events.py
monitor_events.py
14,481
"""MaiSaka 实时监控事件广播模块。 通过统一 WebSocket 将 MaiSaka 推理引擎各阶段状态实时推送给前端监控界面。 """ from datetime import datetime import time from typing import Any, Dict, List, Optional from src.common.logger import get_logger logger = get_logger("maisaka_monitor") MONITOR_DOMAIN = "maisaka_monitor" MONITOR_TOPIC = "main" def _normalize...
979
13,955
430
0.98
2026-04-22T15:21:46.372246
true
github_dqbd_tiktokenizer_d147c413eaa5b4c7d08dde347db2fe13fb98f64f
TypeScript
dqbd
tiktokenizer
1,571
172
Online playground for OpenAPI tokenizers
[ "chatgpt", "nextjs", "openai", "t3-stack", "tiktoken", "tokenizer" ]
MIT
src/utils/segments.ts
segments.ts
2,508
import { type Tiktoken } from "tiktoken"; import Graphemer from "graphemer"; import { type PreTrainedTokenizer } from "@xenova/transformers"; const textDecoder = new TextDecoder(); const graphemer = new Graphemer(); export type Segment = { text: string; tokens: { id: number; idx: number }[]; }; export function g...
291
2,508
85
0.98
2026-04-23T11:12:03.015648
true
github_nodejs_node_68db87b094d960d60c8697650bb0df684bbbdabe
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/_http_server.js
_http_server.js
44,262
// Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modi...
4,572
44,262
1,399
0.98
2026-04-23T06:15:35.207300
true
github_rust-lang_rust_d9810e899a04386a58106daad29130ab582c3dd1
Rust
rust-lang
rust
112,076
14,769
Empowering everyone to build reliable and efficient software.
[ "compiler", "language", "rust" ]
Apache-2.0
src/bootstrap/build.rs
build.rs
246
use std::env; fn main() { // this is needed because `HOST` is only available to build scripts. let host = env::var("HOST").unwrap(); println!("cargo:rerun-if-changed=build.rs"); println!("cargo:rustc-env=BUILD_TRIPLE={host}"); }
24
246
9
0.98
2026-04-17T13:13:41.162077
true
github_starship_starship_37923e425015ab001fed2ede0dad3736222b6fc9
Rust
starship
starship
56,483
2,470
☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!
[ "bash", "fish", "fish-prompt", "fish-theme", "oh-my-zsh", "powershell", "rust", "shell-prompt", "starship", "zsh", "zsh-prompt", "zsh-theme" ]
ISC
src/configs/cmd_duration.rs
cmd_duration.rs
942
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct CmdDurationConfig<'a> { pub min_time: i64, pub format: &'a str, pub style: &'a str, ...
82
942
37
0.98
2026-04-17T13:17:31.159383
true
github_qwersyk_Newelle_e31c1e1c5da874281aa7e621234b0934dcad55b3
Python
qwersyk
Newelle
1,312
105
Newelle - Your Ultimate Virtual Assistant
[ "adwaita", "ai", "app", "gnome", "gtk", "gtk4", "linux" ]
GPL-3.0
src/utility/pip.py
pip.py
3,042
import importlib import subprocess import sys import os import threading LOCK_SEMAPHORE = threading.Semaphore(1) LOCKS = {} INSTALLING_PACKAGES = [] PIP_INSTALLED = False def is_module_available(module_name: str) -> bool: """ Checks if a module can be found by the import system without importing it. Thi...
321
3,042
92
0.98
2026-04-17T16:25:22.082287
true
github_starpig1129_DATAGEN_5e55cbc3a909ed2f7b263ff58cd05da695fc5969
Python
starpig1129
DATAGEN
1,688
225
DATAGEN: AI-driven multi-agent research assistant automating hypothesis generation, data analysis, and report writing.
[ "agent", "ai", "ai-data-analysis", "artificial-intelligence", "code-generation", "data-analysis", "data-analytics", "data-science", "langchain", "langgraph", "large-language-model", "large-language-models", "llm", "multiagent-systems", "python" ]
MIT
src/llm/base.py
base.py
363
from abc import ABC, abstractmethod from typing import Type class BaseProvider(ABC): """An abstract base class for LLM providers.""" @abstractmethod def get_model_class(self) -> Type: """ Gets the model class for the provider. Returns: The class of the language model (...
42
363
15
0.98
2026-04-17T16:15:01.231681
true
github_strapi_strapi_a554a6b46a167e436e0cff3c48a5a320ec722e08
JavaScript
strapi
strapi
71,921
9,657
🚀 Strapi is the leading open-source headless CMS. It’s 100% JavaScript/TypeScript, fully customizable, and developer-first.
[ "api", "cms", "cms-framework", "content-management", "content-management-system", "customizable", "dashboard", "graphql", "hacktoberfest", "headless-cms", "jamstack", "javascript", "koa", "koa2", "mysql", "no-code", "nodejs", "rest", "strapi", "typescript" ]
NOASSERTION
fileTransformer.js
fileTransformer.js
165
const path = require('path'); module.exports = { process(src, filename) { return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';'; }, };
20
165
8
0.98
2026-04-17T17:53:21.230084
true
github_hsuanyi-chou_shadcn-ui-expansions_2beea2f3054a301685c04b3446e9e61a1f1ffb58
JavaScript
hsuanyi-chou
shadcn-ui-expansions
1,926
85
More components built on top of shadcn-ui.
[ "nextjs", "react", "shadcnui" ]
MIT
next.config.js
next.config.js
202
/** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', eslint: { ignoreDuringBuilds: true, }, images: { unoptimized: true, }, }; module.exports = nextConfig;
24
202
13
0.98
2026-04-23T11:00:31.922845
true
github_helmfile_helmfile_956233d3b43f07e4392b9d77c50fdea9f3e4a3a9
Go
helmfile
helmfile
5,058
338
Declaratively deploy your Kubernetes manifests, Kustomize configs, and Charts as Helm releases. Generate all-in-one manifests for use with ArgoCD.
[ "helm", "kubernetes", "kustomize" ]
MIT
pkg/errors/errors.go
errors.go
2,885
/* * MIT License * * Copyright (c) 2022 urfave/cli maintainers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, m...
468
2,885
97
0.98
2026-04-17T21:37:30.074532
true
github_apache_cassandra-gocql-driver_794b19e9a65a7bb03b2b903e64be6f2e45e97e2f
Go
apache
cassandra-gocql-driver
2,683
645
GoCQL Driver for Apache Cassandra®
[ "cassandra", "client", "database", "driver", "go", "golang", "nosql" ]
Apache-2.0
session_unit_test.go
session_unit_test.go
1,950
//go:build all || unit // +build all unit /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache Li...
276
1,950
61
0.98
2026-04-17T18:28:02.751743
true
github_pamburus_hl_0ce91a685bfb9a91044db2d13508f9045e115086
Rust
pamburus
hl
3,077
63
A fast and powerful log viewer and processor that converts JSON logs or logfmt logs into a clear human-readable format.
[ "cli", "command-line-tool", "hl", "human", "json", "json-log", "json-logging", "json-logs", "log", "log-viewer", "logfmt", "logging", "logs", "rust", "structured-logging", "translates-json-logs", "viewer" ]
MIT
src/pager/mod.rs
mod.rs
2,123
//! Pager configuration and selection system. //! //! This module provides support for configuring and selecting pagers for output pagination, //! including profile-based configuration, role-specific arguments (view vs. follow mode), //! and priority-based fallback selection. mod config; mod selection; #[cfg(test)] m...
228
2,123
72
0.98
2026-04-17T19:18:23.960015
true
github_KubeOperator_KubeOperator_3fc60edb97303a6fa6e0bd0c69a368d9e53541a9
Go
KubeOperator
KubeOperator
4,993
898
KubeOperator 是一个开源的轻量级 Kubernetes 发行版,专注于帮助企业规划、部署和运营生产级别的 K8s 集群。
[ "ansible", "containers", "docker", "k8s", "kubeapps", "kubernetes", "kubernetes-installer", "lightweight", "openstack", "paas", "terraform", "vmware-vsphere" ]
Apache-2.0
pkg/cloud_provider/cloud_provider_test.go
cloud_provider_test.go
395
package cloud_provider import ( "fmt" "testing" ) func Test(t *testing.T) { vars := make(map[string]interface{}) vars["provider"] = "FusionCompute" vars["datacenter"] = "site" vars["server"] = "" vars["user"] = "" vars["password"] = "" client := NewCloudClient(vars) ips, err := client.GetIpInUsed("") if e...
49
395
26
0.98
2026-04-17T21:39:50.790838
true
github_ChromeDevTools_chrome-devtools-mcp_eb45674df69443c22e0516b9f8cf9488c99ef89f
TypeScript
ChromeDevTools
chrome-devtools-mcp
36,793
2,272
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/bin/check-latest-version.ts
check-latest-version.ts
739
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import fs from 'node:fs/promises'; import path from 'node:path'; import process from 'node:process'; const cachePath = process.argv[2]; if (cachePath) { try { const response = await fetch( 'https://registry.npmjs.org/...
85
739
33
0.98
2026-04-23T08:42:30.692701
true
github_starship_starship_60aeef0f419e791e536c13901c4fbe2d71f735c8
Rust
starship
starship
56,483
2,470
☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!
[ "bash", "fish", "fish-prompt", "fish-theme", "oh-my-zsh", "powershell", "rust", "shell-prompt", "starship", "zsh", "zsh-prompt", "zsh-theme" ]
ISC
src/configs/lua.rs
lua.rs
958
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct LuaConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub symbol: &'a str,...
91
955
37
0.98
2026-04-17T13:17:49.327068
true
github_Wilfred_bfc_b3c8956615932790eb7c07fc4e7092d3514856e7
Rust
Wilfred
bfc
541
34
An industrial-grade brainfuck compiler
[ "brainfuck", "compiler", "llvm", "rust" ]
GPL-2.0
src/shell.rs
shell.rs
874
//! This module defines a convenient API for shelling out to commands, //! handling stderr when they fail. use std::process::Command; /// Execute the CLI command specified. /// /// # Failures /// /// If the command isn't on $PATH, returns Err with a helpful /// message. If the command returns a non-zero exit code, re...
113
874
31
0.98
2026-04-17T17:10:32.587608
true
github_voidful_TextRL_4df9665e719008a7f00bbe2d497247f0d2cc85c2
Python
voidful
TextRL
565
61
Implementation of ChatGPT RLHF (Reinforcement Learning with Human Feedback) on any generation model in huggingface's transformer (blommz-176B/bloom/gpt/bart/T5/MetaICL)
[ "chatgpt", "controlled-nlg", "gpt-2", "gpt-3", "language-model", "nlg", "nlp", "pytorch", "reinforcement-learning", "rlhf" ]
MIT
setup.py
setup.py
1,095
from setuptools import setup, find_packages setup( name='textrl', version='0.2.22', description='TextRL - use reinforcement learning to adjust text generation results.', url='https://github.com/voidful/TextRL', author='Voidful', author_email='[REDACTED_EMAIL]', long_description=open("README...
78
1,095
33
0.98
2026-04-22T20:48:21.046752
true
github_caiyuanhao1998_SAX-NeRF_2b04191b1a3129b80e22aa0292068cd695e794c7
Python
caiyuanhao1998
SAX-NeRF
788
41
"Structure-Aware Sparse-View X-ray 3D Reconstruction" (CVPR 2024) - A Toolbox for CT reconstruction and X-ray Novel View Synthesis
[ "3d-graphics", "3d-reconstruction", "3d-vision", "ct-reconstruction", "cvpr", "instant-ngp", "medical-imaging", "nerf", "neural-radiance-fields", "novel-view-synthesis", "transformer", "x-ray-images" ]
MIT
src/network/Lineformer.py
Lineformer.py
13,104
import torch import torch.nn as nn import torch.nn.functional as F from torch import einsum import math import warnings from torch.nn.init import _calculate_fan_in_and_fan_out from pdb import set_trace as stx def _no_grad_trunc_normal_(tensor, mean, std, a, b): def norm_cdf(x): return (1. + math.erf(x / m...
1,360
12,730
365
0.98
2026-04-22T21:28:04.280697
true
github_wooorm_markdown-rs_e4f8e42fc16ded91ebe74858406e95cdc5d48864
Rust
wooorm
markdown-rs
1,496
87
CommonMark compliant markdown parser in Rust with ASTs and extensions
[ "commonmark", "compiler", "gfm", "markdown", "parse", "render", "rust", "tokenize" ]
MIT
src/construct/heading_setext.rs
heading_setext.rs
10,449
//! Heading (setext) occurs in the [flow][] content type. //! //! ## Grammar //! //! Heading (setext) forms with the following BNF //! (<small>see [construct][crate::construct] for character groups</small>): //! //! ```bnf //! heading_setext ::= paragraph eol *space_or_tab (1*'-' | 1*'=') *space_or_tab //! //! ; See th...
962
10,436
282
0.98
2026-04-17T17:05:46.248680
true
github_AgileRL_AgileRL_778678e2eb58212a6203f44b70ae9f1fda4abdbb
Python
AgileRL
AgileRL
911
72
Streamlining reinforcement learning with RLOps. State-of-the-art RL algorithms and tools, with 10x faster training through evolutionary hyperparameter optimization.
[ "agilerl", "automl", "deep-learning", "deep-reinforcement-learning", "distributed", "evolutionary-algorithms", "gym", "hpo", "hyperparameter-optimization", "hyperparameter-tuning", "machine-learning", "mlops", "multi-agent", "multi-agent-reinforcement-learning", "pettingzoo", "python",...
Apache-2.0
sitecustomize.py
sitecustomize.py
349
"""Sitecustomize module to enable coverage tracking in subprocesses. This file is automatically loaded by Python when the repository root is in PYTHONPATH. It starts coverage measurement in subprocesses when COVERAGE_PROCESS_START is set. """ import os import coverage if os.environ.get("COVERAGE_PROCESS_START"): ...
40
349
13
0.98
2026-04-22T20:25:29.692911
true
github_ChromeDevTools_chrome-devtools-mcp_485e43006e8607b6f5955297c22ccfe85060bbda
TypeScript
ChromeDevTools
chrome-devtools-mcp
36,793
2,272
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/McpPage.ts
McpPage.ts
12,478
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {logger} from './logger.js'; import {TextSnapshot} from './TextSnapshot.js'; import type { Dialog, ElementHandle, Page, Viewport, WebMCPTool, } from './third_party/index.js'; import type {ToolGroup, ToolDefinition}...
1,244
12,478
420
0.98
2026-04-23T08:42:27.410655
true
github_ChatGPTNextWeb_NextChat_cae775512addf5b23ce4929cdb0a2a66bafbbb5f
TypeScript
ChatGPTNextWeb
NextChat
87,769
59,807
✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows
[ "calclaude", "chatgpt", "claude", "cross-platform", "desktop", "fe", "gemini", "gemini-pro", "gemini-server", "gemini-ultra", "gpt-4o", "groq", "nextjs", "ollama", "react", "tauri", "tauri-app", "vercel", "webui" ]
MIT
app/utils/chat.ts
chat.ts
19,233
import { CACHE_URL_PREFIX, UPLOAD_URL, REQUEST_TIMEOUT_MS, } from "@/app/constant"; import { MultimodalContent, RequestMessage } from "@/app/client/api"; import Locale from "@/app/locales"; import { EventStreamContentType, fetchEventSource, } from "@fortaine/fetch-event-source"; import { prettyObject } from "...
1,750
19,225
668
0.98
2026-04-23T08:58:31.200325
true
github_prometheus-operator_prometheus-operator_a446cdf72b1e5109e71efe5c6a7bcd9c9263b4ec
Go
prometheus-operator
prometheus-operator
9,895
3,851
Prometheus Operator creates/configures/manages Prometheus clusters atop Kubernetes
[ "hacktoberfest", "kubernetes", "monitoring", "prometheus" ]
Apache-2.0
internal/log/slog.go
slog.go
3,073
// Copyright The prometheus-operator Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law o...
399
3,073
110
0.98
2026-04-17T19:40:30.974329
true
github_hashicorp_consul_f0f5794aa5af0e94014324a8c858266a0afef129
Go
hashicorp
consul
29,853
4,582
Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
[ "api-gateway", "consul", "ecs", "kubernetes", "service-discovery", "service-mesh", "vault" ]
NOASSERTION
api/operator_raft.go
operator_raft.go
3,743
// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 package api // RaftServer has information about a server in the Raft configuration. type RaftServer struct { // ID is the unique ID for the server. These are currently the same // as the address, but they will be changed to a real GUID in a future...
573
3,743
133
0.98
2026-04-17T08:20:27.718233
true
github_kandinskylab_kandinsky-5_e4ef83a8701a994108af012e92cf9f6718c70775
Python
kandinskylab
kandinsky-5
748
58
Kandinsky 5.0: A family of diffusion models for Video & Image generation
[ "diffusion", "distillation", "kandinsky", "text-to-video", "video", "video-generation" ]
MIT
download_models.py
download_models.py
2,773
import os import argparse from huggingface_hub import snapshot_download MODELS_0 = [ 'kandinskylab/Kandinsky-5.0-T2V-Lite-sft-5s', 'kandinskylab/Kandinsky-5.0-T2V-Lite-sft-10s', 'kandinskylab/Kandinsky-5.0-T2V-Lite-distilled16steps-5s', 'kandinskylab/Kandinsky-5.0-T2V-Lite-distilled16steps-10s'...
152
2,773
80
0.98
2026-04-22T22:40:01.841443
true
github_insin_nwb_1dd4a48d31e3a250e12790ab307afc853fe5f10e
JavaScript
insin
nwb
5,549
321
A toolkit for React, Preact, Inferno & vanilla JS apps, React libraries and other npm modules for the web, with no configuration (until you need it)
[ "babel", "inferno", "javascript", "karma", "npm-module", "preact", "react", "react-component", "toolkit", "webpack" ]
NOASSERTION
src/commands/test-react-component.js
test-react-component.js
309
// @flow import merge from 'webpack-merge' import karmaServer from '../karmaServer' import reactConfig from '../react' import type {ErrBack} from '../types' export default function testReactComponent(args: Object, cb: ErrBack) { karmaServer(args, merge(reactConfig(args).getKarmaTestConfig(), {}), cb) }
32
309
12
0.98
2026-04-23T06:08:00.097685
true
github_LaoZhuJackson_SnowbreakAutoAssistant_5b4b940dca038a62922b65e6d2276cba15012d19
Python
LaoZhuJackson
SnowbreakAutoAssistant
607
29
PC自动玩尘白,自动化代理,尘白禁区助手,自动钓鱼,信源解析,水弹,异星守护,迷宫
[ "automation", "fishing", "snowbreak" ]
GPL-3.0
app/ui/additional_features_interface.py
additional_features_interface.py
57,221
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'additional_features_interface.ui' # # Created by: PyQt5 UI code generator 5.15.11 # # WARNING: Any manual changes made to this file will be lost when pyuic5 is # run again. Do not edit this file unless you know what you are doing. from Py...
2,074
56,385
816
0.98
2026-04-23T04:00:34.765438
true
github_jdx_mise_87099679d597adf54de1e092a2a33743a7ea852c
Rust
jdx
mise
26,796
1,060
dev tools, env vars, task runner
[]
MIT
src/cli/fmt.rs
fmt.rs
3,892
use crate::Result; use crate::config::ALL_TOML_CONFIG_FILES; use crate::{config, dirs, file}; use eyre::bail; use std::io::{self, Read, Write}; use taplo::formatter::Options; /// Formats mise.toml /// /// Sorts keys and cleans up whitespace in mise.toml #[derive(Debug, clap::Args)] #[clap(verbatim_doc_comment, after_l...
362
3,892
143
0.98
2026-04-17T13:30:48.195241
true
github_Manavarya09_design-extract_32adce6785b0cbc18b961fbade05b2a4ca1f3d0d
JavaScript
Manavarya09
design-extract
1,408
126
Extract any website's complete design system with one command. DTCG tokens, semantic+primitive+composite, MCP server for Claude Code/Cursor/Windsurf, multi-platform emitters (iOS SwiftUI, Android Compose, Flutter, WordPress), Tailwind v4, Figma variables, shadcn/ui, CSS health audit, WCAG remediation, Chrome extension....
[ "accessibility", "agent-skill", "ai", "chrome-extension", "claude-code-plugin", "cli", "css", "cursor", "design-system", "design-to-code", "design-tokens", "dtcg", "figma", "mcp-server", "npx", "playwright", "shadcn-ui", "skills-sh", "tailwind", "web-scraping" ]
MIT
src/lint.js
lint.js
7,147
// designlang lint — audit a local token file for the same issues scoring flags on live sites. // Supports DTCG, flat design-tokens.json, Tailwind config (partial), and CSS variable files. import { readFileSync } from 'fs'; import { extname } from 'path'; function hexToRgb(hex) { const m = hex.replace('#', '').matc...
971
7,141
199
0.98
2026-04-23T12:58:22.308057
true
github_mochajs_mocha_7b5e985878374754bd907ee4e99c236751fc2fd2
TypeScript
mochajs
mocha
22,882
3,066
☕️ Classic, reliable, trusted test framework for Node.js and the browser
[ "bdd", "browser", "javascript", "mocha", "mochajs", "node", "nodejs", "tdd", "test", "test-framework", "testing", "testing-tools" ]
MIT
lib/types.d.ts
types.d.ts
9,586
/** * These types are a preliminary step towards moving Mocha's TypeScript types into Mocha. * They are not yet complete and are not yet fully used in the codebase. * For now, if you're an external user, you should use the types from @types/mocha. */ import type { FSWatcher, MatchFunction } from "chokidar" with { ...
1,393
9,586
422
0.98
2026-04-23T06:44:10.728588
true
github_google_zx_cb61d321759f59fc16e3d3269d22ef033758b0ef
TypeScript
google
zx
45,409
1,253
A tool for writing better scripts
[ "bash", "child-process", "cli", "exec", "javascript", "nodejs", "pipe", "shell", "spawn" ]
Apache-2.0
src/log.ts
log.ts
4,735
// Copyright 2025 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
685
4,735
223
0.98
2026-04-23T06:18:09.389418
true
github_starship_starship_d02250aa5bbbd8350c53eaaec73de518f7b75310
Rust
starship
starship
56,483
2,470
☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!
[ "bash", "fish", "fish-prompt", "fish-theme", "oh-my-zsh", "powershell", "rust", "shell-prompt", "starship", "zsh", "zsh-prompt", "zsh-theme" ]
ISC
src/configs/crystal.rs
crystal.rs
896
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct CrystalConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub symbol: &'a ...
85
893
35
0.98
2026-04-17T13:17:33.089030
true
github_pemami4911_neural-combinatorial-rl-pytorch_6f16e25c7ebd46508a281e0dff8203b36d2c46d3
Python
pemami4911
neural-combinatorial-rl-pytorch
608
145
PyTorch implementation of Neural Combinatorial Optimization with Reinforcement Learning https://arxiv.org/abs/1611.09940
[ "neural-combinatorial-optimization", "pytorch", "reinforcement-learning", "seq2seq" ]
MIT
beam_search.py
beam_search.py
3,639
# beam search implementation in PyTorch.""" # # # hyp1#-hyp1---hyp1 -hyp1 # \ / # hyp2 \-hyp2 /-hyp2#hyp2 # / \ # hyp3#-hyp3---hyp3 -hyp3 # ======================== # # Takes care of beams, back pointers, and scores. # Code ...
414
3,639
122
0.98
2026-04-22T20:45:29.268331
true
github_RemoteDebug_remotedebug-ios-webkit-adapter_8e7add215ec663d50bbfea97a5bbd9596ca4c18d
JavaScript
RemoteDebug
remotedebug-ios-webkit-adapter
2,738
223
Debug Safari and WebViews on iOS from tools like VS Code and Chrome DevTools
[ "chrome-devtools", "debugger", "devtools", "ios", "protocol-adapter", "remotedebug", "safari" ]
UNKNOWN
gulpfile.js
gulpfile.js
1,734
// // Copyright (C) Microsoft. All rights reserved. // 'use strict' const gulp = require('gulp') const mocha = require('gulp-mocha') const gtslint = require('gulp-tslint') const ts = require('gulp-typescript') const log = require('fancy-log') const tslint = require('tslint'); const program = tslint.Linter.createProg...
171
1,734
77
0.98
2026-04-18T00:26:20.320393
true
github_c8r_x0_4d9ad5782170d1f730327abc33f74e4b748f55a4
JavaScript
c8r
x0
1,708
65
Document & develop React components without breaking a sweat
[ "components", "compositor", "design-systems", "development-environment", "docs", "documentation", "isolated", "jsx", "markdown", "mdx", "react", "static-site-generator", "testing", "ui", "webpack", "zero-configuration" ]
MIT
src/Library.js
Library.js
1,409
import React from 'react' import { Link } from 'react-router-dom' import styled from 'styled-components' import { style, gridGap, gridAutoRows, borderColor } from 'styled-system' const gridWidth = style({ prop: 'width', cssProperty: 'gridTemplateColumns', getter: n => `repeat(auto-fit, minmax(${n}px, 1fr...
150
1,409
81
0.98
2026-04-23T12:28:54.249279
true
github_Schniz_fnm_6ab10eab5e385656a50a99cb05152618d5de1699
Rust
Schniz
fnm
25,118
619
🚀 Fast and simple Node.js version manager, built in Rust
[ "hacktoberfest", "javascript", "nodejs", "nvm", "reasonml", "version" ]
GPL-3.0
src/main.rs
main.rs
830
#![warn(rust_2018_idioms, clippy::all, clippy::pedantic)] #![allow( clippy::enum_variant_names, clippy::large_enum_variant, clippy::module_name_repetitions, clippy::similar_names )] mod alias; mod arch; mod archive; mod choose_version_for_user_input; mod cli; mod commands; mod config; mod current_versi...
80
830
47
0.98
2026-04-17T13:32:59.707419
true
github_microsoft_retina_cbc76f46ada7ef99f1be4e2555bc5b3c710eb1fc
Go
microsoft
retina
3,122
285
eBPF distributed networking observability tool for Kubernetes
[ "ebpf", "kubernetes", "networking", "observability" ]
MIT
pkg/metrics/types.go
types.go
5,017
// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. package metrics import ( "github.com/microsoft/retina/pkg/log" "github.com/prometheus/client_golang/prometheus" "go.uber.org/zap" ) const ( // Control plane metrics pluginManagerFailedToReconcileCounterName = "plugin_manager_failed_to_rec...
437
5,017
131
0.98
2026-04-17T22:41:29.984253
true
github_datadreamer-dev_DataDreamer_a597fd371b0c757c51dd7ed8529f045bab35ec9e
Python
datadreamer-dev
DataDreamer
1,115
59
DataDreamer: Prompt. Generate Synthetic Data. Train & Align Models.   🤖💤
[ "alignment", "deep-learning", "fine-tuning", "gpt", "instruction-tuning", "llm", "llmops", "llms", "machine-learning", "natural-language-processing", "nlp", "nlp-library", "openai", "python", "pytorch", "synthetic-data", "synthetic-dataset-generation", "transformers" ]
MIT
src/llms/_tokenizers.py
_tokenizers.py
2,675
from functools import cache TOGETHER_TOKENIZERS = { "togethercomputer/Pythia-Chat-Base-7B-v0.16": "togethercomputer/Pythia-Chat-Base-7B", "togethercomputer/Qwen-7B-Chat": "Qwen/Qwen-7B-Chat", "togethercomputer/Koala-13B": "meta-llama/Llama-2-13b-hf", "togethercomputer/llama-2-7b-chat": "meta-llama/Llam...
106
2,675
50
0.98
2026-04-22T16:51:29.149402
true
github_ZHangZHengEric_Sage_33ce32934b74601618db0cdff5ca856dcbf93026
JavaScript
ZHangZHengEric
Sage
1,218
93
Multi-Agent System Framework For Complex Tasks
[ "agents", "ai", "llm", "manus", "muilt-agents", "workflow" ]
MIT
app/wiki/generate-docs.js
generate-docs.js
16,922
// 文档生成脚本 // 运行: node generate-docs.js const fs = require('fs'); const path = require('path'); // 文档结构定义 const docsStructure = { 'agent/index.md': `# 智能体概述 智能体是 Sage 的核心功能,它是 AI 助手的配置单元。 ## 什么是智能体? 智能体是一个配置了特定系统提示词和工具的 AI 助手。每个智能体可以: - 拥有独立的系统提示词 - 使用特定的工具集合 - 维护独立的对话历史 - 拥有专属的工作空间 ## 智能体列表 在智能体列表页面,你可以: - 查...
1,338
9,272
813
0.98
2026-04-17T16:28:03.599067
true
github_apollographql_apollo-client_0f6d3cc4aa5335ab31473c6d498ab59d9099df2e
TypeScript
apollographql
apollo-client
19,717
2,702
The industry-leading GraphQL client for TypeScript, JavaScript, React, Vue, Angular, and more. Apollo Client delivers powerful caching, intuitive APIs, and comprehensive developer tools to accelerate your app development.
[ "apollo-client", "apollographql", "graphql", "graphql-client", "typescript" ]
MIT
src/errors/index.ts
index.ts
1,572
import { CombinedProtocolErrors } from "./CombinedProtocolErrors.js"; import { isErrorLike } from "./isErrorLike.js"; import { UnconventionalError } from "./UnconventionalError.js"; // This Symbol allows us to pass transport-specific errors from the link chain // into QueryManager/client internals without risking a na...
183
1,572
47
0.98
2026-04-18T01:25:49.389275
true
github_vercel_swr_19695389bf0ebf4b11fd26872749416839dad155
TypeScript
vercel
swr
32,352
1,332
React Hooks for Data Fetching
[ "cache", "data", "data-fetching", "fetch", "hook", "hooks", "nextjs", "react", "react-native", "stale-while-revalidate", "suspense", "swr", "vercel" ]
MIT
src/infinite/serialize.ts
serialize.ts
415
import type { SWRInfiniteKeyLoader } from './types' import { serialize } from '../_internal/utils/serialize' import { INFINITE_PREFIX } from '../_internal/constants' export const getFirstPageKey = (getKey: SWRInfiniteKeyLoader) => { return serialize(getKey ? getKey(0, null) : null)[0] } export const unstable_serial...
48
415
12
0.98
2026-04-23T09:00:06.737360
true
github_getsentry_sentry-cli_03f54af9b480bc1bf041d21f12686f48a3a1284e
Rust
getsentry
sentry-cli
1,001
244
A command line utility to work with Sentry.
[ "cli", "crash-reporting", "hacktoberfest", "rust", "sentry", "sentry-cli", "tag-production", "team-web-backend" ]
NOASSERTION
src/api/pagination.rs
pagination.rs
948
use std::str::FromStr; use crate::utils::http; #[derive(Debug, Clone)] pub struct Link { results: bool, cursor: String, } #[derive(Debug, Default, Clone)] pub struct Pagination { next: Option<Link>, } impl Pagination { pub fn into_next_cursor(self) -> Option<String> { self.next ....
102
948
43
0.98
2026-04-17T19:38:23.830656
true
github_sindresorhus_execa_df360c56184c977335f4d46e5cd96c22171929bd
JavaScript
sindresorhus
execa
7,493
250
Process execution for humans
[ "binary", "child-process", "exec", "execute", "javascript", "nodejs", "shell", "spawn", "spawned-processes", "streams" ]
MIT
lib/terminate/graceful.js
graceful.js
1,941
import {onAbortedSignal} from '../utils/abort-signal.js'; import {sendAbort} from '../ipc/graceful.js'; import {killOnTimeout} from './kill.js'; // Validate the `gracefulCancel` option export const validateGracefulCancel = ({gracefulCancel, cancelSignal, ipc, serialization}) => { if (!gracefulCancel) { return; } ...
214
1,941
72
0.98
2026-04-23T07:16:03.336479
true
github_jaegertracing_jaeger_3426b218d4f9ff8eb3a73ef7d0dce24df3380d47
Go
jaegertracing
jaeger
22,689
2,844
CNCF Jaeger, a Distributed Tracing Platform
[ "cncf", "distributed-tracing", "hacktoberfest", "jaeger", "observability", "opentelemetry", "tracing" ]
Apache-2.0
internal/jptrace/package_test.go
package_test.go
237
// Copyright (c) 2024 The Jaeger Authors. // SPDX-License-Identifier: Apache-2.0 package jptrace import ( "testing" "github.com/jaegertracing/jaeger/internal/testutils" ) func TestMain(m *testing.M) { testutils.VerifyGoLeaks(m) }
23
237
15
0.98
2026-04-17T09:17:03.207981
true
github_swc-project_swc_745fd022996390996a2037691d0ef53858372afa
JavaScript
swc-project
swc
33,356
1,385
Rust-based platform for the Web
[ "babel", "compiler", "ecmascript", "ecmascript-parser", "javascript", "parser", "rust", "swc", "typescript", "typescript-compiler", "typescript-parser" ]
Apache-2.0
.mocharc.js
.mocharc.js
447
/** * https://github.com/swc-project/swc/pull/3009 * * There are 2 test runners in this repo: * - jest is being used for unit testing node-swc packages with javascript test cases * - mocha is being used for cargo's test requires js runtime to validate its transform. * * This config is for the mocha test runner i...
70
447
13
0.98
2026-04-17T13:21:52.445952
true
github_serde-rs_json_a0bae01e0f44287baea8b05b4c18fa4e2838e097
Rust
serde-rs
json
5,549
639
Strongly typed JSON library for Rust
[ "json", "rust", "serde" ]
Apache-2.0
src/lexical/shift.rs
shift.rs
1,235
// Adapted from https://github.com/Alexhuszagh/rust-lexical. //! Bit-shift helpers. use super::float::ExtendedFloat; use core::mem; // Shift extended-precision float right `shift` bytes. #[inline] pub(crate) fn shr(fp: &mut ExtendedFloat, shift: i32) { let bits: u64 = mem::size_of::<u64>() as u64 * 8; debug_...
173
1,235
47
0.98
2026-04-17T14:58:18.195300
true
github_ContainerSSH_ContainerSSH_0e23efd23a330af13d21b50286e0bd02f70d1287
Go
ContainerSSH
ContainerSSH
3,025
101
ContainerSSH: Launch containers on demand
[ "containers", "devsecops", "docker", "kubernetes", "security", "security-tools", "ssh" ]
Apache-2.0
internal/auth/oauth2_github_flow_device.go
oauth2_github_flow_device.go
5,770
package auth import ( "context" "fmt" "time" "go.containerssh.io/containerssh/message" "go.containerssh.io/containerssh/metadata" ) type gitHubDeviceFlow struct { gitHubFlow interval time.Duration deviceCode string meta metadata.ConnectionAuthPendingMetadata } func (d *gitHubDeviceFlow) GetAuthori...
566
5,770
182
0.98
2026-04-17T22:43:38.847804
true
github_huggingface_transformers_b9e6f99b041d6fdb7b9986f06bbb9db5383d5073
Python
huggingface
transformers
159,743
32,972
🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.
[ "audio", "deep-learning", "deepseek", "gemma", "glm", "hacktoberfest", "llm", "machine-learning", "model-hub", "natural-language-processing", "nlp", "pretrained-models", "python", "pytorch", "pytorch-transformers", "qwen", "speech-recognition", "transformer", "vlm" ]
Apache-2.0
src/transformers/hf_argparser.py
hf_argparser.py
19,734
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
2,073
19,734
427
0.98
2026-04-22T13:17:54.423272
true
github_pubkey_rxdb_e2ded85ffc05a71b08555e96a01596f8a53fa99b
TypeScript
pubkey
rxdb
23,146
1,160
A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/
[ "angular", "browser-database", "couchdb", "crdt", "database", "firebase", "graphql", "indexeddb", "ionic", "local-first", "localstorage", "nodejs", "nosql", "postgres", "pouchdb", "react-native", "realtime", "realtime-database", "rxdb", "sqlite" ]
Apache-2.0
src/event-reduce.ts
event-reduce.ts
5,753
import { ActionName, calculateActionName, runAction, QueryParams, StateResolveFunctionInput, ChangeEvent } from 'event-reduce-js'; import type { RxQuery, MangoQuery, StringKeys, RxDocumentData, RxStorageChangeEvent } from './types/index.d.ts'; import { rxChangeEventToEventRed...
472
5,753
169
0.98
2026-04-18T01:23:56.516306
true
github_apollographql_apollo-server_2c7eed0933c5f0aeea8bdc3e03f61884fca69730
JavaScript
apollographql
apollo-server
13,936
2,007
🌍  Spec-compliant and production ready JavaScript GraphQL server that lets you develop in a schema-first way. Built for Express, Connect, Hapi, Koa, and more.
[ "apollographql", "express", "express-graphql", "graphql", "graphql-schema", "graphql-server", "hapi", "koa", "node", "resolvers", "restify" ]
MIT
jest.setup.js
jest.setup.js
978
// It's awkward to read `npm test` output if it is littered with console logs. // This (from https://github.com/facebook/jest/issues/6121) makes the test fail // if it writes anything to console. (Feel free to set $ALLOW_CONSOLE if you are // logging while developing and want to see if your tests pass.) // // Typically...
146
978
27
0.98
2026-04-18T01:27:00.274112
true
github_ouch-org_ouch_4994fdb34791e5881154808a4a4d4012b08a08dd
Rust
ouch-org
ouch
3,491
123
Painless compression and decompression in the terminal
[ "cli", "compression", "decompression", "hacktoberfest", "rust" ]
NOASSERTION
src/commands/compress.rs
compress.rs
8,569
use std::{ io::{self, BufWriter, Cursor, Seek, Write}, num::NonZeroU64, path::{Path, PathBuf}, }; use fs_err as fs; use gzp::par::compress::{ParCompress, ParCompressBuilder}; use super::warn_user_about_loading_sevenz_in_memory; use crate::{ BUFFER_CAPACITY, QuestionAction, QuestionPolicy, Result, arch...
666
8,569
208
0.98
2026-04-17T19:16:19.588361
true
github_germain-hug_Deep-RL-Keras_0804722f08963eb8997c7f627c543a732d26fdea
Python
germain-hug
Deep-RL-Keras
551
146
Keras Implementation of popular Deep RL Algorithms (A3C, DDQN, DDPG, Dueling DDQN)
[ "a2c", "a3c", "d3qn", "ddpg", "ddqn", "dqn", "dueling", "gym", "keras", "keras-rl", "openai", "policy-gradient", "reinforcement-learning" ]
UNKNOWN
main.py
main.py
4,459
""" Deep RL Algorithms for OpenAI Gym environments """ import os import sys import gym import argparse import numpy as np import pandas as pd import tensorflow as tf from A2C.a2c import A2C from A3C.a3c import A3C from DDQN.ddqn import DDQN from DDPG.ddpg import DDPG from keras.backend.tensorflow_backend import set_...
355
4,459
119
0.98
2026-04-22T20:49:35.384730
true
github_metalsmith_metalsmith_36d6571988d98ce3dcdfd27717760238d020f56e
JavaScript
metalsmith
metalsmith
7,826
611
An extremely simple, pluggable static site generator for Node.js
[ "javascript", "markdown", "markdown-to-html", "metalsmith", "nodejs", "ssg", "static-site-generator", "templates" ]
MIT
metalsmith-migrated-plugins.js
metalsmith-migrated-plugins.js
2,184
const { join } = require('path') const { readFile } = require('fs') const { isObject } = require('./lib/helpers') const outdatedPlugins = [ 'markdown', 'in-place', 'layouts', 'collections', 'drafts', 'ignore', 'postcss', 'permalinks', 'default-values', 'metadata', 'excerpts', 'autotoc' ] const...
219
2,183
78
0.98
2026-04-23T07:12:35.191340
true
github_graffle-js_graffle_38f9cbaba070b3f7302c1a8f42defdfd25858831
TypeScript
graffle-js
graffle
6,116
309
Simple GraphQL Client for JavaScript. Minimal. Extensible. Type Safe. Runs everywhere.
[ "graphql", "graphql-client", "lightweight", "nodejs", "typescript" ]
MIT
src/client/client.bench.ts
client.bench.ts
1,674
import type { ContextEmpty } from '#src/context/ContextEmpty.js' import { bench } from '@ark/attest' import { Configuration } from '../context/fragments/configuration/_.js' import { Transports } from '../context/fragments/transports/_.js' import type { Client } from './client.js' // Baseline: amortize the base cost of...
208
1,674
41
0.98
2026-04-18T01:31:26.902802
true
github_Huachao_vscode-restclient_1a2ef532d2534ce5d752ad547b986517dade7c87
TypeScript
Huachao
vscode-restclient
5,981
516
REST Client Extension for Visual Studio Code
[ "graphql", "http", "http-client", "rest", "rest-api", "rest-client", "typescript", "visual-studio-code", "vscode", "vscode-extension" ]
MIT
src/models/harHttpRequest.ts
harHttpRequest.ts
1,929
import { ParsedUrlQuery } from 'querystring'; import { parse as urlParse } from 'url'; export interface HARNameValue { name: string; value: string; } export class HARHeader implements HARNameValue { public constructor(public name: string, public value: string) { } } export class HARCookie implements ...
193
1,929
61
0.98
2026-04-18T01:32:18.294162
true
github_Automattic_mongoose_3651dd6db9fe7ac832587b7c57aafc9e43bf36d6
JavaScript
Automattic
mongoose
27,471
3,979
MongoDB object modeling designed to work in an asynchronous environment.
[ "mongo", "mongodb", "nodejs", "odm", "orm" ]
MIT
lib/options.js
options.js
302
'use strict'; /*! * ignore */ exports.internalToObjectOptions = { transform: false, virtuals: false, getters: false, _skipDepopulateTopLevel: true, depopulate: true, flattenDecimals: false, useProjection: false, versionKey: true, flattenObjectIds: false, flattenUUIDs: false };
30
302
19
0.98
2026-04-23T06:42:36.770853
true
github_huggingface_transformers_64559c9b591059431a6274f7f2d970c768b94dea
Python
huggingface
transformers
159,743
32,972
🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.
[ "audio", "deep-learning", "deepseek", "gemma", "glm", "hacktoberfest", "llm", "machine-learning", "model-hub", "natural-language-processing", "nlp", "pretrained-models", "python", "pytorch", "pytorch-transformers", "qwen", "speech-recognition", "transformer", "vlm" ]
Apache-2.0
src/transformers/optimization.py
optimization.py
55,023
# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unle...
5,202
55,023
1,343
0.98
2026-04-22T13:18:03.711636
true
github_huggingface_transformers_cc4c724c501749e5c71638840b685f6478f6750a
Python
huggingface
transformers
159,743
32,972
🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.
[ "audio", "deep-learning", "deepseek", "gemma", "glm", "hacktoberfest", "llm", "machine-learning", "model-hub", "natural-language-processing", "nlp", "pretrained-models", "python", "pytorch", "pytorch-transformers", "qwen", "speech-recognition", "transformer", "vlm" ]
Apache-2.0
src/transformers/image_transforms.py
image_transforms.py
45,094
# Copyright 2022 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed ...
5,245
45,094
1,072
0.98
2026-04-22T13:17:56.825543
true
github_directus_directus_c5a2cadc7ac1a283b3ad8e6077efcbd38d9b5e08
TypeScript
directus
directus
34,882
4,723
The flexible backend for all your projects 🐰 Turn your DB into a headless CMS, admin panels, or apps with a custom UI, instant APIs, auth & more.
[ "api", "app", "cms", "composable", "data-visualization", "database", "directus", "graphql", "headless-cms", "javascript", "mariadb", "mssql", "mysql", "no-code", "node", "postgresql", "sql", "sqlite", "typescript", "vue" ]
NOASSERTION
app/src/constants.ts
constants.ts
6,697
import { Type } from '@directus/types'; export const VALIDATION_TYPES = ['FAILED_VALIDATION', 'RECORD_NOT_UNIQUE']; export const DIRECTUS_LOGO = ` ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣦⣤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀...
372
4,213
184
0.98
2026-04-23T07:58:04.380791
true
github_typicode_lowdb_30a22b5e3cea408cd4c124641a1d51d29cc1679b
TypeScript
typicode
lowdb
22,525
967
Simple and fast JSON database
[ "database", "electron", "embeddable", "embedded-database", "javascript", "json", "localstorage", "lodash", "nodejs", "storage" ]
MIT
src/examples/server.ts
server.ts
1,084
// Note: if you're developing a local server and don't expect to get concurrent requests, // it can be easier to use `JSONFileSync` adapter. // But if you need to avoid blocking requests, you can do so by using `JSONFile` adapter. import express from 'express' import asyncHandler from 'express-async-handler' import { ...
157
1,084
45
0.98
2026-04-23T06:45:33.978384
true
github_louis-e_arnis_dfbd0b8cbcb888663ae19970c849e94581d10907
Rust
louis-e
arnis
15,087
1,199
Generate any location from the real world in Minecraft with a high level of detail.
[ "maps", "minecraft", "openstreetmap", "osm", "overpass-api", "rust", "tauri" ]
Apache-2.0
src/element_processing/highways.rs
highways.rs
48,162
use crate::args::Args; use crate::block_definitions::*; use crate::bresenham::bresenham_line; use crate::coordinate_system::cartesian::{XZBBox, XZPoint}; use crate::floodfill_cache::{CoordinateBitmap, FloodFillCache}; use crate::osm_parser::{ProcessedElement, ProcessedWay}; use crate::world_editor::WorldEditor; use std...
3,926
48,160
1,148
0.98
2026-04-17T13:53:33.867493
true
github_rustdesk_rustdesk_9bc90a8fab23180217132f3f2cba0210531036ee
Rust
rustdesk
rustdesk
111,484
16,696
An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.
[ "android", "anydesk", "dart", "flatpak", "flutter", "flutter-apps", "ios", "linux", "macos", "p2p", "rdp", "remote-control", "remote-desktop", "rust", "rust-lang", "teamviewer", "vnc", "wayland", "windows" ]
AGPL-3.0
src/main.rs
main.rs
3,231
#![cfg_attr( all(not(debug_assertions), target_os = "windows"), windows_subsystem = "windows" )] use librustdesk::*; #[cfg(any(target_os = "android", target_os = "ios", feature = "flutter"))] fn main() { if !common::global_init() { eprintln!("Global initialization failed."); return; } ...
255
3,231
105
0.98
2026-04-17T13:14:46.894919
true
github_BrainJS_brain.js_b1ef30821f2862d469714f513caeedb0799eb064
TypeScript
BrainJS
brain.js
14,860
1,078
🤖 GPU accelerated Neural networks in JavaScript for Browsers and Node.js
[ "api", "brain", "browser", "convolutional-neural-networks", "easy-to-use", "hacktoberfest", "neural-network", "node", "nodejs", "recurrent-neural-networks", "stream", "web" ]
MIT
src/neural-network.trainopts.test.ts
neural-network.trainopts.test.ts
11,985
import { NeuralNetwork } from './neural-network'; const data = [ { input: [0, 0], output: [0] }, { input: [0, 1], output: [1] }, { input: [1, 0], output: [1] }, { input: [1, 1], output: [1] }, ]; describe('NeuralNetwork.train()', () => { describe('train() options', () => { it('train until error threshol...
1,181
11,985
351
0.98
2026-04-17T17:56:22.714828
true
github_firefox-devtools_profiler_d3c515ce9e82ba5f05de46dfc3f14fb329247466
TypeScript
firefox-devtools
profiler
1,481
465
Firefox Profiler — Web app for Firefox performance analysis
[ "devtools", "firefox", "gecko-profiler", "javascript", "performance", "profiler", "react", "redux" ]
MPL-2.0
src/reducers/publish.ts
publish.ts
7,259
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import { combineReducers } from 'redux'; import { getShouldSanitizeByDefault } from '../profile-logic/sanitize'; ...
791
7,259
260
0.98
2026-04-18T00:29:58.391697
true
github_kubernetes-sigs_aws-load-balancer-controller_eec47b3011a0503dbaade09375e38f820e7c389e
Go
kubernetes-sigs
aws-load-balancer-controller
4,277
1,616
A Kubernetes controller for Elastic Load Balancers
[ "aws", "gateway-api", "ingress", "ingress-resource", "k8s-sig-aws", "kubernetes", "kubernetes-ingress-controller" ]
Apache-2.0
pkg/certs/cert_discovery.go
cert_discovery.go
5,811
package certs import ( "context" "strings" "sync" "time" awssdk "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/acm" acmTypes "github.com/aws/aws-sdk-go-v2/service/acm/types" "github.com/go-logr/logr" "github.com/google/go-cmp/cmp" "github.com/google/go-cmp/cmp/cmpopts" "github.com...
541
5,811
185
0.98
2026-04-17T22:19:01.434555
true
github_harmony-one_harmony_5c5a67a8a3d1b0185ecfa0e935fc8e96b4c023f5
Go
harmony-one
harmony
1,453
287
The core protocol of harmony
[ "blockchain", "bls", "consensus", "distributed-ledger-technology", "harmony", "harmony-protocol", "pbft", "proof-of-stake", "sharding" ]
LGPL-3.0
api/proto/common.go
common.go
2,645
package proto import ( "bytes" "errors" ) /* The message structure of any message in Harmony network ---- content start ----- 1 byte - message category 0x00: Consensus 0x01: Node... 1 byte - message type - for Consensus category ...
315
2,645
83
0.98
2026-04-17T16:57:10.533529
true
github_denisidoro_navi_a1edee68d09849d45148e43ccd69c7b1ccf71531
Rust
denisidoro
navi
17,025
547
An interactive cheatsheet tool for the command-line
[ "bash", "cheatsheets", "cli", "command-line", "rust", "shell", "snippet", "snippets", "terminal" ]
Apache-2.0
src/finder/mod.rs
mod.rs
7,068
use crate::deser; use crate::prelude::*; use std::io::Write; use std::process::{self, Output}; use std::process::{Command, Stdio}; pub mod structures; use clap::ValueEnum; pub use post::process; use structures::Opts; use structures::SuggestionType; const MIN_FZF_VERSION_MAJOR: u32 = 0; const MIN_FZF_VERSION_MINOR: u32...
596
7,068
231
0.98
2026-04-17T13:48:30.981353
true
github_Huachao_vscode-restclient_ca24003b34656ca227bc78c457e041c78b52e5f7
TypeScript
Huachao
vscode-restclient
5,981
516
REST Client Extension for Visual Studio Code
[ "graphql", "http", "http-client", "rest", "rest-api", "rest-client", "typescript", "visual-studio-code", "vscode", "vscode-extension" ]
MIT
src/controllers/historyController.ts
historyController.ts
2,833
import dayjs from 'dayjs'; import relativeTime from 'dayjs/plugin/relativeTime'; import * as fs from 'fs-extra'; import { EOL, tmpdir } from 'os'; import * as path from 'path'; import { QuickPickItem, window, workspace } from 'vscode'; import { HistoricalHttpRequest } from '../models/httpRequest'; import { trace } from...
263
2,833
82
0.98
2026-04-18T01:32:14.510046
true
github_pubkey_rxdb_40b106dba247dea685155332e2087b8430b17f5c
TypeScript
pubkey
rxdb
23,156
1,161
A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/
[ "angular", "browser-database", "couchdb", "crdt", "database", "firebase", "graphql", "indexeddb", "ionic", "local-first", "localstorage", "nodejs", "nosql", "postgres", "pouchdb", "react-native", "realtime", "realtime-database", "rxdb", "sqlite" ]
Apache-2.0
src/plugin.ts
plugin.ts
2,798
/** * this handles how plugins are added to rxdb * basically it changes the internal prototypes * by passing them to the plugins-functions */ import { RxSchema } from './rx-schema.ts'; import { basePrototype as RxDocumentPrototype } from './rx-document.ts'; import { RxQueryBase } from './rx-query.ts'; i...
285
2,798
114
0.98
2026-04-23T08:21:59.390406
true
github_qwersyk_Newelle_87cae7f7391c162a28e0388bd1ad8272bab235e2
Python
qwersyk
Newelle
1,319
105
Newelle - Your Ultimate Virtual Assistant
[ "adwaita", "ai", "app", "gnome", "gtk", "gtk4", "linux" ]
GPL-3.0
src/window.py
window.py
130,180
from select import select from tldextract.tldextract import update from pylatexenc.latex2text import LatexNodes2Text import time import re import sys import os import subprocess import threading import json import base64 import copy import uuid import gettext import datetime from gi.repository import Gtk, Adw, Pango, ...
8,779
130,178
3,185
0.98
2026-04-22T18:02:11.192344
true
github_starship_starship_089d8b6ece4d99997ee9a36a6b4e412bb1c30ad1
Rust
starship
starship
56,483
2,470
☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!
[ "bash", "fish", "fish-prompt", "fish-theme", "oh-my-zsh", "powershell", "rust", "shell-prompt", "starship", "zsh", "zsh-prompt", "zsh-theme" ]
ISC
src/configs/mojo.rs
mojo.rs
901
use nu_ansi_term::Color; use serde::{Deserialize, Serialize}; pub const MOJO_DEFAULT_COLOR: Color = Color::Fixed(208); #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct MojoConfig<'a> ...
88
895
36
0.98
2026-04-17T13:17:51.702264
true
github_ChromeDevTools_chrome-devtools-mcp_5c339872390285fe17df871f3e35dc9e85927f4d
TypeScript
ChromeDevTools
chrome-devtools-mcp
36,793
2,272
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/tools/inPage.ts
inPage.ts
3,211
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {zod, ajv, type JSONSchema7} from '../third_party/index.js'; import {ToolCategory} from './categories.js'; import {definePageTool} from './ToolDefinition.js'; export interface ToolDefinition { name: string; description...
349
3,211
108
0.98
2026-04-23T08:42:46.319228
true
github_rustdesk_rustdesk_20cd02a883d9a46acce1f0ba6290b6b494da7cba
Rust
rustdesk
rustdesk
111,484
16,696
An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.
[ "android", "anydesk", "dart", "flatpak", "flutter", "flutter-apps", "ios", "linux", "macos", "p2p", "rdp", "remote-control", "remote-desktop", "rust", "rust-lang", "teamviewer", "vnc", "wayland", "windows" ]
AGPL-3.0
src/plugin/config.rs
config.rs
10,713
use super::{cstr_to_string, str_to_cstr_ret}; use hbb_common::{allow_err, bail, config::Config as HbbConfig, lazy_static, log, ResultType}; use serde_derive::{Deserialize, Serialize}; use std::{ collections::HashMap, ffi::c_char, fs, ops::{Deref, DerefMut}, path::PathBuf, ptr, str::FromStr, ...
909
10,713
364
0.98
2026-04-17T13:14:52.394149
true
github_fdehau_tui-rs_46b37261401adb29d2a3b58afebb6210c4c64281
Rust
fdehau
tui-rs
10,878
481
Build terminal user interfaces and dashboards using Rust
[ "dashboard", "rust", "terminal", "tui" ]
MIT
src/backend/test.rs
test.rs
4,081
use crate::{ backend::Backend, buffer::{Buffer, Cell}, layout::Rect, }; use std::{fmt::Write, io}; use unicode_width::UnicodeWidthStr; /// A backend used for the integration tests. #[derive(Debug)] pub struct TestBackend { width: u16, buffer: Buffer, height: u16, cursor: bool, pos: (u16...
391
4,081
152
0.98
2026-04-17T14:22:25.216980
true
github_reactstrap_reactstrap_67e8b1ae163ec540d81f525769058ec03a11cfb7
JavaScript
reactstrap
reactstrap
10,527
1,288
Simple React Bootstrap 5 components
[ "bootstrap", "components", "hacktoberfest", "javascript", "react", "reactstrap", "ui" ]
MIT
src/ListInlineItem.js
ListInlineItem.js
821
import React, { forwardRef } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules, tagPropType } from './utils'; const propTypes = { /** Add custom class */ className: PropTypes.string, /** Change underlying component's CSS base class name */ cssModule...
99
821
29
0.98
2026-04-23T05:44:13.680076
true
github_patrickjohncyh_fashion-clip_b1ce8cf0603a9bbdcb1e1e58635e2bc257b17d7f
Python
patrickjohncyh
fashion-clip
501
54
FashionCLIP is a CLIP-like model fine-tuned for the fashion domain.
[ "clip", "ecommerce", "fashion", "multi-modal", "nlp", "nlp-machine-learning", "transformer" ]
MIT
setup.py
setup.py
1,059
from setuptools import setup with open("requirements.txt") as f: requirements = f.read().splitlines() with open("README.md") as readme_file: readme = readme_file.read() setup( name="fashion-clip", version="0.2.2", description="", python_requires=">=3.5", classifiers=[ "Development...
89
1,059
34
0.98
2026-04-22T21:54:10.895752
true
github_ChromeDevTools_chrome-devtools-mcp_84a96c086560686fad7069bd4bd70b96ad2a5f03
TypeScript
ChromeDevTools
chrome-devtools-mcp
36,793
2,272
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/bin/chrome-devtools.ts
chrome-devtools.ts
7,958
#!/usr/bin/env node /** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ process.title = 'chrome-devtools'; import process from 'node:process'; import type {Options, PositionalOptions} from 'yargs'; import { startDaemon, stopDaemon, sendCommand, handleResponse, } from '.....
766
7,958
278
0.98
2026-04-23T08:42:32.745078
true
github_telepresenceio_telepresence_a87a6e74fbe62b9f9fbfb470d88c07fdd081ba26
Go
telepresenceio
telepresence
7,183
568
Local development against a remote Kubernetes or OpenShift cluster
[ "docker", "kubernetes", "local-development", "minikube", "proxy", "tunnel", "vpn" ]
Apache-2.0
pkg/labels/selector.go
selector.go
3,598
package labels import ( "slices" "strings" "github.com/go-json-experiment/json" "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/selection" "sigs.k8s.io/yaml" ) const NameLabelKey = "kubernetes.io/metadata.name" type Operator string // These are the camel-cased operators that are valid in a kubernet...
433
3,598
155
0.98
2026-04-17T20:29:48.682934
true
github_sharkdp_bat_6b4e29352ee8d19b59197bf6cee88608845b69c4
Rust
sharkdp
bat
58,255
1,524
A cat(1) clone with wings.
[ "cli", "command-line", "git", "hacktoberfest", "rust", "syntax-highlighting", "terminal", "tool" ]
Apache-2.0
src/preprocessor.rs
preprocessor.rs
8,682
use std::fmt::Write; use crate::{ nonprintable_notation::NonprintableNotation, vscreen::{EscapeSequenceOffsets, EscapeSequenceOffsetsIterator}, }; /// Expand tabs like an ANSI-enabled expand(1). pub fn expand_tabs(line: &str, width: usize, cursor: &mut usize) -> String { let mut buffer = String::with_capa...
716
8,644
264
0.98
2026-04-17T13:16:55.586697
true
github_ChromeDevTools_chrome-devtools-mcp_0b7a8336757689604920c664fe785163428b6f33
TypeScript
ChromeDevTools
chrome-devtools-mcp
36,793
2,272
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/tools/extensions.ts
extensions.ts
2,916
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {zod} from '../third_party/index.js'; import {ToolCategory} from './categories.js'; import {defineTool} from './ToolDefinition.js'; export const installExtension = defineTool({ name: 'install_extension', description: '...
304
2,916
99
0.98
2026-04-23T08:42:46.005463
true
github_pomber_git-history_fbd990a25d0b7b02d3b14389419d86845662cd21
JavaScript
pomber
git-history
13,683
544
Quickly browse the history of a file from any git repository
[ "animation", "blame", "cli", "commit", "git", "github", "history", "log", "text", "vscode", "vscode-extension" ]
MIT
src/git-providers/github-commit-fetcher.js
github-commit-fetcher.js
1,914
import { Base64 } from "js-base64"; const cache = {}; async function getCommits({ repo, sha, path, token, last }) { if (!cache[path]) { const commitsResponse = await fetch( `https://api.github.com/repos/${repo}/commits?sha=${sha}&path=${path}`, { headers: token ? { Authorization: `bearer ${token}` }...
192
1,914
76
0.98
2026-04-23T12:37:48.841444
true
github_stepfun-ai_Step-Audio-EditX_5b4cce148721658dd65200c33027cc04f6812b99
Python
stepfun-ai
Step-Audio-EditX
907
62
A powerful 3B-parameter, LLM-based Reinforcement Learning audio edit model excels at editing emotion, speaking style, and paralinguistics, and features robust zero-shot text-to-speech
[ "audio-editing", "cross-lingual", "emotion-control", "paralinguistics", "reinforcement-learning", "speaking-style", "style-control", "text-to-speech", "tts", "voice-cloning", "zero-shot-tts" ]
Apache-2.0
src/utils/reward_sim.py
reward_sim.py
1,907
import os import torch import torchaudio import base64 import io from fastapi import FastAPI from pydantic import BaseModel from run_sim import get_sim_model, verification2 from threading import Lock app = FastAPI() sample_rate = 24000 # GPU 分配逻辑 # worker_id = int(os.environ.get('WORKER_ID', 0)) if 'WORKER_ID' in os....
183
1,881
63
0.98
2026-04-22T20:25:54.067971
true
github_h2oai_h2ogpt_10f3f4e26c9f683e3ed95f9e6ac9ad4ac6e51570
Python
h2oai
h2ogpt
11,986
1,318
Private chat with local GPT with document, images, video, etc. 100% private, Apache 2.0. Supports oLLaMa, Mixtral, llama.cpp, and more. Demo: https://gpt.h2o.ai/ https://gpt-docs.h2o.ai/
[ "ai", "chatgpt", "embeddings", "fedramp", "generative", "gpt", "gpt4all", "llama2", "llm", "mixtral", "pdf", "private", "privategpt", "vectorstore" ]
Apache-2.0
src/export_hf_checkpoint.py
export_hf_checkpoint.py
10,108
import os import json import shutil import subprocess import torch from accelerate import infer_auto_device_map, dispatch_model from accelerate.utils import get_balanced_memory from peft import PeftModel from transformers import PreTrainedModel def do_export(): BASE_MODEL = 'h2oai/h2ogpt-4096-llama2-13b-chat' ...
718
10,108
268
0.98
2026-04-22T15:06:58.999609
true
github_henrygd_beszel_930613be421dd4c3b73c76d2d0d3a3385092f32e
TypeScript
henrygd
beszel
20,919
717
Lightweight server monitoring with historical data, docker stats, and alerts.
[ "homelab", "monitoring", "self-hosted" ]
MIT
internal/site/lingui.config.ts
lingui.config.ts
528
import { defineConfig } from "@lingui/cli" export default defineConfig({ locales: [ "en", "ar", "bg", "cs", "da", "de", "es", "fa", "fr", "he", "hr", "hu", "id", "it", "ja", "ko", "nl", "no", "pl", "pt", "tr", "ru", "sl", "sr", "sv", "uk", "vi", "zh", "zh-CN",...
61
528
48
0.98
2026-04-17T09:22:52.440171
true
github_wassim249_YT-Navigator_0dd2b60e96066b58982974b993edd9595f78bd70
Python
wassim249
YT-Navigator
588
71
YT Navigator: AI-powered YouTube content explorer that lets you search and chat with channel videos using AI agents. Extract insights from hours of content in seconds with semantic search and precise timestamps.
[ "agentic-ai", "agentic-rag", "ai", "django", "langchain", "langgraph", "llm", "python", "rag", "reranking", "youtube", "youtube-bot" ]
MIT
app/schemas/agent.py
agent.py
3,622
"""Schemas for the agent.""" from typing import ( Annotated, Literal, Optional, Sequence, Union, ) from django.utils.functional import SimpleLazyObject from langchain_core.messages import BaseMessage from langgraph.graph.message import add_messages from markdown2 import markdown from pydantic impo...
355
3,622
123
0.98
2026-04-23T00:53:09.322991
true
github_zhouxiaoka_autoclip_mvp_88ce18d42ae20447661e4142166292da1f9a53c5
Python
zhouxiaoka
autoclip_mvp
953
165
AutoClip: AI-powered video clipping and highlight generation · 一款智能高光提取与剪辑的二创工具
[ "ai-video-editing", "auto-highlight", "llm", "video", "video-editing" ]
MIT
src/config.py
config.py
17,904
""" 配置文件 - 管理API密钥、文件路径等配置信息 支持新的配置管理系统和向后兼容 """ import os import json from pathlib import Path from typing import Dict, Any, Optional from dataclasses import dataclass, field from pydantic import BaseModel, field_validator from enum import Enum # 视频分类枚举 class VideoCategory(str, Enum): DEFAULT = "default" KNOW...
1,190
16,224
461
0.98
2026-04-18T00:05:03.406159
true
github_stackrox_kube-linter_18426afec77a80552bb18a6158287bdc74a7f194
Go
stackrox
kube-linter
3,438
259
KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices.
[ "hacktoberfest", "hactoberfest", "helm-charts", "kubernetes", "static-analysis", "yaml-files" ]
Apache-2.0
pkg/extract/metadata.go
metadata.go
362
package extract import ( "golang.stackrox.io/kube-linter/pkg/k8sutil" ) // Labels extracts labels from the given object. func Labels(object k8sutil.Object) map[string]string { return object.GetLabels() } // Annotations extracts annotations from the given object. func Annotations(object k8sutil.Object) map[string]s...
38
362
16
0.98
2026-04-17T22:33:39.961430
true
github_alxshelepenok_lumen_f25dea172da20594684871196cbd3c3c4b418b55
TypeScript
alxshelepenok
lumen
2,018
644
A constantly evolving and thoughtful architecture for creating static blogs.
[ "architecture", "blog", "bun", "gatsby", "graphql", "infrastructure", "jamstack", "react", "sentry", "static", "typescript" ]
MIT
src/types/node.ts
node.ts
209
import { type Fields } from "./fields"; import { type Frontmatter } from "./frontmatter"; interface Node { id: string; html: string; fields: Fields; frontmatter: Frontmatter; } export { type Node };
31
209
12
0.98
2026-04-18T01:40:41.602972
true
github_JasonKessler_scattertext_b05dec7ee627d8413b1dba158c49c8c1a25f2e85
Python
JasonKessler
scattertext
2,327
287
Beautiful visualizations of how language differs among document types.
[ "computational-social-science", "d3", "eda", "exploratory-data-analysis", "japanese-language", "machine-learning", "natural-language-processing", "nlp", "scatter-plot", "semiotic-squares", "sentiment", "stylometric", "stylometry", "text-as-data", "text-mining", "text-visualization", ...
Apache-2.0
demo_log_scale.py
demo_log_scale.py
729
import scattertext as st df = st.SampleCorpora.ConventionData2012.get_data().assign( parse=lambda df: df.text.apply(st.whitespace_nlp_with_sentences) ) corpus = st.CorpusFromParsedDocuments( df, category_col='party', parsed_col='parse' ).build().get_unigram_corpus() html = st.produce_scattertext_explorer( ...
39
729
24
0.98
2026-04-22T19:44:31.932119
true
github_a-h_templ_8483d193df45a2a951cf3ff9549ac31fb601a746
Go
a-h
templ
10,229
351
A language for writing HTML user interfaces in Go.
[ "go", "html-elements", "htmx", "ide-support", "language-server", "lsp", "server-side-rendering", "templating-languages" ]
MIT
internal/lazyloader/pkgtraverser.go
pkgtraverser.go
2,603
package lazyloader import ( "context" "fmt" "os" "path/filepath" lsp "github.com/a-h/templ/lsp/protocol" "github.com/a-h/templ/lsp/uri" "golang.org/x/tools/go/packages" ) const ( _templExt = ".templ" ) type pkgTraverser interface { openTopologically(ctx context.Context, pkg *packages.Package) error closeT...
278
2,603
111
0.98
2026-04-17T12:43:11.378133
true
github_MigoXLab_dingo_08f4812dcd16dadfa02f7aa97897b48e7eb5a332
Python
MigoXLab
dingo
686
69
Dingo: A Comprehensive AI Data, Model and Application Quality Evaluation Tool
[ "agent-as-a-judge", "common-crawl", "data-agent", "data-evaluation", "data-quality", "data-quality-assessment", "data-quality-report", "data-validation", "dataquality", "datascience", "deepseek", "hallucination", "hallucination-detection", "llm", "llm-as-a-judge", "openai", "opencomp...
Apache-2.0
mcp_server.py
mcp_server.py
53,653
import io import json import logging import os import sys import uuid from contextlib import redirect_stderr, redirect_stdout from typing import Any, Dict, List, Literal, Optional, Tuple from fastmcp import FastMCP from dingo.config import InputArgs from dingo.exec import Executor from dingo.model import Model from d...
4,846
53,653
1,319
0.98
2026-04-23T01:16:13.609634
true
github_typicode_lowdb_f48982c3ad444ae458e2be4f932d66f48d96e75e
TypeScript
typicode
lowdb
22,525
967
Simple and fast JSON database
[ "database", "electron", "embeddable", "embedded-database", "javascript", "json", "localstorage", "lodash", "nodejs", "storage" ]
MIT
src/presets/node.ts
node.ts
832
import { PathLike } from 'node:fs' import { Memory, MemorySync } from '../adapters/Memory.js' import { JSONFile, JSONFileSync } from '../adapters/node/JSONFile.js' import { Low, LowSync } from '../core/Low.js' export async function JSONFilePreset<Data>( filename: PathLike, defaultData: Data, ): Promise<Low<Data>>...
93
832
32
0.98
2026-04-23T06:45:35.646670
true
github_rustdesk_rustdesk_69e3ec3045dd62543758b0d1f75639b770afca21
Rust
rustdesk
rustdesk
111,484
16,696
An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.
[ "android", "anydesk", "dart", "flatpak", "flutter", "flutter-apps", "ios", "linux", "macos", "p2p", "rdp", "remote-control", "remote-desktop", "rust", "rust-lang", "teamviewer", "vnc", "wayland", "windows" ]
AGPL-3.0
src/common.rs
common.rs
99,244
use std::{ collections::HashMap, future::Future, net::{SocketAddr, ToSocketAddrs}, sync::{Arc, Mutex, RwLock}, task::Poll, }; use serde_json::{json, Map, Value}; #[cfg(not(target_os = "ios"))] use hbb_common::whoami; use hbb_common::{ allow_err, anyhow::{anyhow, Context}, async_recursi...
8,597
99,244
3,008
0.98
2026-04-17T13:14:14.703991
true
github_abinthomasonline_repo2txt_5e6b472f583e34a1cca751440d4f241495475723
JavaScript
abinthomasonline
repo2txt
1,793
214
Web-based tool converts GitHub repository contents into a single formatted text file
[ "ai", "anthropic", "chatgpt", "developer-tools", "devtools", "llm" ]
UNKNOWN
eslint.config.js
eslint.config.js
616
import js from '@eslint/js' import globals from 'globals' import reactHooks from 'eslint-plugin-react-hooks' import reactRefresh from 'eslint-plugin-react-refresh' import tseslint from 'typescript-eslint' import { defineConfig, globalIgnores } from 'eslint/config' export default defineConfig([ globalIgnores(['dist']...
50
616
24
0.98
2026-04-23T08:51:09.120702
true
github_rtk-ai_rtk_81ebade847463177a10274c92c3eb3cffc7f0c35
Rust
rtk-ai
rtk
28,400
1,665
CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies
[ "agentic-coding", "ai-coding", "anthropic", "claude-code", "cli", "command-line-tool", "cost-reduction", "developer-tools", "llm", "open-source", "productivity", "rust", "token-optimization" ]
Apache-2.0
src/learn/detector.rs
detector.rs
21,193
//! Pattern-matches CLI errors against known correction rules. use lazy_static::lazy_static; use regex::Regex; #[derive(Debug, Clone, PartialEq)] pub enum ErrorType { UnknownFlag, CommandNotFound, #[allow(dead_code)] WrongSyntax, WrongPath, MissingArg, PermissionDenied, Other(String), ...
1,822
21,191
630
0.98
2026-04-17T13:28:30.206500
true
github_Semantic-Org_Semantic-UI-React_4cc1c62a06f98e0427544f2de36ef46f6657d12b
JavaScript
Semantic-Org
Semantic-UI-React
13,228
4,037
The official Semantic-UI-React integration
[ "component-library", "components", "frontend-components", "frontend-framework", "javascript-libraries", "javascript-library", "js-library", "react", "react-components", "react-library", "semantic-ui" ]
MIT
src/lib/factories.js
factories.js
6,521
import cx from 'clsx' import _ from 'lodash' import * as React from 'react' import * as ReactIs from 'react-is' const DEPRECATED_CALLS = {} // ============================================================ // Factories // ============================================================ /** * A more robust React.createEle...
711
6,521
187
0.98
2026-04-23T04:56:17.679192
true
github_nodejs_node_7a29229ddbe5cd912265ded66ce020277fff2a74
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/promise_hooks.js
promise_hooks.js
3,074
'use strict'; const { ArrayPrototypeIndexOf, ArrayPrototypePush, ArrayPrototypeSlice, ArrayPrototypeSplice, FunctionPrototypeBind, } = primordials; const { setPromiseHooks } = internalBinding('async_wrap'); const { triggerUncaughtException } = internalBinding('errors'); const { kEmptyObject } = require('in...
351
3,074
127
0.98
2026-04-23T06:16:00.623440
true
github_requestly_requestly_d1f1f44edd255745eb4ed37b3d7c943a3d93503a
JavaScript
requestly
requestly
6,635
636
Free and open-source API Client & Interceptor.
[ "api", "api-client", "api-mock", "api-rest", "api-testing", "bruno", "bruno-alternative", "charles-proxy", "chrome-extension", "fiddler", "firefox-extension", "hacktoberfest", "http-interceptor", "insomnia", "mock-server", "open-source", "postman", "postman-api", "postman-collect...
NOASSERTION
app/src/setupTests.js
setupTests.js
244
// jest-dom adds custom jest matchers for asserting on DOM nodes. // allows you to do things like: // expect(element).toHaveTextContent(/react/i) // learn more: https://github.com/testing-library/jest-dom // import "@testing-library/jest-dom";
27
244
6
0.98
2026-04-17T17:58:49.977850
true