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_mochajs_mocha_fcdff53305d5649057960f08ccd2af8ae5a92638 | JavaScript | mochajs | mocha | 22,882 | 3,066 | ☕️ Classic, reliable, trusted test framework for Node.js and the browser | [
"bdd",
"browser",
"javascript",
"mocha",
"mochajs",
"node",
"nodejs",
"tdd",
"test",
"test-framework",
"testing",
"testing-tools"
] | MIT | lib/reporters/spec.js | spec.js | 2,407 | "use strict";
/**
* @typedef {import('../runner.js')} Runner
* @typedef {import('../test.js')} Test
*/
/**
* @module Spec
*/
/**
* Module dependencies.
*/
var Base = require("./base");
var constants = require("../runner").constants;
var EVENT_RUN_BEGIN = constants.EVENT_RUN_BEGIN;
var EVENT_RUN_END = constant... | 248 | 2,407 | 96 | 0.98 | 2026-04-23T06:44:07.494912 | true |
github_keystonejs_keystone-classic_23ecb7132b830c84dbc85a758a0dc45218524086 | JavaScript | keystonejs | keystone-classic | 14,530 | 2,175 | Node.js CMS and web app framework | [
"cms",
"javascript",
"keystonejs",
"nodejs"
] | MIT | lib/list/expandColumns.js | expandColumns.js | 2,769 | var utils = require('keystone-utils');
/**
* Expands a comma-separated string or array of columns into valid column objects.
*
* Columns can be:
* - A Field, in the format "field|width"
* - A Field in a single related List, in the format "list:field|width"
* - Any valid path in the Schema, in the format... | 397 | 2,769 | 99 | 0.98 | 2026-04-23T06:55:23.630709 | true |
github_lbjlaq_Antigravity-Manager_7b30f794ad837edbf03baa8687120e139ef2e4e7 | TypeScript | lbjlaq | Antigravity-Manager | 28,337 | 3,089 | Professional Antigravity Account Manager & Switcher. One-click seamless account switching for Antigravity Tools. Built with Tauri v2 + React (Rust).专业的 Antigravity 账号管理与切换工具。为 Antigravity 提供一键无缝账号切换功能。 | [
"account-manager",
"antigravity"
] | NOASSERTION | src/i18n.ts | i18n.ts | 2,505 | import i18n from "i18next";
import { initReactI18next } from "react-i18next";
import LanguageDetector from "i18next-browser-languagedetector";
import en from "./locales/en.json";
import zh from "./locales/zh.json";
import zhTW from "./locales/zh-TW.json";
import ja from "./locales/ja.json";
import tr from "./locales/t... | 222 | 2,505 | 96 | 0.98 | 2026-04-17T13:28:44.036734 | true |
github_zhouxiaoka_autoclip_mvp_f76c2acee6356d4573dc3ffe58aebec47f8140c5 | Python | zhouxiaoka | autoclip_mvp | 957 | 165 | AutoClip: AI-powered video clipping and highlight generation · 一款智能高光提取与剪辑的二创工具 | [
"ai-video-editing",
"auto-highlight",
"llm",
"video",
"video-editing"
] | MIT | src/utils/video_processor.py | video_processor.py | 10,627 | """
视频处理工具 - 封装FFmpeg命令用于视频切割和拼接
"""
import subprocess
import json
import logging
import re
from typing import List, Dict, Optional
from pathlib import Path
from ..config import CLIPS_DIR, COLLECTIONS_DIR
logger = logging.getLogger(__name__)
class VideoProcessor:
"""视频处理工具类"""
def __init__(self, clips_d... | 607 | 9,381 | 289 | 0.98 | 2026-04-22T17:02:55.764826 | true |
github_open-telemetry_opentelemetry-js_7917d5a000f56ffa13092c742ecef5ce6f0cfc37 | JavaScript | open-telemetry | opentelemetry-js | 3,359 | 1,027 | OpenTelemetry JavaScript Client | [
"api",
"distributed-tracing",
"metrics",
"monitoring",
"telemetry"
] | Apache-2.0 | api/karma.worker.js | karma.worker.js | 839 | /*!
* Copyright The OpenTelemetry 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... | 117 | 839 | 25 | 0.98 | 2026-04-17T18:04:27.320401 | true |
github_dani-garcia_vaultwarden_9a782046d79459ef0fb3420a0d49954eeff87680 | 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/api/admin.rs | admin.rs | 32,602 | use std::{env, sync::LazyLock};
use reqwest::Method;
use rocket::{
form::Form,
http::{Cookie, CookieJar, MediaType, SameSite, Status},
request::{FromRequest, Outcome, Request},
response::{content::RawHtml as Html, Redirect},
serde::json::Json,
Catcher, Route,
};
use serde::de::DeserializeOwned;... | 2,595 | 32,602 | 902 | 0.98 | 2026-04-17T13:16:29.625470 | true |
github_pubkey_rxdb_1000561d5d8100e72112f9dddcb1f453543a1c01 | TypeScript | pubkey | rxdb | 23,146 | 1,160 | A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/ | [
"angular",
"browser-database",
"couchdb",
"crdt",
"database",
"firebase",
"graphql",
"indexeddb",
"ionic",
"local-first",
"localstorage",
"nodejs",
"nosql",
"postgres",
"pouchdb",
"react-native",
"realtime",
"realtime-database",
"rxdb",
"sqlite"
] | Apache-2.0 | src/rx-query-mingo.ts | rx-query-mingo.ts | 1,782 | import { Context } from 'mingo/core';
import { Query } from 'mingo/query';
import type { MangoQuerySelector } from './types/index.d.ts';
import {
$project,
$sort
} from 'mingo/operators/pipeline';
import {
} from 'mingo/operators/expression';
import {
} from 'mingo/operators/projection';
import {
$elemMatc... | 175 | 1,782 | 88 | 0.98 | 2026-04-18T01:24:07.587595 | true |
github_h2oai_h2ogpt_707f391ba3a4fe6be1e7092da669b64c2bbcdf93 | 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/langchain_mistralai/chat_models.py | chat_models.py | 35,323 | from __future__ import annotations
import json
import logging
import uuid
from operator import itemgetter
from typing import (
Any,
AsyncContextManager,
AsyncIterator,
Callable,
Dict,
Iterator,
List,
Literal,
Optional,
Sequence,
Tuple,
Type,
Union,
cast,
)
impor... | 2,924 | 35,323 | 847 | 0.98 | 2026-04-17T15:34:17.216983 | true |
github_lbjlaq_Antigravity-Manager_234f143004b13079b5a05553767e4d6600fae181 | TypeScript | lbjlaq | Antigravity-Manager | 28,337 | 3,089 | Professional Antigravity Account Manager & Switcher. One-click seamless account switching for Antigravity Tools. Built with Tauri v2 + React (Rust).专业的 Antigravity 账号管理与切换工具。为 Antigravity 提供一键无缝账号切换功能。 | [
"account-manager",
"antigravity"
] | NOASSERTION | src/utils/request.ts | request.ts | 14,273 | // 探测环境
const isTauri = typeof window !== 'undefined' && (!!(window as any).__TAURI_INTERNALS__ || !!(window as any).__TAURI__);
// 命令到 API 的映射
const COMMAND_MAPPING: Record<string, { url: string; method: 'GET' | 'POST' | 'DELETE' | 'PATCH' }> = {
// Accounts
'list_accounts': { url: '/api/accounts', method: 'GET' ... | 1,384 | 14,043 | 271 | 0.98 | 2026-04-17T13:28:49.669600 | true |
github_dmlc_gluon-nlp_a83229f13119c15a99afa825013e93f7bb3300d5 | Python | dmlc | gluon-nlp | 2,547 | 520 | NLP made easy | [
"deep-learning",
"gluon",
"gluonnlp",
"machine-learning",
"mxnet",
"natural-language-generation",
"natural-language-inference",
"natural-language-processing",
"natural-language-understanding",
"nlg",
"nlp",
"nlu",
"numpy"
] | Apache-2.0 | src/gluonnlp/op.py | op.py | 10,735 | __all__ = ['select_vectors_by_position', 'add_vectors_by_position',
'update_vectors_by_position',
'gumbel_softmax', 'trunc_gumbel',
'relative_position_bucket',
'l2_normalize']
import mxnet as mx
from mxnet import np, npx
import math
from mxnet import use_np
@use_np
def sel... | 1,184 | 10,735 | 308 | 0.98 | 2026-04-22T19:41:37.969001 | true |
github_orhun_gpg-tui_1288ded759408739ced3c51752456ca34e3d2bb6 | Rust | orhun | gpg-tui | 1,682 | 43 | Manage your GnuPG keys with ease! 🔐 | [
"cli",
"gnupg",
"gpg",
"gpg-configuration",
"gpg-key",
"gpg-keys",
"gpg-signatures",
"gpg-tui",
"hacktoberfest",
"key-management",
"linux",
"openpgp",
"rust",
"terminal",
"tui",
"tui-app",
"tui-rs"
] | MIT | src/widget/style.rs | style.rs | 2,130 | use colorsys::Rgb;
use ratatui::style::Color as TuiColor;
use std::str::FromStr;
/// Wrapper for widget colors.
#[derive(Clone, Copy, Debug)]
pub struct Color {
/// Inner widget color type.
inner: TuiColor,
}
impl Color {
/// Returns the underlying [`Color`] type.
///
/// [`Color`]: tui::style::Color
pub fn get... | 215 | 2,130 | 85 | 0.98 | 2026-04-17T19:26:56.986530 | true |
github_panjf2000_gnet_2a33edec8f154745818ed5e358cc3ec636a8e69c | Go | panjf2000 | gnet | 11,130 | 1,104 | 🚀 gnet is a high-performance, lightweight, non-blocking, event-driven networking framework written in pure Go. | [
"async",
"asynchronous",
"epoll",
"event-driven",
"event-loop",
"go",
"golang",
"goroutine",
"io",
"kqueue",
"network",
"networking",
"non-blocking",
"reactor",
"tcp",
"udp"
] | Apache-2.0 | conn_map.go | conn_map.go | 1,644 | // Copyright (c) 2023 The Gnet 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... | 240 | 1,644 | 72 | 0.98 | 2026-04-17T12:23:14.830577 | true |
github_triggerdotdev_jsonhero-web_1ab469ddba552f7369a5230f3629dab10c725d69 | TypeScript | triggerdotdev | jsonhero-web | 10,697 | 663 | JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed. 🚀. Built with 💜 by the Trigger.dev team. | [
"developer-tools",
"devtools",
"hacktoberfest",
"json",
"json-viewer",
"react",
"tools",
"typescript",
"viewer"
] | Apache-2.0 | app/utilities/formatter.ts | formatter.ts | 3,513 | import { Temporal } from "@js-temporal/polyfill";
import { inferTemporal } from "./inferredTemporal";
import {
JSONDateTimeFormat,
JSONStringFormat,
JSONValueType,
} from "@jsonhero/json-infer-types";
export function formatRawValue(type: JSONValueType): string {
switch (type.name) {
case "string":
r... | 376 | 3,513 | 157 | 0.98 | 2026-04-18T00:22:26.977031 | true |
github_typicode_lowdb_c123a815ba1ebf37d8e8f87331a86aaba7b043ef | TypeScript | typicode | lowdb | 22,525 | 967 | Simple and fast JSON database | [
"database",
"electron",
"embeddable",
"embedded-database",
"javascript",
"json",
"localstorage",
"lodash",
"nodejs",
"storage"
] | MIT | src/presets/browser.ts | browser.ts | 626 | import { LocalStorage } from '../adapters/browser/LocalStorage.js'
import { SessionStorage } from '../adapters/browser/SessionStorage.js'
import { LowSync } from '../index.js'
export function LocalStoragePreset<Data>(
key: string,
defaultData: Data,
): LowSync<Data> {
const adapter = new LocalStorage<Data>(key)
... | 68 | 626 | 24 | 0.98 | 2026-04-23T06:45:35.359130 | true |
github_jesseduffield_lazydocker_aa125f0b4acfe440b9a0a6549640f8e62eac8838 | Go | jesseduffield | lazydocker | 50,674 | 1,602 | The lazier way to manage everything docker | [] | MIT | pkg/i18n/chinese.go | chinese.go | 6,841 | package i18n
func chineseSet() TranslationSet {
return TranslationSet{
PruningStatus: "修剪中",
RemovingStatus: "移除中",
RestartingStatus: "重启中",
StartingStatus: "启动中",
StoppingStatus: "停止中",
UppingServiceStatus: "升级服务中",
UppingProjectStatus: ... | 284 | 5,073 | 137 | 0.98 | 2026-04-17T07:22:18.189045 | true |
github_cryxnet_DeepMCPAgent_db1ca5ddb48d22d0e677a692cccfdade19f3299e | Python | cryxnet | DeepMCPAgent | 813 | 127 | Model-agnostic plug-n-play LangChain/LangGraph agents powered entirely by MCP tools over HTTP/SSE. | [
"agent-framework",
"agentic-ai",
"agents",
"ai",
"ai-agents",
"ai-framework",
"artificial-intelligence",
"autonomous-agents",
"deep-agents",
"developer-tools",
"langchain",
"langgraph",
"llm-agents",
"mcp",
"opensource-agents",
"python",
"react-agents"
] | Apache-2.0 | src/deepmcpagent/tools.py | tools.py | 6,809 | """MCP tool discovery and conversion to LangChain tools."""
from __future__ import annotations
import contextlib
import re
from collections.abc import Callable
from dataclasses import dataclass
from typing import Any, cast
from langchain_core.tools import BaseTool
from pydantic import BaseModel, Field, PrivateAttr, ... | 663 | 6,809 | 200 | 0.98 | 2026-04-23T00:47:00.904437 | true |
github_sampsyo_bril_89d636184e866e8c512c93e59b6aa4ac249a949b | TypeScript | sampsyo | bril | 756 | 328 | an educational compiler intermediate representation | [
"bril",
"compiler",
"programming-language"
] | MIT | ts2bril.ts | ts2bril.ts | 13,879 | import * as ts from "https://esm.sh/typescript@5.7.3";
import * as bril from "./bril-ts/bril.ts";
import { Builder } from "./bril-ts/builder.ts";
// deno-fmt-ignore
const opTokens = new Map<ts.SyntaxKind, [bril.ValueOpCode, bril.Type]>([
[ts.SyntaxKind.PlusToken, ["add", "int"]],
[ts.SyntaxKind.Aster... | 1,235 | 13,879 | 430 | 0.98 | 2026-04-17T17:08:27.195056 | true |
github_go-jet_jet_d6e09db6a8efab9f08fbd404aa0451be756ca85e | Go | go-jet | jet | 3,644 | 183 | Type safe SQL builder with code generation and automatic query result data mapping | [
"cockroachdb",
"code-completion",
"code-generator",
"codegenerator",
"database",
"datamapper",
"golang",
"mariadb",
"mysql",
"postgres",
"postgresql",
"sql",
"sql-builder",
"sql-queries",
"sql-query",
"sql-query-builder",
"sqlbuilder",
"sqlite",
"typesafe",
"typesafety"
] | Apache-2.0 | internal/jet/serializer.go | serializer.go | 4,490 | package jet
import "slices"
// SerializeOption type
type SerializeOption int
// Serialize options
const (
NoWrap SerializeOption = iota
SkipNewLine
Ident
fallTroughOptions // fall trough options
ShortName
)
// WithFallTrough extends existing serialize options with additional
func (s SerializeOption) WithFall... | 492 | 4,490 | 171 | 0.98 | 2026-04-17T18:21:18.668498 | true |
github_ChatGPTNextWeb_NextChat_9ba27fef27fb5e7e01ec6032912255c264054d2e | 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 | jest.setup.ts | jest.setup.ts | 609 | // Learn more: https://github.com/testing-library/jest-dom
import "@testing-library/jest-dom";
import { jest } from "@jest/globals";
global.fetch = jest.fn(() =>
Promise.resolve({
ok: true,
status: 200,
json: () => Promise.resolve([]),
headers: new Headers(),
redirected: false,
statusText: "O... | 63 | 609 | 23 | 0.98 | 2026-04-23T08:58:37.914502 | true |
github_lovell_sharp_13714c9474042e6ee923dae4c4e502c3d5ce496f | TypeScript | lovell | sharp | 32,168 | 1,398 | High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, AVIF and TIFF images. Uses the libvips library. | [
"avif",
"crop",
"exif",
"icc",
"image",
"image-processing",
"javascript",
"jpeg",
"libvips",
"nodejs",
"performance",
"png",
"resize",
"sharp",
"svg",
"tiff",
"webp"
] | Apache-2.0 | lib/index.d.ts | index.d.ts | 91,078 | /**
* Copyright 2017 François Nguyen and others.
*
* Billy Kwok <https://github.com/billykwok>
* Bradley Odell <https://github.com/BTOdell>
* Espen Hovlandsdal <https://github.com/rexxars>
* Floris de Bijl <https://github.com/Fdebijl>
* François Nguyen <https://github.com/phurytw>
* Jamie Woodbury <https://gith... | 11,949 | 91,075 | 1,972 | 0.98 | 2026-04-23T06:40:52.476836 | true |
github_rustdesk_rustdesk_6d140daad93037e1e47509828b094c7021febd76 | 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/nl.rs | nl.rs | 49,203 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Status"),
("Your Desktop", "Uw Bureaublad"),
("desk_tip", "Uw bureaublad is toegankelijk met dit ID en wachtwoord."),
("Password", "Wachtwoord"),
("Ready", "Kla... | 4,843 | 49,187 | 748 | 0.98 | 2026-04-17T13:14:37.236844 | true |
github_segmentio_evergreen_736e3ce9782496a36518f27edb6c63f70d8e69f2 | JavaScript | segmentio | evergreen | 12,428 | 813 | 🌲 Evergreen React UI Framework by Segment | [
"component-library",
"design-systems",
"evergreen",
"react",
"segment",
"ui",
"ui-components"
] | MIT | src/ssr/index.js | index.js | 122 | export { default as extractStyles } from './src/extractStyles'
export { default as autoHydrate } from './src/autoHydrate'
| 16 | 122 | 3 | 0.98 | 2026-04-23T04:58:52.233270 | true |
github_ChromeDevTools_chrome-devtools-mcp_9f6f6a5f8e304431968ba3ac26258b4e29ac7a19 | 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/tools/screencast.ts | screencast.ts | 3,047 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'node:fs/promises';
import os from 'node:os';
import path from 'node:path';
import {zod} from '../third_party/index.js';
import type {ScreenRecorder} from '../third_party/index.js';
import {ensureExtension} from '..... | 317 | 3,047 | 103 | 0.98 | 2026-04-18T00:21:16.026791 | true |
github_gogs_gogs_f81ce772f9ab7920b79f534d90a8342a2a6e2d85 | 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 | cmd/gogs/serv.go | serv.go | 7,795 | package main
import (
"context"
"fmt"
"os"
"os/exec"
"path/filepath"
"strconv"
"strings"
"time"
"github.com/urfave/cli/v3"
log "unknwon.dev/clog/v2"
"gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/database"
)
const (
accessDeniedMessage = "Repository does not exist or you do not have access"
)
var... | 966 | 7,795 | 275 | 0.98 | 2026-04-17T07:24:46.354753 | true |
github_graphql_graphql-js_4a65f5e55668f3dd61ca84ae2a64a8c0e2ff1e08 | TypeScript | graphql | graphql-js | 20,323 | 2,056 | A reference implementation of GraphQL for JavaScript | [
"graphql",
"graphql-js"
] | MIT | src/language/schemaCoordinateLexer.ts | schemaCoordinateLexer.ts | 3,518 | import { syntaxError } from '../error/syntaxError';
import { Token } from './ast';
import { isNameStart } from './characterClasses';
import type { LexerInterface } from './lexer';
import { createToken, printCodePointAt, readName } from './lexer';
import type { Source } from './source';
import { TokenKind } from './tok... | 468 | 3,518 | 121 | 0.98 | 2026-04-18T01:24:58.914297 | true |
github_tsuru_tsuru_d9a7c76fdca20de994eec6176e84f06e1aa3b71d | Go | tsuru | tsuru | 5,273 | 551 | Open source and extensible Platform as a Service (PaaS). | [
"containers",
"devops",
"docker",
"go",
"hacktoberfest",
"kubernetes",
"paas"
] | BSD-3-Clause | api/observability/middleware_test.go | middleware_test.go | 6,447 | // Copyright 2012 tsuru 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 observability
import (
"bytes"
stdc "context"
"encoding/json"
"fmt"
"log"
"net/http"
"net/http/httptest"
"strings"
"testing"
"time"
"github.... | 570 | 6,447 | 204 | 0.98 | 2026-04-17T21:32:02.892595 | true |
github_ginuerzh_gost_a378452ff69e83a88930412589d735c1520a4252 | Go | ginuerzh | gost | 17,829 | 2,641 | GO Simple Tunnel - a simple tunnel written in golang | [
"dns",
"go",
"golang",
"http2",
"kcp",
"obfs4",
"quic",
"shadowsocks",
"sni",
"socks5",
"ssh",
"tls",
"tunnel",
"tuntap",
"udp"
] | MIT | mux.go | mux.go | 1,193 | package gost
import (
"net"
smux "github.com/xtaci/smux"
)
type muxStreamConn struct {
net.Conn
stream *smux.Stream
}
func (c *muxStreamConn) Read(b []byte) (n int, err error) {
return c.stream.Read(b)
}
func (c *muxStreamConn) Write(b []byte) (n int, err error) {
return c.stream.Write(b)
}
func (c *muxStre... | 157 | 1,193 | 64 | 0.98 | 2026-04-17T09:44:36.612327 | true |
github_tlsfuzzer_python-ecdsa_0184c05b1c863ad99c8f293e780d53998cf1a49e | Python | tlsfuzzer | python-ecdsa | 974 | 336 | pure-python ECDSA signature/verification and ECDH key agreement | [
"cryptography",
"digital-signatures",
"ecdh",
"ecdsa",
"elliptic-curves",
"python"
] | NOASSERTION | src/ecdsa/errors.py | errors.py | 130 | class MalformedPointError(AssertionError):
"""Raised in case the encoding of private or public key is malformed."""
pass
| 15 | 130 | 5 | 0.98 | 2026-04-23T04:34:22.069817 | true |
github_Tianxiaomo_pytorch-YOLOv4_1eda27a4911f4d2b33f65b03c94abafd42971710 | Python | Tianxiaomo | pytorch-YOLOv4 | 4,526 | 1,489 | PyTorch ,ONNX and TensorRT implementation of YOLOv4 | [
"darknet2onnx",
"darknet2pytorch",
"onnx",
"pytorch",
"pytorch-yolov4",
"tensorrt",
"yolov3",
"yolov4",
"yolov4-tiny"
] | Apache-2.0 | train.py | train.py | 28,351 | # -*- coding: utf-8 -*-
'''
@Time : 2020/05/06 15:07
@Author : Tianxiaomo
@File : train.py
@Noice :
@Modificattion :
@Author :
@Time :
@Detail :
'''
import time
import logging
import os, sys, math
import argparse
from collections import deque
import datetime
imp... | 2,382 | 28,299 | 640 | 0.98 | 2026-04-22T22:53:43.894355 | true |
github_nodejs_node_c5702bc9eab09269e6cdbad5389bc2904c9dc03f | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/_http_outgoing.js | _http_outgoing.js | 34,567 | // Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modi... | 3,947 | 34,567 | 1,216 | 0.98 | 2026-04-23T06:15:34.852207 | true |
github_AsyncFuncAI_deepwiki-open_d2726c6267edf0dde9106e976fab5c5d521cb341 | Python | AsyncFuncAI | deepwiki-open | 15,708 | 1,765 | Open Source DeepWiki: AI-Powered Wiki Generator for GitHub/Gitlab/Bitbucket Repositories. Join the discord: https://discord.gg/gMwThUMeme | [
"ai",
"gemini",
"github",
"ollama",
"open-source",
"openai",
"openrouter",
"self-hosted",
"wiki"
] | MIT | api/logging_config.py | logging_config.py | 3,198 | import logging
import os
from pathlib import Path
from logging.handlers import RotatingFileHandler
class IgnoreLogChangeDetectedFilter(logging.Filter):
def filter(self, record: logging.LogRecord):
return "Detected file change in" not in record.getMessage()
def setup_logging(format: str = None):
"""
... | 303 | 3,198 | 86 | 0.98 | 2026-04-17T15:32:25.417553 | true |
github_nikivdev_flow_60d79e90f687a6dafc0ba8a656b279ac5e149b46 | Rust | nikivdev | flow | 21,145 | 836 | Everything you need to move your project faster | [
"rust"
] | MIT | src/codex_memory.rs | codex_memory.rs | 72,433 | use std::fs;
use std::path::{Path, PathBuf};
use std::time::Duration;
use anyhow::{Context, Result};
use ignore::WalkBuilder;
use rusqlite::{Connection, params};
use serde::Serialize;
use sha2::{Digest, Sha256};
use crate::codex_skill_eval::{self, CodexSkillEvalEvent, CodexSkillOutcomeEvent};
use crate::{ai, codex_te... | 5,738 | 72,433 | 2,311 | 0.98 | 2026-04-17T13:42:11.219253 | true |
github_Semantic-Org_Semantic-UI-React_f66366f847de9bd294c812ca9981b35a45c217d8 | JavaScript | Semantic-Org | Semantic-UI-React | 13,228 | 4,037 | The official Semantic-UI-React integration | [
"component-library",
"components",
"frontend-components",
"frontend-framework",
"javascript-libraries",
"javascript-library",
"js-library",
"react",
"react-components",
"react-library",
"semantic-ui"
] | MIT | src/lib/normalizeTransitionDuration.js | normalizeTransitionDuration.js | 313 | /**
* Normalizes the duration of a transition.
* @param {number|object} duration The value to normalize.
* @param {'hide'|'show'} type The type of transition.
* @returns {number}
*/
export default (duration, type) =>
typeof duration === 'number' || typeof duration === 'string' ? duration : duration[type]
| 46 | 313 | 9 | 0.98 | 2026-04-23T04:56:21.312137 | true |
github_Capsize-Games_airunner_8d02da99444802a95c51a3bad52626ba36655656 | Python | Capsize-Games | airunner | 1,316 | 98 | Offline inference engine for art, real-time voice conversations, LLM powered chatbots and automated workflows | [
"ai",
"ai-art",
"art",
"asset-generator",
"chatbot",
"deep-learning",
"desktop-app",
"image-generation",
"mistral",
"multimodal",
"privacy",
"pygame",
"pyside6",
"python",
"self-hosted",
"speech-to-text",
"stable-diffusion",
"text-to-image",
"text-to-speech",
"text-to-speech-ap... | GPL-3.0 | src/airunner/app.py | app.py | 50,635 | from typing import List, Optional, Dict
import glob
import logging
import os
import os.path
import signal
import sys
import subprocess
import time
import traceback
from pathlib import Path
from PySide6 import QtCore
from PySide6.QtCore import QObject, QTimer, QCoreApplication
from PySide6.QtGui import QGuiApplication, ... | 3,967 | 50,619 | 1,288 | 0.98 | 2026-04-17T16:24:44.521484 | true |
github_nari-labs_dia_38bbed226dd9b0a22248a586e7e240a705f88df9 | Python | nari-labs | dia | 19,257 | 1,681 | A TTS model capable of generating ultra-realistic dialogue in one pass. | [
"ai",
"open-weight",
"text-to-speech"
] | Apache-2.0 | hf.py | hf.py | 763 | from transformers import AutoProcessor, DiaForConditionalGeneration
torch_device = "cuda"
model_checkpoint = "nari-labs/Dia-1.6B-0626"
text = [
"[S1] Dia is an open weights text to dialogue model. [S2] You get full control over scripts and voices. [S1] Wow. Amazing. (laughs) [S2] Try it now on Git hub or Hugging... | 72 | 763 | 18 | 0.98 | 2026-04-17T15:30:53.948228 | true |
github_claudiajs_claudia_8d419c2f3fe2b766d86f5ea65d68e64a81e62694 | JavaScript | claudiajs | claudia | 3,893 | 277 | Deploy Node.js projects to AWS Lambda and API Gateway easily | [
"api-gateway",
"aws",
"aws-lambda",
"claudia",
"javascript",
"nodejs",
"serverless"
] | MIT | src/util/is-sns-arn.js | is-sns-arn.js | 125 | module.exports = function isSNSArn(string) {
'use strict';
return /^arn:aws[^:]*:sns:[^:]+:[^:]+:[^:]+$/.test(string);
};
| 10 | 125 | 6 | 0.98 | 2026-04-23T07:44:06.567763 | true |
github_axios_axios_87d0ea8d259daa6e1d2eee7b48799aca0076902d | 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/readBlob.js | readBlob.js | 323 | const { asyncIterator } = Symbol;
const readBlob = async function* (blob) {
if (blob.stream) {
yield* blob.stream();
} else if (blob.arrayBuffer) {
yield await blob.arrayBuffer();
} else if (blob[asyncIterator]) {
yield* blob[asyncIterator]();
} else {
yield blob;
}
};
export default readBlo... | 43 | 323 | 16 | 0.98 | 2026-04-23T06:16:58.460600 | true |
github_benedekrozemberczki_GraphWaveletNeuralNetwork_d8208fd40d7b6abbeedfed8a5eb0a66e4bac782f | Python | benedekrozemberczki | GraphWaveletNeuralNetwork | 606 | 118 | A PyTorch implementation of "Graph Wavelet Neural Network" (ICLR 2019) | [
"convolutional-neural-networks",
"deep-learning",
"deepwalk",
"gcn",
"gpt2",
"gpt3",
"graph-convolution",
"graph-convolutional-network",
"graph-neural-networks",
"graph-representation",
"graphsage",
"gwnn",
"iclr",
"machine-learning",
"node2vec",
"pytorch",
"research",
"sklearn",
... | GPL-3.0 | src/gwnn.py | gwnn.py | 8,376 | import time
import torch
from tqdm import trange
from sklearn.model_selection import train_test_split
from gwnn_layer import SparseGraphWaveletLayer, DenseGraphWaveletLayer
class GraphWaveletNeuralNetwork(torch.nn.Module):
"""
Graph Wavelet Neural Network class.
For details see: Graph Wavelet Neural Networ... | 474 | 8,376 | 194 | 0.98 | 2026-04-22T21:47:44.987286 | true |
github_SociallyIneptWeeb_AICoverGen_7e83aa80dafc81a3f42a13933b3c5b220fa176e2 | Python | SociallyIneptWeeb | AICoverGen | 1,408 | 349 | A WebUI to create song covers with any RVC v2 trained AI voice from YouTube videos or audio files. | [
"ai",
"rvc",
"song-covers",
"uvr",
"webui"
] | MIT | src/rmvpe.py | rmvpe.py | 13,591 | import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
from librosa.filters import mel
class BiGRU(nn.Module):
def __init__(self, input_features, hidden_features, num_layers):
super(BiGRU, self).__init__()
self.gru = nn.GRU(
input_features,
hi... | 1,085 | 13,559 | 410 | 0.98 | 2026-04-17T16:21:38.640085 | true |
github_farion1231_cc-switch_c48977aeb0201e974e0ac16bb2f08bb649499e3b | TypeScript | farion1231 | cc-switch | 46,404 | 2,957 | A cross-platform desktop All-in-One assistant tool for Claude Code, Codex, OpenCode, openclaw & Gemini CLI. | [
"ai-tools",
"claude-code",
"codex",
"desktop-app",
"mcp",
"minimax",
"omo",
"open-source",
"openclaw",
"openclaw-ui",
"opencode",
"provider-management",
"rust",
"skills",
"skills-management",
"tauri",
"typescript",
"wsl-support"
] | MIT | src/utils/postChangeSync.ts | postChangeSync.ts | 541 | import { settingsApi } from "@/lib/api";
/**
* 统一的“后置同步”工具:将当前使用的供应商写回对应应用的 live 配置。
* 不抛出异常,由调用方根据返回值决定提示策略。
*/
export async function syncCurrentProvidersLiveSafe(): Promise<{
ok: boolean;
error?: Error;
}> {
try {
await settingsApi.syncCurrentProvidersLive();
return { ok: true };
} catch (err) {
... | 59 | 435 | 19 | 0.98 | 2026-04-17T13:19:02.837370 | true |
github_nikivdev_flow_254fb6202f1d5c4c27fa4650d4d954e061194f1c | Rust | nikivdev | flow | 21,145 | 836 | Everything you need to move your project faster | [
"rust"
] | MIT | src/deps.rs | deps.rs | 48,574 | use std::collections::{BTreeMap, BTreeSet};
use std::io::{self, IsTerminal, Read, Write};
use std::path::{Path, PathBuf};
use std::process::Command;
use anyhow::{Context, Result, bail};
use ignore::WalkBuilder;
use serde::Deserialize;
use toml::Value;
use toml::map::Map;
use crate::cli::{
DepsAction, DepsCommand,... | 3,949 | 48,554 | 1,600 | 0.98 | 2026-04-17T13:42:18.399044 | true |
github_coderamp-labs_gitingest_dc4ccdef5c84ca63df3566ed488636ba9c7efb6f | Python | coderamp-labs | gitingest | 14,354 | 1,050 | Replace 'hub' with 'ingest' in any GitHub URL to get a prompt-friendly extract of a codebase | [
"ai",
"code",
"developer-tool",
"ingestion"
] | MIT | src/gitingest/query_parser.py | query_parser.py | 6,164 | """Module containing functions to parse and validate input sources and patterns."""
from __future__ import annotations
import uuid
from pathlib import Path
from typing import Literal
from gitingest.config import TMP_BASE_PATH
from gitingest.schemas import IngestionQuery
from gitingest.utils.git_utils import fetch_re... | 676 | 6,162 | 191 | 0.98 | 2026-04-17T15:32:46.653775 | true |
github_go-jet_jet_74ae9e97eb6f1b4dd84087e7074832dcf30f66e4 | Go | go-jet | jet | 3,644 | 183 | Type safe SQL builder with code generation and automatic query result data mapping | [
"cockroachdb",
"code-completion",
"code-generator",
"codegenerator",
"database",
"datamapper",
"golang",
"mariadb",
"mysql",
"postgres",
"postgresql",
"sql",
"sql-builder",
"sql-queries",
"sql-query",
"sql-query-builder",
"sqlbuilder",
"sqlite",
"typesafe",
"typesafety"
] | Apache-2.0 | internal/jet/window_func_test.go | window_func_test.go | 1,197 | package jet
import "testing"
func TestFrameExtent(t *testing.T) {
assertClauseSerialize(t, PRECEDING(Int(2)), "$1 PRECEDING", int64(2))
assertClauseSerialize(t, FOLLOWING(Int(4)), "$1 FOLLOWING", int64(4))
}
func TestWindowFunctions(t *testing.T) {
assertClauseSerialize(t, PARTITION_BY(table1Col1), "(PARTITION BY... | 92 | 1,197 | 22 | 0.98 | 2026-04-17T18:21:27.821992 | true |
github_opendilab_DI-drive_b42a897bbbc399b6341a33e5084600ad9ecf72ad | Python | opendilab | DI-drive | 637 | 60 | Decision Intelligence Platform for Autonomous Driving simulation. | [
"autodrive",
"autonomous-driving",
"carla",
"imitation-learning",
"metadrive",
"pytorch",
"reinforcement-learning"
] | Apache-2.0 | core/models/common_model.py | common_model.py | 3,196 | import torch
from torch import nn
from typing import Tuple, Optional
from ding.torch_utils import ResBlock, Flatten
class ConvEncoder(nn.Module):
r"""
Overview:
The ``Convolution Encoder`` used in models. Used to encoder raw 2-dim observation.
Interfaces:
``__init__``, ``forward``
"""... | 293 | 3,196 | 84 | 0.98 | 2026-04-22T20:42:12.293462 | true |
github_bigint_hey_e46ec37e2d536d51bf5c6fea1109969cc1f8de38 | 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/formatAddress.ts | formatAddress.ts | 467 | import { isAddress } from "viem";
const formatAddress = (address: string | null, sliceSize = 4): string => {
if (!address) {
return "";
}
const formattedAddress = address.toLowerCase();
if (isAddress(formattedAddress)) {
const start = formattedAddress.slice(0, sliceSize);
const end = formattedAdd... | 52 | 465 | 20 | 0.98 | 2026-04-18T01:23:01.926993 | true |
github_pathwaycom_pathway_fd62f31ea36996413115cbba8a6563da06f35536 | 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/retry.rs | retry.rs | 1,589 | use std::time::Duration;
use log::error;
use rand::{rng, Rng};
const DEFAULT_SLEEP_INITIAL_DURATION: Duration = Duration::from_secs(1);
const DEFAULT_SLEEP_BACKOFF_FACTOR: f64 = 1.2;
const DEFAULT_JITTER: Duration = Duration::from_millis(800);
#[allow(clippy::module_name_repetitions)]
pub struct RetryConfig {
sl... | 144 | 1,589 | 62 | 0.98 | 2026-04-23T04:40:52.465772 | true |
github_HuolalaTech_page-spy-web_567da7327e2ce21551ce963d6b1734c94c0a5d58 | TypeScript | HuolalaTech | page-spy-web | 5,589 | 347 | A remote debugging platform you'll definitely find useful. Lightweight, cross-platform, out-of-box debugging tool | [
"console",
"debugger",
"devtools",
"remote-control"
] | MIT | src/utils/rrweb-event.ts | rrweb-event.ts | 844 | import {
EventType,
mouseInteractionData,
MouseInteractions,
eventWithTime,
IncrementalSource,
metaEvent,
} from '@rrweb/types';
interface RRWebClickEvent {
type: EventType.IncrementalSnapshot;
data: mouseInteractionData & {
type: MouseInteractions.Click;
};
timestamp: number;
delay?: number;... | 99 | 844 | 38 | 0.98 | 2026-04-18T00:24:03.254226 | true |
github_Chalarangelo_30-seconds-of-code_fcabd71fcbbb1aa8b4a37741bcaabd605ba2f149 | JavaScript | Chalarangelo | 30-seconds-of-code | 127,546 | 12,477 | Coding articles to level up your development skills | [
"astro",
"awesome-list",
"css",
"education",
"es6-javascript",
"git",
"html",
"javascript",
"learn-to-code",
"learning-resources",
"nodejs",
"programming",
"snippets"
] | CC-BY-4.0 | src/serializers/collectionContextSerializer.js | collectionContextSerializer.js | 277 | import Serializer from '#src/core/serializer.js';
export default class CollectionContextSerializer extends Serializer {
static {
Serializer.prepare(this, [
'title',
'content',
['cover', 'coverUrl'],
'coverSrcset',
'sublinks',
]);
}
}
| 24 | 277 | 14 | 0.98 | 2026-04-23T06:15:01.814146 | true |
github_jfecher_ante_0a47e88e3818c1b7592284980256f0aa300c4e72 | Rust | jfecher | ante | 2,215 | 107 | A safe, easy systems language | [
"ante",
"compiler",
"language",
"llvm",
"refinement-types",
"systems-language"
] | MIT | src/llvm/decisiontree.rs | decisiontree.rs | 3,803 | //! llvm/decisiontree.rs - Defines how to codegen a decision tree
//! via `codegen_tree`. This decisiontree is the result of compiling
//! a match expression into a decisiontree during type inference.
use crate::hir;
use crate::llvm::{CodeGen, Generator};
use crate::util::fmap;
use inkwell::basic_block::BasicBlock;
us... | 322 | 3,803 | 91 | 0.98 | 2026-04-17T17:04:01.802110 | true |
github_turbot_steampipe_0416deaea89e9b00eb25f37aff065cfc525c1415 | Go | turbot | steampipe | 7,781 | 333 | Zero-ETL, infinite possibilities. Live query APIs, code & more with SQL. No DB required. | [
"aws",
"azure",
"cis",
"cloud",
"cnapp",
"cspm",
"devops",
"devsecops",
"etl",
"gcp",
"golang",
"hacktoberfest",
"kubernetes",
"postgresql",
"postgresql-fdw",
"security",
"sqlite",
"steampipe",
"terraform",
"zero-etl"
] | AGPL-3.0 | pkg/interactive/highlighter_test.go | highlighter_test.go | 4,662 | package interactive
import (
"strings"
"testing"
"github.com/alecthomas/chroma/formatters"
"github.com/alecthomas/chroma/lexers"
"github.com/alecthomas/chroma/styles"
"github.com/c-bata/go-prompt"
)
// TestNewHighlighter tests highlighter creation
func TestNewHighlighter(t *testing.T) {
lexer := lexers.Get("s... | 609 | 4,646 | 240 | 0.98 | 2026-04-17T20:22:29.451854 | true |
github_cleanlab_cleanlab_ed130e662136de0819eed4381c2aace63e401a5e | Python | cleanlab | cleanlab | 11,433 | 886 | Cleanlab's open-source library is the standard data-centric AI package for data quality and machine learning with messy, real-world data and labels. | [
"active-learning",
"annotation",
"anomaly-detection",
"data-annotation",
"data-centric-ai",
"data-cleaning",
"data-curation",
"data-labeling",
"data-profiling",
"data-quality",
"data-science",
"data-validation",
"datasets",
"exploratory-data-analysis",
"labeling",
"machine-learning",
... | Apache-2.0 | setup.py | setup.py | 1,154 | from setuptools import setup
from setuptools.command.egg_info import egg_info
# To use a consistent encoding
from codecs import open
class egg_info_ex(egg_info):
"""Includes license file into `.egg-info` folder."""
def run(self):
# don't duplicate license into `.egg-info` when building a distributio... | 109 | 1,154 | 44 | 0.98 | 2026-04-17T06:48:35.269970 | true |
github_mochajs_mocha_5d9485b64135d4df75ec1d9c5c47cd597d7819ac | JavaScript | mochajs | mocha | 22,882 | 3,066 | ☕️ Classic, reliable, trusted test framework for Node.js and the browser | [
"bdd",
"browser",
"javascript",
"mocha",
"mochajs",
"node",
"nodejs",
"tdd",
"test",
"test-framework",
"testing",
"testing-tools"
] | MIT | lib/reporters/list.js | list.js | 1,896 | "use strict";
/**
* @typedef {import('../runner.js')} Runner
*/
/**
* @module List
*/
/**
* Module dependencies.
*/
var Base = require("./base");
var constants = require("../runner").constants;
var EVENT_RUN_BEGIN = constants.EVENT_RUN_BEGIN;
var EVENT_RUN_END = constants.EVENT_RUN_END;
var EVENT_TEST_BEGIN = ... | 198 | 1,896 | 74 | 0.98 | 2026-04-23T06:44:05.471711 | true |
github_pytest-dev_pytest_ae8d2b94d3672077480b555ce0f03e9e3daa3860 | Python | pytest-dev | pytest | 13,775 | 3,094 | The pytest framework makes it easy to write small tests, yet scales to support complex functional testing | [
"hacktoberfest",
"python",
"test",
"testing",
"unit-testing"
] | MIT | src/_pytest/junitxml.py | junitxml.py | 25,522 | # mypy: allow-untyped-defs
"""Report test results in JUnit-XML format, for use with Jenkins and build
integration servers.
Based on initial code from Ross Lawley.
Output conforms to
https://github.com/jenkinsci/xunit-plugin/blob/master/src/main/resources/org/jenkinsci/plugins/xunit/types/model/xsd/junit-10.xsd
"""
f... | 2,155 | 25,522 | 696 | 0.98 | 2026-04-18T01:41:48.395675 | true |
github_versotile-org_verso_07664baa985b6aca184339d2dd1950eb52c8facc | Rust | versotile-org | verso | 5,414 | 175 | Mirror of https://gitlab.com/verso-browser/verso | [
"browser",
"rust",
"servo"
] | Apache-2.0 | src/webview/mod.rs | mod.rs | 236 | mod webview;
/// WebView
pub use webview::{Panel, WebView, execute_script};
/// Context Menu
pub mod context_menu;
/// Browsing history menu
pub mod history_menu;
/// Prompt Dialog
pub mod prompt;
/// WebView Menu
pub mod webview_menu;
| 34 | 236 | 12 | 0.98 | 2026-04-17T15:02:44.395934 | true |
github_AgentOps-AI_agentops_7a73a479c3325ee1fd8986faaca937cb7bf79366 | JavaScript | AgentOps-AI | agentops | 5,476 | 562 | Python SDK for AI agent monitoring, LLM cost tracking, benchmarking, and more. Integrates with most LLMs and agent frameworks including CrewAI, Agno, OpenAI Agents SDK, Langchain, Autogen, AG2, and CamelAI | [
"agent",
"agentops",
"agents-sdk",
"ai",
"anthropic",
"autogen",
"cost-estimation",
"crewai",
"evals",
"evaluation-metrics",
"groq",
"langchain",
"llm",
"mistral",
"ollama",
"openai",
"openai-agents"
] | MIT | app/dashboard/tailwind.config.js | tailwind.config.js | 4,721 | /** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class'],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
'./lib/**/*.{ts,tsx}',
'./hooks/**/*.{ts,tsx}',
],
theme: {
container: {
center: t... | 372 | 4,721 | 167 | 0.98 | 2026-04-17T15:45:02.458137 | true |
github_insin_nwb_8f9355ae0677dbddad8c98f4f6c7b21321848ffd | JavaScript | insin | nwb | 5,549 | 321 | A toolkit for React, Preact, Inferno & vanilla JS apps, React libraries and other npm modules for the web, with no configuration (until you need it) | [
"babel",
"inferno",
"javascript",
"karma",
"npm-module",
"preact",
"react",
"react-component",
"toolkit",
"webpack"
] | NOASSERTION | src/commands/test-web-module.js | test-web-module.js | 187 | // @flow
import karmaServer from '../karmaServer'
import type {ErrBack} from '../types'
export default function testWebModule(args: Object, cb: ErrBack) {
karmaServer(args, {}, cb)
}
| 23 | 187 | 9 | 0.98 | 2026-04-23T06:08:00.658138 | true |
github_foresterre_cargo-msrv_0b193cb016c3257fa35aa42b7188d3577ad6b55c | Rust | foresterre | cargo-msrv | 1,171 | 42 | 🦀 Find the minimum supported Rust version (MSRV) for your project | [
"cargo",
"cargo-msrv",
"cli",
"hacktoberfest",
"msrv",
"rust",
"rust-lang",
"rust-tools"
] | Apache-2.0 | src/manifest/bare_version.rs | bare_version.rs | 22,355 | use crate::semver;
use std::convert::TryFrom;
use std::fmt::{Display, Formatter};
use std::str::FromStr;
type BareVersionUsize = u64;
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum BareVersion {
TwoComponents(BareVersionUsize, BareVersionUsize),
ThreeComponents(BareVersionUsize, BareVersionUsize, BareVersio... | 1,949 | 22,355 | 540 | 0.98 | 2026-04-17T19:34:42.519353 | true |
github_fathyb_carbonyl_d9a1f08d092b6fcd0680374842c9f279b077fcc5 | Rust | fathyb | carbonyl | 18,524 | 500 | Chromium running inside your terminal | [
"browser",
"chromium",
"terminal"
] | BSD-3-Clause | src/gfx/size.rs | size.rs | 219 | use super::Vector2;
use crate::impl_vector_overload;
#[derive(Clone, Copy, Debug, PartialEq, Default)]
pub struct Size<T: Copy = u32> {
pub width: T,
pub height: T,
}
impl_vector_overload!(Size width height);
| 26 | 219 | 11 | 0.98 | 2026-04-17T13:45:31.887809 | true |
github_itsOwen_CyberScraper-2077_aa51f35f3b504aa651d361a29d5b9f9526b7a9fc | 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 | app/streamlit_web_scraper_chat.py | streamlit_web_scraper_chat.py | 934 | import asyncio
import streamlit as st
from src.web_extractor import WebExtractor
from src.scrapers.playwright_scraper import ScraperConfig
import os
class StreamlitWebScraperChat:
def __init__(self, model_name, scraper_config: ScraperConfig = None):
self.web_extractor = WebExtractor(model_name=model_name, ... | 61 | 934 | 23 | 0.98 | 2026-04-22T15:32:57.960922 | true |
github_huggingface_transformers_1012606fcaaf37c7104c97e9c9f587401805a858 | 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/modeling_layers.py | modeling_layers.py | 11,476 | # Copyright 2025 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... | 982 | 11,476 | 289 | 0.98 | 2026-04-22T13:18:01.167987 | true |
github_go-gitea_gitea_787e6dc7c6fa4c706fa50cf8df9760448a4640c5 | TypeScript | go-gitea | gitea | 54,955 | 6,587 | Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD | [
"bitbucket",
"cicd",
"devops",
"docker-registry-v2",
"git",
"git-gui",
"git-lfs",
"git-server",
"gitea",
"github",
"github-actions",
"gitlab",
"go",
"golang",
"hacktoberfest",
"maven-server",
"npm-registry",
"self-hosted",
"typescript",
"vue"
] | MIT | updates.config.ts | updates.config.ts | 306 | import type {Config} from 'updates';
export default {
pin: {
'@mcaptcha/vanilla-glue': '^0.1', // breaking changes in rc versions need to be handled
'cropperjs': '^1', // need to migrate to v2 but v2 is not compatible with v1
'tailwindcss': '^3', // need to migrate
},
} satisfies Config;
| 47 | 306 | 10 | 0.98 | 2026-04-17T07:19:33.977762 | true |
github_olric-data_olric_807072be8883ec232bdb731dc035bfd8acff964e | Go | olric-data | olric | 3,439 | 142 | Distributed, in-memory key/value store and cache. It can be used as an embedded Go library and a language-independent service. | [
"cache",
"database",
"distributed-cache",
"distributed-database",
"distributed-hash-table",
"distributed-systems",
"in-memory-database",
"key-value",
"key-value-store",
"nosql",
"redis"
] | Apache-2.0 | cluster_iterator_test.go | cluster_iterator_test.go | 2,255 | // Copyright 2018-2025 The Olric 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 ag... | 282 | 2,255 | 98 | 0.98 | 2026-04-17T18:22:45.964465 | true |
github_conventional-changelog_standard-version_370fbff035df8f066e827f44992d4b7cab087cf1 | JavaScript | conventional-changelog | standard-version | 7,963 | 766 | :trophy: Automate versioning and CHANGELOG generation, with semver.org and conventionalcommits.org | [
"changelog",
"cli",
"git",
"hacktoberfest",
"history",
"release",
"semantic",
"standard",
"tag",
"tags",
"version",
"versioning"
] | ISC | lib/lifecycles/bump.js | bump.js | 5,015 | 'use strict'
const chalk = require('chalk')
const checkpoint = require('../checkpoint')
const conventionalRecommendedBump = require('conventional-recommended-bump')
const figures = require('figures')
const fs = require('fs')
const DotGitignore = require('dotgitignore')
const path = require('path')
const presetLoader =... | 545 | 5,015 | 173 | 0.98 | 2026-04-23T12:39:58.348562 | true |
github_eloialonso_iris_a4ae85efff39ac203e13166c3b38869b305b73a0 | Python | eloialonso | iris | 877 | 94 | Transformers are Sample-Efficient World Models. ICLR 2023, notable top 5%. | [
"artificial-intelligence",
"atari",
"deep-learning",
"machine-learning",
"reinforcement-learning",
"research",
"transformers",
"world-models"
] | GPL-3.0 | src/models/kv_caching.py | kv_caching.py | 3,812 | from typing import Tuple
import numpy as np
import torch
class Cache:
def __init__(self, num_samples: int, num_heads: int, max_tokens: int, embed_dim: int, device: torch.device) -> None:
assert embed_dim % num_heads == 0
self._n, self._cache, self._size = num_samples, None, None
self._res... | 371 | 3,812 | 107 | 0.98 | 2026-04-22T20:26:51.643073 | true |
github_FeatureBaseDB_featurebase_2d68ccf8bcbc77b8e1731b7396c6d4cadf185262 | Go | FeatureBaseDB | featurebase | 2,526 | 237 | A crazy fast analytical database, built on bitmaps. Perfect for ML applications. Learn more at: http://docs.featurebase.com/. Start a Docker instance: https://hub.docker.com/r/featurebasedb/featurebase | [
"big-data",
"bitmap",
"database",
"go",
"index",
"pilosa",
"sql"
] | Apache-2.0 | const_amd64.go | const_amd64.go | 182 | // Copyright 2022 Molecula Corp. (DBA FeatureBase).
// SPDX-License-Identifier: Apache-2.0
//go:build amd64
// +build amd64
package pilosa
const TxInitialMmapSize = 4 << 30 // 4GB
| 25 | 182 | 9 | 0.98 | 2026-04-17T18:30:12.313857 | true |
github_MaterializeInc_materialize_f515e15f2f545b6ee1a271433c084768b9dd5d06 | Rust | MaterializeInc | materialize | 6,271 | 499 | The live data layer for apps and AI agents. Create up-to-the-second views into your business, just using SQL | [
"cdc",
"data-mesh",
"data-store",
"database",
"distributed-systems",
"kafka",
"materialized-view",
"mysql",
"operational-data-store",
"postgresql",
"postgresql-dialect",
"rust",
"sql",
"sql-server",
"stream-processing",
"streaming",
"streaming-data"
] | NOASSERTION | src/prof/build.rs | build.rs | 927 | // Copyright Materialize, Inc. and contributors. 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 in the LICENSE file at the
// root of this repository, or online at
//
/... | 125 | 927 | 24 | 0.98 | 2026-04-17T14:51:14.548103 | true |
github_njbrake_agent-of-empires_82a424b54cf1d9fcc38d0d3ea22ce061a60400a1 | 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/hooks/mod.rs | mod.rs | 27,478 | //! Agent hook management for status detection.
//!
//! AoE installs hooks into an agent's settings file that write session
//! status (`running`/`waiting`/`idle`) to a sidecar file. This provides
//! reliable status detection without parsing tmux pane content.
//!
//! Hook events are agent-specific and defined in `Age... | 2,088 | 27,478 | 807 | 0.98 | 2026-04-17T19:28:11.883966 | true |
github_avwo_whistle_1d89f2fd08d88db090726e10ec49fe76b199441c | JavaScript | avwo | whistle | 15,478 | 1,155 | HTTP, HTTP2, HTTPS, Websocket debugging proxy | [
"charles",
"debug",
"fiddler",
"hosts",
"node",
"nodejs",
"proxy",
"web",
"weinre"
] | MIT | lib/inspectors/res.js | res.js | 51,553 | var https = require('https');
var http = require('http');
var net = require('net');
var parseUrl = require('../util/parse-url-safe');
var extend = require('extend');
var util = require('../util');
var Transform = require('pipestream').Transform;
var h2 = require('../https/h2');
var rules = require('../rules');
var plug... | 3,470 | 51,441 | 1,333 | 0.98 | 2026-04-23T06:51:09.899304 | true |
github_piccolo-orm_piccolo_2f2f320e02a83f43ea808424f15daf4e592389fb | Python | piccolo-orm | piccolo | 1,892 | 104 | A fast, user friendly ORM and query builder which supports asyncio. | [
"asgi",
"asyncio",
"database",
"fastapi",
"hacktoberfest",
"orm",
"piccolo",
"postgresql",
"python",
"python3",
"query-builder",
"sqlite",
"starlette"
] | MIT | setup.py | setup.py | 2,987 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import itertools
import os
from setuptools import find_packages, setup
from piccolo import __VERSION__ as VERSION
directory = os.path.abspath(os.path.dirname(__file__))
extras = ["orjson", "playground", "postgres", "sqlite", "uvloop"]
with open(os.path.join(directory... | 233 | 2,987 | 98 | 0.98 | 2026-04-23T02:26:19.649080 | true |
github_expressjs_body-parser_d1f3f48086b669108f9d9398ce7cfbc02ee0db2f | JavaScript | expressjs | body-parser | 5,500 | 754 | Node.js body parsing middleware | [
"body",
"expressjs",
"javascript",
"json",
"middleware",
"nodejs",
"parser",
"urlencoded"
] | MIT | lib/read.js | read.js | 5,401 | /*!
* body-parser
* Copyright(c) 2014-2015 Douglas Christopher Wilson
* MIT Licensed
*/
'use strict'
/**
* Module dependencies.
* @private
*/
var createError = require('http-errors')
var getBody = require('raw-body')
var iconv = require('iconv-lite')
var onFinished = require('on-finished')
var zlib = require(... | 641 | 5,401 | 248 | 0.98 | 2026-04-23T07:28:59.164674 | true |
github_infiniflow_ragflow_5bd5225999287158a74b4c27ffc97c5acac76906 | Python | infiniflow | ragflow | 78,360 | 8,839 | RAGFlow is a leading open-source Retrieval-Augmented Generation (RAG) engine that fuses cutting-edge RAG with Agent capabilities to create a superior context layer for LLMs | [
"agent",
"agentic",
"agentic-ai",
"agentic-workflow",
"ai",
"context-engineering",
"context-retrieval",
"deep-research",
"deepseek",
"deepseek-r1",
"document-understanding",
"graphrag",
"harness",
"llm",
"mcp",
"ollama",
"openai",
"openclaw",
"rag",
"retrieval-augmented-generat... | Apache-2.0 | api/db/init_data.py | init_data.py | 15,084 | #
# Copyright 2024 The InfiniFlow 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... | 1,051 | 15,082 | 331 | 0.98 | 2026-04-17T15:23:13.593021 | true |
github_tengbao_vanta_0a37e8d94063f44a89cc4472c9c0fc128d7664a6 | JavaScript | tengbao | vanta | 6,503 | 1,082 | Animated 3D backgrounds for your website | [
"3d",
"animation",
"animations",
"background",
"three-js",
"threejs"
] | MIT | src/vanta.fog.js | vanta.fog.js | 2,614 | // http://thebookofshaders.com/13/
// Original effect by Patricio Gonzalez Vivo
import ShaderBase, {VANTA} from './_shaderBase.js'
class Fog extends ShaderBase {}
export default VANTA.register('FOG', Fog)
Fog.prototype.defaultOptions = {
highlightColor: 0xffc300, // 0xaaffff
midtoneColor: 0xff1f00, // 0x00002a
... | 362 | 2,614 | 110 | 0.98 | 2026-04-23T13:54:49.685692 | true |
github_riffusion_riffusion-hobby_fdc7b7933939bfdab30818ed95b234d2799b444c | Python | riffusion | riffusion-hobby | 3,895 | 473 | Stable diffusion for real-time music generation | [
"ai",
"audio",
"diffusers",
"diffusion",
"music",
"stable-diffusion"
] | MIT | setup.py | setup.py | 1,156 | from pathlib import Path
from setuptools import find_packages, setup
# Load the version from file
__version__ = Path("VERSION").read_text().strip()
# Load packages
packages = Path("requirements.txt").read_text().splitlines()
setup(
name="riffusion",
packages=find_packages(exclude=[]),
version=__version_... | 91 | 1,156 | 42 | 0.98 | 2026-04-17T15:49:54.748621 | true |
github_Rigellute_spotify-tui_f30868ca52e2306d2351ea5dcf28cf3bfa6d59e1 | Rust | Rigellute | spotify-tui | 19,118 | 572 | Spotify for the terminal written in Rust 🚀 | [
"cli",
"rust",
"spotify",
"spotify-api",
"spotify-tui",
"terminal",
"terminal-based"
] | MIT | src/redirect_uri.rs | redirect_uri.rs | 2,005 | use rspotify::{oauth2::SpotifyOAuth, util::request_token};
use std::{
io::prelude::*,
net::{TcpListener, TcpStream},
};
pub fn redirect_uri_web_server(spotify_oauth: &mut SpotifyOAuth, port: u16) -> Result<String, ()> {
let listener = TcpListener::bind(format!("127.0.0.1:{}", port));
match listener {
Ok(l... | 200 | 2,005 | 79 | 0.98 | 2026-04-17T13:45:00.572107 | true |
github_Morganamilo_paru_619158d53334207f91f8417f4f80c7af8991e561 | Rust | Morganamilo | paru | 8,603 | 309 | Feature packed AUR helper | [
"arch",
"archlinux",
"aur-helper",
"hacktoberfest",
"pacman",
"paru",
"pkgbuild",
"yaourt",
"yay"
] | GPL-3.0 | src/order.rs | order.rs | 3,643 | use crate::config::Config;
use crate::resolver::flags;
use anyhow::Result;
use aur_depends::{Actions, Conflict, Package, Resolver};
use log::debug;
use std::collections::HashSet;
pub async fn order(config: &mut Config) -> Result<i32> {
let mut cache = HashSet::new();
let flags = flags(config);
let quiet =... | 298 | 3,643 | 123 | 0.98 | 2026-04-17T14:30:51.843717 | true |
github_goreleaser_goreleaser_5b0f600f2a7b7137d77818cde7c53cd85bdeeaec | Go | goreleaser | goreleaser | 15,713 | 1,065 | Release engineering, simplified | [
"announcements",
"github-actions",
"hacktoberfest",
"package",
"release-automation",
"release-engineering"
] | MIT | internal/logext/writer.go | writer.go | 728 | // Package logext contains log extensions.
package logext
import (
"io"
"os"
"github.com/caarlos0/log"
)
// NewWriter creates a new log writer.
func NewWriter() io.Writer {
return NewConditionalWriter(false)
}
// NewConditionalWriter creates a new log writer that only writes when the given condition is met or d... | 100 | 728 | 38 | 0.98 | 2026-04-17T10:30:24.109507 | true |
github_bigint_hey_0cd333543c64d678ee978e21d147a0fe061e8349 | 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/data/contracts.ts | contracts.ts | 153 | export const CONTRACTS = {
app: "0x1eFA8F82d9E919F6b6A5f1701131c9Cb1a943BAA",
defaultToken: "[REDACTED_API_KEY]"
} as const;
| 12 | 153 | 5 | 0.98 | 2026-04-18T01:22:54.911204 | true |
github_kriasoft_graphql-starter-kit_027d0ed3b30be074edad02f11412852b66cdae22 | TypeScript | kriasoft | graphql-starter-kit | 3,971 | 554 | 💥 Monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, and Joy UI. | [
"api",
"boilerplate",
"cloud-run",
"graphql",
"graphql-yoga",
"hackathon",
"jotai",
"joy-ui",
"monorepo",
"nodejs",
"postgres",
"postgresql",
"pothos",
"prisma",
"react",
"starter-kit",
"template",
"terraform",
"typescript",
"yarn"
] | MIT | app/global.d.ts | global.d.ts | 790 | /* SPDX-FileCopyrightText: 2014-present Kriasoft */
/* SPDX-License-Identifier: MIT */
import * as React from "react";
import "vite/client";
interface Window {
dataLayer: unknown[];
}
interface ImportMetaEnv {
readonly VITE_APP_ENV: string;
readonly VITE_APP_NAME: string;
readonly VITE_APP_ORIGIN: string;
... | 79 | 790 | 34 | 0.98 | 2026-04-17T18:02:40.138704 | true |
github_lencx_ChatGPT_3e90ebd2cf8d541db4d189d2b38c40243786d6de | TypeScript | lencx | ChatGPT | 54,360 | 6,177 | 🔮 ChatGPT Desktop Application (Mac, Windows and Linux) | [
"ai",
"app",
"application",
"chatgpt",
"desktop-app",
"gpt",
"gpt-3",
"linux",
"macos",
"notes-app",
"openai",
"rust",
"tauri",
"webview",
"windows"
] | UNKNOWN | vite.config.ts | vite.config.ts | 655 | import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tsconfigPaths from 'vite-tsconfig-paths';
// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [tsconfigPaths(), react()],
// Vite options tailored for Tauri development and only applied in `tauri de... | 87 | 655 | 23 | 0.98 | 2026-04-17T13:18:15.308407 | true |
github_PrefectHQ_marvin_19e72383564e9c7b1682ac1444c5a15117b74205 | Python | PrefectHQ | marvin | 6,136 | 396 | an ambient intelligence library | [
"agents",
"ai",
"ambient-ai",
"chatbots",
"gpt",
"llm",
"nli",
"python",
"structured-outputs"
] | Apache-2.0 | src/marvin/database.py | database.py | 19,076 | """Database management for persistence.
This module provides utilities for managing database sessions and migrations.
"""
import asyncio
import inspect
import uuid
from collections.abc import AsyncGenerator
from contextlib import asynccontextmanager
from datetime import datetime, timezone
from pathlib import Path
fro... | 1,793 | 19,076 | 565 | 0.98 | 2026-04-17T15:43:17.075837 | true |
github_cvat-ai_cvat_69e3d4e676596aaff73ae460d95637efb8625026 | Python | cvat-ai | cvat | 15,689 | 3,655 | Annotate better with CVAT, the industry-leading data engine for machine learning. Used and trusted by teams at any scale, for data of any scale. | [
"annotation",
"annotation-tool",
"annotations",
"boundingbox",
"computer-vision",
"computer-vision-annotation",
"dataset",
"deep-learning",
"image-annotation",
"image-classification",
"image-labeling",
"image-labelling-tool",
"imagenet",
"labeling",
"labeling-tool",
"object-detection",... | MIT | manage.py | manage.py | 628 | #!/usr/bin/env python3
# Copyright (C) 2018-2022 Intel Corporation
#
# SPDX-License-Identifier: MIT
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cvat.settings.development")
try:
from django.core.management import execute_from_command_line
except... | 62 | 628 | 21 | 0.98 | 2026-04-22T13:55:31.231511 | true |
github_lucidrains_mixture-of-experts_ba213a5e850d313b70f517fe1c3894313e48532f | Python | lucidrains | mixture-of-experts | 857 | 70 | A Pytorch implementation of Sparsely-Gated Mixture of Experts, for massively increasing the parameter count of language models | [
"artificial-intelligence",
"deep-learning",
"mixture-of-experts",
"transformer"
] | MIT | setup.py | setup.py | 745 | from setuptools import setup, find_packages
setup(
name = 'mixture-of-experts',
packages = find_packages(),
version = '0.2.3',
license='MIT',
description = 'Sparsely-Gated Mixture of Experts for Pytorch',
author = 'Phil Wang',
author_email = '[REDACTED_EMAIL]',
url = 'https://github.com/lucidrains/mixt... | 79 | 745 | 24 | 0.98 | 2026-04-22T21:21:02.341200 | true |
github_zitadel_zitadel_f8a4e1b372671ee2c455bb9132c6d575167d8968 | JavaScript | zitadel | zitadel | 13,546 | 1,031 | ZITADEL - Identity infrastructure, simplified for you. | [
"2fa",
"authentication",
"authorization",
"fido2",
"identity",
"login",
"mfa",
"multitenancy",
"oauth2",
"oidc",
"openid-connect",
"passkeys",
"saml",
"scim",
"sso",
"user"
] | AGPL-3.0 | .releaserc.js | .releaserc.js | 1,443 | module.exports = {
branches: [
{ name: "next" },
{ name: "next-rc", prerelease: "rc" },
],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
draftRelease: true,
successComment: false,
... | 82 | 1,443 | 52 | 0.98 | 2026-04-17T11:18:39.132242 | true |
github_firefox-devtools_profiler_aa235e2d1ebdb07d3f4ec89e0a4a608e94f74ad9 | TypeScript | firefox-devtools | profiler | 1,481 | 465 | Firefox Profiler — Web app for Firefox performance analysis | [
"devtools",
"firefox",
"gecko-profiler",
"javascript",
"performance",
"profiler",
"react",
"redux"
] | MPL-2.0 | src/actions/code.ts | code.ts | 1,884 | /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import type {
Action,
SourceCodeLoadingError,
ApiQueryError,
DecodedInstruction,
IndexIntoSourceTable,
} ... | 187 | 1,884 | 72 | 0.98 | 2026-04-18T00:29:31.863085 | true |
github_ory_kratos_61bb69e877c59120eed230aabc0b8fc8e25831b7 | Go | ory | kratos | 13,583 | 1,127 | Headless cloud-native authentication and identity management written in Go. Scales to a billion+ users. Replace Homegrown, Auth0, Okta, Firebase with better UX and DX. Passkeys, Social Sign In, OIDC, Magic Link, Multi-Factor Auth, SMS, SAML, TOTP, and more. Runs everywhere, runs best on Ory Network. | [
"hacktoberfest",
"identity",
"identity-management",
"login",
"profile-management",
"registration",
"user",
"user-management",
"user-profile",
"user-profiles",
"users"
] | Apache-2.0 | pkg/client-go/model_create_identity_body.go | model_create_identity_body.go | 16,717 | /*
Ory Identities API
This is the API specification for Ory Identities with features such as registration, login, recovery, account verification, profile settings, password reset, identity management, session management, email and sms delivery, and more.
API version:
Contact: [REDACTED_EMAIL]
*/
// Code generated by... | 2,195 | 16,717 | 514 | 0.98 | 2026-04-17T11:17:57.030951 | true |
github_keystonejs_keystone-classic_8e482e8db2614631ca4b7542dc0c284265a045e3 | JavaScript | keystonejs | keystone-classic | 14,530 | 2,175 | Node.js CMS and web app framework | [
"cms",
"javascript",
"keystonejs",
"nodejs"
] | MIT | lib/core/importer.js | importer.js | 1,382 | var fs = require('fs');
var debug = require('debug')('keystone:core:importer');
var path = require('path');
/**
* Returns a function that looks in a specified path relative to the current
* directory, and returns all .js modules in it (recursively).
*
* ####Example:
*
* var importRoutes = keystone.importer(_... | 167 | 1,382 | 56 | 0.98 | 2026-04-23T06:55:14.257932 | true |
github_NodeBB_NodeBB_2c2053f9fae0404d916c39b05143fdc2a83e73f5 | JavaScript | NodeBB | NodeBB | 15,048 | 2,942 | Node.js based forum software built for the modern web | [
"community",
"forum",
"javascript",
"mongodb",
"node",
"nodebb",
"nodejs",
"postgresql",
"redis",
"socket-io",
"websockets"
] | GPL-3.0 | src/categories/update.js | update.js | 5,678 | 'use strict';
const db = require('../database');
const meta = require('../meta');
const utils = require('../utils');
const slugify = require('../slugify');
const translator = require('../translator');
const plugins = require('../plugins');
const cache = require('../cache');
module.exports = function (Categories) {
C... | 532 | 5,678 | 170 | 0.98 | 2026-04-23T06:53:02.285064 | true |
github_kaarthik108_snowChat_fa89599e4af19d518e4b0d7a8b0d5f6db65caf5e | Python | kaarthik108 | snowChat | 551 | 289 | Chat snowflake - Text to SQL | [
"agents",
"chatgpt",
"langchain",
"langgraph",
"llama",
"snowflake",
"snowpark",
"streamlit",
"supabase"
] | UNKNOWN | tools.py | tools.py | 1,301 | import streamlit as st
from supabase.client import Client, create_client
from langchain_openai import OpenAIEmbeddings
from langchain_community.vectorstores import SupabaseVectorStore
from langchain.tools.retriever import create_retriever_tool
from langchain_community.tools import DuckDuckGoSearchRun
from utils.snow_co... | 102 | 1,301 | 40 | 0.98 | 2026-04-23T00:54:26.705427 | true |
github_dagger_dagger_13bdc4ce17ef232772867d38b0fa2a9e1af6f02a | Go | dagger | dagger | 15,670 | 856 | Automation engine to build, test and ship any codebase. Runs locally, in CI, or directly in the cloud | [
"agents",
"ai",
"caching",
"ci-cd",
"containers",
"continuous-deployment",
"continuous-integration",
"dag",
"dagger",
"devops",
"docker",
"graphql",
"workflows"
] | Apache-2.0 | core/codegen.go | codegen.go | 1,420 | package core
import (
"slices"
"github.com/vektah/gqlparser/v2/ast"
"github.com/dagger/dagger/dagql"
)
type GeneratedCode struct {
Code dagql.ObjectResult[*Directory] `field:"true" doc:"The directory containing the generated code."`
VCSGeneratedPaths []string `field:"true" name:"vcsGeneratedPaths" doc:"List o... | 157 | 1,420 | 57 | 0.98 | 2026-04-17T10:31:25.612660 | true |
github_farion1231_cc-switch_8379c217bc85ca41e9498f10d714787acbec7e2c | TypeScript | farion1231 | cc-switch | 46,404 | 2,957 | A cross-platform desktop All-in-One assistant tool for Claude Code, Codex, OpenCode, openclaw & Gemini CLI. | [
"ai-tools",
"claude-code",
"codex",
"desktop-app",
"mcp",
"minimax",
"omo",
"open-source",
"openclaw",
"openclaw-ui",
"opencode",
"provider-management",
"rust",
"skills",
"skills-management",
"tauri",
"typescript",
"wsl-support"
] | MIT | src/types.ts | types.ts | 18,216 | export type ProviderCategory =
| "official" // 官方
| "cn_official" // 开源官方(原"国产官方")
| "cloud_provider" // 云服务商(AWS Bedrock 等)
| "aggregator" // 聚合网站
| "third_party" // 第三方供应商
| "custom" // 自定义
| "omo" // Oh My OpenCode
| "omo-slim"; // Oh My OpenCode Slim
export interface Provider {
id: string;
name... | 1,662 | 14,894 | 572 | 0.98 | 2026-04-17T13:18:58.981419 | true |
github_TheAlgorithms_Rust_82756417f30aac495ca7c39dbb4ef6d78904a8b4 | Rust | TheAlgorithms | Rust | 25,663 | 2,550 | All Algorithms implemented in Rust | [
"algorithms",
"data-structures",
"hacktoberfest",
"rust",
"rust-lang"
] | MIT | src/compression/mod.rs | mod.rs | 568 | mod burrows_wheeler_transform;
mod huffman_encoding;
mod lz77;
mod move_to_front;
mod peak_signal_to_noise_ratio;
mod run_length_encoding;
pub use self::burrows_wheeler_transform::{all_rotations, bwt_transform, reverse_bwt, BwtResult};
pub use self::huffman_encoding::{huffman_decode, huffman_encode};
pub use self::lz7... | 37 | 568 | 14 | 0.98 | 2026-04-17T13:32:06.633808 | true |
github_spinframework_spin_9ce3c86b8487120c4dbaeaaa7a8ae2ff680c1e2f | Rust | spinframework | spin | 6,373 | 301 | Spin is the open source developer tool for building and running serverless applications powered by WebAssembly. | [
"serverless",
"spin",
"webassembly"
] | Apache-2.0 | src/commands/registry.rs | registry.rs | 7,811 | use crate::{directory_rels::notify_if_nondefault_rel, opts::*};
use anyhow::{Context, Result};
use clap::{Parser, Subcommand};
use indicatif::{ProgressBar, ProgressStyle};
use spin_common::arg_parser::parse_kv;
use spin_oci::{client::InferPredefinedAnnotations, Client, ComposeMode};
use std::{io::Read, path::PathBuf, t... | 783 | 7,811 | 244 | 0.98 | 2026-04-17T14:49:45.627773 | true |
github_axios_axios_1d2c8375d8bedeb9bf9f492f5d7c7c90b464d583 | 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/adapters/xhr.js | xhr.js | 7,448 | import utils from '../utils.js';
import settle from '../core/settle.js';
import transitionalDefaults from '../defaults/transitional.js';
import AxiosError from '../core/AxiosError.js';
import CanceledError from '../cancel/CanceledError.js';
import parseProtocol from '../helpers/parseProtocol.js';
import platform from '... | 675 | 7,448 | 223 | 0.98 | 2026-04-23T06:16:42.728445 | true |
github_containerd_nerdctl_e5a2dbc42fb110c2b7e5102cff79a3788f4bb6db | Go | containerd | nerdctl | 10,023 | 765 | contaiNERD CTL - Docker-compatible CLI for containerd, with support for Compose, Rootless, eStargz, OCIcrypt, IPFS, ... | [
"containerd"
] | Apache-2.0 | pkg/containerinspector/containerinspector_windows.go | containerinspector_windows.go | 821 | /*
Copyright The containerd 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... | 106 | 821 | 30 | 0.98 | 2026-04-17T12:47:36.464931 | true |
github_ekzhang_bore_d9c5d3b83a38b89d300bc2e8a8bcb4c75ec63a15 | Rust | ekzhang | bore | 11,055 | 486 | 🕳 bore is a simple CLI tool for making tunnels to localhost | [
"cli",
"localhost",
"networking",
"proxy",
"rust",
"self-hosted",
"tcp",
"tunnel"
] | MIT | src/shared.rs | shared.rs | 3,517 | //! Shared data structures, utilities, and protocol definitions.
use std::time::Duration;
use anyhow::{Context, Result};
use futures_util::{SinkExt, StreamExt};
use serde::{de::DeserializeOwned, Deserialize, Serialize};
use tokio::io::{AsyncRead, AsyncWrite};
use tokio::time::timeout;
use tokio_util::codec::{AnyDelim... | 407 | 3,517 | 100 | 0.98 | 2026-04-17T14:22:08.068983 | true |
github_ChatGPTNextWeb_NextChat_b74509881eff0985f590bdedbe471784ff82da85 | 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/mcp/utils.ts | utils.ts | 349 | export function isMcpJson(content: string) {
return content.match(/```json:mcp:([^{\s]+)([\s\S]*?)```/);
}
export function extractMcpJson(content: string) {
const match = content.match(/```json:mcp:([^{\s]+)([\s\S]*?)```/);
if (match && match.length === 3) {
return { clientId: match[1], mcp: JSON.parse(match... | 35 | 349 | 12 | 0.98 | 2026-04-23T08:58:23.727674 | true |
github_dimforge_rapier_b0c20692c587eb60a866829a11ed26d4ead398b6 | Rust | dimforge | rapier | 5,287 | 342 | 2D and 3D physics engines focused on performance. | [] | Apache-2.0 | src/utils/orthonormal_basis.rs | orthonormal_basis.rs | 2,951 | //! SimdBasis trait for computing orthonormal bases.
#[cfg(feature = "dim3")]
use crate::math::Real;
use crate::math::Vector;
use crate::utils::{CopySign, SimdRealCopy};
use na::{Vector2, Vector3};
/// Trait to compute the orthonormal basis of a vector.
pub trait OrthonormalBasis: Sized {
/// The type of the arra... | 378 | 2,951 | 91 | 0.98 | 2026-04-17T15:15:17.992342 | true |
github_imsnif_bandwhich_aec444d9f38ddc719e1f93213993c13ed244de5b | Rust | imsnif | bandwhich | 11,691 | 340 | Terminal bandwidth utilization tool | [
"bandwidth",
"cli",
"dashboard",
"networking"
] | MIT | src/os/lsof.rs | lsof.rs | 292 | use crate::{os::lsof_utils::get_connections, OpenSockets};
pub(crate) fn get_open_sockets() -> OpenSockets {
let sockets_to_procs = get_connections()
.filter_map(|raw| raw.as_local_socket().map(|s| (s, raw.proc_info)))
.collect();
OpenSockets { sockets_to_procs }
}
| 23 | 292 | 10 | 0.98 | 2026-04-17T14:20:43.028542 | true |
github_stoplightio_elements_e29bf11e2c020464f16be8dd6c71918534b7efaf | JavaScript | stoplightio | elements | 2,397 | 259 | Build beautiful, interactive API Docs with embeddable React or Web Components, powered by OpenAPI and Markdown. | [
"api",
"api-documentation",
"gatsby",
"hacktoberfest",
"openapi",
"openapi3",
"openapi3-1",
"react",
"stoplight-elements",
"stoplight-oss",
"swagger-oss"
] | Apache-2.0 | web-components.webpack.config.js | web-components.webpack.config.js | 1,013 | const path = require('path');
const webpack = require('webpack');
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
module.exports = {
mode: 'production',
entry: './src/web-components/index.ts',
resolve: {
extensions: ['.tsx', '.ts', '.js', '.jsx'],
plugins: [new TsconfigPathsPlugin()... | 88 | 1,013 | 47 | 0.98 | 2026-04-17T18:07:53.585188 | true |
github_jaredhanson_passport_dcfa770c988eff6e6ee49d267059f2e6bc5dd94f | JavaScript | jaredhanson | passport | 23,532 | 1,251 | Simple, unobtrusive authentication for Node.js. | [
"express",
"nodejs",
"oauth",
"oauth2",
"openid",
"openid-connect",
"passport",
"saml"
] | MIT | lib/index.js | index.js | 465 | // Module dependencies.
var Passport = require('./authenticator')
, SessionStrategy = require('./strategies/session');
/**
* Export default singleton.
*
* @api public
*/
exports = module.exports = new Passport();
/**
* Expose constructors.
*/
exports.Passport =
exports.Authenticator = Passport;
exports.Strat... | 51 | 465 | 25 | 0.98 | 2026-04-23T06:43:29.576585 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.