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_WhitestormJS_whs.js_3f71bbb762bd4dbfe1fb7762d9a29d4994707e2d
JavaScript
WhitestormJS
whs.js
6,336
415
:rocket: 🌪 Super-fast 3D framework for Web Applications 🥇 & Games 🎮. Based on Three.js
[ "component-driven", "framework", "high-performance", "modular", "physics", "react", "scene-graph", "web-development", "webpack" ]
MIT
jest.config.js
jest.config.js
213
module.exports = { transform: { '.js$': './tools/jestPreprocess.js' }, coveragePathIgnorePatterns: [ '/node_modules/' ], transformIgnorePatterns: [ '/node_modules/(?!postprocessing)/' ] };
17
213
12
0.98
2026-04-23T06:03:18.847993
true
github_PeterH0323_Smart_Construction_a8647863f0f2d6ebc6042b5f3b032203f2eab884
Python
PeterH0323
Smart_Construction
2,594
485
Base on YOLOv5 Head Person Helmet Detection on Construction Sites,基于目标检测工地安全帽和禁入危险区域识别系统,🚀😆附 YOLOv5 训练自己的数据集超详细教程🚀😆2021.3新增可视化界面❗❗
[ "detection", "helmet", "object-detection", "python", "pytorch", "yolo", "yolov5" ]
GPL-3.0
detect.py
detect.py
7,335
import argparse import torch.backends.cudnn as cudnn from models.experimental import * from utils.datasets import * from utils.utils import * def detect(save_img=False): out, source, weights, view_img, save_txt, imgsz = \ opt.output, opt.source, opt.weights, opt.view_img, opt.save_txt, opt.img_size ...
721
7,335
162
0.98
2026-04-22T23:10:25.738186
true
github_bigint_hey_ac3420d69e8b56f39bd6548c87d8477f7795a01c
TypeScript
bigint
hey
29,463
1,807
Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿
[ "blockchain", "crypto", "dapp", "graphql", "hacktoberfest", "lens-protocol", "nextjs", "react", "social-media", "tailwindcss", "turborepo", "typescript", "vitest", "wagmi", "web3" ]
GPL-3.0
src/helpers/reloadAllTabs.ts
reloadAllTabs.ts
211
import { Localstorage } from "@/data/storage"; const reloadAllTabs = (): void => { localStorage.setItem(Localstorage.ReloadTabs, Date.now().toString()); location.reload(); }; export default reloadAllTabs;
20
211
9
0.98
2026-04-18T01:23:13.496025
true
github_soobinseo_Transformer-TTS_15e526bd34509aa1bbe4dfe238455121943d7d1b
Python
soobinseo
Transformer-TTS
690
140
A Pytorch Implementation of "Neural Speech Synthesis with Transformer Network"
[ "attention-mechanism", "attention-plots", "deep-learning", "pytorch", "pytorch-implementation", "text-to-speech", "transformer", "tts" ]
MIT
utils.py
utils.py
4,222
import numpy as np import librosa import os, copy from scipy import signal import hyperparams as hp import torch as t def get_spectrograms(fpath): '''Parse the wave file in `fpath` and Returns normalized melspectrogram and linear spectrogram. Args: fpath: A string. The full path of a sound file. ...
480
4,222
136
0.98
2026-04-22T21:44:25.257389
true
github_preactjs_preact_96f9b42ddef6330d7c4d28dbf57479f4dbd61a2a
TypeScript
preactjs
preact
38,572
2,030
⚛️ Fast 3kB React alternative with the same modern API. Components & Virtual DOM.
[ "components", "dom", "jsx", "preact", "react", "vdom", "virtual-dom" ]
MIT
src/index.d.ts
index.d.ts
10,713
export as namespace preact; import { JSXInternal } from './jsx'; import { DOMAttributes, HTMLAttributes, SVGAttributes } from './dom'; export import JSX = JSXInternal; export * from './dom'; // // Preact Virtual DOM // ----------------------------------- export interface VNode<P = {}> { type: ComponentType<P> | st...
1,241
10,713
388
0.98
2026-04-23T04:47:06.656909
true
github_robocorp_rpaframework_1a7313a0fa578c6038b5053939a4171a347cff2e
Python
robocorp
rpaframework
1,489
266
Collection of open-source libraries and tools for Robotic Process Automation (RPA), designed to be used with both Robot Framework and Python
[ "ai", "automation", "documentai", "nlp", "ocr", "opencv", "python", "robocorp", "robot", "robotframework", "rpa", "rpa-robots" ]
Apache-2.0
tasks.py
tasks.py
174
from invoke import Collection import invocations configuration = {"is_meta": True} ns: Collection = invocations.create_namespace(is_meta=True) ns.configure(configuration)
15
174
9
0.98
2026-04-17T16:19:33.889190
true
github_serenity-rs_serenity_e522c946909fee5d1c15b4d00940ae4bc21d3338
Rust
serenity-rs
serenity
5,463
661
A Rust library for the Discord API.
[ "discord", "discord-api", "hacktoberfest", "rust" ]
ISC
src/builder/edit_scheduled_event.rs
edit_scheduled_event.rs
7,044
#[cfg(feature = "http")] use super::Builder; use super::CreateAttachment; #[cfg(feature = "http")] use crate::http::CacheHttp; #[cfg(feature = "http")] use crate::internal::prelude::*; use crate::model::prelude::*; /// [Discord docs](https://docs.discord.com/developers/resources/guild-scheduled-event#modify-guild-sche...
706
7,044
195
0.98
2026-04-17T15:00:51.638451
true
github_gradio-app_gradio_c370c17c63eeb146504f1917ae99ea1f49b0f60e
Python
gradio-app
gradio
42,313
3,388
Build and share delightful machine learning apps, all in Python. 🌟 Star to support our work!
[ "data-analysis", "data-science", "data-visualization", "deep-learning", "deploy", "gradio", "gradio-interface", "interface", "machine-learning", "models", "python", "python-notebook", "ui", "ui-components" ]
Apache-2.0
globals.d.ts
globals.d.ts
1,376
import { ApiData, ApiInfo } from "client/js/src/types"; declare global { interface Window { __gradio_mode__: "app" | "website"; __gradio_space__: string | null; launchGradio: Function; launchGradioFromSpaces: Function; gradio_config: Config; gradio_api_info: ApiInfo<ApiData> | { api: ApiInfo<ApiData> }; ...
165
1,376
54
0.95
2026-04-13T13:40:27.844135
true
github_bee-san_Ciphey_053d78ccfd2c7bfdf2547f75a6963d0d41c8d49c
Rust
bee-san
Ciphey
21,322
1,429
⚡ Automatically decrypt encryptions without knowing the key or cipher, decode encodings, and crack hashes ⚡
[ "artificial-intelligence", "cipher", "cpp", "cryptography", "ctf", "ctf-tools", "cyberchef-magic", "decryption", "deep-neural-network", "encodings", "encryptions", "hacking", "hacktoberfest", "hashes", "natural-language-processing", "pentesting", "python" ]
MIT
src/checkers/regex_checker.rs
regex_checker.rs
1,988
use gibberish_or_not::Sensitivity; use lemmeknow::Identifier; use super::checker_type::{Check, Checker}; use crate::{checkers::checker_result::CheckResult, config::get_config}; use log::trace; use regex::Regex; /// The Regex Checker checks if the text matches a known Regex pattern. /// This is the struct for it. pub ...
185
1,988
62
0.98
2026-04-17T13:40:04.806798
true
github_AlloyTeam_curvejs_0107e07a44323da0799b739fb2f12ee58383e631
JavaScript
AlloyTeam
curvejs
1,303
132
Made curve a dancer in HTML5 canvas - 魔幻线条
[ "animation", "bezier", "canvas", "curve", "curvejs", "dance", "dancer" ]
UNKNOWN
src/curve.js
curve.js
5,201
class Curve { constructor(option) { this.points = option.points || [0,0,0,0,0,0,0,0] this.color = option.color || 'black' this.x = option.x || 0 this.y = option.y || 0 this.vision = option.vision || [] this.visionMax = 720 this.visionInterval = option.visionI...
544
5,201
179
0.98
2026-04-23T14:13:22.081547
true
github_vdaas_vald_fe2afb3309c7ce183cc6aa8c2dd69d9c79d6e4fc
Go
vdaas
vald
1,698
92
Vald. A Highly Scalable Distributed Vector Search Engine
[ "anng", "approximate-nearest-neighbor-search", "cloud", "cloud-native", "distributed-systems", "golang", "hacktoberfest", "high-dimensional-data", "high-performance", "image-search", "image-search-engine", "kubernetes", "microservices", "nearest-neighbor-search", "ngt", "similarity-sea...
Apache-2.0
internal/config/corrector.go
corrector.go
2,737
// // Copyright (C) 2019-2026 vdaas.org vald team <[REDACTED_EMAIL]> // // 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 requ...
290
2,737
62
0.98
2026-04-18T01:04:53.062434
true
github_tinygo-org_tinygo_b93bee7c1344f9f601eecaeb8efb1eddb679db60
Go
tinygo-org
tinygo
17,351
1,023
Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.
[ "adafruit", "arduino", "arm", "avr", "esp32", "gpio", "i2c", "llvm", "microbit", "microcontroller", "nrf51", "nrf52", "samd21", "spi", "stm32", "tinygo", "wasi", "wasm", "webassembly" ]
NOASSERTION
src/machine/board_mdbt50qrx.go
board_mdbt50qrx.go
785
//go:build mdbt50qrx package machine const HasLowFrequencyCrystal = false // GPIO Pins const ( D0 = P1_13 // LED1 D1 = P1_11 // LED2 (not populated by default) D2 = P0_15 // Button ) const ( LED = D0 ) // MDBT50Q-RX dongle does not have pins broken out for the peripherals below, // however the machine_nrf*.go ...
127
785
41
0.98
2026-04-17T10:14:34.460783
true
github_SuperTails_langcraft_0427d0f2b9f4c9f26733c9571789ed675e50e69b
Rust
SuperTails
langcraft
561
7
Compiler from LLVM IR to Minecraft datapacks.
[ "compiler", "llvm", "minecraft" ]
Apache-2.0
src/cir.rs
cir.rs
50,879
use lazy_static::lazy_static; use llvm_ir::Name; pub use raw_text::*; use std::borrow::Cow; use std::collections::HashMap; use std::convert::TryFrom; use std::fmt; use std::ops::{RangeFrom, RangeInclusive, RangeToInclusive}; use std::str::FromStr; use std::string::ToString; use std::sync::Mutex; // FIXME: Minecraft do...
5,296
50,879
1,864
0.98
2026-04-17T17:10:13.331412
true
github_google_zx_3ef7d082520b0e76fc6625b55ea05d52d8af4627
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/core.ts
core.ts
29,145
// Copyright 2021 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 ...
3,352
29,145
1,111
0.98
2026-04-23T06:18:06.432631
true
github_skim-rs_skim_bf0c26e46d091586e7da41d979a87a5c8c09caf5
Rust
skim-rs
skim
6,756
244
Fuzzy Finder in rust!
[ "fuzzyfinder", "rust", "skim" ]
MIT
src/tui/event.rs
event.rs
15,712
use std::future::Future; use std::pin::Pin; use std::sync::{Arc, Mutex}; use crate::exhaustive_match; use crossterm::event::{KeyEvent, MouseEvent}; use derive_more::{Debug, Eq, PartialEq}; type BoxError = Box<dyn std::error::Error + Sync + Send>; type BoxFuture<'a> = Pin<Box<dyn Future<Output = Result<Vec<Event>, Box...
1,543
15,710
431
0.98
2026-04-17T14:44:06.071338
true
github_deepfakes_faceswap_f3f362c2cb35cf90ad9f4adbd79289ee1f2fd0f7
Python
deepfakes
faceswap
55,172
13,408
Deepfakes Software For All
[ "deep-face-swap", "deep-learning", "deep-neural-networks", "deepface", "deepfakes", "deeplearning", "face-swap", "faceswap", "fakeapp", "machine-learning", "myfakeapp", "neural-nets", "neural-networks", "openfaceswap" ]
GPL-3.0
lib/infer/detect.py
detect.py
20,848
#! /usr/env/bin/python3 """Handles face detection plugins and runners """ from __future__ import annotations import logging import typing as T import cv2 import numpy as np from lib.align.aligned_utils import batch_create_matrices from lib.logger import format_array, parse_class_init from lib.utils import get_modul...
2,055
20,848
536
0.98
2026-04-17T06:42:27.845513
true
github_MichalLytek_type-graphql_94e733e590ab381782b2bc086133561acb551cf7
TypeScript
MichalLytek
type-graphql
8,088
674
Create GraphQL schema and resolvers with TypeScript, using classes and decorators!
[ "api", "controllers", "decorators", "gql", "graphql", "graphql-js", "graphql-schema", "hacktoberfest", "resolvers", "schema", "typescript" ]
MIT
src/utils/buildTypeDefsAndResolvers.ts
buildTypeDefsAndResolvers.ts
740
import { type GraphQLSchema, printSchema } from "graphql"; import { type BuildSchemaOptions, buildSchema, buildSchemaSync } from "./buildSchema"; import { createResolversMap } from "./createResolversMap"; function createTypeDefsAndResolversMap(schema: GraphQLSchema) { const typeDefs = printSchema(schema); const re...
67
740
20
0.98
2026-04-23T08:03:39.579751
true
github_jdh-algo_JoyVASA_c43a42f9855bbb019725e6c2b6c6c50e6fa4d0c5
Python
jdh-algo
JoyVASA
864
85
Diffusion-based Portrait and Animal Animation
[ "audio-driven-talking-face", "generative-ai", "image-animation", "lip-sync", "portrait-anination", "talking-head" ]
MIT
src/utils/rprint.py
rprint.py
248
# coding: utf-8 """ custom print and log functions """ __all__ = ['rprint', 'rlog'] try: from rich.console import Console console = Console() rprint = console.print rlog = console.log except: rprint = print rlog = print
35
248
17
0.98
2026-04-22T22:00:36.929405
true
github_bigint_hey_eda93c74f18b02dd1996f49841fd75a4da1cbac9
TypeScript
bigint
hey
29,463
1,807
Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿
[ "blockchain", "crypto", "dapp", "graphql", "hacktoberfest", "lens-protocol", "nextjs", "react", "social-media", "tailwindcss", "turborepo", "typescript", "vitest", "wagmi", "web3" ]
GPL-3.0
src/helpers/nFormatter.ts
nFormatter.ts
716
import humanize from "./humanize"; const LOOKUP = [ { symbol: "E", value: 1e18 }, { symbol: "P", value: 1e15 }, { symbol: "T", value: 1e12 }, { symbol: "G", value: 1e9 }, { symbol: "M", value: 1e6 }, { symbol: "k", value: 1e3 }, { symbol: "", value: 1 } ]; const TRIM_ZEROES_REGEX = /\.0+$|(\.\d*[1-9])0+...
106
716
36
0.98
2026-04-18T01:23:11.567786
true
github_coreybutler_nvm-windows_13a65bf1c8082b76d292d9ef1b49878992622eb6
JavaScript
coreybutler
nvm-windows
45,978
3,795
A node.js version management utility for Windows. Ironically written in Go.
[ "go", "management", "node", "node-version-manager", "nodejs", "nvm", "switch", "version", "version-manager", "versioning", "windows" ]
MIT
build.js
build.js
1,259
// This is a deno helper script to locally build the installer using Inno Setup // Yeah, I know it's not Node, but we need to compile this and Node SEAs on Win32 are a PITA. const content = await Deno.readTextFile('./nvm.iss') const data = JSON.parse(await Deno.readTextFile('./src/manifest.json')) const {version} = da...
161
1,259
49
0.98
2026-04-17T07:26:13.299100
true
github_hijkzzz_pymarl2_1eb1d71916db0f7fdcb174a8510375c9ae1f4bd0
Python
hijkzzz
pymarl2
708
135
Fine-tuned MARL algorithms on SMAC (100% win rates on most scenarios)
[ "marl", "reinforcement-learning", "smac", "sota", "starcraft" ]
Apache-2.0
src/run/dop_run.py
dop_run.py
9,481
import datetime import os import pprint import time import math as mth import threading import torch as th from types import SimpleNamespace as SN from utils.logging import Logger from utils.timehelper import time_left, time_str from os.path import dirname, abspath from learners import REGISTRY as le_REGISTRY from run...
750
9,481
268
0.98
2026-04-22T20:37:54.093069
true
github_tulios_kafkajs_55fdeb496bb9190ddc91ebd9bba4d7b2379d7fb7
JavaScript
tulios
kafkajs
3,994
584
A modern Apache Kafka client for node.js
[ "kafka", "kafka-client", "nodejs", "npm-package" ]
MIT
src/protocol/resourcePatternTypes.js
resourcePatternTypes.js
1,640
// From: // https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/common/resource/PatternType.java#L32 /** * @typedef {number} ACLResourcePatternTypes * * Enum for ACL Resource Pattern Type * @readonly * @enum {ACLResourcePatternTypes} */ module.exports = { /** * Represents any P...
227
1,640
47
0.98
2026-04-23T07:42:22.433782
true
github_cryxnet_DeepMCPAgent_812cc7d931a7034667f268d6deb2d0b791a499e0
Python
cryxnet
DeepMCPAgent
813
127
Model-agnostic plug-n-play LangChain/LangGraph agents powered entirely by MCP tools over HTTP/SSE.
[ "agent-framework", "agentic-ai", "agents", "ai", "ai-agents", "ai-framework", "artificial-intelligence", "autonomous-agents", "deep-agents", "developer-tools", "langchain", "langgraph", "llm-agents", "mcp", "opensource-agents", "python", "react-agents" ]
Apache-2.0
src/deepmcpagent/cli.py
cli.py
9,352
""" CLI for deepmcpagent: list tools and run an interactive agent session. Notes: - The CLI path uses provider id strings for models (e.g., "openai:gpt-4.1"), which `init_chat_model` handles. In code, you can pass a model instance. - Model is REQUIRED (no fallback). - Usage for repeated server specs:...
872
9,352
283
0.98
2026-04-23T00:46:58.974978
true
github_milesial_Pytorch-UNet_6c5a51a29c640ebe1ec7a5c3ba323cf425871a69
Python
milesial
Pytorch-UNet
11,367
2,743
PyTorch implementation of the U-Net for image semantic segmentation with high quality images
[ "convolutional-networks", "convolutional-neural-networks", "deep-learning", "kaggle", "pytorch", "pytorch-unet", "semantic-segmentation", "tensorboard", "unet", "wandb", "weights-and-biases" ]
GPL-3.0
train.py
train.py
10,440
import argparse import logging import os import random import sys import torch import torch.nn as nn import torch.nn.functional as F import torchvision.transforms as transforms import torchvision.transforms.functional as TF from pathlib import Path from torch import optim from torch.utils.data import DataLoader, random...
749
10,440
239
0.98
2026-04-17T17:20:15.025984
true
github_huggingface_transformers_93a91989853e2aec37bc2615ad6a09fdfd02766d
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_processing_base.py
image_processing_base.py
23,124
# Copyright 2020 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 ...
2,157
23,124
495
0.98
2026-04-22T13:17:55.490795
true
github_telepresenceio_telepresence_43fe5566f3175e53a55d2c383e946908f1ef9945
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/dpipe/dpipe_windows.go
dpipe_windows.go
285
package dpipe import ( "context" "os" "os/exec" //nolint:depguard // We want no logging and no soft-context signal handling "github.com/telepresenceio/telepresence/v2/pkg/proc" ) func killProcess(ctx context.Context, cmd *exec.Cmd) { proc.KillProcessGroup(ctx, cmd, os.Kill) }
30
285
14
0.98
2026-04-17T20:29:34.153596
true
github_strapi_strapi_9bf6dcb99e961191649a781d2bc828a57fff775a
TypeScript
strapi
strapi
71,981
9,671
🚀 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
.commitlintrc.ts
.commitlintrc.ts
679
import type { UserConfig } from '@commitlint/types'; import { RuleConfigSeverity } from '@commitlint/types'; const config: UserConfig = { extends: ['@commitlint/config-conventional'], rules: { 'type-enum': [ RuleConfigSeverity.Error, 'always', [ 'chore', 'ci', 'docs', ...
64
679
34
0.98
2026-04-23T07:57:10.712204
true
github_github_github-mcp-server_d55d7c53d75b694c87843dc8ddfde4eb2a97b6b0
Go
github
github-mcp-server
28,940
3,995
GitHub's official MCP Server
[ "github", "mcp", "mcp-server" ]
MIT
pkg/http/handler.go
handler.go
14,033
package http import ( "context" "errors" "log/slog" "net/http" ghcontext "github.com/github/github-mcp-server/pkg/context" "github.com/github/github-mcp-server/pkg/github" "github.com/github/github-mcp-server/pkg/http/middleware" "github.com/github/github-mcp-server/pkg/http/oauth" "github.com/github/github-...
1,361
14,029
415
0.98
2026-04-17T08:22:55.054054
true
github_graphql-nexus_nexus_ad0da5b241095e71523b79197b58608b949b805e
TypeScript
graphql-nexus
nexus
3,427
278
Code-First, Type-Safe, GraphQL Schema Construction
[ "graphql", "graphql-nexus", "graphql-schema", "nexus", "typescript" ]
MIT
src/definitions/_types.ts
_types.ts
8,331
import type { GraphQLCompositeType, GraphQLEnumType, GraphQLFieldConfig, GraphQLInputObjectType, GraphQLInputObjectTypeConfig, GraphQLInterfaceType, GraphQLInterfaceTypeConfig, GraphQLLeafType, GraphQLObjectType, GraphQLObjectTypeConfig, GraphQLScalarType, GraphQLSchema, GraphQLUnionType, } fr...
1,018
8,331
231
0.98
2026-04-18T01:37:07.089698
true
github_shadcn-ui_taxonomy_c72df582e75245e89e52a95234216dc018f6a2bd
JavaScript
shadcn-ui
taxonomy
19,203
2,710
An open source application built using the new router, server components and everything new in Next.js 13.
[ "nextauthjs", "nextjs", "prisma", "radix-ui", "tailwindcss", "typescript", "vercel" ]
MIT
prettier.config.js
prettier.config.js
840
/** @type {import('prettier').Config} */ module.exports = { endOfLine: "lf", semi: false, singleQuote: false, tabWidth: 2, trailingComma: "es5", importOrder: [ "^(react/(.*)$)|^(react$)", "^(next/(.*)$)|^(next$)", "<THIRD_PARTY_MODULES>", "", "^types$", "^@/env(.*)$", "^@/types/(...
53
840
34
0.98
2026-04-23T09:41:21.195540
true
github_unionlabs_union_dd81ef15bee590be68c6827d7f2cdb0b7d35f281
TypeScript
unionlabs
union
74,142
3,884
The trust-minimized, zero-knowledge bridging protocol, designed for censorship resistance, extremely high security, and usage in decentralized finance.
[ "astro", "blockchain", "cosmos", "cosmwasm", "ethereum", "evm", "golang", "indexer", "interoperability", "move", "nix", "prover", "relayer", "rust", "solidity", "svelte", "typescipt", "typescript", "zero-knowledge" ]
Apache-2.0
vitest.shared.ts
vitest.shared.ts
392
import * as path from "node:path" import type { ViteUserConfig } from "vitest/config" const config: ViteUserConfig = { esbuild: { target: "es2020", }, test: { setupFiles: [path.join(__dirname, "vitest.setup.ts")], fakeTimers: { toFake: undefined, }, sequence: { concurrent: true, ...
45
392
21
0.98
2026-04-17T13:15:44.844091
true
github_pubkey_rxdb_1173a8b4cbfb2d468d13311d3c1454e6dbf2b0bb
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/replication-protocol/index.ts
index.ts
12,881
/** * These files contain the replication protocol. * It can be used to replicated RxStorageInstances or RxCollections * or even to do a client(s)-server replication. */ import { BehaviorSubject, combineLatest, filter, firstValueFrom, mergeMap, Subject } from 'rxjs'; import { getPrimar...
831
12,881
349
0.98
2026-04-23T08:22:02.377289
true
github_parcel-bundler_lightningcss_679e586aa1679e81c1abfbd9b8defe6e902e8da7
Rust
parcel-bundler
lightningcss
7,510
261
An extremely fast CSS parser, transformer, bundler, and minifier written in Rust.
[ "build-tool", "compiler", "css", "minifier", "parser", "rust" ]
MPL-2.0
src/rules/nesting.rs
nesting.rs
3,991
//! The `@nest` rule. use smallvec::SmallVec; use super::style::StyleRule; use super::Location; use super::MinifyContext; use crate::context::DeclarationContext; use crate::declaration::DeclarationBlock; use crate::error::{MinifyError, PrinterError}; use crate::parser::DefaultAtRule; use crate::printer::Printer; use ...
339
3,991
124
0.98
2026-04-17T14:37:58.686831
true
github_sindresorhus_execa_f0a5abcd3a34d498e385a0cc985b4f3571b50288
JavaScript
sindresorhus
execa
7,493
250
Process execution for humans
[ "binary", "child-process", "exec", "execute", "javascript", "nodejs", "shell", "spawn", "spawned-processes", "streams" ]
MIT
lib/resolve/all-async.js
all-async.js
1,713
import mergeStreams from '@sindresorhus/merge-streams'; import {waitForSubprocessStream} from './stdio.js'; // `all` interleaves `stdout` and `stderr` export const makeAllStream = ({stdout, stderr}, {all}) => all && (stdout || stderr) ? mergeStreams([stdout, stderr].filter(Boolean)) : undefined; // Read the content...
212
1,713
47
0.98
2026-04-23T07:15:53.759792
true
github_starship_starship_5c5b34544197228f139ffab9801b1d53635f6741
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/mise.rs
mise.rs
1,101
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct MiseConfig<'a> { pub format: &'a str, pub symbol: &'a str, pub style: &'a str, pub...
96
1,101
42
0.98
2026-04-17T13:17:51.027025
true
github_go-jet_jet_a40538e0796ce6adfd1a18efc8d2819d2c5de521
Go
go-jet
jet
3,644
183
Type safe SQL builder with code generation and automatic query result data mapping
[ "cockroachdb", "code-completion", "code-generator", "codegenerator", "database", "datamapper", "golang", "mariadb", "mysql", "postgres", "postgresql", "sql", "sql-builder", "sql-queries", "sql-query", "sql-query-builder", "sqlbuilder", "sqlite", "typesafe", "typesafety" ]
Apache-2.0
internal/jet/keyword.go
keyword.go
264
package jet const ( // DEFAULT is jet equivalent of SQL DEFAULT DEFAULT Keyword = "DEFAULT" ) // Keyword type type Keyword string func (k Keyword) serialize(statement StatementType, out *SQLBuilder, options ...SerializeOption) { out.WriteString(string(k)) }
35
264
14
0.98
2026-04-17T18:21:11.597963
true
github_TheAlgorithms_Rust_65c08a347f4a5f2087c64c46dfde4a48c1dda60c
Rust
TheAlgorithms
Rust
25,663
2,550
All Algorithms implemented in Rust
[ "algorithms", "data-structures", "hacktoberfest", "rust", "rust-lang" ]
MIT
src/bit_manipulation/reverse_bits.rs
reverse_bits.rs
3,862
//! This module provides a function to reverse the bits of a 32-bit unsigned integer. //! //! The algorithm works by iterating through each of the 32 bits from least //! significant to most significant, extracting each bit and placing it in the //! reverse position. //! //! # Algorithm //! //! For each of the 32 bits: ...
482
3,862
132
0.98
2026-04-17T13:31:52.222627
true
github_coryhouse_react-slingshot_e99f56dc0d86426a8719d14e84ee3a2a3022d727
JavaScript
coryhouse
react-slingshot
9,659
2,888
React + Redux starter kit / boilerplate with Babel, hot reloading, testing, linting and a working example app built in
[ "boilerplate", "react", "redux", "starter-kit" ]
MIT
src/utils/numberFormat.spec.js
numberFormat.spec.js
1,087
import {getCurrencyFormattedNumber, isInt, scrubFormatting, getFormattedNumber} from './numberFormat'; describe('Number Formatter', () => { describe('getCurrencyFormattedNumber', () => { it('returns $5.50 when passed 5.5', () => { expect(getCurrencyFormattedNumber(5.5)).toEqual('$5.50'); }); }); d...
109
1,087
40
0.98
2026-04-23T05:48:10.533863
true
github_notiz-dev_nestjs-prisma-starter_bf0bcac9889b8282e70f737d56bcfa9c8f9f6981
TypeScript
notiz-dev
nestjs-prisma-starter
2,539
365
Starter template for NestJS 😻 includes GraphQL with Prisma Client, Passport-JWT authentication, Swagger Api and Docker
[ "bcrypt", "code-first", "graphql", "nestjs", "passport-jwt", "passportjs", "prisma" ]
MIT
src/users/users.resolver.ts
users.resolver.ts
1,451
import { PrismaService } from 'nestjs-prisma'; import { Resolver, Query, Parent, Mutation, Args, ResolveField, } from '@nestjs/graphql'; import { UseGuards } from '@nestjs/common'; import { UserEntity } from '../common/decorators/user.decorator'; import { GqlAuthGuard } from '../auth/gql-auth.guard'; import...
142
1,451
58
0.98
2026-04-18T01:39:05.383961
true
github_explosion_spacy-course_001d4207eceff5b2f2b04ca25a3a2336de1dc823
JavaScript
explosion
spacy-course
2,418
376
👩‍🏫 Advanced NLP with spaCy: A free online course
[ "binder", "course", "dependency-parsing", "gatsby", "gatsbyjs", "jupyter", "machine-learning", "named-entity-recognition", "natural-language-processing", "nlp", "online-course", "part-of-speech-tagging", "spacy", "word-vectors" ]
MIT
gatsby-browser.js
gatsby-browser.js
234
// This doesn't have to be here – but if we do import Juniper here, it's already // preloaded and cached when we dynamically import it in code.js. import Juniper from './src/components/juniper' // eslint-disable-line no-unused-vars
35
232
4
0.98
2026-04-22T19:42:37.976613
true
github_ChatGPTNextWeb_NextChat_15d21fb7d09f80e4d0b05045df83cb496a12d6dd
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/locales/tr.ts
tr.ts
19,918
import { SubmitKey } from "../store/config"; import type { PartialLocaleType } from "./index"; import { getClientConfig } from "../config/client"; import { SAAS_CHAT_UTM_URL } from "@/app/constant"; const isApp = !!getClientConfig()?.isApp; const tr: PartialLocaleType = { WIP: "Çalışma devam ediyor...", Error: { ...
1,984
19,051
608
0.98
2026-04-23T08:58:18.575842
true
github_NodeBB_NodeBB_5242e6df6d610db64266dea4601ca054c466bd90
JavaScript
NodeBB
NodeBB
15,048
2,942
Node.js based forum software built for the modern web
[ "community", "forum", "javascript", "mongodb", "node", "nodebb", "nodejs", "postgresql", "redis", "socket-io", "websockets" ]
GPL-3.0
src/activitypub/out.js
out.js
17,163
'use strict'; /** * This method deals unilaterally with federating activities outward. * There _shouldn't_ be any activities sent out that don't go through this file * This _should_ be the only file that calls activitypub.send() * * YMMV. */ const winston = require('winston'); const nconf = require('nconf'); c...
1,715
17,163
587
0.98
2026-04-23T06:52:47.198589
true
github_rust-lang_rustc_codegen_cranelift_e533c0b631b0118f2d3c35f57e0a5f14a3841a63
Rust
rust-lang
rustc_codegen_cranelift
2,021
132
Cranelift based backend for rustc
[ "aot", "compiler", "cranelift", "jit", "rust" ]
Apache-2.0
src/num.rs
num.rs
20,160
//! Various operations on integer and floating-point numbers use crate::codegen_f16_f128; use crate::prelude::*; fn bin_op_to_intcc(bin_op: BinOp, signed: bool) -> IntCC { use BinOp::*; use IntCC::*; match bin_op { Eq => Equal, Lt => { if signed { SignedLessThan...
1,816
20,160
511
0.98
2026-04-17T17:04:59.606528
true
github_harry0703_MoneyPrinterTurbo_cf840374878235215f4f3560e65a844dc55506b2
Python
harry0703
MoneyPrinterTurbo
55,879
8,001
利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.
[ "ai", "automation", "chatgpt", "moviepy", "python", "shortvideo", "tiktok" ]
MIT
app/router.py
router.py
371
"""Application configuration - root APIRouter. Defines all FastAPI application endpoints. Resources: 1. https://fastapi.tiangolo.com/tutorial/bigger-applications """ from fastapi import APIRouter from app.controllers.v1 import llm, video root_api_router = APIRouter() # v1 root_api_router.include_router(video....
30
371
18
0.98
2026-04-17T15:24:20.268732
true
github_jfecher_ante_ab290dba1ad77f582ddd690dcb39d81ad4ea67bb
Rust
jfecher
ante
2,215
107
A safe, easy systems language
[ "ante", "compiler", "language", "llvm", "refinement-types", "systems-language" ]
MIT
src/error/location.rs
location.rs
3,807
//! location.rs - Defines the Location struct for storing source //! Locations throughout the compiler. Most notably, these locations //! are passed around throughout the parser and are stored in each //! Ast node, along with several structs in the ModuleCache. use std::path::Path; /// A given Position in a file. Thes...
551
3,807
113
0.98
2026-04-17T17:03:55.821719
true
github_jagenjo_litegraph.js_69b9ec3e50b43a5eb57e180f4784582d493b63bc
JavaScript
jagenjo
litegraph.js
7,976
832
A graph node engine and editor written in Javascript similar to PD or UDK Blueprints, comes with its own editor in HTML5 Canvas2D. The engine can run client side or server side using Node. It allows to export graphs as JSONs to be included in applications independently.
[ "blueprints", "canvas2d", "editor", "graph", "graphs", "javascript", "modular", "nocode", "node-graph", "nodejs", "nodes", "visual", "visual-programming", "workflow" ]
MIT
src/nodes/glfx.js
glfx.js
27,075
(function(global) { var LiteGraph = global.LiteGraph; var LGraphTexture = global.LGraphTexture; //Works with Litegl.js to create WebGL nodes if (typeof GL != "undefined") { // Texture Lens ***************************************** function LGraphFXLens() { this.addIn...
2,143
27,075
789
0.98
2026-04-23T07:11:48.440035
true
github_Chalarangelo_30-seconds-of-code_5c0c76fc1cdc3a9ef557f72d1a85ebbe5cb37bc6
TypeScript
Chalarangelo
30-seconds-of-code
127,546
12,477
Coding articles to level up your development skills
[ "astro", "awesome-list", "css", "education", "es6-javascript", "git", "html", "javascript", "learn-to-code", "learning-resources", "nodejs", "programming", "snippets" ]
CC-BY-4.0
src/astro/env.d.ts
env.d.ts
133
/// <reference path="../../.astro/types.d.ts" /> /// <reference types="astro/client" /> /// <reference path="../.astro/types.d.ts" />
12
133
3
0.98
2026-04-23T06:14:51.777916
true
github_google_zx_2425c4e779990c5b78638d7c3f15e94889544720
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/error.ts
error.ts
7,733
// Copyright 2024 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 ...
1,057
7,733
246
0.98
2026-04-23T06:18:07.159275
true
github_axios_axios_65e0e39456203823cb94e9c62e07a1b8b38e4611
JavaScript
axios
axios
109,012
11,651
Promise based HTTP client for the browser and node.js
[ "hacktoberfest", "http-client", "javascript", "nodejs", "promise" ]
MIT
lib/core/mergeConfig.js
mergeConfig.js
4,184
'use strict'; import utils from '../utils.js'; import AxiosHeaders from './AxiosHeaders.js'; const headersToObject = (thing) => (thing instanceof AxiosHeaders ? { ...thing } : thing); /** * Config-specific merge-function which creates a new config-object * by merging two configuration objects together. * * @para...
399
4,184
122
0.98
2026-04-23T06:16:47.054686
true
github_ChromeDevTools_chrome-devtools-mcp_7deea75b4bc5cc855b17cfbba21cd8e8e14b7fd7
TypeScript
ChromeDevTools
chrome-devtools-mcp
35,846
2,192
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/browser.ts
browser.ts
7,753
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {execSync} from 'node:child_process'; import fs from 'node:fs'; import os from 'node:os'; import path from 'node:path'; import {logger} from './logger.js'; import type { Browser, ChromeReleaseChannel, LaunchOptions, ...
787
7,753
274
0.98
2026-04-18T00:20:59.864411
true
github_kubescape_kubescape_d40d92b72893ff95f1ac6a283cc82d6398631330
Go
kubescape
kubescape
11,314
900
Kubescape is an open-source Kubernetes security platform for your IDE, CI/CD pipelines, and clusters. It includes risk analysis, security, compliance, and misconfiguration scanning, saving Kubernetes users and administrators precious time, effort, and resources.
[ "best-practice", "devops", "kubernetes", "mitre-attack", "nsa", "security", "vulnerability-detection" ]
Apache-2.0
cmd/root_test.go
root_test.go
555
package cmd import ( "context" "testing" "github.com/stretchr/testify/assert" ) func TestNewDefaultKubescapeCommand(t *testing.T) { t.Run("NewDefaultKubescapeCommand", func(t *testing.T) { cmd := NewDefaultKubescapeCommand(context.Background(), "", "", "") assert.NotNil(t, cmd) }) } func TestExecute(t *tes...
56
555
24
0.98
2026-04-17T12:21:56.887171
true
github_Automattic_mongoose_cb95f35e88a0c68e5d35e81bffc30f321302aeb5
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/propertyOptions.js
propertyOptions.js
128
'use strict'; module.exports = Object.freeze({ enumerable: true, configurable: true, writable: true, value: void 0 });
15
128
9
0.98
2026-04-23T06:42:37.857032
true
github_starship_starship_38bef4f70dee46b0cedb07fb24e5cdecf1804a50
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/ocaml.rs
ocaml.rs
1,194
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct OCamlConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub global_switch_...
107
1,191
39
0.98
2026-04-17T13:17:53.956740
true
github_jely2002_youtube-dl-gui_af0247862f96fa757493cb3d40ffa44026e86195
JavaScript
jely2002
youtube-dl-gui
7,992
586
Open Video Downloader - A cross-platform GUI for youtube-dl made in Rust with Tauri and Vue + Typescript.
[ "cross-platform-gui", "downloader", "tailwind", "tauri", "vue", "youtube", "youtube-dl", "youtube-dl-gui", "ytdl" ]
AGPL-3.0
eslint.config.js
eslint.config.js
1,613
import vue from 'eslint-plugin-vue'; import vueParser from 'vue-eslint-parser'; import tseslint from 'typescript-eslint'; import stylistic from '@stylistic/eslint-plugin'; import vueI18n from '@intlify/eslint-plugin-vue-i18n'; const tsProject = { projectService: true, ecmaVersion: 'latest', sourceType: 'module',...
129
1,613
72
0.98
2026-04-17T14:34:25.617272
true
github_glasskube_glasskube_0adf37c76cdaaf3ecd80560bba24dccdbb4ff90b
Go
glasskube
glasskube
3,487
194
🧊 The next generation Package Manager for Kubernetes 📦 Featuring a GUI and a CLI. Glasskube packages are dependency aware, GitOps ready and can get automatic updates via a central public package repository.
[ "cloud-native", "cncf", "cobra", "cobra-cli", "containers", "devops", "devops-tools", "docusaurus", "giscuss", "glasskube", "go", "golang", "htmx", "kubebuilder", "kubernetes", "kubernetes-operator", "package", "package-manager" ]
Apache-2.0
internal/dependency/default_repo_adapter.go
default_repo_adapter.go
2,042
package dependency import ( "fmt" repoerror "github.com/glasskube/glasskube/internal/repo/error" "go.uber.org/multierr" "github.com/glasskube/glasskube/api/v1alpha1" repoclient "github.com/glasskube/glasskube/internal/repo/client" repotypes "github.com/glasskube/glasskube/internal/repo/types" ) type defaultR...
193
2,042
65
0.98
2026-04-17T22:32:14.509162
true
github_rustdesk_rustdesk_85ae23c9c6656f034cb5dc8877f3976247519963
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/lang.rs
lang.rs
7,568
use hbb_common::regex::Regex; use std::ops::Deref; mod ar; mod be; mod bg; mod ca; mod cn; mod cs; mod da; mod de; mod el; mod en; mod eo; mod es; mod et; mod eu; mod fa; mod gu; mod fr; mod he; mod hr; mod hu; mod id; mod it; mod ja; mod ko; mod kz; mod lt; mod lv; mod nb; mod nl; mod pl; mod ptbr; mod ro; mod ru; mo...
766
7,402
273
0.98
2026-04-17T13:14:21.613925
true
github_standard-things_esm_f3125e8c346531524c3bc9608b15e4acd00a61c7
JavaScript
standard-things
esm
5,251
145
Tomorrow's ECMAScript modules today!
[ "es6", "es6-modules", "esm", "esmodules", "nodejs" ]
NOASSERTION
src/generic/object.js
object.js
613
import shared from "../shared.js" import isObjectLike from "../util/is-object-like.js" function init() { const ExObject = shared.external.Object return { create(proto, properties) { if (properties === null) { properties = void 0 } if (proto === null || isObjectLike(proto))...
65
613
28
0.98
2026-04-23T07:31:23.234622
true
github_imsyy_DailyHotApi_9e44bb5bbe3ea53f42a4a73a681c43894b9fae85
TypeScript
imsyy
DailyHotApi
3,749
1,256
🔥 今日热榜 API,一个聚合热门数据的 API 接口,支持 RSS 模式 及 Vercel 部署 | 前端页面:https://github.com/imsyy/DailyHot
[ "api", "daily-hot", "list", "rss", "vercel" ]
MIT
src/routes/nytimes.ts
nytimes.ts
1,669
import type { RouterData, ListContext, Options, RouterResType } from "../types.js"; import { get } from "../utils/getData.js"; import { getTime } from "../utils/getTime.js"; import { parseRSS } from "../utils/parseRSS.js"; const areaMap: Record<string, string> = { china: "中文网", global: "全球版", }; export const hand...
193
1,641
60
0.98
2026-04-17T18:03:13.752799
true
github_avwo_whistle_1cfae4f760fa4c2f90270e2d29c5f842e4112a28
JavaScript
avwo
whistle
15,478
1,155
HTTP, HTTP2, HTTPS, Websocket debugging proxy
[ "charles", "debug", "fiddler", "hosts", "node", "nodejs", "proxy", "web", "weinre" ]
MIT
lib/service/install.js
install.js
486
require('../util/patch'); var plugin = require('../../bin/plugin'); process.on('data', function(data) { if (data.type === 'installPlugins' && Array.isArray(data.argv)) { plugin.install('npm', data.argv, function(e) { data.clientId && process.sendData({ type: 'error', clientId: data.clientId...
51
486
19
0.98
2026-04-23T06:51:21.214040
true
github_NodeBB_NodeBB_062d24b8686818cb009ae048b8ebb843d24de992
JavaScript
NodeBB
NodeBB
15,048
2,942
Node.js based forum software built for the modern web
[ "community", "forum", "javascript", "mongodb", "node", "nodebb", "nodejs", "postgresql", "redis", "socket-io", "websockets" ]
GPL-3.0
commitlint.config.js
commitlint.config.js
341
'use strict'; module.exports = { extends: ['@commitlint/config-angular'], rules: { 'header-max-length': [1, 'always', 72], 'type-enum': [ 2, 'always', [ 'breaking', 'build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test...
34
341
27
0.98
2026-04-23T06:52:41.422576
true
github_qax-os_excelize_6952849e022734d024ec6ba0697dbb912995561d
Go
qax-os
excelize
20,478
1,890
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets
[ "agent", "ai", "analytics", "chart", "ecma-376", "excel", "excelize", "formula", "go", "mcp", "microsoft", "office", "ooxml", "spreadsheet", "statistics", "table", "vba", "visualization", "xlsx", "xml" ]
BSD-3-Clause
sheetpr.go
sheetpr.go
7,272
// Copyright 2016 - 2026 The excelize Authors. All rights reserved. Use of // this source code is governed by a BSD-style license that can be found in // the LICENSE file. // // Package excelize providing a set of functions that allow you to write to and // read from XLAM / XLSM / XLSX / XLTM / XLTX files. Supports rea...
745
7,270
229
0.98
2026-04-17T09:27:52.269016
true
github_axios_axios_c46190020567847180568f5e2c3a17ded8051129
JavaScript
axios
axios
109,012
11,651
Promise based HTTP client for the browser and node.js
[ "hacktoberfest", "http-client", "javascript", "nodejs", "promise" ]
MIT
lib/helpers/isAbsoluteURL.js
isAbsoluteURL.js
617
'use strict'; /** * Determines whether the specified URL is absolute * * @param {string} url The URL to test * * @returns {boolean} True if the specified URL is absolute, otherwise false */ export default function isAbsoluteURL(url) { // A URL is considered absolute if it begins with "<scheme>://" or "//" (pro...
94
617
20
0.98
2026-04-23T06:16:55.246558
true
github_tw93_Pake_65bb64fc3b8ed74912b67722b5c5fe3b7908f9c5
TypeScript
tw93
Pake
47,826
9,539
🤱🏻 Turn any webpage into a desktop app with one command.
[ "chatgpt", "claude", "desktop", "gemini", "hight-performance", "linux", "macos", "no-electron", "package", "rust", "tauri", "windows", "youtube" ]
MIT
vitest.config.ts
vitest.config.ts
381
import { defineConfig } from 'vitest/config'; import path from 'path'; export default defineConfig({ test: { environment: 'node', include: [ 'bin/**/*.{test,spec}.ts', 'tests/unit/**/*.{test,spec}.{ts,js}', 'tests/integration/**/*.{test,spec}.{ts,js}', ], }, resolve: { alias: { ...
34
381
19
0.98
2026-04-17T13:18:27.231178
true
github_Billionmail_BillionMail_1bf2555cfad1c379e0bccf70372f3c28cfedd4c0
JavaScript
Billionmail
BillionMail
13,979
1,469
BillionMail gives you open-source MailServer, NewsLetter, Email Marketing — fully self-hosted, dev-friendly, and free from monthly fees. Join the discord: https://discord.gg/asfXzBUhZr
[ "dovecot", "email", "email-marketing", "mail", "mailserver", "newsletter", "newsletters", "postfix", "rspamd", "server", "smtp" ]
AGPL-3.0
core/frontend/build-for-git.js
build-for-git.js
2,522
import fs from 'fs' import path from 'path' import ora from 'ora' import chalk from 'chalk' // 前端打包文件的本地路径 const localPath = './dist' // 复制本地文件到指定位置 async function copyLocalFiles(targetPath) { const spinner = ora(chalk.cyan('正在准备复制文件...')).start() return new Promise((resolve, reject) => { try { // 如果目标目录存在,先删...
191
2,092
92
0.98
2026-04-17T11:12:32.023833
true
github_rustdesk_rustdesk_6939b2ea1636eba3bcfe3756a08faa1c81aa28ca
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/lang/vi.rs
vi.rs
46,482
lazy_static::lazy_static! { pub static ref T: std::collections::HashMap<&'static str, &'static str> = [ ("Status", "Trạng thái hiện tại"), ("Your Desktop", "Desktop của bạn"), ("desk_tip", "Desktop của bạn có thể được truy cập bằng ID và mật khẩu này."), ("Password", "Mật khẩu"), ...
5,135
41,193
748
0.98
2026-04-17T13:14:46.344086
true
github_gin-gonic_gin_dfef07d60a72dff8dad707665f4dc05d0fed6094
Go
gin-gonic
gin
88,327
8,572
Gin is a high-performance HTTP web framework written in Go. It provides a Martini-like API but with significantly better performance—up to 40 times faster—thanks to httprouter. Gin is designed for building REST APIs, web applications, and microservices.
[ "framework", "gin", "go", "middleware", "performance", "router", "server" ]
MIT
mode.go
mode.go
2,456
// Copyright 2014 Manu Martinez-Almeida. All rights reserved. // Use of this source code is governed by a MIT style // license that can be found in the LICENSE file. package gin import ( "flag" "io" "os" "sync/atomic" "github.com/gin-gonic/gin/binding" ) // EnvGinMode indicates environment name for gin mode. c...
323
2,456
101
0.98
2026-04-17T06:53:55.079671
true
github_kedacore_keda_0bd52472138267413a73e68e01336ddc11aae6c4
Go
kedacore
keda
10,102
1,398
KEDA is a Kubernetes-based Event Driven Autoscaling component. It provides event driven scale for any container running in Kubernetes
[ "autoscaling", "event-driven", "hacktoberfest", "keda", "kubernetes", "serverless" ]
Apache-2.0
pkg/scalers/forgejo_runner_scaler.go
forgejo_runner_scaler.go
6,035
package scalers import ( "context" "encoding/json" "fmt" "io" "net/http" "net/url" "strings" "github.com/go-logr/logr" v2 "k8s.io/api/autoscaling/v2" "k8s.io/metrics/pkg/apis/external_metrics" "github.com/kedacore/keda/v2/pkg/scalers/scalersconfig" kedautil "github.com/kedacore/keda/v2/pkg/util" ) const...
595
6,035
234
0.98
2026-04-17T12:46:18.140425
true
github_rqlite_rqlite_923b8cb10087366a1d1c190a02ce2974b911a444
Go
rqlite
rqlite
17,429
771
The lightweight, fault-tolerant database built on SQLite. Designed to keep your data highly available with minimal effort.
[ "consensus", "database", "distributed-database", "distributed-systems", "go", "raft", "relational-database", "sql", "sqlite" ]
MIT
internal/rsum/md5_test.go
md5_test.go
1,487
package rsum import ( "crypto/md5" "encoding/hex" "testing" ) // TestMD5Success tests the successful calculation of the MD5 checksum. func TestMD5Success(t *testing.T) { testContent := "test content" testFile := mustWriteTempFile(t, []byte(testContent)) // Call the MD5 function checksum, err := MD5(testFile) ...
194
1,487
55
0.98
2026-04-17T10:12:40.573160
true
github_Automattic_mongoose_41d007450006ee52ef1a950ce08c7a6b077bd1b8
JavaScript
Automattic
mongoose
27,471
3,979
MongoDB object modeling designed to work in an asynchronous environment.
[ "mongo", "mongodb", "nodejs", "odm", "orm" ]
MIT
lib/error/cast.js
cast.js
3,921
'use strict'; /*! * Module dependencies. */ const MongooseError = require('./mongooseError'); const util = require('util'); /** * Casting Error constructor. * * @param {string} type * @param {string} value * @inherits MongooseError * @api private */ class CastError extends MongooseError { constructor(typ...
460
3,921
168
0.98
2026-04-23T06:42:13.592090
true
github_ultralytics_yolov3_cbe70444df060eb9842a8facc8b34561ef1d2b4a
Python
ultralytics
yolov3
10,567
3,438
YOLOv3 in PyTorch > ONNX > CoreML > TFLite
[ "deep-learning", "machine-learning", "object-detection", "ultralytics", "yolo", "yolov3", "yolov5" ]
AGPL-3.0
val.py
val.py
30,639
# Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license """ Validate a trained YOLOv3 detection model on a detection dataset. Usage: $ python val.py --weights yolov5s.pt --data coco128.yaml --img 640 Usage - formats: $ python val.py --weights yolov5s.pt # PyTorch ...
3,325
30,624
630
0.98
2026-04-17T06:49:30.989726
true
github_JudgmentLabs_judgeval_1d433ace6d5906e682433caf8967c9b0ee441115
Python
JudgmentLabs
judgeval
1,019
90
The open source post-building layer for agents. Our environment data and evals power agent post-training (RL, SFT) and monitoring.
[ "agent", "agentic-ai", "agents", "grpo", "langchain", "langgraph", "llama-index", "llm", "llm-evaluation", "llm-observability", "open-source", "openai", "prompt-engineering", "reinforcement-learning", "rl" ]
Apache-2.0
src/e2etests/utils.py
utils.py
1,219
from judgeval.internal.api import JudgmentSyncClient from judgeval.env import JUDGMENT_API_KEY, JUDGMENT_ORG_ID, JUDGMENT_API_URL assert JUDGMENT_API_KEY, "JUDGMENT_API_KEY must be set" assert JUDGMENT_ORG_ID, "JUDGMENT_ORG_ID must be set" assert JUDGMENT_API_URL, "JUDGMENT_API_URL must be set" client = JudgmentSyncC...
81
1,219
40
0.98
2026-04-18T00:02:20.544615
true
github_cjpais_Handy_8dc7e248f2354524d94a9fc9d70854650003df6b
TypeScript
cjpais
Handy
20,113
1,637
A free, open source, and extensible speech-to-text application that works completely offline.
[ "accessibility", "cross-platform", "speech-to-text", "tauri-v2" ]
MIT
playwright.config.ts
playwright.config.ts
596
import { defineConfig, devices } from "@playwright/test"; export default defineConfig({ testDir: "./tests", fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: "html", use: { baseURL: "http://localhost:1420", trace...
63
596
27
0.98
2026-04-17T13:43:25.682389
true
github_FairwindsOps_goldilocks_81133469397dd8fcc36d930315f8bc82c1af397a
Go
FairwindsOps
goldilocks
3,199
167
Get your resource requests "Just Right"
[ "fairwinds-official", "kubernetes", "reporting", "resources", "verticalpodautoscaler" ]
Apache-2.0
pkg/dashboard/templates.go
templates.go
3,454
package dashboard import ( "bytes" "embed" "encoding/json" "fmt" "html/template" "net/http" "strings" "github.com/fairwindsops/goldilocks/pkg/dashboard/helpers" "k8s.io/klog/v2" ) // templates const ( ContainerTemplateName = "container.gohtml" DashboardTemplateName = "dashboard.gohtml" FilterTemplate...
372
3,454
129
0.98
2026-04-17T22:40:19.652176
true
github_jofpin_trape_bd46caa51779df6cb73e6442a347df490c7816b9
Python
jofpin
trape
8,648
1,345
People tracker on the Internet: OSINT analysis and research tool by Jose Pino
[ "flask", "footprint", "hacking", "hacking-tool", "jose-pino", "osint", "phising", "python", "recognition", "security", "social-engineering", "tracking" ]
UNKNOWN
core/user_objects.py
user_objects.py
4,464
#!/usr/bin/env python # -*- coding: utf-8 -*- # ** # ######### # trape # ######### # # trape depends of this file # For full copyright information this visit: https://github.com/jofpin/trape # # Copyright 2018 by Jose Pino (@jofpin) / <[REDACTED_EMAIL]> # ** class victim(object): def __init__(self, vId, ip, device,...
405
4,464
112
0.98
2026-04-18T00:36:32.518377
true
github_dalance_procs_4e3ad590e22f1ffda7f3411a22bb3fc05edf32ec
Rust
dalance
procs
6,018
142
A modern replacement for ps written in Rust
[ "cli", "process", "rust" ]
MIT
src/columns/tty.rs
tty.rs
2,798
use crate::process::ProcessInfo; use crate::{column_default, Column}; use std::cmp; use std::collections::HashMap; pub struct Tty { header: String, unit: String, fmt_contents: HashMap<i32, String>, raw_contents: HashMap<i32, String>, width: usize, } impl Tty { pub fn new(header: Option<String>...
257
2,798
102
0.98
2026-04-17T14:54:08.587001
true
github_hlorenzi_customasm_4d549aad018a90e081d8ee480d6b5ea16c97591d
Rust
hlorenzi
customasm
1,032
71
💻 An assembler for custom, user-defined instruction sets! https://hlorenzi.github.io/customasm/web/
[ "asm", "assembler", "assembly", "assembly-language", "bytecode", "bytecode-compiler", "compiler", "custom", "customizable", "instruction-set", "instruction-set-architecture", "machine-code", "microprocessor", "processor-architecture", "rust", "rust-lang", "user-defined", "virtual-m...
Apache-2.0
src/expr/inspect.rs
inspect.rs
2,654
use crate::*; pub struct StaticallyKnownProvider<'a> { pub opts: &'a asm::AssemblyOptions, pub locals: std::collections::HashMap<String, StaticallyKnownLocal>, } impl<'a> StaticallyKnownProvider<'a> { pub fn new(opts: &'a asm::AssemblyOptions) -> StaticallyKnownProvider<'a> { StaticallyKnownProvider { opts...
266
2,654
145
0.98
2026-04-17T17:07:58.940778
true
github_istio_istio_027686a74b98ccbed1a22d9dd48740ec65ec4884
Go
istio
istio
38,124
8,290
Connect, secure, control, and observe services.
[ "api-management", "circuit-breaker", "consul", "enforce-policies", "envoy", "fault-injection", "kubernetes", "lyft-envoy", "microservice", "microservices", "nomad", "polyglot-microservices", "proxies", "request-routing", "resiliency", "service-mesh" ]
Apache-2.0
pkg/envoy/proxy_test.go
proxy_test.go
6,368
// Copyright Istio 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 or agreed to in wri...
555
6,368
209
0.98
2026-04-17T07:35:03.256839
true
github_vectordotdev_vector_69877e3db9ef536c864d96dfd14cf87233a07783
Rust
vectordotdev
vector
21,666
2,093
A high-performance observability data pipeline.
[ "agent", "cloud-native", "data-transformation", "datadog", "etl", "events", "forwarder", "hacktoberfest", "high-performance", "logs", "metrics", "monitoring", "observability", "pipelines", "rust-lang", "stream-processing", "telemetry", "traces" ]
MPL-2.0
src/internal_events/common.rs
common.rs
4,451
use std::time::Instant; use metrics::{counter, histogram}; use vector_lib::NamedInternalEvent; pub use vector_lib::internal_event::EventsReceived; use vector_lib::internal_event::{ ComponentEventsDropped, InternalEvent, UNINTENTIONAL, error_stage, error_type, }; #[derive(Debug, NamedInternalEvent)] pub struct End...
372
4,451
149
0.98
2026-04-17T13:39:15.959319
true
github_cheat_cheat_794f55ba879093bafadcb6882393f8311e34bce2
Go
cheat
cheat
13,269
848
cheat allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options for commands that they use frequently, but not frequently enough to remember.
[ "bash", "cheat", "cheatsheet", "cheatsheets", "documentation", "help", "interactive-cheatsheets", "man-page" ]
MIT
internal/repo/pull.go
pull.go
2,917
package repo import ( "errors" "os" "path/filepath" "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/plumbing/transport" gitssh "github.com/go-git/go-git/v5/plumbing/transport/ssh" "github.com/mitchellh/go-homedir" ) // ErrDirtyWorktree indicates that the worktree has uncommitted changes. var ErrDir...
448
2,915
131
0.98
2026-04-17T11:24:16.214630
true
github_cloudwego_hertz_8705aeeecdabd2b26e97d244f70ff28dbbde73fd
Go
cloudwego
hertz
7,170
620
Go HTTP framework with high-performance and strong-extensibility for building micro-services.
[ "go", "http", "microservices" ]
Apache-2.0
internal/stats/stats_util_test.go
stats_util_test.go
1,856
/* * Copyright 2022 CloudWeGo 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 or agreed ...
215
1,856
69
0.98
2026-04-18T00:54:28.655743
true
github_adam-mcdaniel_sage_af958f8e05e36f7fc2ad760ada46f51e132e3f21
Rust
adam-mcdaniel
sage
537
17
A programming language that's wise beyond its bytes!🌱🌿🪴
[ "algebraic-data-types", "c", "compiler", "frontend", "mobile", "pattern-matching", "polymorphism", "portable", "rust", "structural-typing", "turing-tarpit", "wasm", "web", "x86-64" ]
MIT
src/asm/std.rs
std.rs
29,987
//! # Standard Assembly Variant //! //! This variant of the assembly language is intended to be used //! with the standard variant of the virtual machine. It is very //! portable, but probably not supported on older systems or //! hardware implementations. //! //! [***Click here to view opcodes!***](./enum.StandardOp.h...
3,042
29,987
838
0.98
2026-04-17T17:14:50.261858
true
github_starship_starship_73975bea5a9174499e02a3a2f83bade9f5e2a0d2
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/maven.rs
maven.rs
955
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct MavenConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub symbol: &'a st...
90
952
37
0.98
2026-04-17T13:17:49.637368
true
github_Chalarangelo_30-seconds-of-code_43936507409c8ab899fa56b19ccdf135edac8f96
JavaScript
Chalarangelo
30-seconds-of-code
127,546
12,477
Coding articles to level up your development skills
[ "astro", "awesome-list", "css", "education", "es6-javascript", "git", "html", "javascript", "learn-to-code", "learning-resources", "nodejs", "programming", "snippets" ]
CC-BY-4.0
src/astro/settings.js
settings.js
451
export default { websiteName: '30 seconds of code', websiteDescription: 'Coding articles to level up your development skills', shortName: '30s', ownerName: 'Angelos Chalaris', ownerUrl: 'https://chalarangelo.me', websiteUrl: 'https://www.30secondsofcode.org', githubRepoUrl: 'https://github.com/Chalarangel...
33
451
12
0.98
2026-04-23T06:14:52.071289
true
github_go-gorm_gorm_3a4e0e2551d8790095592dd6fa722d3e8429a7aa
Go
go-gorm
gorm
39,686
4,147
The fantastic ORM library for Golang, aims to be developer friendly
[ "go", "golang", "gorm", "orm", "web" ]
MIT
association.go
association.go
24,214
package gorm import ( "fmt" "reflect" "strings" "gorm.io/gorm/clause" "gorm.io/gorm/schema" "gorm.io/gorm/utils" ) // Association Mode contains some helper methods to handle relationship things easily. type Association struct { DB *DB Relationship *schema.Relationship Unscope bool Error ...
2,030
24,214
666
0.98
2026-04-17T07:32:44.665307
true
github_panjf2000_gnet_d02ae4e5ff5a9593d2643a6ed3a53ab9a9a36e14
Go
panjf2000
gnet
11,130
1,104
🚀 gnet is a high-performance, lightweight, non-blocking, event-driven networking framework written in pure Go.
[ "async", "asynchronous", "epoll", "event-driven", "event-loop", "go", "golang", "goroutine", "io", "kqueue", "network", "networking", "non-blocking", "reactor", "tcp", "udp" ]
Apache-2.0
pkg/math/math_test.go
math_test.go
4,063
package math import "testing" func TestCeilToPowerOfTwo(t *testing.T) { type args struct { n int } tests := []struct { name string args args want int }{ // Boundary value tests: 0, 1, 2 {name: "zero", args: args{n: 0}, want: 2}, {name: "one", args: args{n: 1}, want: 2}, {name: "two", args: args{n:...
679
4,063
93
0.98
2026-04-17T12:23:26.200176
true
github_brianlovin_briOS_b618951d6d7c273bcb46e4c3bb83a4c3867a71c3
TypeScript
brianlovin
briOS
2,250
252
My personal website.
[ "apollo", "graphql", "javascript", "nextjs", "planetscale", "prisma", "react", "styled-components" ]
UNKNOWN
src/types/hackernews.ts
hackernews.ts
786
/** * Type definitions for Hacker News API data structures * Based on HNPWA API (https://api.hnpwa.com/v0) */ export type HackerNewsPostType = "link" | "comment" | "job" | "poll" | "story"; export interface HackerNewsComment { id: number | string; user: string | null; content: string | null; level: number;...
104
786
35
0.98
2026-04-18T01:40:13.626337
true
github_bailicangdu_react-pxq_510dead8cf277bb39278bd1d774fe8b73b4de171
JavaScript
bailicangdu
react-pxq
7,520
2,132
一个 react + redux 的完整项目 和 个人总结
[ "react" ]
MIT
src/index.js
index.js
894
import React from 'react'; import ReactDOM from 'react-dom'; import Route from './router/'; import FastClick from 'fastclick'; import registerServiceWorker from './registerServiceWorker'; import { AppContainer } from 'react-hot-loader'; import {Provider} from 'react-redux'; import store from '@/store/store'; import './...
85
864
41
0.98
2026-04-23T05:57:26.575730
true
github_AlistGo_alist_fe3a08bd4cb5d88fbc9bb975a462e5ab3df0d3b3
Go
AlistGo
alist
49,317
7,951
🗂️A file list/WebDAV program that supports multiple storages, powered by Gin and Solidjs. / 一个支持多存储的文件列表/WebDAV程序,使用 Gin 和 Solidjs。
[ "file-server", "gin", "golang", "onedrive", "solidjs", "webdav" ]
AGPL-3.0
internal/model/req.go
req.go
340
package model type PageReq struct { Page int `json:"page" form:"page"` PerPage int `json:"per_page" form:"per_page"` } const MaxUint = ^uint(0) const MinUint = 0 const MaxInt = int(MaxUint >> 1) const MinInt = -MaxInt - 1 func (p *PageReq) Validate() { if p.Page < 1 { p.Page = 1 } if p.PerPage < 1 { p.Pe...
59
340
21
0.98
2026-04-17T07:23:12.796131
true
github_ogham_exa_c3bff438d143e7c954a045e0744815035c28937a
Rust
ogham
exa
24,420
657
A modern replacement for ‘ls’.
[ "command-line", "files", "ls", "rust" ]
MIT
src/output/tree.rs
tree.rs
9,510
//! Tree structures, such as `├──` or `└──`, used in a tree view. //! //! ## Constructing Tree Views //! //! When using the `--tree` argument, instead of a vector of cells, each row //! has a `depth` field that indicates how far deep in the tree it is: the top //! level has depth 0, its children have depth 1, and *thei...
1,155
8,996
280
0.98
2026-04-17T13:34:39.982483
true
github_taylorwilsdon_google_workspace_mcp_206d561104fdfcf06c90351912d8cefd81f0721a
Python
taylorwilsdon
google_workspace_mcp
2,133
643
Control Gmail, Google Calendar, Docs, Sheets, Slides, Chat, Forms, Tasks, Search & Drive with AI - Comprehensive Google Workspace / G Suite MCP Server & CLI Tool
[ "ai", "g-suite", "gmail", "google-calendar", "google-chat", "google-docs", "google-drive", "google-forms", "google-sheets", "google-tasks", "google-workspace", "gsuite", "llm", "llm-tools", "mcp", "mcp-server", "model-context-protocol", "model-context-protocol-server", "model-con...
MIT
core/tool_registry.py
tool_registry.py
7,238
""" Tool Registry for Conditional Tool Registration This module provides a registry system that allows tools to be conditionally registered based on tier configuration, replacing direct @server.tool() decorators. """ import logging from typing import Set, Optional, Callable from auth.oauth_config import is_oauth21_e...
674
7,236
212
0.98
2026-04-17T16:04:10.431217
true
github_starship_starship_7cce347223ea2f9e06e5c324dec26bb4db8cfc55
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/package.rs
package.rs
721
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct PackageConfig<'a> { pub format: &'a str, pub symbol: &'a str, pub style: &'a str, ...
72
718
31
0.98
2026-04-17T13:17:55.938775
true
github_stashapp_stash_b1cec1c9dc922aaeced59f83e1b370e4d52646be
Go
stashapp
stash
12,209
1,041
An organizer for your porn, written in Go. Documentation: https://docs.stashapp.cc
[ "go", "golang", "graphql", "hacktoberfest", "json", "media", "organize", "organizer", "porn", "video" ]
AGPL-3.0
internal/api/resolver.go
resolver.go
11,186
package api import ( "context" "errors" "fmt" "sort" "strconv" "github.com/99designs/gqlgen/graphql" "github.com/stashapp/stash/internal/build" "github.com/stashapp/stash/internal/manager" "github.com/stashapp/stash/pkg/logger" "github.com/stashapp/stash/pkg/models" "github.com/stashapp/stash/pkg/plugin/ho...
1,328
11,186
434
0.98
2026-04-17T11:39:43.253582
true
github_mozilla_sccache_68050d7b4e59838a2c25e6df439e6c45755bedb1
Rust
mozilla
sccache
7,178
656
Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.
[]
Apache-2.0
src/cache/oss.rs
oss.rs
1,566
// 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 to in writing, software // distributed ...
181
1,566
50
0.98
2026-04-17T14:40:00.171338
true
github_Huachao_vscode-restclient_53cffba5a21c19a83dfcacccfcd0a89e99f6d2d1
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/httpElement.ts
httpElement.ts
948
import { MarkdownString, SnippetString } from 'vscode'; export class HttpElement { public constructor(public name: string, public type: ElementType, public prefix?: string | null, public description?: string | MarkdownString, public text?: string | SnippetString) { this.text = text; if (!this.text...
98
948
36
0.98
2026-04-18T01:32:18.578862
true
github_nodejs_node_aa05a602975e402a587bc56e25a811595f153178
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/file.js
file.js
3,008
'use strict'; const { DateNow, FunctionPrototypeCall, NumberIsNaN, ObjectDefineProperties, ObjectSetPrototypeOf, StringPrototypeToWellFormed, Symbol, SymbolToStringTag, } = primordials; const { Blob, TransferableBlob, } = require('internal/blob'); const { customInspectSymbol: kInspect, kEnume...
288
3,008
153
0.98
2026-04-23T06:15:53.475662
true
github_Tencent_AICGSecEval_dfe3882b1265fe6b19068c0712df9a7f2d45661e
Python
Tencent
AICGSecEval
1,157
105
A.S.E (AICGSecEval) is a repository-level AI-generated code security evaluation benchmark developed by Tencent Wukong Code Security Team.
[ "agent", "aigc", "benchmark", "codesecurity", "llm" ]
NOASSERTION
docker_helper.py
docker_helper.py
8,136
import docker import docker.models import docker.models.containers import hashlib import logging import os import tarfile import tempfile import threading class DockerHelperImpl: _docker_client: docker.DockerClient = None _docker_container: docker.models.containers.Container = None def __init__(self, tra...
500
7,654
214
0.98
2026-04-17T23:55:26.907311
true
github_terkelg_prompts_de3041926e40244a82d5ab915250416758ddfa59
JavaScript
terkelg
prompts
9,267
320
❯ Lightweight, beautiful and user-friendly interactive prompts
[ "choice", "cli", "command-line", "interface", "nodejs", "prompt", "prompter", "prompts" ]
MIT
lib/util/lines.js
lines.js
334
'use strict'; const strip = require('./strip'); /** * @param {string} msg * @param {number} perLine */ module.exports = function (msg, perLine) { let lines = String(strip(msg) || '').split(/\r?\n/); if (!perLine) return lines.length; return lines.map(l => Math.ceil(l.length / perLine)) .reduce((a, b) ...
45
334
16
0.98
2026-04-23T07:05:23.062226
true
github_starship_starship_d465afcedbf19f585840a191fae1e92565a0c580
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/gcloud.rs
gcloud.rs
906
use serde::{Deserialize, Serialize}; use std::collections::HashMap; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct GcloudConfig<'a> { pub format: &'a str, pub symbol: &'a str...
83
902
34
0.98
2026-04-17T13:17:40.010323
true
github_react-static_react-static_7a5709a5d7ce4e623ebd6cc5c33e2fa92b22cc9d
JavaScript
react-static
react-static
10,348
746
⚛️ 🚀 A progressive static site generator for React.
[ "marketing", "react", "react-static", "static", "static-site", "static-site-generator" ]
MIT
.eslintrc.js
.eslintrc.js
178
module.exports = { extends: 'react-tools', env: { jest: true, }, rules: { 'linebreak-style': 0, 'import/no-unresolved': 0, 'import/extensions': 0, }, }
20
178
12
0.98
2026-04-23T05:45:11.007795
true
github_ChromeDevTools_chrome-devtools-mcp_d7f06afec2769f8b215f423ddba71056de10cb62
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/webmcp.ts
webmcp.ts
2,054
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {zod} from '../third_party/index.js'; import {ToolCategory} from './categories.js'; import {definePageTool} from './ToolDefinition.js'; export const listWebMcpTools = definePageTool({ name: 'list_webmcp_tools', descrip...
223
2,054
71
0.98
2026-04-23T08:42:51.861137
true