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_bigint_hey_612487433348b72820b3f0d6899dd1720fecb91c | 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/getWalletDetails.ts | getWalletDetails.ts | 621 | import { STATIC_IMAGES_URL } from "@/data/constants";
interface WalletDetails {
logo: string;
name: string;
}
const WALLETS = {
familyAccountsProvider: {
logo: `${STATIC_IMAGES_URL}/wallets/family.png`,
name: "Login with Family"
},
injected: {
logo: `${STATIC_IMAGES_URL}/wallets/wallet.svg`,
... | 64 | 621 | 30 | 0.98 | 2026-04-18T01:23:09.371537 | true |
github_ElemeFE_v-charts_bb2ea5fc311c2f2cc64faf2c74a0ffba92920c6f | JavaScript | ElemeFE | v-charts | 6,775 | 2,004 | 基于 Vue2.0 和 ECharts 封装的图表组件📈📊 | [
"echarts",
"vue"
] | MIT | src/modules/mark.js | mark.js | 140 | export default function (seriesItem, marks) {
Object.keys(marks).forEach(key => {
if (marks[key]) seriesItem[key] = marks[key]
})
}
| 16 | 140 | 6 | 0.98 | 2026-04-23T11:58:07.706767 | true |
github_jfairbank_redux-saga-test-plan_3536a2d35ebc58eee51941037d90f8c087888071 | JavaScript | jfairbank | redux-saga-test-plan | 1,244 | 126 | Test Redux Saga with an easy plan. | [
"integration-testing",
"redux-saga",
"redux-saga-testing",
"testing",
"testing-sagas",
"unit-testing"
] | MIT | src/utils/ArraySet.js | ArraySet.js | 1,076 | // @flow
/* eslint-disable no-underscore-dangle */
import isEqual from 'lodash.isequal';
import { findIndex } from './array';
export default class ArraySet<T> {
_values: Array<T>;
constructor(values?: Array<T> = []) {
this._values = values.slice(0);
}
values(): Array<T> {
return this._values.slice(0)... | 119 | 1,076 | 53 | 0.98 | 2026-04-23T12:31:31.054319 | true |
github_FoundationVision_VNext_36be5d0ff50bfa992b0e32bb93d5b6d36542526f | Python | FoundationVision | VNext | 617 | 56 | Next-generation Video instance recognition framework on top of Detectron2 which supports InstMove (CVPR 2023), SeqFormer(ECCV Oral), and IDOL(ECCV Oral)) | [
"instance-segmentation",
"motion",
"object-detection",
"tracking",
"transformer",
"video-instance-segmentation"
] | Apache-2.0 | setup.py | setup.py | 7,713 | #!/usr/bin/env python
# Copyright (c) Facebook, Inc. and its affiliates.
import glob
import os
import shutil
from os import path
from setuptools import find_packages, setup
from typing import List
import torch
from torch.utils.cpp_extension import CUDA_HOME, CppExtension, CUDAExtension
torch_ver = [int(x) for x in to... | 712 | 7,713 | 210 | 0.98 | 2026-04-22T21:47:08.645156 | true |
github_actionhero_actionhero_e322b7c7a56c876e7c2c03713c3938f4e35a0a7b | TypeScript | actionhero | actionhero | 2,418 | 259 | Actionhero is a realtime multi-transport nodejs API Server with integrated cluster capabilities and delayed tasks | [
"actionhero",
"api",
"api-server",
"async-await",
"cluster",
"delayed-jobs",
"delayed-tasks",
"framework",
"frameworks",
"http",
"https",
"javascript",
"nodejs",
"server",
"socket-client",
"tcp",
"ts",
"typescript",
"websocket"
] | Apache-2.0 | src/servers/web.ts | web.ts | 28,388 | import * as http from "http";
import * as https from "https";
import * as url from "url";
import * as qs from "qs";
import * as fs from "fs";
import * as zlib from "zlib";
import * as path from "path";
import * as formidable from "formidable";
import * as Mime from "mime";
import * as uuid from "uuid";
import * as etag... | 2,355 | 28,388 | 920 | 0.98 | 2026-04-17T18:07:35.628354 | true |
github_plastic-labs_honcho_307b12e036f0e737397021d55a15e03c9aef7c2e | Python | plastic-labs | honcho | 2,529 | 286 | Memory library for building stateful agents | [
"agent-memory",
"ai",
"ai-agents",
"ai-memory",
"anthropic",
"context-engineering",
"continual-learning",
"embeddings",
"fastapi",
"langchain",
"llm",
"long-term-memory",
"memory",
"openai",
"personalization",
"python",
"rag",
"state-management",
"typescript",
"vector-database"... | AGPL-3.0 | src/schemas/api.py | api.py | 21,752 | """Pydantic schemas for API request/response validation.
These schemas are consumed by the FastAPI routers and define the public
API contract.
"""
import datetime
import ipaddress
from typing import Annotated, Any, Self, cast
from urllib.parse import urlparse
import tiktoken
from pydantic import (
AliasChoices,
... | 2,008 | 21,752 | 698 | 0.98 | 2026-04-17T16:00:24.298365 | true |
github_ChromeDevTools_chrome-devtools-mcp_13e64f58db8228efc615667072ea4cade5e20987 | 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/types.ts | types.ts | 715 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type {SerializedAXNode, Viewport, Target} from './third_party/index.js';
export interface ExtensionServiceWorker {
url: string;
target: Target;
id: string;
}
export interface TextSnapshotNode extends SerializedAXNode... | 73 | 715 | 35 | 0.98 | 2026-04-23T08:42:52.493644 | true |
github_axios_axios_30c8ea9e410efbc0219c8c774dd034a03c4ef7e8 | 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/defaults/index.js | index.js | 4,968 | 'use strict';
import utils from '../utils.js';
import AxiosError from '../core/AxiosError.js';
import transitionalDefaults from './transitional.js';
import toFormData from '../helpers/toFormData.js';
import toURLEncodedForm from '../helpers/toURLEncodedForm.js';
import platform from '../platform/index.js';
import form... | 494 | 4,968 | 178 | 0.98 | 2026-04-23T06:16:48.437089 | true |
github_ZikangZhou_HiVT_3f9c0912b8559c0766f960fb15fef1c725f34d83 | Python | ZikangZhou | HiVT | 724 | 127 | [CVPR 2022] HiVT: Hierarchical Vector Transformer for Multi-Agent Motion Prediction | [
"autonomous-driving",
"cvpr2022",
"motion-prediction",
"transformer"
] | Apache-2.0 | utils.py | utils.py | 6,229 | # Copyright (c) 2022, Zikang Zhou. 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 applicable la... | 496 | 6,229 | 144 | 0.98 | 2026-04-22T21:32:19.128225 | true |
github_myreader-io_myGPTReader_e1c6aedaf6d694d77539594498e32d2a925d1f34 | Python | myreader-io | myGPTReader | 4,421 | 444 | A community-driven way to read and chat with AI bots - powered by chatGPT. | [
"ai",
"chatgpt",
"crawler",
"daily-news",
"embedding",
"gpt-35-turbo",
"hot-news",
"openai",
"prompt",
"reader",
"scraper",
"slack-bot"
] | MIT | app/user.py | user.py | 2,859 | from datetime import datetime
import pytz
import json
import logging
import os
import requests
CF_ACCESS_CLIENT_ID = os.environ.get('CF_ACCESS_CLIENT_ID')
CF_ACCESS_CLIENT_SECRET = os.environ.get('CF_ACCESS_CLIENT_SECRET')
def update_message_token_usage(user_id, message_id, message_type, llm_token_usage=0, embedding_... | 221 | 2,859 | 87 | 0.98 | 2026-04-17T15:48:33.452703 | true |
github_h2oai_h2ogpt_f86bccdcb70a3f29a6c4a61a107e0f9668f0fb8c | Python | h2oai | h2ogpt | 11,981 | 1,318 | Private chat with local GPT with document, images, video, etc. 100% private, Apache 2.0. Supports oLLaMa, Mixtral, llama.cpp, and more. Demo: https://gpt.h2o.ai/ https://gpt-docs.h2o.ai/ | [
"ai",
"chatgpt",
"embeddings",
"fedramp",
"generative",
"gpt",
"gpt4all",
"llama2",
"llm",
"mixtral",
"pdf",
"private",
"privategpt",
"vectorstore"
] | Apache-2.0 | src/evaluate_params.py | evaluate_params.py | 4,600 | input_args_list = [
"model_state",
"my_db_state",
"selection_docs_state",
"requests_state",
"roles_state",
]
no_default_param_names = [
"instruction",
"iinput",
"context",
"instruction_nochat",
"iinput_nochat",
"h2ogpt_key",
"model_lock",
]
gen_hyper0 = [
"num_beams... | 238 | 4,600 | 154 | 0.98 | 2026-04-17T15:34:09.304022 | true |
github_NM512_dreamerv3-torch_f4de4758273d1f182acac2509fa11c6968f61ba1 | Python | NM512 | dreamerv3-torch | 840 | 213 | Implementation of Dreamer v3 in pytorch. | [
"deep-learning",
"pytorch",
"reinforcement-learning"
] | MIT | dreamer.py | dreamer.py | 13,254 | import argparse
import functools
import os
import pathlib
import sys
os.environ["MUJOCO_GL"] = "osmesa"
import numpy as np
import ruamel.yaml as yaml
sys.path.append(str(pathlib.Path(__file__).parent))
import exploration as expl
import models
import tools
import envs.wrappers as wrappers
from parallel import Parall... | 1,001 | 13,254 | 366 | 0.98 | 2026-04-22T20:27:44.025208 | true |
github_streamlit_streamlit_f216b695d2f44d1a342fa1b1c3b1dcda2c3d2a7c | Python | streamlit | streamlit | 44,313 | 4,212 | Streamlit — A faster way to build and share data apps. | [
"data-analysis",
"data-science",
"data-visualization",
"deep-learning",
"developer-tools",
"machine-learning",
"python",
"streamlit"
] | Apache-2.0 | lib/streamlit/config.py | config.py | 93,416 | # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
#
# 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... | 9,780 | 93,416 | 2,986 | 0.98 | 2026-04-22T13:32:13.842215 | true |
github_Canop_broot_53f00027152af6d98a4a4e538c9372576a5a4ddd | Rust | Canop | broot | 12,607 | 285 | A new way to see and navigate directory trees : https://dystroy.org/broot | [
"balanced-bfs-descent",
"command-line",
"command-line-tool",
"fuzzy-search",
"hacktoberfest",
"linux",
"rust",
"tree"
] | MIT | build.rs | build.rs | 2,053 | //! This file is executed during broot compilation.
//! It builds shell completion scripts and the man page
//!
//! Note: to see the eprintln messages, run cargo with
//! cargo -vv build --release
use {
clap::CommandFactory,
clap_complete::{Generator, Shell},
std::{env, ffi::OsStr},
};
include!("src/cl... | 230 | 2,053 | 63 | 0.98 | 2026-04-17T14:17:41.763192 | true |
github_ogham_exa_3b78c3a4c10f59845323780f644c61290396357f | Rust | ogham | exa | 24,420 | 657 | A modern replacement for ‘ls’. | [
"command-line",
"files",
"ls",
"rust"
] | MIT | src/options/version.rs | version.rs | 1,566 | //! Printing the version string.
//!
//! The code that works out which string to print is done in `build.rs`.
use std::fmt;
use crate::options::flags;
use crate::options::parser::MatchedFlags;
#[derive(PartialEq, Eq, Debug, Copy, Clone)]
pub struct VersionString;
// There were options here once, but there aren’t an... | 178 | 1,556 | 58 | 0.98 | 2026-04-17T13:34:33.567947 | true |
github_shelljs_shelljs_a8438c84e818b64ab5fd36eb02199199c89eff75 | JavaScript | shelljs | shelljs | 14,404 | 746 | :shell: Portable Unix shell commands for Node.js | [
"bash",
"javascript",
"node",
"nodejs",
"shell",
"shelljs",
"unix"
] | BSD-3-Clause | make.js | make.js | 1,322 | require('./global');
global.config.fatal = true;
global.target = {};
var args = process.argv.slice(2),
targetArgs,
dashesLoc = args.indexOf('--');
// split args, everything after -- if only for targets
if (dashesLoc > -1) {
targetArgs = args.slice(dashesLoc + 1, args.length);
args = args.slice(0, dashesLoc);... | 157 | 1,322 | 58 | 0.98 | 2026-04-23T06:56:00.555547 | true |
github_haraka_Haraka_972fe98bb11f3e11067310ab942dd3f800cab825 | JavaScript | haraka | Haraka | 5,562 | 694 | A fast, highly extensible, and event driven SMTP server | [
"dkim",
"haraka",
"javascript",
"mta",
"nodejs",
"smtp",
"spf"
] | MIT | transaction.js | transaction.js | 9,597 | 'use strict'
// An SMTP Transaction
const util = require('node:util')
const Notes = require('haraka-notes')
const utils = require('haraka-utils')
const message = require('haraka-email-message')
class Transaction {
constructor(uuid, cfg = {}) {
this.uuid = uuid || utils.uuid()
this.cfg = cfg
... | 953 | 9,597 | 268 | 0.98 | 2026-04-23T07:28:16.103132 | true |
github_directus_directus_50138c3a24fa85e9f1af7858b9a424eb76a8cd27 | TypeScript | directus | directus | 34,882 | 4,723 | The flexible backend for all your projects 🐰 Turn your DB into a headless CMS, admin panels, or apps with a custom UI, instant APIs, auth & more. | [
"api",
"app",
"cms",
"composable",
"data-visualization",
"database",
"directus",
"graphql",
"headless-cms",
"javascript",
"mariadb",
"mssql",
"mysql",
"no-code",
"node",
"postgresql",
"sql",
"sqlite",
"typescript",
"vue"
] | NOASSERTION | api/src/cache.ts | cache.ts | 6,901 | import { createRequire } from 'node:module';
import { useEnv } from '@directus/env';
import type { SchemaOverview } from '@directus/types';
import Keyv, { type KeyvOptions } from 'keyv';
import { useBus } from './bus/index.js';
import { useLogger } from './logger/index.js';
import { clearCache as clearPermissionCache }... | 787 | 6,901 | 221 | 0.98 | 2026-04-23T07:57:56.184753 | true |
github_nodejs_node_9c21864fa5699854acaef416cf77aa0b69b45346 | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/internal/wasm_web_api.js | wasm_web_api.js | 1,948 | 'use strict';
const {
PromiseResolve,
} = primordials;
const {
ERR_INVALID_ARG_TYPE,
ERR_WEBASSEMBLY_RESPONSE,
} = require('internal/errors').codes;
let undici;
function lazyUndici() {
return undici ??= require('internal/deps/undici/undici');
}
// This is essentially an implementation of a v8::WasmStreamingC... | 223 | 1,948 | 67 | 0.98 | 2026-04-23T06:16:06.843471 | true |
github_rustdesk_rustdesk_921f79612e6ed18b0b258f97cb1a42a5d7fa34e8 | 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/eo.rs | eo.rs | 34,163 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Stato"),
("Your Desktop", "Via aparato"),
("desk_tip", "Via aparato povas esti alirita kun tiu identigilo kaj pasvorto"),
("Password", "Pasvorto"),
("Ready", "P... | 3,255 | 34,059 | 748 | 0.98 | 2026-04-17T13:14:27.217606 | true |
github_pathwaycom_pathway_f21e314c97421f9be44a6f656050553e0abc3735 | 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/connectors/offset.rs | offset.rs | 6,855 | // Copyright © 2026 Pathway
use std::os::unix::ffi::OsStrExt;
use std::path::PathBuf;
use std::sync::Arc;
use arcstr::ArcStr;
use serde::{Deserialize, Serialize};
use xxhash_rust::xxh3::Xxh3 as Hasher;
use crate::connectors::data_lake::iceberg::IcebergSnapshotId;
use crate::engine::value::HashInto;
use crate::persis... | 525 | 6,852 | 200 | 0.98 | 2026-04-23T04:40:31.865764 | true |
github_calcom_cal.diy_3cd3e471053a46831f216eaee8f5dc2d838c7819 | TypeScript | calcom | cal.diy | 41,983 | 12,970 | Scheduling infrastructure for absolutely everyone. | [
"next-auth",
"nextjs",
"open-source",
"postgresql",
"prisma",
"t3-stack",
"tailwindcss",
"trpc",
"turborepo",
"typescript",
"zod"
] | MIT | checkly.config.ts | checkly.config.ts | 1,822 | import { defineConfig } from "checkly";
/**
* See https://www.checklyhq.com/docs/cli/project-structure/
*/
const config = defineConfig({
/* A human friendly name for your project */
projectName: "calcom-monorepo",
/** A logical ID that needs to be unique across your Checkly account,
* See https://www.checkl... | 228 | 1,822 | 45 | 0.98 | 2026-04-23T08:59:35.880250 | true |
github_1jehuang_mermaid-rs-renderer_ee0b9f2c067be8ff58f9ed7c98f640844aeac688 | Rust | 1jehuang | mermaid-rs-renderer | 1,155 | 41 | A fast native Rust Mermaid diagram renderer. No browser required. 500-1000x faster than mermaid-cli. | [
"cli",
"diagram",
"flowchart",
"mermaid",
"rust",
"svg"
] | MIT | src/layout/text.rs | text.rs | 7,826 | use crate::config::LayoutConfig;
use crate::text_metrics;
use crate::theme::Theme;
use super::TextBlock;
pub(super) fn measure_label(text: &str, theme: &Theme, config: &LayoutConfig) -> TextBlock {
// Mermaid's layout sizing appears to use a baseline font size (~16px)
// even when the configured theme font si... | 833 | 7,826 | 281 | 0.98 | 2026-04-17T19:35:13.567980 | true |
github_github_github-mcp-server_2bcd2d5259d090c47e7769f250e61b0e134e00bc | Go | github | github-mcp-server | 28,940 | 3,995 | GitHub's official MCP Server | [
"github",
"mcp",
"mcp-server"
] | MIT | pkg/github/tools_test.go | tools_test.go | 4,574 | package github
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestAddDefaultToolset(t *testing.T) {
tests := []struct {
name string
input []string
expected []string
}{
{
name: "no default keyword - return unchanged",
input: []stri... | 460 | 4,574 | 188 | 0.98 | 2026-04-17T08:22:51.301143 | true |
github_ajeetdsouza_zoxide_7b3a60fb132920ca97f37a20601d2714256bdc77 | Rust | ajeetdsouza | zoxide | 35,686 | 790 | A smarter cd command. Supports all major shells. | [
"autojump",
"bash",
"cli",
"command-line",
"command-line-tool",
"elvish",
"fasd",
"fish",
"fish-shell",
"fzf",
"hacktoberfest",
"jump",
"nushell",
"powershell",
"rust",
"shell",
"xonsh",
"xontrib",
"z",
"zsh"
] | MIT | build.rs | build.rs | 1,270 | #[path = "src/cmd/cmd.rs"]
mod cmd;
use std::{env, io};
use clap::CommandFactory as _;
use clap_complete::shells::{Bash, Elvish, Fish, PowerShell, Zsh};
use clap_complete_fig::Fig;
use clap_complete_nushell::Nushell;
use cmd::Cmd;
fn main() -> io::Result<()> {
// Since we are generating completions in the packag... | 108 | 1,270 | 37 | 0.98 | 2026-04-17T13:20:57.530802 | true |
github_rustdesk_rustdesk_73974a2e569bdf653506cc784d3b8eb65ff32414 | 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/en.rs | en.rs | 23,116 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("desk_tip", "Your desktop can be accessed with this ID and password."),
("connecting_status", "Connecting to the RustDesk network..."),
("not_ready_status", "Not ready. Please check your ... | 2,528 | 23,116 | 279 | 0.98 | 2026-04-17T13:14:26.745981 | true |
github_ultralytics_yolov5_853cbaae17f6f518425e027e1a7255be0c75f4d5 | Python | ultralytics | yolov5 | 57,229 | 17,472 | YOLOv5 🚀 in PyTorch > ONNX > CoreML > TFLite | [
"coreml",
"deep-learning",
"ios",
"machine-learning",
"ml",
"object-detection",
"onnx",
"pytorch",
"tflite",
"ultralytics",
"yolo",
"yolov3",
"yolov5"
] | AGPL-3.0 | export.py | export.py | 68,544 | # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
"""
Export a YOLOv5 PyTorch model to other formats. TensorFlow exports authored by https://github.com/zldrobit.
Format | `export.py --include` | Model
--- | --- | ---
PyTor... | 6,780 | 68,515 | 1,526 | 0.98 | 2026-04-17T06:41:50.794135 | true |
github_ChromeDevTools_chrome-devtools-mcp_24b7d42a002b884e7c6ef114943934d6f531c09d | 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/index.ts | index.ts | 9,663 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type fs from 'node:fs';
import type {parseArguments} from './bin/chrome-devtools-mcp-cli-options.js';
import type {Channel} from './browser.js';
import {ensureBrowserConnected, ensureBrowserLaunched} from './browser.js';
im... | 775 | 9,663 | 311 | 0.98 | 2026-04-23T08:42:38.058572 | true |
github_mozilla_sccache_7a0fdabc3ce12c545b35e37381daf9362e4932fe | 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/compiler/rust.rs | rust.rs | 136,430 | // Copyright 2016 Mozilla Foundation
//
// 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... | 11,267 | 136,430 | 3,985 | 0.98 | 2026-04-17T14:40:11.867954 | true |
github_ChatGPTNextWeb_NextChat_f186730f6da0393cb2e0b0e45d0b2240366a77ed | 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/stream.ts | stream.ts | 3,078 | // using tauri command to send request
// see src-tauri/src/stream.rs, and src-tauri/src/main.rs
// 1. invoke('stream_fetch', {url, method, headers, body}), get response with headers.
// 2. listen event: `stream-response` multi times to get body
type ResponseEvent = {
id: number;
payload: {
request_id: number;... | 330 | 3,078 | 109 | 0.98 | 2026-04-23T08:58:35.935287 | true |
github_pulumi_pulumi_395cbd026843936329edf77cae047f28b430a5a5 | Go | pulumi | pulumi | 25,057 | 1,351 | Pulumi - Infrastructure as Code in any programming language 🚀 | [
"aws",
"azure",
"cloud",
"cloud-computing",
"containers",
"csharp",
"dotnet",
"fsharp",
"gcp",
"go",
"golang",
"iac",
"infrastructure-as-code",
"javascript",
"kubernetes",
"python",
"serverless",
"typescript"
] | Apache-2.0 | pkg/engine/deployment.go | deployment.go | 16,278 | // Copyright 2016, Pulumi Corporation.
//
// 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 agre... | 1,802 | 16,278 | 480 | 0.98 | 2026-04-17T08:39:55.663680 | true |
github_rustdesk_rustdesk_2594b7cc3e88023702880e41f1042d27c47f1bae | 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/uk.rs | uk.rs | 62,987 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Статус"),
("Your Desktop", "Ваша стільниця"),
("desk_tip", "Доступ до вашої стільниці можливий з цим ID та паролем."),
("Password", "Пароль"),
("Ready", "Готово... | 4,323 | 46,162 | 748 | 0.98 | 2026-04-17T13:14:45.346747 | true |
github_gofiber_fiber_f89614e1d48aec71b8fbc7e8a97b0facda36d7a4 | Go | gofiber | fiber | 39,593 | 1,970 | ⚡️ Express inspired web framework written in Go | [
"express",
"expressjs",
"fast",
"fiber",
"flexible",
"framework",
"friendly",
"go",
"golang",
"hacktoberfest",
"hacktoberfest2020",
"nodejs",
"performance",
"rest-api",
"web"
] | MIT | ctx_interface.go | ctx_interface.go | 2,652 | // ⚡️ Fiber is an Express inspired web framework written in Go with ☕️
// 🤖 GitHub Repository: https://github.com/gofiber/fiber
// 📌 API Documentation: https://docs.gofiber.io
package fiber
import (
"github.com/valyala/fasthttp"
)
// CustomCtx extends Ctx with the additional methods required by Fiber's
// interna... | 354 | 2,638 | 96 | 0.98 | 2026-04-17T07:33:02.617059 | true |
github_pubkey_rxdb_15234c6c2bb895345e21b7cc6eaa2d852c4fac96 | 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/rx-collection-helper.ts | rx-collection-helper.ts | 9,424 | import type {
HashFunction,
InternalStoreDocType,
RxAttachmentWriteData,
RxCollection,
RxDatabase,
RxDocumentData,
RxJsonSchema,
RxStorage,
RxStorageInstance,
RxStorageInstanceCreationParams
} from './types/index.d.ts';
import {
createRevision,
flatClone,
now
} from '... | 896 | 9,420 | 269 | 0.98 | 2026-04-23T08:22:04.153326 | true |
github_moleculerjs_moleculer_6f0825b2e3b9010e9ae9fe1a9d35fd2a4fec73f1 | JavaScript | moleculerjs | moleculer | 6,372 | 599 | :rocket: Progressive microservices framework for Node.js | [
"distributed-systems",
"microservice",
"microservice-framework",
"microservices",
"moleculer",
"nodejs"
] | MIT | src/metrics/index.js | index.js | 643 | /*
* moleculer
* Copyright (c) 2020 MoleculerJS (https://github.com/moleculerjs/moleculer)
* MIT Licensed
*/
"use strict";
const METRIC = require("./constants");
const MetricRegistry = require("./registry");
const BaseMetric = require("./types/base");
const CounterMetric = require("./types/counter");
const Gauge... | 60 | 643 | 33 | 0.98 | 2026-04-23T07:19:07.213954 | true |
github_njbrake_agent-of-empires_172da224749c936e89bdea861c90365fd0e0083a | Rust | njbrake | agent-of-empires | 1,618 | 123 | Manage multiple Claude Code, OpenCode agents from either TUI or Web for easy access on mobile. Also supports Mistral Vibe, Codex CLI, Gemini CLI, Pi.dev, Copilot CLI, Factory Droid Coding. Uses tmux and git worktrees. | [
"ai-coding",
"claude",
"claude-code",
"cli",
"codex",
"cursor",
"factory-droid-cli",
"gemini",
"gemini-cli",
"github-copilot-cli",
"llm",
"mistral-vibe",
"opencode",
"orchestrator",
"pi",
"rust",
"terminal",
"tmux",
"vibe",
"vibe-coding"
] | MIT | src/sound.rs | sound.rs | 22,693 | //! Sound effects for agent state transitions
//!
//! Plays AoE II-style sounds when agent sessions change state.
//! Users place .wav/.ogg files in the sounds directory:
//! - Linux: ~/.config/agent-of-empires/sounds/
//! - macOS: ~/.agent-of-empires/sounds/
//!
//! Expected filenames (any .wav/.ogg file works):
/... | 1,994 | 22,693 | 718 | 0.98 | 2026-04-17T19:28:26.623519 | true |
github_iced-rs_iced_965474869f30e6742b12a196f4d1fd74f3b4959e | Rust | iced-rs | iced | 30,227 | 1,560 | A cross-platform GUI library for Rust, inspired by Elm | [
"elm",
"graphics",
"gui",
"interface",
"renderer-agnostic",
"rust",
"toolkit",
"user-interface",
"widget",
"widgets"
] | MIT | src/application/timed.rs | timed.rs | 5,222 | //! An [`Application`] that receives an [`Instant`] in update logic.
use crate::application::{Application, BootFn, ViewFn};
use crate::program;
use crate::theme;
use crate::time::Instant;
use crate::window;
use crate::{Element, Program, Settings, Subscription, Task};
use iced_debug as debug;
/// Creates an [`Applicat... | 509 | 5,222 | 165 | 0.98 | 2026-04-17T13:27:07.624382 | true |
github_kopia_kopia_4857982f2c800ebbff8feb0c4078df2fdc7a7156 | JavaScript | 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 | app/public/notifications.js | notifications.js | 845 | import { ipcMain } from "electron";
import { configDir } from "./config.js";
const path = await import("path");
const fs = await import("fs");
export const LevelDisabled = 0;
export const LevelWarningsAndErrors = 1;
export const LevelAll = 2;
let level = -1;
export function getNotificationLevel() {
if (level === ... | 101 | 845 | 39 | 0.98 | 2026-04-17T11:30:12.208595 | true |
github_huggingface_transformers_1a5924c723ab52c85a26d821b37c6c2408c47b48 | 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/training_args.py | training_args.py | 142,678 | # Copyright 2020 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicabl... | 14,603 | 142,567 | 2,869 | 0.98 | 2026-04-22T13:18:13.493503 | true |
github_v2fly_v2ray-core_48de60979816b5598bb40e133b15145611742f45 | Go | v2fly | v2ray-core | 33,679 | 5,020 | A platform for building proxies to bypass network restrictions. | [
"anticensorship",
"hacktoberfest",
"network",
"proxy",
"shadowsocks",
"socks5",
"trojan",
"tunnel",
"v2fly",
"v2ray",
"vless",
"vmess",
"vpn"
] | MIT | app/reverse/config.go | config.go | 240 | package reverse
import (
"crypto/rand"
"io"
"github.com/v2fly/v2ray-core/v5/common/dice"
)
func (c *Control) FillInRandom() {
randomLength := dice.Roll(64)
c.Random = make([]byte, randomLength)
io.ReadFull(rand.Reader, c.Random)
}
| 23 | 240 | 15 | 0.98 | 2026-04-17T07:41:59.742874 | true |
github_mozilla_sccache_35f65a8f7963907c6ca407ff396b8683b6311c2c | 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/memcached.rs | memcached.rs | 1,563 | // Copyright 2016 Mozilla Foundation
// Copyright 2017 David Michael Barr <[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
//
// http://www.apache.org/licenses/LICEN... | 175 | 1,563 | 54 | 0.98 | 2026-04-17T14:39:57.947464 | true |
github_yuanming-hu_exposure_fb6dcaf6958a8b697783589b68fe2b462ad39425 | Python | yuanming-hu | exposure | 780 | 156 | Learning infinite-resolution image processing with GAN and RL from unpaired image datasets, using a differentiable photo editing model. | [
"computational-photography",
"deep-learning",
"gan",
"generative-adversarial-network",
"image-processing",
"reinforcement-learning"
] | MIT | agent.py | agent.py | 9,191 | import tensorflow as tf
import tensorflow.contrib.layers as ly
from util import lrelu
import cv2
import math
from pdf_sample_layer import pdf_sample
from util import enrich_image_input
from util import STATE_DROPOUT_BEGIN, STATE_REWARD_DIM, STATE_STEP_DIM, STATE_STOPPED_DIM
def feature_extractor(net, output_dim, cfg)... | 903 | 9,191 | 261 | 0.98 | 2026-04-22T20:34:32.283276 | true |
github_BrainJS_brain.js_968709466d7fab0549118c00ea138bf857c00a24 | JavaScript | 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 | rollup.config.js | rollup.config.js | 971 | import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import * as pkg from './package.json';
const extensions = ['.js', '.json', '.node', '.ts'];
export default {
input: './src/in... | 105 | 971 | 44 | 0.98 | 2026-04-17T17:55:45.175232 | true |
github_volta-cli_volta_fbb6ab1c84107a32bbe5081080918e903e8fd0cd | Rust | volta-cli | volta | 12,919 | 331 | Volta: JS Toolchains as Code. ⚡ | [
"node",
"nodejs",
"package-manager"
] | NOASSERTION | src/main.rs | main.rs | 1,780 | #[macro_use]
mod command;
mod cli;
use clap::Parser;
use volta_core::error::report_error;
use volta_core::log::{LogContext, LogVerbosity, Logger};
use volta_core::session::{ActivityKind, Session};
mod common;
use common::{ensure_layout, Error};
/// The entry point for the `volta` CLI.
pub fn main() {
let volta ... | 140 | 1,780 | 56 | 0.98 | 2026-04-17T14:16:22.768957 | true |
github_graphql_graphql-js_0eb4ab1d6e7afc8eaa0cfb3a85649c2e6fea28fc | TypeScript | graphql | graphql-js | 20,311 | 2,046 | A reference implementation of GraphQL for JavaScript | [
"graphql",
"graphql-js"
] | MIT | src/jsutils/isAsyncIterable.ts | isAsyncIterable.ts | 325 | /**
* Returns true if the provided object implements the AsyncIterator protocol via
* implementing a `Symbol.asyncIterator` method.
*/
export function isAsyncIterable(
maybeAsyncIterable: any,
): maybeAsyncIterable is AsyncIterable<unknown> {
return typeof maybeAsyncIterable?.[Symbol.asyncIterator] === 'function... | 35 | 325 | 10 | 0.98 | 2026-04-23T08:22:56.675438 | true |
github_h2non_toxy_509118b7136bd1a41c522ec82ec7f511a781f987 | JavaScript | h2non | toxy | 2,724 | 80 | Hackable HTTP proxy for resiliency testing and simulated network conditions | [
"failover",
"failure",
"http-proxy",
"network",
"proxy",
"reactive",
"resiliency",
"retry",
"simulation",
"testing"
] | MIT | lib/rules/time-threshold.js | time-threshold.js | 611 | module.exports = function timeThreshold (opts) {
if (typeof opts === 'number') {
opts = { duration: opts }
}
var time = Date.now()
const duration = +opts.duration || 1000
const threshold = Math.max(+opts.threshold || 1000 * 10, duration)
return function timeThreshold (req, res, next) {
const acc =... | 92 | 611 | 28 | 0.98 | 2026-04-23T12:24:45.042514 | true |
github_rust-lang_rustlings_e0855a0e937a7d39bd585d18994b7f4d28541b69 | 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/dev/update.rs | update.rs | 1,282 | use anyhow::{Context, Result};
use std::fs;
use crate::{
cargo_toml::updated_cargo_toml,
info_file::{ExerciseInfo, InfoFile},
};
// Update the `Cargo.toml` file.
fn update_cargo_toml(
exercise_infos: &[ExerciseInfo],
cargo_toml_path: &str,
exercise_path_prefix: &[u8],
) -> Result<()> {
let cur... | 108 | 1,282 | 45 | 0.98 | 2026-04-17T13:16:11.416715 | true |
github_ccfos_nightingale_85afecf60738e4df8066dbda58957033887ffc66 | Go | ccfos | nightingale | 12,967 | 1,693 | Nightingale is to monitoring and alerting what Grafana is to visualization. | [
"alerting",
"ccf",
"metrics",
"monitoring",
"nightingale",
"observability",
"open-falcon",
"time-series",
"tsdb"
] | Apache-2.0 | pkg/slice/contains.go | contains.go | 251 | package slice
func HaveIntersection[T comparable](slice1, slice2 []T) bool {
elemMap := make(map[T]bool)
for _, val := range slice1 {
elemMap[val] = true
}
for _, val := range slice2 {
if elemMap[val] {
return true
}
}
return false
}
| 40 | 251 | 16 | 0.98 | 2026-04-17T11:31:43.492075 | true |
github_philz1337x_clarity-upscaler_c0e678ea70290f7cb2a9bd0dc8527d0f590229e6 | JavaScript | philz1337x | clarity-upscaler | 5,034 | 525 | Clarity AI | AI Image Upscaler & Enhancer - free and open-source Magnific Alternative | [
"ai",
"ai-art",
"image-upscale",
"image-upscaler",
"image-upscaling",
"image2image",
"img2img",
"stable-diffusion",
"stable-diffusion-webui",
"upscale",
"upscaler",
"upscalerimage"
] | AGPL-3.0 | script.js | script.js | 5,379 | function gradioApp() {
const elems = document.getElementsByTagName('gradio-app');
const elem = elems.length == 0 ? document : elems[0];
if (elem !== document) {
elem.getElementById = function(id) {
return document.getElementById(id);
};
}
return elem.shadowRoot ? elem.sh... | 579 | 5,379 | 177 | 0.98 | 2026-04-17T15:46:28.456809 | true |
github_humphd_have-fun-with-machine-learning_5660c9127ad664f487a5095b6ef0eaa2c6953c3c | Python | humphd | have-fun-with-machine-learning | 5,118 | 535 | An absolute beginner's guide to Machine Learning and Image Classification with Neural Networks | [
"caffe",
"image-classification",
"machine-learning",
"neural-network",
"tutorial"
] | NOASSERTION | src/classify-samples.py | classify-samples.py | 5,020 | # python classify-samples.py -c ~/repos/caffe/ -m ../data/googlenet-dolphins-and-seahorses
import numpy as np
import os
import sys
import argparse
class ImageClassifier:
def __init__(self, model_dir):
self.model_dir = model_dir
deploy_file = os.path.join(model_dir, 'deploy.prototxt')
weigh... | 482 | 5,020 | 114 | 0.98 | 2026-04-18T00:07:28.280349 | true |
github_henrygd_beszel_dccb667fd5ccef1b96af40c150e7b0a3e5ac7d84 | Go | henrygd | beszel | 20,919 | 717 | Lightweight server monitoring with historical data, docker stats, and alerts. | [
"homelab",
"monitoring",
"self-hosted"
] | MIT | internal/alerts/alerts_api_test.go | alerts_api_test.go | 16,275 | //go:build testing
package alerts_test
import (
"bytes"
"encoding/json"
"io"
"net/http"
"strings"
"testing"
"github.com/henrygd/beszel/internal/alerts"
beszelTests "github.com/henrygd/beszel/internal/tests"
pbTests "github.com/pocketbase/pocketbase/tests"
"github.com/pocketbase/dbx"
"github.com/pocketbas... | 1,404 | 16,275 | 502 | 0.98 | 2026-04-17T09:22:33.324113 | true |
github_jsx-eslint_eslint-plugin-react_046ff795829e13400f72011cc751a5227d1757cf | 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/jsx-curly-newline.js | jsx-curly-newline.js | 6,128 | /**
* @fileoverview enforce consistent line breaks inside jsx curly
*/
'use strict';
const docsUrl = require('../util/docsUrl');
const eslintUtil = require('../util/eslint');
const report = require('../util/report');
const getSourceCode = eslintUtil.getSourceCode;
const getText = eslintUtil.getText;
// ----------... | 561 | 6,128 | 188 | 0.98 | 2026-04-23T05:48:59.107455 | true |
github_authelia_authelia_5ecf3de065dce12758263ec3eaeed91b639a1ceb | Go | authelia | authelia | 27,525 | 1,374 | The Single Sign-On Multi-Factor portal for web apps, now OpenID Certified™ | [
"2fa",
"authentication",
"docker",
"golang",
"kubernetes",
"ldap",
"mfa",
"multifactor",
"oauth2",
"openid-connect",
"passkeys",
"push-notifications",
"security",
"sso",
"sso-authentication",
"totp",
"two-factor",
"two-factor-authentication",
"webauthn",
"yubikey"
] | Apache-2.0 | cmd/authelia-gen/cmd_adr.go | cmd_adr.go | 3,656 | package main
import (
"encoding/json"
"fmt"
"os"
"os/exec"
"path/filepath"
"time"
"github.com/spf13/cobra"
)
func newADRCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "adr",
Short: "Generate an Architecture Decision Record",
DisableAutoGenTag: true,
}
cmd.AddCommand(newADRAddCmd())
return c... | 437 | 3,656 | 158 | 0.98 | 2026-04-17T08:30:04.002682 | true |
github_Wilfred_bfc_6873551b200c8619688dfc264acd992699d16fdf | Rust | Wilfred | bfc | 541 | 34 | An industrial-grade brainfuck compiler | [
"brainfuck",
"compiler",
"llvm",
"rust"
] | GPL-2.0 | src/llvm_tests.rs | llvm_tests.rs | 25,088 | use std::collections::HashMap;
use std::ffi::CString;
use std::num::Wrapping;
use crate::bfir::AstNode::*;
use crate::bfir::Position;
use crate::execution::ExecutionState;
use crate::llvm::compile_to_module;
use pretty_assertions::assert_eq;
/// Assert that two CString values are equal. If they're not, print
/// the... | 2,820 | 25,088 | 854 | 0.98 | 2026-04-17T17:10:31.429612 | true |
github_parse-community_parse-server_5ecdd78de57720e5fd6f5f8603dff3a7f155e740 | JavaScript | parse-community | parse-server | 21,382 | 4,819 | Parse Server for Node.js / Express | [
"baas",
"backend",
"file-storage",
"graphql",
"graphql-api",
"graphql-relay",
"graphql-server",
"hacktoberfest",
"mbaas",
"mongodb",
"nodejs",
"notifications",
"object-storage",
"parse-platform",
"parse-server",
"postgres",
"relay",
"rest-api"
] | Apache-2.0 | src/GraphQL/ParseGraphQLSchema.js | ParseGraphQLSchema.js | 17,071 | import Parse from 'parse/node';
import { GraphQLSchema, GraphQLObjectType, DocumentNode, GraphQLNamedType } from 'graphql';
import { mergeSchemas } from '@graphql-tools/schema';
import { mergeTypeDefs } from '@graphql-tools/merge';
import { isDeepStrictEqual } from 'util';
import requiredParameter from '../requiredPara... | 1,460 | 17,071 | 501 | 0.98 | 2026-04-23T06:47:11.155064 | true |
github_rustdesk_rustdesk_f12ecf371a123e708f16bc2a582e2b2a92d7bed9 | 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/eu.rs | eu.rs | 44,442 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Egoera"),
("Your Desktop", "Zure mahaigaina"),
("desk_tip", "Mahaigainera zure ID eta pasahitzarekin sartu zaitezke"),
("Password", "Pasahitza"),
("Ready", "Pre... | 4,061 | 44,442 | 748 | 0.98 | 2026-04-17T13:14:28.961953 | true |
github_MervinPraison_PraisonAI_e46d600764b18c75411ed8cdc51ce301069e6ab5 | Python | MervinPraison | PraisonAI | 6,951 | 1,061 | PraisonAI 🦞 — Hire a 24/7 AI Workforce. Stop writing boilerplate and start shipping autonomous agents that research, plan, code, and execute tasks. Deployed in 5 lines of code with built-in memory, RAG, and support for 100+ LLMs. | [
"agents",
"ai",
"ai-agent-framework",
"ai-agent-sdk",
"ai-agents",
"ai-agents-framework",
"ai-agents-sdk",
"ai-framwork",
"aiagent",
"aiagentframework",
"aiagents",
"aiagentsframework",
"claw",
"framework",
"multi-agent",
"multi-agent-system",
"multi-agent-systems",
"multi-agents",... | MIT | src/praisonai-agents/guardrail_agent_example.py | guardrail_agent_example.py | 294 | from praisonaiagents import Agent
def validate_content(data):
if len(str(data)) < 50:
return False, "Content too short"
return True, data
agent = Agent(
instructions="You are a writer",
guardrails=validate_content
)
agent.start("Write a welcome message with 5 words") | 34 | 294 | 13 | 0.98 | 2026-04-17T15:41:13.390796 | true |
github_batrachianai_toad_2500094ff7b50aca45dab178d013b1117ea9a87f | Python | batrachianai | toad | 2,920 | 138 | A unified interface for AI in your terminal. | [
"agents-ui",
"ai",
"claude",
"claude-code",
"codex-cli",
"commercial-license",
"copilot",
"textual",
"tui"
] | AGPL-3.0 | src/toad/agent.py | agent.py | 1,494 | from abc import ABC, abstractmethod
from dataclasses import dataclass
from pathlib import Path
from textual.content import Content
from textual.message import Message
class AgentReady(Message):
"""Agent is ready."""
@dataclass
class AgentFail(Message):
"""Agent failed to start."""
message: str
det... | 170 | 1,494 | 71 | 0.98 | 2026-04-22T17:42:23.850832 | true |
github_databricks_click_5f80bc2126a4c77bad7f79dc1622ee10246c65b0 | Rust | databricks | click | 1,508 | 92 | The "Command Line Interactive Controller for Kubernetes" | [
"cli",
"kubectl",
"kubernetes",
"rust"
] | Apache-2.0 | src/command/events.rs | events.rs | 5,647 | // Copyright 2021 Databricks, Inc.
// 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 writi... | 486 | 5,647 | 168 | 0.98 | 2026-04-17T19:29:25.581738 | true |
github_Nozbe_WatermelonDB_eb764e939670512943f336f16adf2bb8a4d11278 | 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/useDatabase.test.js | useDatabase.test.js | 1,239 | import React from 'react'
import * as TestRenderer from 'react-test-renderer'
import { renderHook } from '@testing-library/react-hooks'
import useDatabase from './useDatabase'
import DatabaseProvider from './DatabaseProvider'
import Database from '../Database'
import { mockDatabase } from '../__tests__/testModels'
// ... | 153 | 1,239 | 36 | 0.98 | 2026-04-23T05:40:02.054525 | true |
github_h2oai_h2ogpt_eb1c3d76339a2c8722b41b7c07735da8aeeb5c47 | Python | h2oai | h2ogpt | 11,981 | 1,318 | Private chat with local GPT with document, images, video, etc. 100% private, Apache 2.0. Supports oLLaMa, Mixtral, llama.cpp, and more. Demo: https://gpt.h2o.ai/ https://gpt-docs.h2o.ai/ | [
"ai",
"chatgpt",
"embeddings",
"fedramp",
"generative",
"gpt",
"gpt4all",
"llama2",
"llm",
"mixtral",
"pdf",
"private",
"privategpt",
"vectorstore"
] | Apache-2.0 | src/function_server.py | function_server.py | 6,578 | import asyncio
import os
import pickle
import sys
import json
import inspect
import threading
import traceback
import uuid
from traceback import print_exception
from pydantic import BaseModel
from fastapi import FastAPI, Header, HTTPException, BackgroundTasks
from fastapi.middleware.cors import CORSMiddleware
from fa... | 585 | 6,578 | 207 | 0.98 | 2026-04-17T15:34:10.879647 | true |
github_rancher_rancher_ed46726de608a23968bcb7ac1da94a72a91f58c2 | Go | rancher | rancher | 25,503 | 3,179 | Complete container management platform | [
"cattle",
"containers",
"docker",
"kubernetes",
"orchestration",
"rancher"
] | Apache-2.0 | pkg/image/extensions.go | extensions.go | 2,602 | package image
import (
"encoding/json"
"fmt"
"net/http"
"strings"
"github.com/Masterminds/semver/v3"
)
type ExtensionsConfig struct {
Config ExportConfig
}
type Release struct {
TagName string `json:"tag_name"`
}
type GithubEndpoint struct {
URL string
}
var ExtensionEndpoints = []GithubEndpoint{
{URL: "... | 324 | 2,602 | 108 | 0.98 | 2026-04-17T08:38:25.155826 | true |
github_paperless-ngx_paperless-ngx_88e1a31782628ff82d6d6a930fbcd06d00efce5a | Python | paperless-ngx | paperless-ngx | 38,143 | 2,431 | 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/urls.py | urls.py | 16,782 | from allauth.account import views as allauth_account_views
from allauth.mfa.base import views as allauth_mfa_views
from allauth.socialaccount import views as allauth_social_account_views
from allauth.urls import build_provider_urlpatterns
from django.conf import settings
from django.conf.urls import include
from django... | 752 | 16,782 | 416 | 0.98 | 2026-04-17T06:44:00.177299 | true |
github_prometheus_prometheus_ce317e5e414cf0bd765f7e452dce1fd5f70505a7 | Go | prometheus | prometheus | 63,621 | 10,333 | The Prometheus monitoring system and time series database. | [
"alerting",
"graphing",
"hacktoberfest",
"metrics",
"monitoring",
"prometheus",
"time-series"
] | Apache-2.0 | cmd/promtool/unittest_test.go | unittest_test.go | 6,742 | // Copyright The Prometheus 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 w... | 736 | 6,742 | 286 | 0.98 | 2026-04-17T07:14:15.151792 | true |
github_fosslife_devtools-x_324ddb2719bb52576bedf1c6e7ca70e783a0a528 | TypeScript | fosslife | devtools-x | 1,523 | 73 | Collection of offline first developer utilities available as non-electron desktop application. all in one place, cross-platform, 10MB app! | [
"developer-tools",
"devtools",
"devtoys",
"devutils",
"hacktoberfest",
"hacktoberfest-accepted",
"linux",
"macos",
"tauri",
"windows"
] | MIT | vite.config.ts | vite.config.ts | 1,334 | // import react from "@vitejs/plugin-react";
import react from "@vitejs/plugin-react-swc";
import { visualizer } from "rollup-plugin-visualizer";
import tsconfigPaths from "vite-tsconfig-paths";
import { defineConfig } from "vite";
import copyMonaco from "./vite/copyAssets";
import alias from "@rollup/plugin-alias";
... | 115 | 1,334 | 46 | 0.98 | 2026-04-18T00:29:13.584338 | true |
github_samtay_so_df8b3b60957641e93595e9f2cc362b81c98f7683 | Rust | samtay | so | 1,421 | 42 | A terminal interface for Stack Overflow | [
"cli",
"cursive",
"rust",
"stackexchange",
"stackoverflow",
"terminal",
"tui"
] | MIT | src/stackexchange/api.rs | api.rs | 7,056 | use rayon::prelude::*;
use reqwest::header;
use reqwest::Client;
use reqwest::Url;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use crate::error::Result;
use crate::tui::markdown;
/// StackExchange API v2.2 URL
const SE_API_URL: &str = "https://api.stackexchange.com";
const SE_API_VERSION: &str... | 638 | 7,056 | 221 | 0.98 | 2026-04-17T19:30:48.053377 | true |
github_opencontainers_runc_7933630635b1cd603cb986b1b78db9c073f534f0 | Go | opencontainers | runc | 13,182 | 2,280 | CLI tool for spawning and running containers according to the OCI specification | [
"containers",
"docker",
"oci"
] | Apache-2.0 | init.go | init.go | 347 | package main
import (
"os"
"github.com/opencontainers/runc/libcontainer"
_ "github.com/opencontainers/runc/libcontainer/nsenter"
)
func init() {
if len(os.Args) > 1 && os.Args[1] == "init" {
// This is the golang entry point for runc init, executed
// before main() but after libcontainer/nsenter's nsexec().
... | 42 | 347 | 17 | 0.98 | 2026-04-17T11:25:56.491229 | true |
github_ChromeDevTools_chrome-devtools-mcp_7a4abe9dc81386ad767f9eb6bce7f7550f44e7c2 | 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/DevtoolsUtils.ts | DevtoolsUtils.ts | 13,691 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {PuppeteerDevToolsConnection} from './DevToolsConnectionAdapter.js';
import {Mutex} from './Mutex.js';
import {DevTools} from './third_party/index.js';
import type {
Browser,
ConsoleMessage,
Page,
Protocol,
Target ... | 1,251 | 13,691 | 449 | 0.98 | 2026-04-18T00:20:53.497463 | true |
github_streamlit_streamlit_45ed141bc9d254971bdb7145d3552bc15fdc2692 | Python | streamlit | streamlit | 44,313 | 4,212 | Streamlit — A faster way to build and share data apps. | [
"data-analysis",
"data-science",
"data-visualization",
"deep-learning",
"developer-tools",
"machine-learning",
"python",
"streamlit"
] | Apache-2.0 | lib/streamlit/column_config.py | column_config.py | 1,569 | # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
#
# 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... | 165 | 1,569 | 65 | 0.98 | 2026-04-22T13:32:12.697138 | true |
github_cortexproject_cortex_46b444b09474f1d20f182faad2041bb91b177f3b | Go | cortexproject | cortex | 5,783 | 852 | A horizontally scalable, highly available, multi-tenant, long term Prometheus. | [
"cncf",
"hacktoberfest",
"kubernetes",
"monitoring",
"prometheus"
] | Apache-2.0 | pkg/compactor/block_visit_marker_test.go | block_visit_marker_test.go | 2,154 | package compactor
import (
"context"
"testing"
"time"
"github.com/go-kit/log"
"github.com/oklog/ulid/v2"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/prometheus/tsdb"
"github.com/stretchr/testify/require"
"github.com/thanos-io/objstore"
"github.com/thanos-io/thanos/pkg/block/metad... | 185 | 2,154 | 95 | 0.98 | 2026-04-17T21:21:24.749147 | true |
github_harvester_harvester_7aa23d6692dcc52aaaa6bcb340bef3cc1df47967 | Go | harvester | harvester | 4,992 | 425 | Open source hyperconverged infrastructure (HCI) software | [
"harvester",
"kubernetes",
"virtualization"
] | Apache-2.0 | pkg/util/proxy_test.go | proxy_test.go | 1,246 | package util
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_AddBuiltInNoProxy(t *testing.T) {
var testCases = []struct {
name string
input string
output string
}{
{
name: "single item",
input: "192.168.1.0/24",
output: "192.168.1.0/24,localhost,127.0.0.1,0.0.0.0,10.0.0... | 81 | 1,246 | 42 | 0.98 | 2026-04-17T21:41:17.160401 | true |
github_HolmesGPT_holmesgpt_4bcbb074f0ab2691bfc0d1d55ce4085630f2fb33 | Python | HolmesGPT | holmesgpt | 2,260 | 316 | SRE Agent - CNCF Sandbox Project | [
"aiops",
"chatbot",
"chatops",
"devops",
"devops-tools",
"incident",
"incident-management",
"incident-response",
"jira",
"kubernetes",
"llm",
"llm-agent",
"llm-framework",
"llms",
"monitoring",
"observability",
"prometheus",
"site-reliability-engineering",
"slack",
"sre"
] | Apache-2.0 | conftest.py | conftest.py | 12,312 | import json
import logging
import os
import re
import urllib.parse
import urllib.request
from unittest.mock import MagicMock, patch
import pytest
import responses as responses_
from holmes.core.tracing import get_active_branch_name, readable_timestamp
from tests.llm.conftest import show_llm_summary_report
from tests.... | 892 | 12,312 | 296 | 0.98 | 2026-04-22T15:43:30.245111 | true |
github_usememos_memos_0222748d2144660342c040904ea74177ee2e37c4 | Go | usememos | memos | 58,942 | 4,277 | Open-source, self-hosted note-taking tool built for quick capture. Markdown-native, lightweight, and fully yours. | [
"docker",
"foss",
"go",
"markdown",
"memo",
"microblog",
"note-taking",
"notecard",
"own-your-data",
"react",
"self-hosted",
"social-network",
"sqlite"
] | MIT | internal/version/version_test.go | version_test.go | 1,920 | package version
import (
"slices"
"testing"
"github.com/stretchr/testify/assert"
"golang.org/x/mod/semver"
)
func TestIsVersionGreaterOrEqualThan(t *testing.T) {
tests := []struct {
version string
target string
want bool
}{
{
version: "0.9.1",
target: "0.9.1",
want: true,
},
{
v... | 223 | 1,920 | 107 | 0.98 | 2026-04-17T07:16:51.565615 | true |
github_hyperium_hyper_77907e671662795ddf628644917e8fe8f128fa7a | Rust | hyperium | hyper | 16,010 | 1,728 | An HTTP library for Rust | [
"http",
"hyper",
"rust"
] | MIT | src/service/http.rs | http.rs | 2,076 | use std::error::Error as StdError;
use std::future::Future;
use crate::body::Body;
use crate::service::service::Service;
use crate::{Request, Response};
/// An asynchronous function from [`Request`] to [`Response`].
///
/// This is a *sealed* trait, meaning that it can not be implemented directly. Rather, it is an
//... | 283 | 2,076 | 66 | 0.98 | 2026-04-17T13:51:19.224622 | true |
github_jdh-algo_JoyVASA_bc6460cd39829584d5bd678cad8af24c4b5d913e | 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/live_portrait_wmg_pipeline.py | live_portrait_wmg_pipeline.py | 10,180 | # coding: utf-8
"""
Pipeline of LivePortrait with Audio-Driven Motion Generation (Human)
"""
import torch
torch.backends.cudnn.benchmark = True # disable CUDNN_BACKEND_EXECUTION_PLAN_DESCRIPTOR warning
import cv2; cv2.setNumThreads(0); cv2.ocl.setUseOpenCL(False)
import os
import os.path as osp
from rich.progress ... | 811 | 10,169 | 193 | 0.98 | 2026-04-22T22:00:22.492772 | true |
github_open-telemetry_opentelemetry-js_7d399e6cfb7830544273cf2bc7e0966e83907333 | TypeScript | open-telemetry | opentelemetry-js | 3,359 | 1,027 | OpenTelemetry JavaScript Client | [
"api",
"distributed-tracing",
"metrics",
"monitoring",
"telemetry"
] | Apache-2.0 | api/test/index-webpack.worker.ts | index-webpack.worker.ts | 192 | /*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
{
const testsContext = require.context('./common', true);
testsContext.keys().forEach(testsContext);
}
| 18 | 192 | 9 | 0.98 | 2026-04-17T18:04:30.918385 | true |
github_ChatGPTNextWeb_NextChat_d605b578f12e3f666e10bdedebc4f1ffaa026919 | 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/jp.ts | jp.ts | 21,672 | 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 jp: PartialLocaleType = {
WIP: "この機能は開発中です",
Error: {
Unauthoriz... | 1,178 | 14,450 | 602 | 0.98 | 2026-04-23T08:58:15.683090 | true |
github_apache_casbin_08aa5fb7bc90cef98566463d61a54080122fb155 | Go | apache | casbin | 20,008 | 1,726 | Apache Casbin: an authorization library that supports access control models like ACL, RBAC, ABAC. | [
"abac",
"access-control",
"acl",
"apache",
"auth",
"authentication",
"authn",
"authorization",
"authz",
"cas",
"casbin",
"iam",
"oauth",
"oidc",
"permission",
"rbac",
"saml",
"sso"
] | Apache-2.0 | logger_test.go | logger_test.go | 7,265 | // Copyright 2026 The casbin Authors. 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 a... | 919 | 7,265 | 249 | 0.98 | 2026-04-17T09:31:17.376767 | true |
github_ParisNeo_lollms-webui_594aee648c4212145290da64a3c23c94a7b030d9 | Python | ParisNeo | lollms-webui | 4,783 | 582 | Lord of Large Language and Multi modal Systems Web User Interface | [
"ai",
"llm",
"text-generation"
] | Apache-2.0 | app.py | app.py | 17,956 | """
File: lollms_web_ui.py
Author: ParisNeo
Description: Singleton class for the LoLLMS web UI.
This file is the entry point to the webui.
"""
import os
import sys
# verify pipmaster
import verify_pipmaster
import pipmaster as pm
os.environ["KMP_DUPLICATE_LIB_OK"] = "TRUE"
pm.ensure_packages({
"ascii_colors":">=... | 1,283 | 17,956 | 475 | 0.98 | 2026-04-17T15:47:16.022607 | true |
github_ultraworkers_claw-code_a716e833d3f72b5263b8215ed46b7c1abeaf8504 | 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/bootstrap_graph.py | bootstrap_graph.py | 803 | from __future__ import annotations
from dataclasses import dataclass
@dataclass(frozen=True)
class BootstrapGraph:
stages: tuple[str, ...]
def as_markdown(self) -> str:
lines = ['# Bootstrap Graph', '']
lines.extend(f'- {stage}' for stage in self.stages)
return '\n'.join(lines)
def... | 82 | 803 | 28 | 0.98 | 2026-04-17T13:13:05.559332 | true |
github_oiov_wr.do_eb503bcd95b1d6a9a502d761b0257a296d4ede47 | TypeScript | oiov | wr.do | 2,231 | 357 | 一站式域名服务平台,集成短链生成、无限域名邮箱、文件存储和子域名管理,带有管理员面板,支持自部署 | [
"all-in-one",
"allinone",
"docker",
"docker-compose",
"email-receiver",
"email-sender",
"nextjs",
"short-link",
"subdomain-managment"
] | MIT | lib/cloudflare.ts | cloudflare.ts | 5,592 | export const CLOUDFLARE_API_URL = "https://api.cloudflare.com/client/v4";
export interface CreateDNSRecord {
id: string;
zone_name: string;
type: string;
name: string;
content: string;
proxied?: boolean;
ttl?: number;
tags?: string[];
comment?: string;
}
export interface UpdateDNSRecor... | 559 | 5,592 | 250 | 0.98 | 2026-04-23T10:54:17.745270 | true |
github_kubevela_kubevela_a7e077b12264effa4dd22faad0c10a28e8c7a16f | Go | kubevela | kubevela | 7,735 | 985 | The Modern Application Platform. | [
"application",
"cloudnative",
"cncf",
"continuous-delivery",
"control-plane",
"cue",
"hacktoberfest",
"helm",
"hybridcloud",
"kubernetes",
"microservices",
"multicloud",
"multicluster",
"oam",
"paas",
"serverless",
"trait",
"workloads"
] | Apache-2.0 | pkg/addon/registry_test.go | registry_test.go | 19,648 | /*
Copyright 2021 The KubeVela 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, so... | 1,546 | 19,648 | 644 | 0.98 | 2026-04-17T20:23:09.945862 | true |
github_4thfever_cultivation-world-simulator_ce8b17f032a6b4fcdd19af3ade2103271dc58a10 | Python | 4thfever | cultivation-world-simulator | 1,552 | 179 | 基于 AI Agent 工作流的修仙世界模拟器,旨在还原智能、开放的仙侠世界。| An open-source Cultivation World Simulator using Agentic Workflow to create a dynamic, emerging Xianxia world. | [
"agentic-workflow",
"ai",
"ai-agents",
"ai-native",
"autonomous-agents",
"cultivation",
"cultivation-game",
"game",
"llm",
"open-source",
"procedural-generation",
"prompt-engineering",
"python",
"simulation",
"simulation-game",
"simulator",
"text-based-game",
"world-simulation"
] | NOASSERTION | src/server/auto_save.py | auto_save.py | 1,277 | from __future__ import annotations
import os
from src.config import get_settings_service
from src.sim import get_events_db_path, list_saves, save_game
def trigger_auto_save(*, world, sim, sects_by_id) -> None:
"""Create the next auto save and keep only the latest configured snapshots."""
playthrough_id = ge... | 111 | 1,277 | 35 | 0.98 | 2026-04-17T16:18:38.769310 | true |
github_bigint_hey_b0c8bc05cea96c70226ca934dbc1d8bf7d1f842e | 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/errorToast.ts | errorToast.ts | 1,141 | import { toast } from "sonner";
import { ERRORS } from "@/data/errors";
const FORBIDDEN_ERROR_PREFIX =
"Forbidden - Failed to generate source stamp: App rejected verification request:";
const CONNECTOR_ERROR = "Connector not connected";
interface ErrorPayload {
message?: string;
data?: {
message?: string;
... | 136 | 1,141 | 45 | 0.98 | 2026-04-18T01:23:00.875605 | true |
github_microsoft_typescript-go_b8b9d87d66b6b9e213d06385a29a0b5894223fd9 | Go | microsoft | typescript-go | 24,802 | 893 | Staging repo for development of native port of TypeScript | [] | Apache-2.0 | internal/api/protocol_msgpack.go | protocol_msgpack.go | 7,191 | package api
import (
"bufio"
"encoding/binary"
"fmt"
"io"
"github.com/microsoft/typescript-go/internal/json"
"github.com/microsoft/typescript-go/internal/jsonrpc"
)
// MessageType represents the type of message in the msgpack protocol.
type MessageType uint8
const (
MessageTypeUnknown MessageType = iota
Mes... | 1,011 | 7,191 | 281 | 0.98 | 2026-04-17T08:41:17.137430 | true |
github_brianlovin_briOS_9cae7671adf0d0c5220bbf529a0dd2f369bf41e1 | TypeScript | brianlovin | briOS | 2,250 | 252 | My personal website. | [
"apollo",
"graphql",
"javascript",
"nextjs",
"planetscale",
"prisma",
"react",
"styled-components"
] | UNKNOWN | src/lib/markdown-to-notion.ts | markdown-to-notion.ts | 6,959 | function defaultAnnotations() {
return {
bold: false,
italic: false,
strikethrough: false,
underline: false,
code: false,
color: "default",
};
}
function createRichText(text: string) {
const segments: any[] = [];
let remaining = text;
const regex = /(\*\*[^*]+\*\*|\*[^*]+\*|_[^_]+_|`[... | 694 | 6,959 | 261 | 0.98 | 2026-04-18T01:40:09.133971 | true |
github_AliyunContainerService_pouch_1d06a0019d961a18e32fc253c73d717b4655f830 | 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/meta/store.go | store.go | 5,712 | package meta
import (
"encoding/json"
"fmt"
"reflect"
"sync"
"github.com/tchap/go-patricia/patricia"
)
var (
// MetaJSONFile is the default name of json file.
MetaJSONFile = "meta.json"
)
// Bucket is a Bucket.
type Bucket struct {
Name string
Type reflect.Type
}
// NewObject returns Object.
func (b *Buck... | 860 | 5,712 | 276 | 0.98 | 2026-04-17T21:44:49.172276 | true |
github_DavidHDev_react-bits_b283a8d550f293346d0fe16ae2987359a3afc92f | TypeScript | DavidHDev | react-bits | 38,608 | 1,727 | An open source collection of animated, interactive & fully customizable React components for building memorable websites. | [
"3d",
"animations",
"component-library",
"components",
"components-library",
"components-react",
"css-animations",
"javascript",
"react",
"react-components",
"reactjs",
"tailwind",
"tailwindcss",
"ui-components",
"ui-library",
"web"
] | NOASSERTION | src/global.d.ts | global.d.ts | 307 | export {};
declare module '*.glb';
declare module '*.png';
declare module 'meshline' {
export const MeshLineGeometry: any;
export const MeshLineMaterial: any;
}
declare global {
namespace JSX {
interface IntrinsicElements {
meshLineGeometry: any;
meshLineMaterial: any;
}
}
}
| 37 | 307 | 19 | 0.98 | 2026-04-23T04:46:39.768157 | true |
github_pathwaycom_pathway_9932ac9bd6a4e120d5c7e3623dd80c735ea7e13c | 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/async_runtime.rs | async_runtime.rs | 224 | use std::io;
use tokio::runtime::Runtime as TokioRuntime;
pub fn create_async_tokio_runtime() -> Result<TokioRuntime, io::Error> {
tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
}
| 17 | 224 | 10 | 0.98 | 2026-04-23T04:40:26.040405 | true |
github_vercel_next.js_224811794de63e64a37515983f2fb5f20607814d | JavaScript | vercel | next.js | 139,094 | 30,951 | The React Framework | [
"blog",
"browser",
"compiler",
"components",
"hybrid",
"nextjs",
"node",
"react",
"server-rendering",
"ssg",
"static",
"static-site-generator",
"universal",
"vercel"
] | MIT | run-evals.js | run-evals.js | 6,587 | #!/usr/bin/env node
// @ts-check
/**
* Pack the locally-built `next` package and run agent evals against it.
*
* pnpm eval <eval-name> run one eval, both variants (baseline + AGENTS.md)
* pnpm eval <eval-name> --dry preview without executing
* pnpm eval --all run every eva... | 792 | 6,581 | 201 | 0.98 | 2026-04-23T04:44:56.581507 | true |
github_adam-mcdaniel_sage_52498890ddccbcd420200ad5101a953ebdd25fae | 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/frontend/mod.rs | mod.rs | 7,936 | mod parse;
use crate::lir::Expr;
pub use parse::{parse_module, parse_source, get_lisp_env};
fn without_comments(code: impl ToString) -> String {
use no_comment::{languages, IntoWithoutComments};
code.to_string()
.chars()
.without_comments(languages::rust())
.collect::<String>()
}
pub f... | 432 | 7,936 | 212 | 0.98 | 2026-04-17T17:14:50.875844 | true |
github_trufflesecurity_trufflehog_2eb9f662614078d8159e9097b49ded0a55bb7085 | Go | trufflesecurity | trufflehog | 25,754 | 2,328 | Find, verify, and analyze leaked credentials | [
"credentials",
"devsecops",
"dynamic-analysis",
"precommit",
"scanning",
"secret",
"secret-management",
"secrets",
"security",
"security-tools",
"trufflehog",
"verification"
] | AGPL-3.0 | pkg/detectors/copy_metadata_test.go | copy_metadata_test.go | 854 | package detectors
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/trufflesecurity/trufflehog/v3/pkg/sources"
)
func TestCopyMetadata_ChunkDataFromOriginalData(t *testing.T) {
chunk := &sources.Chunk{
Data: []byte("decoded-data"),
OriginalData: []byte("original-source-data"),
So... | 66 | 854 | 41 | 0.98 | 2026-04-17T08:34:41.882647 | true |
github_ory_hydra_c34d1cd5045e844fc9d2c49661b225ce9b9623fd | Go | ory | hydra | 17,068 | 1,557 | Internet-scale OpenID Certified™ OpenID Connect and OAuth2.1 provider that integrates with your user management through headless APIs. Solve OIDC/OAuth2 user cases over night. Consume as a service on Ory Network or self-host. Trusted by OpenAI and many others for scale and security. Written in Go. | [
"authorization",
"cloud",
"docker",
"federation",
"hacktoberfest",
"hydra",
"identity",
"oauth",
"oauth-provider",
"oauth2",
"oauth2-provider",
"oauth2-server",
"oidc",
"openid",
"openid-connect",
"openid-connect-provider",
"openid-provider",
"security",
"server",
"sso"
] | Apache-2.0 | internal/httpclient/model_accept_device_user_code_request.go | model_accept_device_user_code_request.go | 3,604 | /*
Ory Hydra API
Documentation for all of Ory Hydra's APIs.
API version:
Contact: [REDACTED_EMAIL]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package openapi
import (
"encoding/json"
)
// checks if the AcceptDeviceUserCodeRequest type satisfies the MappedNullable int... | 434 | 3,604 | 126 | 0.98 | 2026-04-17T10:17:00.731766 | true |
github_linkerd_linkerd2_02712a03d4045ef72ae960117a6d61324bcc91a3 | Go | linkerd | linkerd2 | 11,373 | 1,347 | Ultralight, security-first service mesh for Kubernetes. Main repo for Linkerd 2.x. | [
"cloud-native",
"golang",
"kubernetes",
"linkerd",
"rust",
"service-mesh"
] | Apache-2.0 | pkg/inject/annotation_patch.go | annotation_patch.go | 282 | package inject
var tpl = `[
{{- if .AddRootAnnotations }}
{
"op": "add",
"path": "/metadata/annotations",
"value": {}
},
{{- end }}
{
"op": "add",
"path": "/metadata/annotations/config.linkerd.io~1opaque-ports",
"value": "{{.OpaquePorts}}"
}
]`
| 30 | 282 | 17 | 0.98 | 2026-04-17T12:19:24.533511 | true |
github_huggingface_transformers_95a47ae39fdfc10cd9da9f3336afb84b2bfa57f5 | 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/cache_utils.py | cache_utils.py | 74,556 | from abc import ABC, abstractmethod
from collections.abc import Iterable
import torch
from .configuration_utils import PreTrainedConfig
from .utils import (
is_hqq_available,
is_optimum_quanto_available,
is_quanto_greater,
is_torch_greater_or_equal,
is_torchdynamo_compiling,
logging,
)
if is... | 7,484 | 74,556 | 1,575 | 0.98 | 2026-04-22T13:17:47.566642 | true |
github_lima-vm_lima_37c4d8e91dcc2f5727bb5ed823b1122fa6d7a152 | Go | lima-vm | lima | 20,739 | 840 | Linux virtual machines, with a focus on running containers | [
"containerd",
"lima-vm",
"macos",
"qemu",
"vm"
] | Apache-2.0 | cmd/limactl/delete.go | delete.go | 2,224 | // SPDX-FileCopyrightText: Copyright The Lima Authors
// SPDX-License-Identifier: Apache-2.0
package main
import (
"errors"
"fmt"
"os"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/lima-vm/lima/v2/pkg/autostart"
"github.com/lima-vm/lima/v2/pkg/instance"
"github.com/lima-vm/lima/v2/pkg/ne... | 224 | 2,224 | 69 | 0.98 | 2026-04-17T09:24:35.555272 | true |
github_mysteriumnetwork_node_f2e341f67d36961ee749931325ccf9fc28330117 | Go | mysteriumnetwork | node | 1,186 | 337 | Mysterium Network Node - official implementation of distributed VPN network (dVPN) protocol | [
"blockchain",
"distributed",
"distributed-systems",
"golang",
"networking",
"vpn",
"vpn-client",
"vpn-server",
"vpnfree"
] | GPL-3.0 | core/ip/mock_resolver.go | mock_resolver.go | 2,631 | /*
* Copyright (C) 2017 The "MysteriumNetwork/node" Authors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
... | 356 | 2,631 | 94 | 0.98 | 2026-04-17T16:58:59.431755 | true |
github_cri-o_cri-o_c26cd3b936675950337ce22cee294ca5415a576c | Go | cri-o | cri-o | 5,601 | 1,161 | Open Container Initiative-based implementation of Kubernetes Container Runtime Interface | [
"container-runtime-interface",
"crun",
"hacktoberfest",
"k8s-sig-node",
"kata-containers",
"kubernetes",
"oci",
"oci-runtime",
"runc"
] | Apache-2.0 | internal/lib/container_server_freebsd.go | container_server_freebsd.go | 620 | package lib
import (
"fmt"
rspec "github.com/opencontainers/runtime-spec/specs-go"
"github.com/cri-o/cri-o/internal/annotations"
)
func configNsPath(spec *rspec.Spec, nsType rspec.LinuxNamespaceType) (string, error) {
if nsType == rspec.NetworkNamespace {
// On FreeBSD, if we are not using HostNetwork, the na... | 70 | 620 | 22 | 0.98 | 2026-04-17T21:23:30.486014 | true |
github_sharkdp_bat_97720fb5c1d9a30fc63b6c6c9b967f6d5019abbc | 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/config.rs | config.rs | 7,088 | use crate::line_range::{HighlightedLineRanges, LineRanges};
use crate::nonprintable_notation::{BinaryBehavior, NonprintableNotation};
#[cfg(feature = "paging")]
use crate::paging::PagingMode;
use crate::style::StyleComponents;
use crate::syntax_mapping::SyntaxMapping;
use crate::wrapping::WrappingMode;
use crate::Strip... | 692 | 7,088 | 236 | 0.98 | 2026-04-17T13:16:49.357378 | true |
github_adhikasp_mcp-client-cli_92b2066fe5cf67cc5f36c5124f49ffd2dbf470db | Python | adhikasp | mcp-client-cli | 673 | 81 | A simple CLI to run LLM prompt and implement MCP client. | [
"langchain",
"llm",
"mcp",
"model-context-protocol"
] | MIT | src/mcp_client_cli/const.py | const.py | 275 | from pathlib import Path
CACHE_EXPIRY_HOURS = 24
DEFAULT_QUERY = "Summarize https://www.youtube.com/watch?v=NExtKbS1Ljc"
CONFIG_FILE = 'mcp-server-config.json'
CONFIG_DIR = Path.home() / ".llm"
SQLITE_DB = CONFIG_DIR / "conversations.db"
CACHE_DIR = CONFIG_DIR / "mcp-tools" | 29 | 275 | 8 | 0.98 | 2026-04-23T00:49:42.565372 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.