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_Wilfred_bfc_8ae7553aa5022e37a3c2d50cc169246f1c4db600
Rust
Wilfred
bfc
541
34
An industrial-grade brainfuck compiler
[ "brainfuck", "compiler", "llvm", "rust" ]
GPL-2.0
src/main.rs
main.rs
8,706
#![warn(trivial_numeric_casts)] //! bfc is a highly optimising compiler for BF. use ariadne::{Label, Report, ReportKind, Source}; use bfir::Position; use clap::builder::ValueParser; use clap::command; use clap::Arg; use clap::ArgAction; use clap::ArgMatches; use clap::ValueHint; use std::env; use std::fs::File; use s...
669
8,706
290
0.98
2026-04-17T17:10:31.886831
true
github_axios_axios_ffba6101b10fdf402caefdd704c11158796540f3
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/isAxiosError.js
isAxiosError.js
369
'use strict'; import utils from '../utils.js'; /** * Determines whether the payload is an error thrown by Axios * * @param {*} payload The value to test * * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false */ export default function isAxiosError(payload) { return utils.isObj...
56
369
15
0.98
2026-04-23T06:16:56.042275
true
github_fnproject_fn_4510f0571dab952ac1c3017bdaf71ac8042fc70f
Go
fnproject
fn
5,931
408
The container native, cloud agnostic serverless platform.
[ "containers", "docker", "faas", "kubernetes", "lambda", "serverless", "serverless-functions", "swarm" ]
Apache-2.0
api/models/app_test.go
app_test.go
4,877
package models import ( "reflect" "testing" "time" "github.com/fnproject/fn/api/common" "github.com/leanovate/gopter" "github.com/leanovate/gopter/gen" "github.com/leanovate/gopter/prop" ) var stringType = reflect.TypeOf("") var intType = reflect.TypeOf(0) func appReflectType() reflect.Type { app := App{} ...
524
4,877
201
0.98
2026-04-17T21:16:39.292548
true
github_preactjs_preact_174f3227057ba56605c188e2d54a3da31fc4cb74
JavaScript
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/options.js
options.js
587
import { _catchError } from './diff/catch-error'; /** * The `option` object can potentially contain callback functions * that are called during various stages of our renderer. This is the * foundation on which all our addons like `preact/debug`, `preact/compat`, * and `preact/hooks` are based on. See the `Options`...
88
587
17
0.98
2026-04-23T04:47:08.335055
true
github_yuchenlin_LLM-Blender_3d7e4c287cba6a177be2c1efe1cfe6f476fbc133
Python
yuchenlin
LLM-Blender
978
90
[ACL2023] We introduce LLM-Blender, an innovative ensembling framework to attain consistently superior performance by leveraging the diverse strengths of multiple open-source LLMs. LLM-Blender cut the weaknesses through ranking and integrate the strengths through fusing generation to enhance the capability of LLMs.
[ "ensamble-methods", "large-language-models", "llm", "natural-language-processing" ]
Apache-2.0
setup.py
setup.py
1,754
from setuptools import setup, find_packages # read the contents of your README file from pathlib import Path this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text() setup( name='llm_blender', version='0.0.2', description='LLM-Blender, an innovative ensembling fr...
126
1,754
61
0.98
2026-04-22T17:01:19.965762
true
github_Windy3f3f3f3f_claude-code-from-scratch_aab690b1fa46a49ad8092010f4ef691f6b8281ae
TypeScript
Windy3f3f3f3f
claude-code-from-scratch
984
333
Build your own Claude Code from scratch. 🔍 Claude Code 开源了 50 万行代码,读不动?用 ~4000 行 TypeScript / Python 从零复现核心架构,11 章分步教程带你理解 coding agent 精髓
[ "ai", "ai-agent", "anthropic", "build-from-scratch", "claude", "claude-code", "coding-agent", "llm", "tutorial", "typescript" ]
MIT
src/tools.ts
tools.ts
30,099
import { readFileSync, writeFileSync, existsSync, mkdirSync, readdirSync, statSync } from "fs"; import { execSync, execFileSync } from "child_process"; import { glob } from "glob"; import { dirname, join, basename, extname, resolve } from "path"; import { homedir } from "os"; const isWin = process.platform === "win32"...
3,367
29,011
859
0.98
2026-04-22T17:00:43.845517
true
github_codeceptjs_CodeceptJS_c510a3c16575a309f9f04a4ecd839e03c30a7708
JavaScript
codeceptjs
CodeceptJS
4,221
752
Supercharged End 2 End Testing Framework for NodeJS
[ "acceptance-testing", "bdd", "bdd-framework", "codeceptjs", "e2e-tests", "end-to-end-testing", "graphql-testing", "hacktoberfest", "javascript", "nodejs", "pageobject", "playwright", "selenium", "selenium-webdriver", "testing", "webdriver", "webdriverio" ]
MIT
lib/listener/exit.js
exit.js
666
const event = require('../event') const debug = require('debug')('codeceptjs:exit') module.exports = function () { let failedTests = [] event.dispatcher.on(event.test.failed, test => { const id = test.uid || (test.ctx && test.ctx.test.uid) || 'empty' failedTests.push(id) }) // if test was successful ...
80
666
28
0.98
2026-04-23T07:39:13.185206
true
github_BrainJS_brain.js_0731d92c6d440ef4844164a0d3aac43fadf42433
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/layer/pool.test.ts
pool.test.ts
6,621
import { GPU } from 'gpu.js'; import { gpuMock } from 'gpu-mock.js'; import { Pool, predict, compare, compare3D, ICompareConstants, IPredictConstants, } from './pool'; import { setup, teardown } from '../utilities/kernel'; import { mockLayer } from '../test-utils'; describe('Pool Layer', () => { beforeEa...
721
6,621
314
0.98
2026-04-17T17:56:07.597104
true
github_iib0011_omni-tools_e661d1103ac3c07eff213b025a09f34e0e571899
TypeScript
iib0011
omni-tools
9,110
600
Self-hosted collection of powerful web-based tools for everyday tasks. No ads, no tracking, just fast, accessible utilities right from your browser!
[ "alternative", "converter", "data-manipulation", "developer-tools", "devtools", "frontend", "good-first-issue", "image-manipulation", "image-processing", "javascript", "pdf-manipulation", "productivity", "react", "self-hosted", "swissarmyknife", "tools", "typescript", "video-manipu...
MIT
src/datatables/index.ts
index.ts
232
import type { DataTable } from './types.ts'; /* Used in case later we want any kind of computed extra data */ export function dataTableLookup(table: DataTable, key: string): any { return table.data[key]; } export { DataTable };
36
232
9
0.98
2026-04-18T00:23:11.653303
true
github_ginlix-ai_LangAlpha_283d635f8287948af13fc84fdd800d50383d4853
Python
ginlix-ai
LangAlpha
919
131
Claude Code for Finance
[ "agent", "investment", "langchain", "langraph", "llm", "mcp", "skills", "trading" ]
Apache-2.0
src/tools/__init__.py
__init__.py
639
from .crawl import crawl_tool from .fetch import web_fetch_tool, web_fetch # Backwards compatibility: re-export from new location from ptc_agent.agent.tools.todo import TodoWrite def get_web_search_tool(*args, **kwargs): from .search import get_web_search_tool as _get_web_search_tool return _get_web_search...
54
639
29
0.98
2026-04-23T00:45:54.863110
true
github_huggingface_transformers_5b230836c6e7ec63a83b276e3ced23e30e6dd300
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/model_debugging_utils.py
model_debugging_utils.py
17,044
# Copyright 2025 The HuggingFace Inc. 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 ap...
1,644
17,044
456
0.98
2026-04-22T13:17:58.711761
true
github_OpenMOSS_MOSS_8ed506de092765f4338539aeb16fcce902e0c117
Python
OpenMOSS
MOSS
12,102
1,134
An open-source tool-augmented conversational language model from Fudan University
[ "chatgpt", "deep-learning", "dialogue-systems", "large-language-models", "natural-language-processing", "text-generation" ]
Apache-2.0
utils.py
utils.py
485
import torch from transformers import StoppingCriteria class StopWordsCriteria(StoppingCriteria): def __init__(self, stop_indices: list): self.stop_indices = stop_indices def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor, **kwargs) -> bool: # do not support batch infe...
42
485
16
0.98
2026-04-22T13:58:27.893657
true
github_hagopj13_node-express-boilerplate_9323512322684f81b12d8a8bf236aaa41d76ecd5
JavaScript
hagopj13
node-express-boilerplate
7,625
2,263
A boilerplate for building production-ready RESTful APIs using Node.js, Express, and Mongoose
[ "boilerplate", "es2018", "es6", "express", "express-boilerplate", "jest", "mongodb", "mongoose", "node-boilerplate", "nodejs", "rest-api", "starter" ]
MIT
src/services/email.service.js
email.service.js
1,955
const nodemailer = require('nodemailer'); const config = require('../config/config'); const logger = require('../config/logger'); const transport = nodemailer.createTransport(config.email.smtp); /* istanbul ignore next */ if (config.env !== 'test') { transport .verify() .then(() => logger.info('Connected to ...
266
1,955
64
0.98
2026-04-23T07:14:06.468792
true
github_itsOwen_CyberScraper-2077_d87a26dbdd115125a267f560e71192f6ba14d0eb
Python
itsOwen
CyberScraper-2077
2,939
328
A Powerful web scraper powered by LLM | OpenAI, Gemini & Ollama
[ "ai-scraping", "gemini-api", "llm", "llm-scraper", "openai", "scraper", "web-scraper", "webscraping" ]
MIT
src/models.py
models.py
1,548
"""Model factory for creating LLM instances.""" import os from langchain_openai import ChatOpenAI, OpenAI from langchain_core.language_models.base import BaseLanguageModel from langchain_google_genai import ChatGoogleGenerativeAI from .utils.error_handler import ErrorMessages, check_model_api_key class Models: ...
139
1,548
42
0.98
2026-04-22T15:33:00.572797
true
github_rust-lang_rustlings_3c189c789dfce251cd1ba45189bace15b924be86
Rust
rust-lang
rustlings
62,528
11,177
:crab: Small exercises to get you used to reading and writing Rust code!
[ "beginner-friendly", "exercises", "rust", "rustlings" ]
MIT
src/editor.rs
editor.rs
4,290
use std::{ borrow::Cow, env, process::{Command, Stdio}, thread::{self, JoinHandle}, }; use anyhow::{Context, Result, bail}; use shlex::Shlex; mod zellij; fn run_cmd(cmd: &mut Command) -> Result<Vec<u8>> { let output = cmd .stdin(Stdio::null()) .output() .with_context(|| fo...
323
4,290
145
0.98
2026-04-17T13:16:11.749011
true
github_zhongyu09_openchatbi_ca7d885685dcc6ef9d00f1d2c0897ebeb4792e60
Python
zhongyu09
openchatbi
548
69
OpenChatBI is an intelligent chat-based BI tool powered by large language models, designed to help users query, analyze, and visualize data through natural language conversations. It uses LangGraph and LangChain to build chat agent and workflows that support natural language to SQL conversion and data analysis.
[ "agent", "ai", "analytics", "bi", "database", "datawarehouse", "gpt", "langchain", "langgraph", "llm", "nlp", "text2sql" ]
MIT
run_streamlit_ui.py
run_streamlit_ui.py
1,471
#!/usr/bin/env python3 """ Launch script for the Streamlit-based OpenChatBI interface. Usage: python run_streamlit_ui.py This will start the Streamlit server on http://localhost:8501 """ import os import subprocess import sys def main(): """Launch the Streamlit UI""" # Change to the project directory ...
133
1,448
55
0.98
2026-04-23T00:54:46.909836
true
github_pvolok_mprocs_bb146a3331caeb1bd74cfa77287e4baae6e2e933
Rust
pvolok
mprocs
2,518
101
Run multiple commands in parallel
[ "cli", "linux", "macos", "rust", "terminal", "tui", "windows" ]
MIT
src/term/encode.rs
encode.rs
17,125
use std::fmt::Write; use anyhow::Result; use super::{ key::{Key, KeyCode, KeyMods}, mouse::{MouseButton, MouseEvent, MouseEventKind}, }; pub const CSI: &str = "\x1b["; pub const SS3: &str = "\x1bO"; /// Specifies terminal modes/configuration that can influence how a KeyCode /// is encoded when being sent to and...
2,004
17,125
602
0.98
2026-04-17T19:22:36.387406
true
github_altsem_gitu_a387715432eae3d7d42019d877c10585a3c533f0
Rust
altsem
gitu
2,679
143
A TUI Git client inspired by Magit
[ "cli", "git", "magit", "standalone", "tui" ]
MIT
src/screen/show_stash.rs
show_stash.rs
2,799
use std::{iter, rc::Rc, sync::Arc}; use crate::{ Res, config::Config, git, item_data::{ItemData, SectionHeader}, items::{self, Item, hash}, }; use git2::Repository; use ratatui::layout::Size; use super::Screen; pub(crate) fn create( config: Arc<Config>, repo: Rc<Repository>, size: Siz...
164
2,799
93
0.98
2026-04-17T19:21:17.483037
true
github_AUTOMATIC1111_stable-diffusion-webui_f83820d2534ff5aa5ec9dd0aaa76f18928bacc3d
Python
AUTOMATIC1111
stable-diffusion-webui
162,543
30,283
Stable Diffusion web UI
[ "ai", "ai-art", "deep-learning", "diffusion", "gradio", "image-generation", "image2image", "img2img", "pytorch", "stable-diffusion", "text2image", "torch", "txt2img", "unstable", "upscaling", "web" ]
AGPL-3.0
launch.py
launch.py
1,297
from modules import launch_utils args = launch_utils.args python = launch_utils.python git = launch_utils.git index_url = launch_utils.index_url dir_repos = launch_utils.dir_repos commit_hash = launch_utils.commit_hash git_tag = launch_utils.git_tag run = launch_utils.run is_installed = launch_utils.is_i...
92
1,297
49
0.98
2026-04-22T13:52:00.444770
true
github_MichalLytek_type-graphql_a1ba13243d09767f821a366c52b2046400700a36
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/decorators/Mutation.ts
Mutation.ts
937
import { getTypeDecoratorParams } from "@/helpers/decorators"; import { getResolverMetadata } from "@/helpers/resolver-metadata"; import { getMetadataStorage } from "@/metadata/getMetadataStorage"; import { type AdvancedOptions, type ReturnTypeFunc } from "./types"; export function Mutation(): MethodDecorator; export ...
80
937
22
0.98
2026-04-23T08:03:11.011856
true
github_likyoo_open-cd_7d21abd9703055a7c72f360f3404d267c570d544
Python
likyoo
open-cd
845
106
A Change Detection Repo Standing on the Shoulders of Giants
[ "bit", "change-detection", "changer", "deep-learning", "pytorch", "transformer" ]
Apache-2.0
setup.py
setup.py
7,358
# Copyright (c) Open-CD. All rights reserved. import os import os.path as osp import platform import shutil import sys import warnings from setuptools import find_packages, setup def readme(): with open('README.md', encoding='utf-8') as f: content = f.read() return content version_file = 'opencd/ver...
635
7,358
196
0.98
2026-04-22T21:23:17.849369
true
github_paperless-ngx_paperless-ngx_bd6a86f77b4f9ba150384ad59c5ab7eeb70afe75
Python
paperless-ngx
paperless-ngx
39,749
2,569
A community-supported supercharged document management system: scan, index and archive all your documents
[ "angular", "archiving", "django", "dms", "document-management", "document-management-system", "hacktoberfest", "machine-learning", "ocr", "optical-character-recognition", "pdf" ]
GPL-3.0
src/paperless/adapter.py
adapter.py
6,462
import logging from urllib.parse import quote from allauth.account.adapter import DefaultAccountAdapter from allauth.core import context from allauth.headless.tokens.strategies.sessions import SessionTokenStrategy from allauth.socialaccount.adapter import DefaultSocialAccountAdapter from django.conf import settings fr...
536
6,462
173
0.98
2026-04-22T13:33:55.951393
true
github_axios_axios_bb283ae88f7f9bbc0318963a2d7fc37c8a2a9d4a
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/estimateDataURLDecodedBytes.js
estimateDataURLDecodedBytes.js
2,892
/** * Estimate decoded byte length of a data:// URL *without* allocating large buffers. * - For base64: compute exact decoded size using length and padding; * handle %XX at the character-count level (no string allocation). * - For non-base64: use UTF-8 byteLength of the encoded body as a safe upper bo...
490
2,890
101
0.98
2026-04-23T06:16:54.089270
true
github_axios_axios_4fb2f8ee22c3be69a0313cb6d71816d52efcc65a
TypeScript
axios
axios
109,012
11,651
Promise based HTTP client for the browser and node.js
[ "hacktoberfest", "http-client", "javascript", "nodejs", "promise" ]
MIT
index.d.ts
index.d.ts
20,307
// TypeScript Version: 4.7 type StringLiteralsOrString<Literals extends string> = Literals | (string & {}); export type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null; interface RawAxiosHeaders { [key: string]: AxiosHeaderValue; } type MethodsHeaders = Partial< { [Key in Method...
2,067
20,307
718
0.98
2026-04-23T06:16:40.584189
true
github_agent0ai_agent-zero_c840d574ac372b0f0e207554963eceff029f5d37
Python
agent0ai
agent-zero
17,046
3,498
Agent Zero AI framework
[ "agent", "ai", "assistant", "autonomous", "linux", "zero" ]
NOASSERTION
api/notifications_history.py
notifications_history.py
685
from helpers.api import ApiHandler from flask import Request, Response from agent import AgentContext class NotificationsHistory(ApiHandler): @classmethod def requires_auth(cls) -> bool: return True async def process(self, input: dict, request: Request) -> dict | Response: # Get the globa...
61
685
22
0.98
2026-04-17T15:31:50.072128
true
github_fboulnois_stable-diffusion-docker_e709b2b65910baaa38ad6b9604528ea04b94f234
Python
fboulnois
stable-diffusion-docker
748
132
Run the official Stable Diffusion releases in a Docker container with txt2img, img2img, depth2img, pix2pix, upscale4x, and inpaint.
[ "dall-e", "dalle", "diffusion", "docker", "generative-art", "huggingface", "image-generation", "inpainting", "midjourney", "pytorch", "stable-diffusion", "tensorflow", "text-to-image" ]
AGPL-3.0
docker-entrypoint.py
docker-entrypoint.py
8,436
#!/usr/bin/env python import argparse import datetime import inspect import os import re import warnings import numpy as np import torch from PIL import Image from diffusers import ( AutoPipelineForText2Image, AutoPipelineForImage2Image, AutoPipelineForInpainting, DiffusionPipeline, OnnxStableDiffu...
676
8,436
309
0.98
2026-04-22T22:39:48.266295
true
github_bigint_hey_3f9b87ab56481968dc4fb5ef66dbcf67bc4311bc
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/accountPictureUtils.ts
accountPictureUtils.ts
982
import compressImage from "./compressImage"; import { uploadFileToIPFS } from "./uploadToIPFS"; export const readFile = (file: Blob): Promise<string> => { return new Promise((resolve) => { const reader = new FileReader(); reader.addEventListener( "load", () => resolve(reader.result as string), ...
108
982
37
0.98
2026-04-18T01:22:57.859862
true
github_starship_starship_daf25e09b86f387e20cba5b700e02cc5d226bde4
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/purescript.rs
purescript.rs
935
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct PureScriptConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub symbol: &...
87
935
35
0.98
2026-04-17T13:17:58.239930
true
github_andreasbm_web-skills_e10e2ca3670f8b2505422f4e38956a1e54bfc64a
JavaScript
andreasbm
web-skills
7,521
717
A visual overview of useful skills to learn as a web developer
[ "accessibility", "algorithms", "architecture", "backend", "build-tools", "css", "design", "frameworks", "html", "javascript", "pwa", "testing", "web-components" ]
NOASSERTION
src/styles/shared.js
shared.js
131
import {css} from "../../web_modules/lit-element.js"; export const sharedStyles = css` *, :host { box-sizing: border-box; } `;
16
131
7
0.98
2026-04-23T12:19:22.168922
true
github_googleforgames_open-match_57709309a1a2e0f3cb3e2e7f574a9bef1e89c447
Go
googleforgames
open-match
3,390
355
Flexible, extensible, and scalable video game matchmaking.
[ "game-development", "go", "golang", "kubernetes", "matchmaking", "multiplayer" ]
Apache-2.0
cmd/query/query.go
query.go
829
// Copyright 2018 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 // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in w...
118
829
26
0.98
2026-04-17T22:34:57.083419
true
github_parcel-bundler_lightningcss_a3a2263fb3bea4cd58bb32bf7c988c1196150791
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/unknown.rs
unknown.rs
1,752
//! An unknown at-rule. use super::Location; use crate::error::PrinterError; use crate::printer::Printer; use crate::properties::custom::TokenList; use crate::traits::ToCss; use crate::values::string::CowArcStr; #[cfg(feature = "visitor")] use crate::visitor::Visit; /// An unknown at-rule, stored as raw tokens. #[der...
164
1,752
61
0.98
2026-04-17T14:38:01.898117
true
github_FiloSottile_age_f71cbbc8a9f5b856eff1bf181b180a4aa269c196
Go
FiloSottile
age
21,992
634
A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability.
[ "age-encryption", "built-at-rc" ]
BSD-3-Clause
internal/inspect/inspect_test.go
inspect_test.go
2,614
package inspect import ( "bytes" "fmt" "testing" "filippo.io/age/internal/format" "filippo.io/age/internal/stream" ) // buildFile serializes a header with a single stanza of the given type, // followed by the minimal valid encrypted payload (a 16-byte stream nonce // and a single empty ChaCha20-Poly1305 chunk)....
353
2,614
92
0.98
2026-04-17T09:19:56.498079
true
github_gogs_gogs_64c45a90fd3566ac2309d36c806978e384b99a2a
Go
gogs
gogs
47,504
5,043
Gogs is a painless self-hosted Git service
[ "docker", "git", "go", "gogs", "mysql", "postgresql", "raspberry-pi", "self-hosted", "source-code-management", "sqlite3", "version-control" ]
MIT
internal/database/lfs_test.go
lfs_test.go
2,934
package database import ( "context" "testing" "time" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "gogs.io/gogs/internal/errx" "gogs.io/gogs/internal/lfsx" ) func TestLFS(t *testing.T) { if testing.Short() { t.Skip() } t.Parallel() ctx := context.Background() s := &LFSSt...
302
2,934
102
0.98
2026-04-17T07:25:08.908771
true
github_micro-editor_micro_e2178726ced54d5958af0d8fb5dbbb80362c14e8
Go
micro-editor
micro
28,429
1,304
A modern and intuitive terminal-based text editor
[ "command-line", "cross-platform", "editor", "go", "golang", "micro", "terminal", "text-editor" ]
MIT
internal/buffer/settings.go
settings.go
4,407
package buffer import ( "crypto/md5" "reflect" "github.com/micro-editor/micro/v2/internal/config" ulua "github.com/micro-editor/micro/v2/internal/lua" "github.com/micro-editor/micro/v2/internal/screen" "golang.org/x/text/encoding/htmlindex" "golang.org/x/text/encoding/unicode" luar "layeh.com/gopher-luar" ) ...
524
4,407
177
0.98
2026-04-17T08:23:24.575962
true
github_ruffle-rs_ruffle_53491ced31e9c7840c6f68b9723b2dc8088288b4
Rust
ruffle-rs
ruffle
17,970
1,003
A Flash Player emulator written in Rust
[ "emulator", "flash", "hacktoberfest", "reimplementation", "rust", "swf" ]
NOASSERTION
core/src/lib.rs
lib.rs
1,780
// This lint is helpful, but right now we have too many instances of it. // TODO: Remove this once all instances are fixed. #![allow(clippy::needless_pass_by_ref_mut)] // This lint is good in theory, but in AVMs we often need to do `let x = args.get(0); let y = args.get(1);` etc. // It'd make those much less readable a...
242
1,780
76
0.98
2026-04-17T13:47:03.957427
true
github_huggingface_diffusers_7a95ce20aaff4e021261d46e264f85395436bb41
Python
huggingface
diffusers
33,412
6,937
🤗 Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.
[ "deep-learning", "diffusion", "flux", "image-generation", "image2image", "image2video", "latent-diffusion-models", "pytorch", "qwen-image", "score-based-generative-modeling", "stable-diffusion", "stable-diffusion-diffusers", "text2image", "text2video", "video2video" ]
Apache-2.0
src/diffusers/configuration_utils.py
configuration_utils.py
36,239
# coding=utf-8 # Copyright 2025 The HuggingFace Inc. team. # Copyright (c) 2022, NVIDIA CORPORATION. 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.a...
3,449
36,239
806
0.98
2026-04-22T13:53:43.357800
true
github_AdguardTeam_AdGuardHome_ce68c60b5c1873692135b6834d334e85d57ab935
JavaScript
AdguardTeam
AdGuardHome
33,577
2,303
Network-wide ads & trackers blocking DNS server
[ "adblock", "adguard", "dns", "dns-over-https", "dns-over-quic", "dns-over-tls", "dnscrypt", "golang", "open-source", "privacy" ]
GPL-3.0
changelog.config.js
changelog.config.js
891
module.exports = { "disableEmoji": true, "list": [ "+ ", "* ", "- ", ], "maxMessageLength": 64, "minMessageLength": 3, "questions": [ "type", "scope", "subject", "body", "issues", ], "scopes": [ "", "ui", ...
90
891
46
0.98
2026-04-17T07:42:54.066456
true
github_theodo-group_GenossGPT_a60c19c16648621a097513c2e50f5449d514bd8c
Python
theodo-group
GenossGPT
753
63
One API for all LLMs either Private or Public (Anthropic, Llama V2, GPT 3.5/4, Vertex, GPT4ALL, HuggingFace ...) 🌈🐂 Replace OpenAI GPT with any LLMs in your app with one line.
[ "api", "gpt", "gpt4all", "huggingface", "inference", "llama", "llm", "openai", "private", "public" ]
UNKNOWN
logger.py
logger.py
531
import logging def get_logger(logger_name: str, log_level: int | str = logging.INFO) -> logging.Logger: logger = logging.getLogger(logger_name) logger.setLevel(log_level) logger.propagate = False # Prevent log propagation to avoid double logging formatter = logging.Formatter("%(asctime)s [%(levelnam...
44
531
18
0.98
2026-04-23T00:41:35.650177
true
github_ChatGPTNextWeb_NextChat_e4cd291111d0a505940fe664346f770e1bd29888
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/clone.ts
clone.ts
271
export function deepClone<T>(obj: T) { return JSON.parse(JSON.stringify(obj)); } export function ensure<T extends object>( obj: T, keys: Array<[keyof T][number]>, ) { return keys.every( (k) => obj[k] !== undefined && obj[k] !== null && obj[k] !== "", ); }
37
271
13
0.98
2026-04-23T08:58:31.491105
true
github_baoyachi_shadow-rs_b10cd7c5a9114f3f632b4097d2392694f4956b19
Rust
baoyachi
shadow-rs
679
51
A build-time information stored in your rust project.(binary,lib,cdylib,dylib,wasm)
[ "build", "cargo", "cargo-build", "cargo-env", "cargo-lock", "cargo-plugin", "cargo-toml", "cargolock", "compile", "compiled", "compiler", "env", "metadata", "reproducible-build", "reproducible-builds", "rust", "rust-build", "rust-crate", "shadow", "shadow-rs" ]
MIT
src/git.rs
git.rs
30,260
use crate::build::{ConstType, ConstVal, ShadowConst}; use crate::ci::CiType; use crate::err::*; use crate::{DateTime, Format}; use std::collections::BTreeMap; use std::io::{BufReader, Read}; use std::path::Path; use std::process::{Command, Stdio}; const BRANCH_DOC: &str = r#" The name of the Git branch that this proje...
2,669
30,257
872
0.98
2026-04-17T17:08:57.180989
true
github_lldap_lldap_cbaa7a86b69cf4e8ba57304d9194238add3e1c1d
JavaScript
lldap
lldap
6,174
325
Light LDAP implementation
[ "authentication", "ldap", "opaque", "rust", "security", "wasm", "web-assembly" ]
GPL-3.0
app/static/main.js
main.js
256
import init, { run_app } from '/pkg/lldap_app.js'; async function main() { if(navigator.userAgent.indexOf('AppleWebKit') != -1) { await init('/pkg/lldap_app_bg.wasm'); } else { await init('/pkg/lldap_app_bg.wasm.gz'); } run_app(); } main()
26
256
11
0.98
2026-04-17T14:51:27.199292
true
github_marmelab_react-admin_ed6be90404a5a883489282916d6485b9e82305e7
JavaScript
marmelab
react-admin
26,640
5,450
A frontend Framework for single-page applications on top of REST/GraphQL APIs, using TypeScript, React and Material Design
[ "admin", "admin-dashboard", "admin-on-rest", "admin-ui", "frontend-framework", "graphql", "material-ui", "react", "react-admin", "reactjs", "rest", "single-page-app" ]
MIT
test-setup.js
test-setup.js
1,555
// 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'; import '@testing-library/jest-dom/jest-globals'; // TextEncoder/TextDecoder ar...
166
1,555
51
0.98
2026-04-18T01:23:40.417149
true
github_kopia_kopia_86863f4037db87ae53ad60af6006afe7fe18c411
Go
kopia
kopia
13,024
637
Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included.
[ "backup", "cloud", "deduplication", "encryption", "google-cloud-storage" ]
Apache-2.0
internal/epoch/epoch_range.go
epoch_range.go
1,229
package epoch import ( "github.com/kopia/kopia/repo/blob" ) // RangeMetadata represents a range of indexes for [min,max] epoch range. Both min and max are inclusive. type RangeMetadata struct { MinEpoch int `json:"min"` MaxEpoch int `json:"max"` Blobs []blob.Metadata `json:"blobs"` } f...
131
1,229
48
0.98
2026-04-17T11:30:49.302744
true
github_DATA-DOG_go-sqlmock_b35be2e00032cfb455fac6a9f8cf3da00c51157b
Go
DATA-DOG
go-sqlmock
6,542
406
Sql mock driver for golang to test database interactions
[ "database", "go", "golang", "mock", "sql", "sql-driver", "tdd", "testing" ]
NOASSERTION
stubs_test.go
stubs_test.go
1,543
package sqlmock import ( "database/sql/driver" "errors" "fmt" "strconv" "time" ) type NullTime struct { Time time.Time Valid bool // Valid is true if Time is not NULL } type NullInt struct { Integer int Valid bool } // Satisfy sql.Scanner interface func (ni *NullInt) Scan(value interface{}) error { swi...
235
1,543
81
0.98
2026-04-17T18:15:50.675955
true
github_graphql-hive_graphql-config_7428c376520ab254e14cbf62cb3a084e96dc531f
TypeScript
graphql-hive
graphql-config
1,201
101
One configuration for all your GraphQL tools (supported by most tools, editors & IDEs)
[ "apollo", "devtools", "graphql", "graphql-schema", "graphqlrc", "intellij", "relay", "the-guild" ]
MIT
src/project-config.ts
project-config.ts
7,084
import { dirname, isAbsolute, relative, normalize } from 'path'; import type { GraphQLSchema, DocumentNode } from 'graphql'; import type { Source } from '@graphql-tools/utils'; import { minimatch } from 'minimatch'; import { LoadSchemaOptions as ToolsLoadSchemaOptions, LoadTypedefsOptions as ToolsLoadTypedefsOption...
642
7,084
231
0.98
2026-04-18T00:31:04.199632
true
github_Huachao_vscode-restclient_2fca9a5ceefb98658f878dd2c50d5ddb9b425bab
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/environmentController.ts
environmentController.ts
2,943
import { EventEmitter, QuickPickItem, window } from 'vscode'; import * as Constants from '../common/constants'; import { SystemSettings } from '../models/configurationSettings'; import { trace } from "../utils/decorator"; import { EnvironmentStatusEntry } from '../utils/environmentStatusBarEntry'; import { UserDataMana...
229
2,943
73
0.98
2026-04-18T01:32:14.221037
true
github_hijkzzz_pymarl2_57cc3882c1a90dc7506616d21d450e2e81023784
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/controllers/__init__.py
__init__.py
509
REGISTRY = {} from .basic_controller import BasicMAC from .n_controller import NMAC from .ppo_controller import PPOMAC from .conv_controller import ConvMAC from .basic_central_controller import CentralBasicMAC from .lica_controller import LICAMAC from .dop_controller import DOPMAC REGISTRY["basic_mac"] = BasicMAC REG...
52
509
17
0.98
2026-04-22T20:37:43.880978
true
github_http-rs_tide_7e1ca9a90961f3d77cec84680b8786ff8bfad80d
Rust
http-rs
tide
5,101
327
Fast and friendly HTTP server framework for async Rust
[]
Apache-2.0
src/middleware.rs
middleware.rs
1,942
//! Middleware types. use std::sync::Arc; use crate::endpoint::DynEndpoint; use crate::{Request, Response}; use async_trait::async_trait; use std::future::Future; use std::pin::Pin; /// Middleware that wraps around the remaining middleware chain. #[async_trait] pub trait Middleware<State>: Send + Sync + 'static { ...
218
1,942
64
0.98
2026-04-17T15:18:48.271752
true
github_authzed_spicedb_72aff73ec9c6318b58f47609b85aba87822f99f7
Go
authzed
spicedb
6,606
381
Open Source, Google Zanzibar-inspired database for scalably storing and querying fine-grained authorization data
[ "abac", "acl", "authorization", "ciam", "cloud-native", "database", "distributed-systems", "entitlements", "fga", "fine-grained-access-control", "fine-grained-authorization", "kubernetes", "permissions", "rbac", "rebac", "security", "security-tools", "zanzibar" ]
Apache-2.0
internal/developmentmembership/onrset.go
onrset.go
2,452
package developmentmembership import ( "github.com/authzed/spicedb/pkg/genutil/mapz" "github.com/authzed/spicedb/pkg/spiceerrors" "github.com/authzed/spicedb/pkg/tuple" ) // TODO(jschorr): Replace with the generic set over tuple.ObjectAndRelation // ONRSet is a set of ObjectAndRelation's. type ONRSet struct { on...
331
2,452
86
0.98
2026-04-17T18:15:00.428590
true
github_ChromeDevTools_chrome-devtools-mcp_f41ca84ccc62d4be8c2eb5013013a2e0aa8dc740
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/WaitForHelper.ts
WaitForHelper.ts
5,586
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {logger} from './logger.js'; import type {Page, Protocol, CdpPage, Dialog} from './third_party/index.js'; import type {PredefinedNetworkConditions} from './third_party/index.js'; export class WaitForHelper { #abortControl...
503
5,586
199
0.98
2026-04-23T08:42:30.379375
true
github_gorilla_websocket_50d065e2388b762f1a2402c233b9483e44e6b096
Go
gorilla
websocket
24,651
3,578
Package gorilla/websocket is a fast, well-tested and widely used WebSocket implementation for Go.
[ "go", "golang", "gorilla", "gorilla-web-toolkit", "websocket", "websockets" ]
BSD-2-Clause
prepared_test.go
prepared_test.go
2,082
// Copyright 2017 The Gorilla WebSocket 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 websocket import ( "bytes" "compress/flate" "math/rand" "testing" ) var preparedMessageTests = []struct { messageType i...
248
2,082
82
0.98
2026-04-17T08:43:04.557759
true
github_fnproject_fn_5482be1649a8e7d7fdcc4f1aa0f3c704e085f8a6
Go
fnproject
fn
5,931
408
The container native, cloud agnostic serverless platform.
[ "containers", "docker", "faas", "kubernetes", "lambda", "serverless", "serverless-functions", "swarm" ]
Apache-2.0
api/runnerpool/ch_placer.go
ch_placer.go
2,220
/* The consistent hash ring from the original fnlb. The behaviour of this depends on changes to the runner list leaving it relatively stable. */ package runnerpool import ( "context" "github.com/fnproject/fn/api/models" "github.com/dchest/siphash" "github.com/sirupsen/logrus" ) type chPlacer struct { cfg Pla...
305
2,220
87
0.98
2026-04-17T21:16:44.395977
true
github_jarrodwatts_claude-hud_01cc4f3dd092f61262bd424bbb931edacd4dba76
TypeScript
jarrodwatts
claude-hud
20,423
908
A Claude Code plugin that shows what's happening - context usage, active tools, running agents, and todo progress
[ "anthropic", "claude", "claude-code", "cli", "plugin", "statusline", "typescript" ]
MIT
src/claude-config-dir.ts
claude-config-dir.ts
823
import * as path from 'node:path'; function expandHomeDirPrefix(inputPath: string, homeDir: string): string { if (inputPath === '~') { return homeDir; } if (inputPath.startsWith('~/') || inputPath.startsWith('~\\')) { return path.join(homeDir, inputPath.slice(2)); } return inputPath; } export functi...
74
823
28
0.98
2026-04-23T12:35:53.133944
true
github_spacedriveapp_spacedrive_0059ab661cd0282757a865f7b91c122adc4b645c
Rust
spacedriveapp
spacedrive
37,794
1,263
Spacedrive is an open source cross-platform file explorer, powered by a virtual distributed filesystem written in Rust.
[ "cross-platform", "distributed-systems", "encryption", "file-manager", "open-source", "rust", "storage", "typescript" ]
NOASSERTION
core/examples/debug_volumes.rs
debug_volumes.rs
2,262
//! Debug volume detection //! //! Run with: cargo run --example debug_volumes use sd_core::volume::{ detection::detect_volumes, types::{VolumeDetectionConfig, VolumeType}, }; use uuid::Uuid; #[tokio::main] async fn main() { // Enable debug logging tracing_subscriber::fmt() .with_max_level(tracing::Level::DEBUG...
213
2,262
83
0.98
2026-04-17T13:20:13.846471
true
github_bigint_hey_8a61656855a7d78cb16dec3563e2443fd78331f5
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/stopEventPropagation.ts
stopEventPropagation.ts
173
import type { MouseEvent } from "react"; const stopEventPropagation = (event: MouseEvent<Element>) => { event.stopPropagation(); }; export default stopEventPropagation;
19
173
8
0.98
2026-04-18T01:23:15.171297
true
github_github_spec-kit_97cb993a966c362da5bc9c3e05ff889f916643b6
Python
github
spec-kit
90,165
7,768
💫 Toolkit to help you get started with Spec-Driven Development
[ "ai", "copilot", "development", "engineering", "prd", "spec", "spec-driven" ]
MIT
src/specify_cli/__init__.py
__init__.py
217,241
#!/usr/bin/env python3 # /// script # requires-python = ">=3.11" # dependencies = [ # "typer", # "rich", # "platformdirs", # "readchar", # "json5", # ] # /// """ Specify CLI - Setup tool for Specify projects Usage: uvx specify-cli.py init <project-name> uvx specify-cli.py init . uvx spe...
17,670
216,518
5,094
0.98
2026-04-22T17:04:10.434729
true
github_kubernetes_kops_bfac1f1d22bd1be2893302bbec7f0adb01d2b02c
Go
kubernetes
kops
16,589
4,699
Kubernetes Operations (kOps) - Production Grade k8s Installation, Upgrades and Management
[ "cncf", "containers", "go", "kops", "kubernetes" ]
Apache-2.0
cmd/kops/create_keypair.go
create_keypair.go
10,422
/* Copyright 2019 The Kubernetes 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 writing, ...
1,269
10,422
338
0.98
2026-04-17T10:23:17.913943
true
github_LaoZhuJackson_SnowbreakAutoAssistant_eabcff2c426798cb4fc893350179ad3b3a13e8e1
Python
LaoZhuJackson
SnowbreakAutoAssistant
607
29
PC自动玩尘白,自动化代理,尘白禁区助手,自动钓鱼,信源解析,水弹,异星守护,迷宫
[ "automation", "fishing", "snowbreak" ]
GPL-3.0
app/ui/home_interface.py
home_interface.py
42,707
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'home_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 PyQt5 import QtCo...
1,628
42,273
686
0.98
2026-04-23T04:00:35.707141
true
github_howtographql_howtographql_43a17c97778d47137472a2849fe0600583a36371
JavaScript
howtographql
howtographql
8,728
1,137
The Fullstack Tutorial for GraphQL
[ "apollographql", "graphql", "prisma", "tutorial" ]
MIT
src/utils/polyfill.js
polyfill.js
1,520
if (typeof Element !== 'undefined' && !Element.prototype.scrollIntoViewIfNeeded) { Element.prototype.scrollIntoViewIfNeeded = function (centerIfNeeded) { centerIfNeeded = arguments.length === 0 ? true : !!centerIfNeeded; var parent = this.parentNode, parentComputedStyle = window.getComputedStyle(parent...
142
1,520
27
0.98
2026-04-18T01:29:27.441988
true
github_sharkdp_bat_9f8d7cb8d5f3f35a7704ab6e0d1b912f63767f89
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/nonprintable_notation.rs
nonprintable_notation.rs
594
/// How to print non-printable characters with /// [crate::config::Config::show_nonprintable] #[derive(Debug, Default, Clone, Copy, PartialEq, Eq)] #[non_exhaustive] pub enum NonprintableNotation { /// Use caret notation (^G, ^J, ^@, ..) Caret, /// Use unicode notation (␇, ␊, ␀, ..) #[default] Unic...
75
588
25
0.98
2026-04-17T13:16:53.943408
true
github_npm_cli_2206b04379163127f08f0a6a6c0a18e6da882912
JavaScript
npm
cli
9,697
4,289
the package manager for JavaScript
[ "javascript", "nodejs", "npm", "npm-cli", "package-manager", "tools" ]
NOASSERTION
lib/arborist-cmd.js
arborist-cmd.js
1,628
const { log } = require('proc-log') const BaseCommand = require('./base-cmd.js') // This is the base for all commands whose execWorkspaces just gets a list of workspace names and passes it on to new Arborist() to be able to run a filtered Arborist.reify() at some point. class ArboristCmd extends BaseCommand { get is...
218
1,628
50
0.98
2026-04-23T07:03:07.668766
true
github_adam-mcdaniel_oakc_92dcc7e5a908efaa9f1f392a4704d95d4028df16
Rust
adam-mcdaniel
oakc
747
21
A portable programming language with a compact intermediate representation
[ "c", "compiler", "compiler-design", "golang" ]
Apache-2.0
src/target/go.rs
go.rs
3,225
use super::Target; use std::{ fs::{remove_file, write}, io::{Error, ErrorKind, Result}, process::Command, }; pub struct Go; impl Target for Go { fn get_name(&self) -> char { 'g' } fn is_standard(&self) -> bool { true } fn std(&self) -> String { String::from(inc...
309
3,225
138
0.98
2026-04-17T17:08:39.639743
true
github_ErlichLiu_DeepClaude_eb54cf3314986e8c50b3bd938fdacbd7a2cf974a
Python
ErlichLiu
DeepClaude
2,793
499
Unleash Next-Level AI! 🚀 💻 Code Generation: DeepSeek r1 + Claude 3.7 Sonnet - Unparalleled Performance! 📝 Content Creation: DeepSeek r1 + Gemini 2.5 Pro - Superior Quality! 🔌 OpenAI-Compatible. 🌊 Streaming & Non-Streaming Support. ✨ Experience the Future of AI – Today! Click to Try Now! ✨
[ "ai", "claude-3-7-sonnet", "deepseek", "gemini" ]
MIT
app/main.py
main.py
10,153
import os import logging import json import aiohttp import time from fastapi import Depends, FastAPI, Request from fastapi.middleware.cors import CORSMiddleware from fastapi.responses import FileResponse, JSONResponse, StreamingResponse from fastapi.staticfiles import StaticFiles from app.utils.auth import verify_api...
583
8,743
268
0.98
2026-04-17T15:58:21.214237
true
github_rustdesk_rustdesk_003767bcbb9f3d57d91d7ef02dcfd51909ffcff4
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/client/file_trait.rs
file_trait.rs
4,998
use hbb_common::{fs, log, message_proto::*}; use super::{Data, Interface}; pub trait FileManager: Interface { #[cfg(not(any( target_os = "android", target_os = "ios", feature = "cli", feature = "flutter" )))] fn get_home_dir(&self) -> String { fs::get_home_as_string...
411
4,998
194
0.98
2026-04-17T13:14:12.226418
true
github_Mai-with-u_MaiBot_9363a13cc5a58c41dc313306df82f20435d22155
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/chat_loop_service.py
chat_loop_service.py
29,474
"""Maisaka 对话循环服务。""" from dataclasses import dataclass from datetime import datetime from typing import Any, List, Optional, Sequence import asyncio from rich.console import RenderableType from src.common.data_models.llm_service_data_models import LLMGenerationOptions from src.common.logger import get_logger from s...
1,610
27,740
746
0.98
2026-04-22T15:21:44.252237
true
github_dani-garcia_vaultwarden_2f56f3a6e4bca16574a7787407606dc88210c96b
Rust
dani-garcia
vaultwarden
58,525
2,704
Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs
[ "bitwarden", "bitwarden-rs", "docker", "rocket", "rust", "vaultwarden" ]
AGPL-3.0
src/sso.rs
sso.rs
14,155
use std::{sync::LazyLock, time::Duration}; use chrono::Utc; use derive_more::{AsRef, Deref, Display, From, Into}; use regex::Regex; use url::Url; use crate::{ api::ApiResult, auth, auth::{AuthMethod, AuthTokens, TokenWrapper, BW_EXPIRATION, DEFAULT_REFRESH_VALIDITY}, db::{ models::{Device, OID...
1,207
14,155
469
0.98
2026-04-17T13:16:37.115340
true
github_altsem_gitu_bf07a16aa37ff621ccc87f6fefcc21cdc8150d01
Rust
altsem
gitu
2,679
143
A TUI Git client inspired by Magit
[ "cli", "git", "magit", "standalone", "tui" ]
MIT
src/tests/quit.rs
quit.rs
643
use super::*; #[test] pub(crate) fn quit() { let app = snapshot!(setup_clone!(), "q"); assert!(app.state.quit); } #[test] pub(crate) fn quit_from_menu() { let app = snapshot!(setup_clone!(), "hq"); assert!(!app.state.quit); } #[test] pub(crate) fn confirm_quit_prompt() { let mut ctx = setup_clone...
66
643
32
0.98
2026-04-17T19:21:23.666748
true
github_ChatGPTNextWeb_NextChat_aec73ef53d6fae4abccf4e9910c14d0e20cbd5f3
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/command.ts
command.ts
1,981
import { useEffect } from "react"; import { useSearchParams } from "react-router-dom"; import Locale from "./locales"; type Command = (param: string) => void; interface Commands { fill?: Command; submit?: Command; mask?: Command; code?: Command; settings?: Command; } export function useCommand(commands: Com...
215
1,977
80
0.98
2026-04-23T08:58:06.726672
true
github_matplotlib_matplotlib_e2ffe7747e55b75949fc7c3136fd2d943fec5846
Python
matplotlib
matplotlib
22,719
8,317
matplotlib: plotting with Python
[ "data-science", "data-visualization", "gtk", "matplotlib", "plotting", "python", "qt", "tk", "wx" ]
UNKNOWN
lib/matplotlib/bezier.py
bezier.py
21,728
""" A module providing some utility functions regarding Bézier path manipulation. """ from functools import lru_cache import math import warnings import numpy as np from matplotlib import _api def _quadratic_roots_in_01(c0, c1, c2): """Real roots of c0 + c1*x + c2*x**2 in [0, 1].""" if abs(c2) < 1e-12: # ...
2,751
21,712
691
0.98
2026-04-17T16:37:07.813103
true
github_Nozbe_WatermelonDB_c3166e6e33a42e43bd245c1cb22e2c785ad11516
JavaScript
Nozbe
WatermelonDB
11,630
644
🍉 Reactive & asynchronous database for powerful React and React Native apps ⚡️
[ "database", "hacktoberfest", "persistence", "react", "react-native", "reactive", "rxjs" ]
MIT
src/react/DatabaseProvider.js
DatabaseProvider.js
636
// @flow import React from 'react' import Database from '../Database' import { Provider } from './DatabaseContext' export type Props = { database: Database, children: React$Node, } /** * Database provider to create the database context * to allow child components to consume the database without prop drilling *...
82
636
23
0.98
2026-04-23T05:39:58.213982
true
github_deepdrive_deepdrive_dd49031bb86cf1c40066f2c56a2cd4ebf6bc5357
Python
deepdrive
deepdrive
927
150
Deepdrive is a simulator that allows anyone with a PC to push the state-of-the-art in self-driving
[ "competition", "control", "deep-learning", "deep-reinforcement-learning", "gym", "python", "reinforcement-learning", "self-driving-car", "sensorimotor", "simulation", "tensorflow", "transfer-learning", "unreal-engine", "vision" ]
NOASSERTION
dashboard.py
dashboard.py
5,905
import json import sys import time from threading import Thread # TODO: Replace matplotlib UI with Unreal based HUD - and do comms via exsiting Python to Unreal channels is_py2 = sys.version[0] == '2' if is_py2: import Queue as queue else: import queue as queue from collections import deque, OrderedDict impo...
487
5,905
191
0.98
2026-04-22T20:24:57.086203
true
github_brianlovin_briOS_14df2066e4c11e8e1ee00a5c7032225c066bd789
TypeScript
brianlovin
briOS
2,250
252
My personal website.
[ "apollo", "graphql", "javascript", "nextjs", "planetscale", "prisma", "react", "styled-components" ]
UNKNOWN
src/hooks/useInfiniteScroll.ts
useInfiniteScroll.ts
1,714
"use client"; import useSWRInfinite from "swr/infinite"; import { fetcher } from "@/lib/fetcher"; export type InfiniteScrollPage<T> = { items: T[]; nextCursor: string | null; }; export type UseInfiniteScrollOptions<T> = { pageSize?: number; revalidateFirstPage?: boolean; revalidateOnFocus?: boolean; rev...
172
1,714
73
0.98
2026-04-18T01:40:00.839387
true
github_ChromeDevTools_chrome-devtools-mcp_997bc58fa4f66a9af68fb3f0d88ff0a9ecc6d760
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/utils/types.ts
types.ts
169
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ export interface PaginationOptions { pageSize?: number; pageIdx?: number; }
21
169
11
0.98
2026-04-18T00:21:21.453433
true
github_graphql_graphql-js_60c4331bb66a4b3b528f1725069a4910bd44fde5
TypeScript
graphql
graphql-js
20,323
2,056
A reference implementation of GraphQL for JavaScript
[ "graphql", "graphql-js" ]
MIT
src/__tests__/starWarsData.ts
starWarsData.ts
3,290
/** * These are types which correspond to the schema. * They represent the shape of the data visited during field resolution. */ export interface Character { id: string; name: string; friends: ReadonlyArray<string>; appearsIn: ReadonlyArray<number>; } export interface Human { type: 'Human'; id: string; ...
473
3,290
155
0.98
2026-04-18T01:24:36.440408
true
github_hijkzzz_pymarl2_d2f3b5de6490c1e8c6ec6298ef24ba33654062b8
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/run.py
run.py
8,710
import datetime import os import pprint import time 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 runners import REGISTR...
717
8,710
247
0.98
2026-04-22T20:37:55.737092
true
github_michaelthwan_searchGPT_825a4682153d7657115c10d2eaba83886295cd78
Python
michaelthwan
searchGPT
708
69
Grounded search engine (i.e. with source reference) based on LLM / ChatGPT / OpenAI API. It supports web search, file content search etc.
[ "ai", "chatgpt", "grounded-api", "grounded-bot", "language-model", "llm", "machine-learning", "nlp", "nlp-machine-learning", "openai", "python", "retrieval", "retrieval-model" ]
MIT
src/website/views.py
views.py
5,167
import os import random import string import tracemalloc import psutil from flask import Blueprint, render_template, request from SearchGPTService import SearchGPTService from FrontendService import FrontendService from Util import setup_logger from website.sender import exporting_progress, Sender logger = setup_log...
291
5,167
132
0.98
2026-04-23T01:15:00.100226
true
github_nucleuscloud_neosync_5c766c2b18e3d80033a4c0cd76ae15044faefeb2
Go
nucleuscloud
neosync
4,151
230
Open Source Data Security Platform for Developers to Monitor and Detect PII, Anonymize Production Data and Sync it across environments.
[ "benthos", "docker", "etl", "faker", "fine-tuning", "golang", "kubernetes", "mysql", "nextjs", "open-source", "orchestration", "postgresql", "reactjs", "self-hosted", "synthetic-data", "synthetic-data-generation", "test-data-generator", "testing", "typescript" ]
NOASSERTION
internal/aws/dynamodb-client.go
dynamodb-client.go
2,550
package awsmanager import ( "context" "fmt" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/dynamodb/types" ) type DynamoDbClient struct { client dynamoDBAPIV2 } type dynamoDBAPIV2 interface { DescribeTable( ctx context.Context, params *dynamodb.DescribeTableInput, ...
258
2,550
106
0.98
2026-04-17T22:20:46.352446
true
github_bigint_hey_cefc56f57b5e2e19a344835b2894028e88a136a5
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/types/hey.d.ts
hey.d.ts
241
import type { PayToCollectInput } from "@/indexer/generated"; export type CollectActionType = { enabled?: boolean; payToCollect?: PayToCollectInput; collectLimit?: null | number; followerOnly?: boolean; endsAt?: null | string; };
27
241
10
0.98
2026-04-18T01:23:21.617263
true
github_gotenberg_gotenberg_053ed5d153beb2de2f93c019c045c9b8b8b981c9
Go
gotenberg
gotenberg
11,810
770
A developer-friendly API for converting many document formats into PDF files, and more!
[ "api", "chrome", "chromium", "convert-to-pdf", "docker", "docx-to-pdf", "excel", "exiftool", "html-to-pdf", "libreoffice", "openoffice", "pdf", "pdf-converter", "pdftk", "puppeteer", "qpdf", "screenshots", "unoconv", "wkhtmltopdf", "word" ]
MIT
pkg/gotenberg/shutdown.go
shutdown.go
292
package gotenberg import "errors" // ErrCancelGracefulShutdownContext tells that a module wants to abort a // graceful shutdown and stops Gotenberg right away as there are no more // ongoing processes. var ErrCancelGracefulShutdownContext = errors.New("cancel graceful shutdown's context")
37
292
9
0.98
2026-04-17T11:45:20.044365
true
github_twobin_react-lazyload_b344011d32737882cb09f90274cd9f4450661330
JavaScript
twobin
react-lazyload
5,908
487
Lazy load your component, image or anything matters the performance.
[ "lazyload", "react" ]
MIT
lib/utils/event.js
event.js
649
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.on = on; exports.off = off; function on(el, eventName, callback, opts) { opts = opts || false; if (el.addEventListener) { el.addEventListener(eventName, callback, opts); } else if (el.attachEvent) { el.attachEvent("on"...
77
649
26
0.98
2026-04-23T06:05:14.089072
true
github_starship_starship_8ec3777b678c6052ee3b592c3f59a14b09c0b153
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/fill.rs
fill.rs
496
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct FillConfig<'a> { pub style: &'a str, pub symbol: &'a str, pub disabled: bool, } impl ...
52
496
25
0.98
2026-04-17T13:17:38.162271
true
github_ultraworkers_claw-code_b327977a46f7d9694fd2c362c6344817bfb3cfdc
Python
ultraworkers
claw-code
185,575
108,568
The repo is finally unlocked. enjoy the party! The fastest repo in history to surpass 100K stars ⭐. Join Discord: https://discord.gg/5TUQKqFWd Built in Rust using oh-my-codex.
[]
UNKNOWN
src/commands.py
commands.py
3,053
from __future__ import annotations import json from dataclasses import dataclass from functools import lru_cache from pathlib import Path from .models import PortingBacklog, PortingModule SNAPSHOT_PATH = Path(__file__).resolve().parent / 'reference_data' / 'commands_snapshot.json' @dataclass(frozen=True) class Com...
286
3,051
91
0.98
2026-04-17T13:13:07.483475
true
github_AliyunContainerService_pouch_1053f0b12652fed02c78a9b267e903ba198a5ad4
Go
AliyunContainerService
pouch
4,655
940
An Efficient Enterprise-class Container Engine
[ "cloud-native", "containers", "efficiency", "go", "isolation", "kubernetes", "oci", "package", "security" ]
Apache-2.0
pkg/errtypes/errors_test.go
errors_test.go
542
package errtypes import ( "testing" "github.com/pkg/errors" ) func TestCheckError(t *testing.T) { if !checkError(errors.Wrap(ErrNotfound, "test"), codeNotFound) { t.Error("check Wrap error") } if !checkError(errors.Wrapf(ErrNotfound, "test"), codeNotFound) { t.Error("check Wrapf error") } if !checkError...
49
542
26
0.98
2026-04-17T21:44:39.183985
true
github_pocketbase_pocketbase_589ce4a9e0d38e85320e0496eba04e182af0a68a
Go
pocketbase
pocketbase
57,663
3,292
Open Source realtime backend in 1 file
[ "authentication", "backend", "golang", "realtime" ]
MIT
core/otp_model.go
otp_model.go
3,454
package core import ( "context" "errors" "time" "github.com/pocketbase/pocketbase/tools/types" ) const CollectionNameOTPs = "_otps" var ( _ Model = (*OTP)(nil) _ PreValidator = (*OTP)(nil) _ RecordProxy = (*OTP)(nil) ) // OTP defines a Record proxy for working with the otps collection. type OTP stru...
471
3,454
128
0.98
2026-04-17T07:17:46.660515
true
github_pathwaycom_pathway_2bdcd50ca141c4bb0165a0ce03fa62718b74dff8
Rust
pathwaycom
pathway
63,434
1,631
Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG.
[ "batch-processing", "data-analytics", "data-pipelines", "data-processing", "dataflow", "etl", "etl-framework", "iot-analytics", "kafka", "machine-learning-algorithms", "pathway", "python", "real-time", "rust", "stream-processing", "streaming", "time-series-analysis" ]
NOASSERTION
src/engine/http_server.rs
http_server.rs
9,534
// Copyright © 2026 Pathway use std::env; use std::sync::Arc; use std::thread::{Builder, JoinHandle}; use std::time::SystemTime; use arc_swap::ArcSwapOption; use hyper::service::{make_service_fn, service_fn}; use hyper::{header, Body, Method, Response, Server, StatusCode}; use log::{error, info}; use prometheus_clien...
601
9,533
245
0.98
2026-04-23T04:40:37.953181
true
github_starship_starship_0ed4e06d75faea550b17c4d0350758fff6e73b5d
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/guix_shell.rs
guix_shell.rs
582
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct GuixShellConfig<'a> { pub format: &'a str, pub symbol: &'a str, pub style: &'a str, ...
61
579
27
0.98
2026-04-17T13:17:43.682239
true
github_mysqljs_mysql_45ed0292fa6b66c10fd4919b5413c0181bd70e27
JavaScript
mysqljs
mysql
18,653
2,513
A pure node.js JavaScript Client implementing the MySQL protocol.
[ "javascript", "mysql", "nodejs" ]
MIT
lib/protocol/Timer.js
Timer.js
699
var Timers = require('timers'); module.exports = Timer; function Timer(object) { this._object = object; this._timeout = null; } Timer.prototype.active = function active() { if (this._timeout) { if (this._timeout.refresh) { this._timeout.refresh(); } else { Timers.active(this._timeout); ...
69
699
34
0.98
2026-04-23T06:49:20.871211
true
github_keras-team_keras_e9eae70986c18ccf585f97ab9b69def49a2bec09
Python
keras-team
keras
63,982
19,738
Deep Learning for humans
[ "data-science", "deep-learning", "jax", "machine-learning", "neural-networks", "python", "pytorch", "tensorflow" ]
Apache-2.0
conftest.py
conftest.py
3,062
try: # When using torch and tensorflow, torch needs to be imported first, # otherwise it will segfault upon import. This should force the torch # import to happen first for all tests. import torch # noqa: F401 except ImportError: torch = None import pytest # noqa: E402 from keras.src.backend imp...
282
3,062
91
0.95
2026-04-13T13:40:03.580018
true
github_reactstrap_reactstrap_a83ca37806d8c5c9bad6c3c3e14e05da22f4ea20
JavaScript
reactstrap
reactstrap
10,527
1,288
Simple React Bootstrap 5 components
[ "bootstrap", "components", "hacktoberfest", "javascript", "react", "reactstrap", "ui" ]
MIT
src/ListGroup.js
ListGroup.js
1,588
import React 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: PropTypes.obje...
188
1,588
61
0.98
2026-04-23T05:44:11.950440
true
github_david-cortes_contextualbandits_bae47a2fe993b2ca30f5ace456228de5bd97b5a4
Python
david-cortes
contextualbandits
829
153
Python implementations of contextual bandits algorithms
[ "contextual-bandits", "exploration-exploitation", "multiarmed-bandits", "reinforcement-learning" ]
BSD-2-Clause
setup.py
setup.py
8,994
from setuptools import setup, Extension from Cython.Distutils import build_ext import numpy as np from sys import platform import sys, os, subprocess, warnings, re import tempfile ## Modify this to make the output of the compilation tests more verbose silent_tests = not (("verbose" in sys.argv) or ...
626
8,994
204
0.98
2026-04-22T20:28:17.901796
true
github_pubkey_rxdb_4990b64202f9c11481f8d2891e315d29499ab9a0
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/default-conflict-handler.ts
default-conflict-handler.ts
1,231
import { deepEqual, flatClone } from '../plugins/utils/index.ts'; import { stripAttachmentsDataFromDocument } from '../rx-storage-helper.ts'; import type { RxConflictHandler, RxDocumentData } from '../types'; export const defaultConflictHandler: RxConflictHandler<any> = { isEqual(a, b, _ctx) { a = ...
130
1,231
44
0.98
2026-04-23T08:22:01.406238
true
github_asciinema_asciinema_371e2fc4e4217423e5cc8f1e8747bffde919d3da
Rust
asciinema
asciinema
17,176
1,015
Terminal session recorder, streamer and player 📹
[ "asciicast", "asciinema", "cli", "recording", "rustlang", "streaming", "terminal" ]
GPL-3.0
src/cmd/cat.rs
cat.rs
2,028
use std::io; use std::io::Write; use std::time::Duration; use anyhow::{anyhow, Result}; use crate::asciicast::{self, Asciicast, Encoder, Event, EventData, Version}; use crate::cli; use crate::util; impl cli::Cat { pub fn run(self) -> Result<()> { let mut stdout = io::stdout(); let casts = self.op...
179
2,028
68
0.98
2026-04-17T13:47:54.294578
true
github_keploy_keploy_d809a747011ff5e56af28e83598848d090628da7
Go
keploy
keploy
17,097
2,215
Open-source platform for creating safe, isolated production sandboxes for API, integration, and E2E testing.
[ "agentic-ai", "ai-testing-tool", "api-testing", "code-quality", "mock", "mock-data-generator", "mock-framework", "test-automation", "test-automation-framework", "test-generation", "testing", "testing-library", "testing-tool", "testing-tools" ]
Apache-2.0
pkg/models/testcompare.go
testcompare.go
2,119
package models type AbsResult struct { Kind StringResult `json:"kind" bson:"kind" yaml:"kind"` Name StringResult `json:"name" bson:"name" yaml:"name"` Req ReqCompare `json:"req" bson:"req" yaml:"req"` Resp RespCompare `json:"resp" bson:"resp" yaml:"resp"` // CurlResult StringResult `json:"curl_result" bson:"c...
160
2,119
44
0.98
2026-04-17T10:16:14.229006
true
github_graphql-hive_graphql-config_119535468f8fab88100314a9234d6e7818ac2ffb
TypeScript
graphql-hive
graphql-config
1,201
101
One configuration for all your GraphQL tools (supported by most tools, editors & IDEs)
[ "apollo", "devtools", "graphql", "graphql-schema", "graphqlrc", "intellij", "relay", "the-guild" ]
MIT
src/extension.ts
extension.ts
1,817
import { GraphQLFileLoader } from '@graphql-tools/graphql-file-loader'; import { UrlLoader } from '@graphql-tools/url-loader'; import { JsonFileLoader } from '@graphql-tools/json-file-loader'; import { LoadersRegistry } from './loaders.js'; export type GraphQLExtensionDeclaration = (api: ExtensionAPI) => GraphQLConfig...
165
1,817
70
0.98
2026-04-18T00:31:00.689629
true
github_bentoml_BentoML_a61440f64e7717a46fdba8a60d68724d42bc6e5f
Python
bentoml
BentoML
8,594
950
The easiest way to serve AI apps and models - Build Model Inference APIs, Job queues, LLM apps, Multi-model pipelines, and more!
[ "ai-inference", "deep-learning", "generative-ai", "inference-platform", "llm", "llm-inference", "llm-serving", "llmops", "machine-learning", "ml-engineering", "mlops", "model-inference-service", "model-serving", "multimodal", "python" ]
Apache-2.0
src/_bentoml_sdk/_pydantic.py
_pydantic.py
7,636
from __future__ import annotations import typing as t from pydantic._internal import _known_annotated_metadata from pydantic._internal._typing_extra import is_annotated from .typing_utils import get_args from .typing_utils import get_origin from .validators import ContentType from .validators import DataframeSchema ...
642
7,636
241
0.98
2026-04-22T14:05:05.304227
true
github_open-webui_open-webui_b25ec0f84887c6c0d86c6f971f15a94c1daae95b
TypeScript
open-webui
open-webui
133,328
18,916
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
[ "ai", "llm", "llm-ui", "llm-webui", "llms", "mcp", "ollama", "ollama-webui", "open-webui", "openai", "openapi", "rag", "self-hosted", "ui", "webui" ]
NOASSERTION
src/lib/constants.ts
constants.ts
2,486
import { browser, dev } from '$app/environment'; // import { version } from '../../package.json'; export const APP_NAME = 'Open WebUI'; export const WEBUI_HOSTNAME = browser ? (dev ? `${location.hostname}:8080` : ``) : ''; export const WEBUI_BASE_URL = browser ? (dev ? `http://${WEBUI_HOSTNAME}` : ``) : ``; export co...
263
2,486
120
0.98
2026-04-22T14:51:23.384222
true
github_haofeixu_gmflow_be6a3f53d009c843e05a6a5dd75ec9034788b29b
Python
haofeixu
gmflow
779
59
[CVPR'22 Oral] GMFlow: Learning Optical Flow via Global Matching
[ "cvpr2022", "global-matching", "optical-flow", "transformer" ]
Apache-2.0
evaluate.py
evaluate.py
26,283
from PIL import Image import os import time import numpy as np import torch import torch.nn.functional as F import data from utils import frame_utils from utils.flow_viz import save_vis_flow_tofile from utils.utils import InputPadder, compute_out_of_boundary_mask from glob import glob from gmflow.geometr...
1,903
26,283
690
0.98
2026-04-22T21:29:12.921427
true
github_pathwaycom_pathway_da769f0154be58f532a9b5968d4ee600969657ed
Rust
pathwaycom
pathway
63,434
1,631
Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG.
[ "batch-processing", "data-analytics", "data-pipelines", "data-processing", "dataflow", "etl", "etl-framework", "iot-analytics", "kafka", "machine-learning-algorithms", "pathway", "python", "real-time", "rust", "stream-processing", "streaming", "time-series-analysis" ]
NOASSERTION
src/engine/dataflow.rs
dataflow.rs
258,200
// Copyright © 2026 Pathway #![allow(clippy::module_name_repetitions)] #![allow(clippy::non_canonical_partial_ord_impl)] // False positive with Derivative mod async_transformer; mod complex_columns; pub mod config; mod export; pub mod maybe_total; pub mod monitoring; pub mod operators; pub mod persist; pub mod shard;...
16,505
258,179
7,177
0.98
2026-04-23T04:40:35.355122
true
github_benfred_py-spy_68ed21c0ec97b4c7753820b905f420a7b0a600fe
Rust
benfred
py-spy
15,112
510
Sampling profiler for Python programs
[ "performance-analysis", "profiler", "profiling", "python" ]
MIT
src/python_threading.rs
python_threading.rs
5,310
use std::collections::HashMap; use anyhow::{Context, Error}; use crate::python_bindings::{v3_10_0, v3_11_0, v3_12_0, v3_13_0, v3_6_6, v3_7_0, v3_8_0, v3_9_5}; use crate::python_data_access::{copy_long, copy_string, DictIterator, PY_TPFLAGS_MANAGED_DICT}; use crate::python_interpreters::{InterpreterState, Object, Type...
457
5,310
131
0.98
2026-04-17T13:53:13.145454
true
github_jsx-eslint_eslint-plugin-react_a7c1ff56fc4ea094094ddca55c3a4c6ff6dfb53e
JavaScript
jsx-eslint
eslint-plugin-react
9,277
2,732
React-specific linting rules for ESLint
[ "development", "ecmascript", "eslint", "javascript", "lint", "react" ]
MIT
lib/rules/prefer-es6-class.js
prefer-es6-class.js
1,572
/** * @fileoverview Enforce ES5 or ES6 class for React Components * @author Dan Hamilton */ 'use strict'; const componentUtil = require('../util/componentUtil'); const docsUrl = require('../util/docsUrl'); const report = require('../util/report'); // ---------------------------------------------------------------...
145
1,572
59
0.98
2026-04-23T05:49:26.758422
true