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_starship_starship_254a56eda80338af3bf5ee068e66257a2f4beef0 | Rust | starship | starship | 56,483 | 2,470 | ☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell! | [
"bash",
"fish",
"fish-prompt",
"fish-theme",
"oh-my-zsh",
"powershell",
"rust",
"shell-prompt",
"starship",
"zsh",
"zsh-prompt",
"zsh-theme"
] | ISC | src/config.rs | config.rs | 35,737 | use crate::configs::Palette;
use crate::context::Context;
use crate::utils;
use crate::utils::serde::{ValueDeserializer, ValueRef};
use nu_ansi_term::Color;
use serde::{
Deserialize, Deserializer, Serialize, de::Error as SerdeError, de::value::Error as ValueError,
};
use std::borrow::Cow;
use std::clone::Clone;
u... | 2,798 | 35,733 | 1,063 | 0.98 | 2026-04-17T13:17:25.728401 | true |
github_paperless-ngx_paperless-ngx_2ed6758dd4e36bf1a4f475a959335181243be3e2 | Python | paperless-ngx | paperless-ngx | 39,749 | 2,569 | A community-supported supercharged document management system: scan, index and archive all your documents | [
"angular",
"archiving",
"django",
"dms",
"document-management",
"document-management-system",
"hacktoberfest",
"machine-learning",
"ocr",
"optical-character-recognition",
"pdf"
] | GPL-3.0 | src/documents/utils.py | utils.py | 4,684 | import hashlib
import logging
import shutil
from collections.abc import Callable
from collections.abc import Iterable
from os import utime
from pathlib import Path
from subprocess import CompletedProcess
from subprocess import run
from typing import TypeVar
from django.conf import settings
from PIL import Image
_T = ... | 536 | 4,682 | 170 | 0.98 | 2026-04-22T13:33:53.279535 | true |
github_usememos_memos_39eaaec0112ff8f0d13c906af238bf641fcd6870 | 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/filter/render.go | render.go | 23,281 | package filter
import (
"fmt"
"strings"
"github.com/pkg/errors"
)
type renderer struct {
schema Schema
dialect DialectName
placeholderOffset int
placeholderCounter int
args []any
}
type renderResult struct {
sql string
trivial bool
unsatisfiable bool
... | 2,561 | 23,281 | 767 | 0.98 | 2026-04-17T07:16:41.139602 | true |
github_jtroo_kanata_1241656115395c67eb217ffdccef22007a9373fa | Rust | jtroo | kanata | 7,157 | 258 | Improve keyboard comfort and usability with advanced customization | [
"cross-platform",
"interception-driver",
"keyboard",
"keyboard-layout",
"linux",
"macos",
"mouse",
"mouse-emulation",
"rust",
"windows"
] | LGPL-3.0 | src/kanata/linux.rs | linux.rs | 8,570 | #![cfg_attr(
feature = "simulated_output",
allow(dead_code, unused_imports, unused_variables, unused_mut)
)]
use anyhow::{Result, anyhow, bail};
use evdev::{EventSummary, InputEvent, RelativeAxisCode};
use log::info;
use parking_lot::Mutex;
use std::convert::TryFrom;
use std::sync::Arc;
use std::sync::mpsc::Sy... | 692 | 8,570 | 217 | 0.98 | 2026-04-17T14:40:39.834454 | true |
github_rvben_rumdl_01d017eb24790f2823a447468d31d89699afbbce | Rust | rvben | rumdl | 1,039 | 44 | Fast Markdown linter and formatter written in Rust | [
"cli",
"developer-tools",
"formatter",
"linter",
"markdown",
"rust"
] | MIT | src/lib.rs | lib.rs | 30,022 | #![warn(unreachable_pub)]
#![warn(clippy::pedantic)]
// Style-only pedantic lints we don't enforce. Each one generated >5 occurrences
// that were either deliberate design choices or too noisy for the value
// delivered. Categories that flag potential bugs stay on.
#![allow(clippy::doc_markdown)]
#![allow(clippy::must_... | 2,656 | 30,022 | 792 | 0.98 | 2026-04-17T19:37:01.229671 | true |
github_MarkPDFdown_markpdfdown_0b4535e9c2bfc740c509d2dba150ea8602e90d20 | Python | MarkPDFdown | markpdfdown | 1,700 | 132 | A high-quality PDF to Markdown tool based on large language model visual recognition. 一款基于大模型视觉识别的高质量PDF转Markdown工具 | [
"llm",
"markdown",
"pdf",
"pdf-converter",
"pdf-markdown",
"pdf2markdown",
"pdf2md"
] | Apache-2.0 | src/markpdfdown/cli.py | cli.py | 4,222 | """
Command line interface for MarkPDFDown
"""
import argparse
import logging
import sys
from . import __version__
from .main import convert_from_file, convert_from_stdin
# Configure logging
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
handlers=[... | 415 | 4,222 | 150 | 0.98 | 2026-04-17T23:45:09.942098 | true |
github_kennethleungty_Llama-2-Open-Source-LLM-CPU-Inference_d1b0a665d3a3c6b2f3f00446b4e43f058f18aa90 | Python | kennethleungty | Llama-2-Open-Source-LLM-CPU-Inference | 976 | 207 | Running Llama 2 and other Open-Source LLMs on CPU Inference Locally for Document Q&A | [
"c-transformers",
"chatgpt",
"cpu",
"cpu-inference",
"deep-learning",
"document-qa",
"faiss",
"langchain",
"language-models",
"large-language-models",
"llama",
"llama-2",
"llm",
"machine-learning",
"natural-language-processing",
"nlp",
"open-source-llm",
"python",
"sentence-trans... | MIT | src/utils.py | utils.py | 1,620 | '''
===========================================
Module: Util functions
===========================================
'''
import box
import yaml
from langchain import PromptTemplate
from langchain.chains import RetrievalQA
from langchain.embeddings import HuggingFaceEmbeddings
from langchain.vectorstores import F... | 107 | 1,620 | 49 | 0.98 | 2026-04-18T00:04:11.114539 | true |
github_zalando_postgres-operator_37e41f1cf6540b67ce0434d9af4b93a9112c451e | Go | zalando | postgres-operator | 5,145 | 1,058 | Postgres operator creates and manages PostgreSQL clusters running in Kubernetes | [
"cluster",
"data-infrastructure",
"database-as-a-service",
"golang",
"kubernetes",
"managed-services",
"operator",
"postgres",
"postgres-operator",
"postgresql"
] | MIT | pkg/util/util_test.go | util_test.go | 7,443 | package util
import (
"reflect"
"testing"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"regexp"
"github.com/zalando/postgres-operator/pkg/spec"
)
var pgUsers = []struct {
in spec.PgUser
outmd5 string
outscramsha256 string
}{{spec.PgUser{
Name: "test",
Password: "password",
Flags... | 822 | 7,443 | 262 | 0.98 | 2026-04-17T21:36:00.461118 | true |
github_adam-mcdaniel_sage_b811269170b933c060c5c5db5a26158a2115fb42 | 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/side_effects/io.rs | io.rs | 28,663 | //! # I/O Module
//!
//! This module implements all the types related to the I/O operations available
//! to the core instruction set. This allows the core VM to communicate with various
//! instruments connected to the VM, without directly calling foreign functions.
//! This is a standardized interface for various use... | 2,939 | 28,663 | 716 | 0.98 | 2026-04-17T17:14:55.542622 | true |
github_ZhuLinsen_daily_stock_analysis_404891fde6d0531c5fa2c3cd9be5eb490ca2579a | Python | ZhuLinsen | daily_stock_analysis | 30,933 | 31,565 | LLM驱动的 A/H/美股智能分析器:多数据源行情 + 实时新闻 + LLM决策仪表盘 + 多渠道推送,零成本定时运行,纯白嫖. LLM-powered stock analysis system for A/H/US markets. | [
"agent",
"ai",
"aigc",
"gemini",
"llm",
"quant",
"quantitative-trading",
"rag",
"stock"
] | MIT | src/feishu_doc.py | feishu_doc.py | 6,146 | # feishu_doc.py
# -*- coding: utf-8 -*-
import logging
import json
import lark_oapi as lark
from lark_oapi.api.docx.v1 import *
from typing import List, Dict, Any, Optional
from src.config import get_config
logger = logging.getLogger(__name__)
class FeishuDocManager:
"""飞书云文档管理器 (基于官方 SDK lark-oapi)"""
def ... | 412 | 5,628 | 165 | 0.98 | 2026-04-22T14:56:56.153064 | true |
github_nuclio_nuclio_d0b6fedf0dcd855f25544b6b630101c8fa4fa0fe | Go | nuclio | nuclio | 5,699 | 564 | High-Performance Serverless event and data processing platform | [
"containers",
"docker",
"faas",
"faas-platform",
"functions",
"go",
"kubernetes",
"serverless"
] | Apache-2.0 | pkg/dashboard/registry.go | registry.go | 723 | /*
Copyright 2023 The Nuclio 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, soft... | 95 | 723 | 24 | 0.98 | 2026-04-17T21:22:29.596584 | true |
github_opendilab_DI-drive_fb49530fad992713a22d21cbc1ed330a431b83c0 | 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 | setup.py | setup.py | 2,948 | # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under t... | 260 | 2,948 | 99 | 0.98 | 2026-04-22T20:42:20.539524 | true |
github_txn2_kubefwd_70128b9469ea7ba2057592758b34829e5a351c30 | Go | txn2 | kubefwd | 4,089 | 222 | Bulk port forwarding Kubernetes services for local development. | [
"api-rest",
"developer-tools",
"devops",
"devops-tools",
"devtools",
"k8s",
"kubefwd",
"kubernetes",
"kubernetes-clusters",
"kubernetes-namespace",
"mcp-server",
"networking",
"port-forward",
"port-forwarding",
"proxy"
] | Apache-2.0 | pkg/fwdmcp/tools_test.go | tools_test.go | 59,974 | package fwdmcp
import (
"context"
"encoding/json"
"errors"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/txn2/kubefwd/pkg/fwdapi/types"
"github.com/txn2/kubefwd/pkg/fwdmetrics"
"github.com/txn2/kubefwd/pkg/fwdtui/state"
)
func TestHandleListServices(t *testing.T) {
resetGlobalState()
server... | 6,517 | 59,974 | 1,975 | 0.98 | 2026-04-17T22:22:08.459950 | true |
github_plastic-labs_honcho_de97d0d3487ed23c22033a2a196653f3dd7328d0 | Python | plastic-labs | honcho | 2,772 | 316 | 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/crud/representation.py | representation.py | 17,767 | from __future__ import annotations
import datetime
import logging
import time
from contextlib import suppress
from typing import Any
from sqlalchemy import select
from sqlalchemy.ext.asyncio import AsyncSession
from src import crud, exceptions, models, schemas
from src.config import settings
from src.dependencies im... | 1,283 | 17,767 | 507 | 0.98 | 2026-04-22T15:34:35.240673 | true |
github_rust-lang_rustlings_153994be335168e5d6b5ae0168745733d7cc063c | Rust | rust-lang | rustlings | 62,478 | 11,173 | :crab: Small exercises to get you used to reading and writing Rust code! | [
"beginner-friendly",
"exercises",
"rust",
"rustlings"
] | MIT | src/cli.rs | cli.rs | 1,970 | use clap::{Parser, Subcommand};
use crate::dev::DevCommand;
/// Rustlings is a collection of small exercises to get you used to writing and reading Rust code
#[derive(Parser)]
#[command(version)]
pub struct Args {
#[command(subcommand)]
pub command: Option<Command>,
/// Disable automatic opening of the cu... | 271 | 1,970 | 58 | 0.95 | 2026-04-13T14:05:08.091121 | true |
github_influxdata_telegraf_d54030907665261b294b4cc9358ea615b130eb3d | Go | influxdata | telegraf | 16,832 | 5,773 | Agent for collecting, processing, aggregating, and writing metrics, logs, and other arbitrary data. | [
"golang",
"hacktoberfest",
"influxdb",
"json",
"kafka",
"logs",
"metrics",
"modbus",
"monitoring",
"mqtt",
"opcua",
"t",
"telegraf",
"telemetry-collection",
"time-series",
"windows-eventlog",
"xpath"
] | MIT | internal/fuzz/json.go | json.go | 475 | package fuzz
// JSONDictionary from https://github.com/google/AFL/blob/master/dictionaries/json.dict
var JSONDictionary = []string{
"0",
",0",
":0",
"0:",
"-1.2e+3",
"true",
"false",
"null",
"\"\"",
",\"\"",
":\"\"",
"\"\":",
"{}",
",{}",
":{}",
"{\"\":0}",
"{{}}",
"[]",
",[]",
":[]",
"[0]",
"[[]... | 48 | 475 | 43 | 0.98 | 2026-04-17T10:19:27.402020 | true |
github_rust-lang_rustlings_78b9c20598d519aad97addd2ebd158780735fc90 | 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/app_state.rs | app_state.rs | 23,627 | use anyhow::{Context, Error, Result, bail};
use crossterm::{QueueableCommand, cursor, terminal};
use std::{
collections::HashSet,
fs::{File, OpenOptions},
io::{Read, Seek, StdoutLock, Write},
path::{MAIN_SEPARATOR_STR, Path},
process::{Command, Stdio},
sync::{
atomic::{AtomicUsize, Order... | 1,828 | 22,895 | 664 | 0.98 | 2026-04-17T13:16:08.620081 | true |
github_pubkey_rxdb_782cdf49c38b7afed821c5f0e623281003172aae | 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/doc-cache.ts | doc-cache.ts | 14,287 | import type {
RxDocument,
RxDocumentData,
RxStorageChangeEvent,
WeakRef,
FinalizationRegistry
} from './types/index.d.ts';
import {
getFromMapOrThrow,
overwriteGetterForCaching,
requestIdlePromiseNoQueue
} from './plugins/utils/index.ts';
import {
overwritable
} from './overwritable.... | 1,338 | 14,287 | 371 | 0.98 | 2026-04-23T08:21:56.109793 | true |
github_starship_starship_d93e37ac85a083c7f64d2f1a3caf70ce236df392 | Rust | starship | starship | 56,483 | 2,470 | ☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell! | [
"bash",
"fish",
"fish-prompt",
"fish-theme",
"oh-my-zsh",
"powershell",
"rust",
"shell-prompt",
"starship",
"zsh",
"zsh-prompt",
"zsh-theme"
] | ISC | src/configs/quarto.rs | quarto.rs | 900 | use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct QuartoConfig<'a> {
pub format: &'a str,
pub version_format: &'a str,
pub symbol: &'a s... | 85 | 898 | 35 | 0.98 | 2026-04-17T13:17:59.352980 | true |
github_pubkey_rxdb_f17d98997d3e95e4fb9491a0c9cd93d98c1721c0 | 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/types/rx-database.d.ts | rx-database.d.ts | 4,007 | import type {
RxCollection,
RxDumpCollection,
RxDumpCollectionAsAny
} from './rx-collection.d.ts';
import type {
RxDatabaseBase
} from '../rx-database.d.ts';
import { Observable } from 'rxjs';
import type { RxStorage } from './rx-storage.interface.d.ts';
import type { RxLocalDocument } from './plugins/l... | 424 | 4,007 | 125 | 0.98 | 2026-04-23T08:22:14.653692 | true |
github_codingo_Reconnoitre_dce0eb860fffcf9837a6b1d7f83d4414396185ab | Python | codingo | Reconnoitre | 2,189 | 459 | A security tool for multithreaded information gathering and service enumeration whilst building directory structures to store results, along with writing out recommendations for further testing. | [
"discover-services",
"enumeration",
"hacking",
"hacking-tool",
"kali-linux",
"nmap",
"offensive-security",
"oscp",
"penetration-testing",
"range",
"scanner",
"scanning",
"security",
"security-audit",
"security-scanner",
"security-tools",
"service-enumeration",
"services-discovered"... | GPL-3.0 | setup.py | setup.py | 1,263 | """ __Doc__ File handle class """
from setuptools import find_packages, setup
from Reconnoitre.lib.core.__version__ import __version__
def dependencies(imported_file):
""" __Doc__ Handles dependencies """
with open(imported_file) as file:
return file.read().splitlines()
with open("README.md") as fil... | 100 | 1,263 | 37 | 0.98 | 2026-04-18T00:51:14.694170 | true |
github_BrainJS_brain.js_f6326f534fd8123e721f21a040a82f641ebd4c25 | TypeScript | BrainJS | brain.js | 14,860 | 1,078 | 🤖 GPU accelerated Neural networks in JavaScript for Browsers and Node.js | [
"api",
"brain",
"browser",
"convolutional-neural-networks",
"easy-to-use",
"hacktoberfest",
"neural-network",
"node",
"nodejs",
"recurrent-neural-networks",
"stream",
"web"
] | MIT | src/activation/sigmoid.ts | sigmoid.ts | 257 | /**
* sigmoid activation
*/
export function activate(value: number): number {
return 1 / (1 + Math.exp(-value));
}
/**
* sigmoid derivative
*/
export function measure(weight: number, error: number): number {
return weight * (1 - weight) * error;
}
| 40 | 257 | 14 | 0.98 | 2026-04-17T17:55:47.915496 | true |
github_Kenshin_simpread_e5ace116b6f53cfec96eb5175ecd36f727ad4047 | JavaScript | Kenshin | simpread | 8,614 | 557 | 简悦 ( SimpRead ) - 让你瞬间进入沉浸式阅读的扩展 | [
"chrome",
"chrome-extension",
"crx",
"firefox",
"firefox-addon",
"firefox-extension",
"react",
"readability",
"reader",
"reading-list"
] | GPL-3.0 | src/vender/jquery-2.1.1.min.js | jquery-2.1.1.min.js | 84,245 | /*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof windo... | 1,304 | 84,245 | 5 | 0.98 | 2026-04-23T05:52:05.434041 | true |
github_ChromeDevTools_chrome-devtools-mcp_27a499d9185517331a88412d625d6a3eb6b15298 | 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/telemetry/ClearcutLogger.ts | ClearcutLogger.ts | 8,224 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import process from 'node:process';
import {DAEMON_CLIENT_NAME} from '../daemon/utils.js';
import {logger} from '../logger.js';
import type {zod, ShapeOutput} from '../third_party/index.js';
import type {LocalState, Persistence} ... | 777 | 8,224 | 295 | 0.98 | 2026-04-18T00:21:05.772699 | true |
github_ehang-io_nps_334a4eda205213dbbe86634df5f9ec0bd774224a | Go | ehang-io | nps | 34,024 | 6,081 | 一款轻量级、高性能、功能强大的内网穿透代理服务器。支持tcp、udp、socks5、http等几乎所有流量转发,可用来访问内网网站、本地支付接口调试、ssh访问、远程桌面,内网dns解析、内网socks5代理等等……,并带有功能强大的web管理端。a lightweight, high-performance, powerful intranet penetration proxy server, with a powerful web management terminal. | [
"dns",
"firewall",
"go",
"gzip",
"http",
"https",
"nat",
"nps",
"snnapy",
"socks",
"socks5",
"ssh",
"tcp",
"tunnel",
"udp"
] | GPL-3.0 | cmd/nps/nps.go | nps.go | 5,602 | package main
import (
"flag"
"log"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"sync"
"ehang.io/nps/lib/file"
"ehang.io/nps/lib/install"
"ehang.io/nps/lib/version"
"ehang.io/nps/server"
"ehang.io/nps/server/connection"
"ehang.io/nps/server/tool"
"ehang.io/nps/web/routers"
"ehang.io/nps/lib/com... | 535 | 5,418 | 214 | 0.98 | 2026-04-17T07:41:05.118140 | true |
github_MichalLytek_type-graphql_514f3316ce2b1908bf994776801d6853fe346d23 | TypeScript | MichalLytek | type-graphql | 8,087 | 674 | Create GraphQL schema and resolvers with TypeScript, using classes and decorators! | [
"api",
"controllers",
"decorators",
"gql",
"graphql",
"graphql-js",
"graphql-schema",
"hacktoberfest",
"resolvers",
"schema",
"typescript"
] | MIT | src/errors/ConflictingDefaultValuesError.ts | ConflictingDefaultValuesError.ts | 541 | export class ConflictingDefaultValuesError extends Error {
constructor(
typeName: string,
fieldName: string,
defaultValueFromDecorator: unknown,
defaultValueFromInitializer: unknown,
) {
super(
`The '${fieldName}' field of '${typeName}' has conflicting default values. ` +
`Default ... | 50 | 541 | 17 | 0.98 | 2026-04-17T17:57:49.836597 | true |
github_assafelovic_gpt-researcher_cb2b1b978f9adffefd30c6aeecf191a48fcb1bc4 | Python | assafelovic | gpt-researcher | 26,610 | 3,556 | An autonomous agent that conducts deep research on any data using any LLM providers | [
"agent",
"ai",
"automation",
"deepresearch",
"llms",
"mcp",
"mcp-server",
"python",
"research",
"search",
"webscraping"
] | Apache-2.0 | cli.py | cli.py | 6,461 | """
Provides a command line interface for the GPTResearcher class.
Usage:
```shell
python cli.py "<query>" --report_type <report_type> --tone <tone> --query_domains <foo.com,bar.com>
```
"""
import asyncio
import argparse
from argparse import RawTextHelpFormatter
from uuid import uuid4
import os
from dotenv import ... | 530 | 6,461 | 217 | 0.98 | 2026-04-22T17:09:36.844757 | true |
github_banzaicloud_pipeline_59c7dadc7841fd46acb88d2bfd8be51b669d2192 | Go | banzaicloud | pipeline | 1,508 | 162 | Banzai Cloud Pipeline is a solution-oriented application platform which allows enterprises to develop, deploy and securely scale container-based applications in multi- and hybrid-cloud environments. | [
"container-management",
"containers",
"golang",
"kubernetes",
"microservices",
"monitoring"
] | Apache-2.0 | internal/global/vault.go | vault.go | 1,055 | // Copyright © 2020 Banzai Cloud
//
// 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 ... | 151 | 1,054 | 44 | 0.98 | 2026-04-18T01:06:46.859327 | true |
github_awslabs_amazon-bedrock-agent-samples_3965aee50ebe14800412463721fe500e2af534ca | Python | awslabs | amazon-bedrock-agent-samples | 791 | 270 | Example Jupyter notebooks 📓 and code scripts 💻 for using Amazon Bedrock Agents 🤖 and its functionalities | [
"amazon-bedrock",
"amazon-bedrock-agents",
"bedrock",
"bedrock-agents",
"generative-ai",
"multi-agents-collaboration"
] | Apache-2.0 | src/utils/knowledge_base_helper.py | knowledge_base_helper.py | 40,162 | # Copyright 2024 Amazon.com and its affiliates; all rights reserved.
# This file is AWS Content and may not be duplicated or distributed without permission
"""
This module contains a helper class for building and using Knowledge Bases for Amazon Bedrock.
The KnowledgeBasesForAmazonBedrock class provides a convenient i... | 2,598 | 40,162 | 999 | 0.98 | 2026-04-22T22:01:58.099692 | true |
github_vercel_swr_4237b6abae992f974d67f1cda53179822c40135d | TypeScript | vercel | swr | 32,352 | 1,332 | React Hooks for Data Fetching | [
"cache",
"data",
"data-fetching",
"fetch",
"hook",
"hooks",
"nextjs",
"react",
"react-native",
"stale-while-revalidate",
"suspense",
"swr",
"vercel"
] | MIT | src/infinite/types.ts | types.ts | 4,513 | import type {
SWRConfiguration,
SWRResponse,
Arguments,
BareFetcher,
State,
StrictTupleKey,
MutatorOptions,
MutatorCallback
} from '../_internal'
type FetcherResponse<Data = unknown> = Data | Promise<Data>
export type SWRInfiniteFetcher<
Data = any,
KeyLoader extends SWRInfiniteKeyLoader = SWRInfi... | 515 | 4,513 | 158 | 0.98 | 2026-04-23T09:00:07.078743 | true |
github_dapr_dapr_156d81336cd47e7e47b7b19593e97ae23a54c497 | Go | dapr | dapr | 25,691 | 2,067 | Dapr is a portable runtime for building distributed applications across cloud and edge, combining event-driven architecture with workflow orchestration. | [
"containers",
"event-driven",
"kubernetes",
"microservice",
"microservices",
"pubsub",
"serverless",
"sidecar",
"state-management"
] | Apache-2.0 | pkg/operator/watchdog_test.go | watchdog_test.go | 10,376 | package operator
import (
"context"
"fmt"
"testing"
"time"
"github.com/stretchr/testify/require"
"go.uber.org/ratelimit"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"sigs.k8s.io/controller-runtime/pkg/c... | 913 | 10,376 | 293 | 0.98 | 2026-04-17T08:36:20.355494 | true |
github_yzhao062_anomaly-detection-resources_f88e72f7b006eb7a80cfd164b0f23636638fc72f | Python | yzhao062 | anomaly-detection-resources | 9,252 | 1,805 | Anomaly detection related books, papers, videos, and toolboxes. Last update late 2025 for LLM and VLM works! | [
"anomaly-detection",
"awesome",
"awesome-list",
"data-mining",
"fraud",
"fraud-detection",
"graph-neural-networks",
"large-language-models",
"llm",
"machine-learning",
"outlier",
"outlier-detection",
"outlier-ensembles",
"time-series-analysis",
"unsupervised-learning",
"vlm",
"vlms"
... | AGPL-3.0 | url_checker.py | url_checker.py | 6,051 | #!/usr/bin/env python3
"""
Robust URL checker for README-style reStructuredText documents.
Features:
1. Extracts and cleans HTTP/HTTPS links from text.
2. Removes common trailing punctuation from RST/Markdown contexts.
3. Uses retries and a browser-like User-Agent.
4. Falls back from HEAD to GET for servers that reje... | 554 | 6,051 | 200 | 0.98 | 2026-04-17T22:54:55.042225 | true |
github_rustdesk_rustdesk_5621d5e2a6884631b729f3365472a8a4121f91a8 | Rust | rustdesk | rustdesk | 111,120 | 16,633 | 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/lib.rs | lib.rs | 2,015 | mod keyboard;
/// cbindgen:ignore
pub mod platform;
#[cfg(not(any(target_os = "android", target_os = "ios")))]
pub use platform::{
clip_cursor, get_cursor, get_cursor_data, get_cursor_pos, get_focused_display,
set_cursor_pos, start_os_service,
};
#[cfg(not(any(target_os = "ios")))]
/// cbindgen:ignore
mod serve... | 227 | 2,015 | 80 | 0.95 | 2026-04-13T14:04:46.021075 | true |
github_graphql_graphql-js_65e6c7f666e7a455df933a7b69b04bad493cfd4a | TypeScript | graphql | graphql-js | 20,323 | 2,056 | A reference implementation of GraphQL for JavaScript | [
"graphql",
"graphql-js"
] | MIT | src/__tests__/starWarsValidation-test.ts | starWarsValidation-test.ts | 2,825 | import { expect } from 'chai';
import { describe, it } from 'mocha';
import { parse } from '../language/parser';
import { Source } from '../language/source';
import { validate } from '../validation/validate';
import { StarWarsSchema } from './starWarsSchema';
/**
* Helper function to test a query and the expected ... | 282 | 2,825 | 120 | 0.98 | 2026-04-18T01:24:38.195707 | true |
github_axios_axios_989a4178d50b272d73a1927b83bd1790f5ac8363 | 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/fromDataURI.js | fromDataURI.js | 1,369 | 'use strict';
import AxiosError from '../core/AxiosError.js';
import parseProtocol from './parseProtocol.js';
import platform from '../platform/index.js';
const DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
/**
* Parse data uri to a Buffer or Blob
*
* @param {String} uri
* @param {?Boolean}... | 162 | 1,369 | 54 | 0.98 | 2026-04-23T06:16:54.954611 | true |
github_bigint_hey_4fbf7bf37e91778e6250b4c40735b0a6afdf6a79 | 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/getAvatar.ts | getAvatar.ts | 802 | import { DEFAULT_AVATAR, TRANSFORMS } from "@/data/constants";
import imageKit from "./imageKit";
import sanitizeDStorageUrl from "./sanitizeDStorageUrl";
interface EntityWithAvatar {
metadata?: {
picture?: string | null;
icon?: string | null;
} | null;
}
const getAvatar = (
entity: EntityWithAvatar | n... | 86 | 802 | 33 | 0.98 | 2026-04-18T01:23:04.774603 | true |
github_bigint_hey_b05c7864ff9c89d6076e28636930e49ddc087f51 | 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/isAccountDeleted.ts | isAccountDeleted.ts | 228 | import { zeroAddress } from "viem";
import type { AccountFragment } from "@/indexer/generated";
const isAccountDeleted = (account: AccountFragment): boolean =>
account.owner === zeroAddress;
export default isAccountDeleted;
| 26 | 228 | 8 | 0.98 | 2026-04-18T01:23:10.505366 | true |
github_redux-form_redux-form_a52eb04139ce8ef1af5d15b5f685f78494677df6 | JavaScript | redux-form | redux-form | 12,500 | 1,621 | A Higher Order Component using react-redux to keep form state in a Redux store | [
"form",
"form-validation",
"forms",
"react",
"redux",
"redux-form",
"validation"
] | MIT | src/createFormValueSelector.js | createFormValueSelector.js | 1,130 | // @flow
import invariant from 'invariant'
import plain from './structure/plain'
import type { Structure, GetFormState } from './types'
import type { FormValueSelectorInterface } from './formValueSelector.types'
export default function createFormValueSelector({ getIn }: Structure<any, any>) {
return (form: string, g... | 121 | 1,130 | 24 | 0.98 | 2026-04-23T04:57:01.229771 | true |
github_ChromeDevTools_chrome-devtools-mcp_9e14b231a8e8197e5bff82abbac494c391899c07 | 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/utils/id.ts | id.ts | 366 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export function createIdGenerator() {
let i = 1;
return () => {
if (i === Number.MAX_SAFE_INTEGER) {
i = 0;
}
return i++;
};
}
export const stableIdSymbol = Symbol('stableIdSymbol');
export type WithSymbol... | 52 | 366 | 22 | 0.98 | 2026-04-23T08:42:54.010675 | true |
github_rust-lang_miri_7c870494f216c911019441c7cbb7a7f9c6160a6c | Rust | rust-lang | miri | 6,036 | 467 | An interpreter for Rust's mid-level intermediate representation | [] | Apache-2.0 | src/sym.rs | sym.rs | 853 | #![allow(non_upper_case_globals)]
#[doc(no_inline)]
pub use rustc_span::sym::*;
macro_rules! val {
($name:ident) => {
stringify!($name)
};
($name:ident $value:literal) => {
$value
};
}
macro_rules! generate {
($($name:ident $(: $value:literal)? ,)*) => {
/// To be supplied... | 88 | 853 | 37 | 0.98 | 2026-04-17T14:53:35.580796 | true |
github_iced-rs_iced_b0079b998c28fad8f41c7dcb99f95f515c91e66e | 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 | core/src/image.rs | image.rs | 10,078 | //! Load and draw raster graphics.
use crate::border;
use crate::{Bytes, Radians, Rectangle, Size};
use rustc_hash::FxHasher;
use std::hash::{Hash, Hasher};
use std::io;
use std::path::{Path, PathBuf};
use std::sync::{Arc, Weak};
/// A raster image that can be drawn.
#[derive(Debug, Clone, PartialEq)]
pub struct Ima... | 1,341 | 10,078 | 334 | 0.98 | 2026-04-17T13:26:55.392822 | true |
github_4thfever_cultivation-world-simulator_f76b3bd6da1073ff9499aabbc3453812f79fd161 | 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/classes/weapon_type.py | weapon_type.py | 1,540 | from enum import Enum
class WeaponType(Enum):
"""
兵器类型枚举
"""
SWORD = "SWORD" # 剑
SABER = "SABER" # 刀
SPEAR = "SPEAR" # 枪
STAFF = "STAFF" # 棍
FAN = "FAN" # 扇
WHIP = "WHIP" # 鞭
ZITHER = "ZITHER" # 琴
FLUTE = "FLUTE" ... | 147 | 1,488 | 52 | 0.98 | 2026-04-17T16:18:33.184510 | true |
github_ChatGPTNextWeb_NextChat_45e21b026979c770a267f1b3390296cc2ea50209 | 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/store/config.ts | config.ts | 6,563 | import { LLMModel } from "../client/api";
import { DalleQuality, DalleStyle, ModelSize } from "../typing";
import { getClientConfig } from "../config/client";
import {
DEFAULT_INPUT_TEMPLATE,
DEFAULT_MODELS,
DEFAULT_SIDEBAR_WIDTH,
DEFAULT_TTS_ENGINE,
DEFAULT_TTS_ENGINES,
DEFAULT_TTS_MODEL,
DEFAULT_TTS_MOD... | 674 | 6,563 | 262 | 0.98 | 2026-04-23T08:58:25.502482 | true |
github_voxel51_fiftyone_7ad1a66e7e702a6a9c78c0b2b23c04f3be98c42c | TypeScript | voxel51 | fiftyone | 10,591 | 742 | Refine high-quality datasets and visual AI models | [
"active-learning",
"artificial-intelligence",
"computer-vision",
"data-centric-ai",
"data-cleaning",
"data-curation",
"data-quality",
"data-science",
"deep-learning",
"developer-tools",
"image-classification",
"machine-learning",
"object-detection",
"python",
"unstructured-data",
"vect... | Apache-2.0 | app/vitest.setup.ts | vitest.setup.ts | 1,393 | /**
* Global test setup for Vitest
* This file is executed before running tests to set up the test environment
*/
// Mock window.URL.createObjectURL and revokeObjectURL
// These are browser APIs that aren't available in jsdom but are required by
// libraries like plotly.js/mapbox-gl
if (typeof window !== "undefined... | 209 | 1,393 | 50 | 0.98 | 2026-04-22T13:50:30.289675 | true |
github_deepfakes_faceswap_0ab2277440d8439c0b0a9cda9bbdea2deefc3875 | Python | deepfakes | faceswap | 55,172 | 13,408 | Deepfakes Software For All | [
"deep-face-swap",
"deep-learning",
"deep-neural-networks",
"deepface",
"deepfakes",
"deeplearning",
"face-swap",
"faceswap",
"fakeapp",
"machine-learning",
"myfakeapp",
"neural-nets",
"neural-networks",
"openfaceswap"
] | GPL-3.0 | lib/serializer.py | serializer.py | 10,381 | #!/usr/bin/env python3
"""
Library for serializing python objects to and from various different serializer formats
"""
import json
import logging
import os
import pickle
import zlib
from io import BytesIO
import numpy as np
from lib.utils import FaceswapError, get_module_objects
try:
import yaml
_HAS_YAML ... | 980 | 10,381 | 346 | 0.98 | 2026-04-17T06:42:37.477369 | true |
github_kubernetes_kubernetes_e167484781aa69e3f43e9938ae0179b971f18af6 | Go | kubernetes | kubernetes | 121,742 | 42,878 | Production-Grade Container Scheduling and Management | [
"cncf",
"containers",
"go",
"kubernetes"
] | Apache-2.0 | cmd/kube-proxy/proxy.go | proxy.go | 989 | /*
Copyright 2014 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, ... | 120 | 989 | 34 | 0.98 | 2026-04-17T06:52:39.822642 | true |
github_AUTOMATIC1111_stable-diffusion-webui_2e7258f6b135709026b99147214848aca7ec0c90 | Python | AUTOMATIC1111 | stable-diffusion-webui | 162,343 | 30,266 | Stable Diffusion web UI | [
"ai",
"ai-art",
"deep-learning",
"diffusion",
"gradio",
"image-generation",
"image2image",
"img2img",
"pytorch",
"stable-diffusion",
"text2image",
"torch",
"txt2img",
"unstable",
"upscaling",
"web"
] | AGPL-3.0 | .eslintrc.js | .eslintrc.js | 3,423 | /* global module */
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: "eslint:recommended",
parserOptions: {
ecmaVersion: "latest",
},
rules: {
"arrow-spacing": "error",
"block-spacing": "error",
"brace-style": "error",
"co... | 214 | 3,423 | 99 | 0.95 | 2026-04-13T14:06:00.890502 | true |
github_rclone_rclone_e1dc66e2c7684bc22f22faf61acfc318d973d24a | Go | rclone | rclone | 56,681 | 5,039 | "rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files | [
"azure-blob",
"azure-blob-storage",
"azure-files",
"backblaze-b2",
"cloud-storage",
"dropbox",
"encryption",
"ftp",
"fuse-filesystem",
"go",
"golang",
"google-cloud-storage",
"google-drive",
"onedrive",
"openstack-swift",
"rclone",
"s3",
"sftp",
"sync",
"webdav"
] | MIT | cmd/cmount/mountpoint_other.go | mountpoint_other.go | 649 | //go:build cmount && cgo && !windows
package cmount
import (
"errors"
"fmt"
"os"
"github.com/rclone/rclone/cmd/mountlib"
"github.com/rclone/rclone/fs"
)
func getMountpoint(f fs.Fs, mountPath string, opt *mountlib.Options) (string, error) {
fi, err := os.Stat(mountPath)
if err != nil {
return "", fmt.Errorf... | 88 | 649 | 30 | 0.98 | 2026-04-17T07:18:38.929207 | true |
github_fluxcd_flux2_16310e3a82098deacc62cb70c37de6eab65d8abd | Go | fluxcd | flux2 | 8,053 | 739 | Open and extensible continuous delivery solution for Kubernetes. Powered by GitOps Toolkit. | [
"continuous-delivery",
"gitops",
"gitops-toolkit",
"helm",
"kubernetes",
"kustomize"
] | Apache-2.0 | cmd/flux/alert.go | alert.go | 1,329 | /*
Copyright 2021 The Flux 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, softwar... | 156 | 1,329 | 58 | 0.98 | 2026-04-17T20:20:33.651519 | true |
github_ultraworkers_claw-code_bf8ea6d892cc4b98f1b7fda167534c0728861220 | 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/upstreamproxy/__init__.py | __init__.py | 541 | """Python package placeholder for the archived `upstreamproxy` subsystem."""
from __future__ import annotations
from src._archive_helper import load_archive_metadata
_SNAPSHOT = load_archive_metadata("upstreamproxy")
ARCHIVE_NAME = _SNAPSHOT["archive_name"]
MODULE_COUNT = _SNAPSHOT["module_count"]
SAMPLE_FILES = tu... | 46 | 541 | 15 | 0.98 | 2026-04-17T13:13:28.253675 | true |
github_redwoodjs_graphql_956faa5471a066baaf9aa9f132dee326ee28c61f | JavaScript | redwoodjs | graphql | 17,621 | 1,003 | RedwoodGraphQL | [
"apollo",
"graphql",
"jamstack",
"prisma",
"react"
] | MIT | prettier.config.js | prettier.config.js | 363 | /* eslint-env node */
// @ts-check
/**
* @see https://prettier.io/docs/en/configuration.html
* @type {import("prettier").Config}
*/
const config = {
bracketSpacing: true,
tabWidth: 2,
semi: false,
singleQuote: true,
plugins: [
'prettier-plugin-curly',
'prettier-plugin-sh',
'prettier-plugin-pac... | 36 | 363 | 21 | 0.98 | 2026-04-23T08:24:41.976714 | true |
github_SeaQL_sea-orm_72ca5ce32588b9fc4f15259c8f2d53d35cedcf2e | Rust | SeaQL | sea-orm | 9,543 | 693 | 🐚 A powerful relational ORM for Rust | [
"database",
"hacktoberfest",
"loco",
"mariadb",
"mysql",
"orm",
"postgres",
"rust",
"sql",
"sqlite",
"sqlx",
"tokio"
] | Apache-2.0 | src/executor/returning.rs | returning.rs | 1,121 | use super::SelectorTrait;
use crate::{ConnectionTrait, StatementBuilder, error::*};
use itertools::Itertools;
use std::marker::PhantomData;
#[derive(Clone, Debug)]
pub(super) struct ReturningSelector<S, Q>
where
S: SelectorTrait,
Q: StatementBuilder,
{
pub(crate) query: Q,
selector: PhantomData<S>,
}
... | 101 | 1,121 | 50 | 0.98 | 2026-04-17T14:27:22.277679 | true |
github_graphql_graphql-js_b392feeff06b4daac0733d3846e80d64c7e71dd6 | TypeScript | graphql | graphql-js | 20,323 | 2,056 | A reference implementation of GraphQL for JavaScript | [
"graphql",
"graphql-js"
] | MIT | src/language/visitor.ts | visitor.ts | 11,896 | import { devAssert } from '../jsutils/devAssert';
import { inspect } from '../jsutils/inspect';
import type { ASTNode } from './ast';
import { isNode, QueryDocumentKeys } from './ast';
import { Kind } from './kinds';
/**
* A visitor is provided to visit, it contains the collection of
* relevant functions to be call... | 1,685 | 11,896 | 410 | 0.98 | 2026-04-18T01:25:00.330482 | true |
github_samdenty_gqless_5c43f493ec1f43df5b352d724044d07d9507ee8f | JavaScript | samdenty | gqless | 3,662 | 51 | a GraphQL client without queries | [
"gqless",
"graphql",
"react",
"suspense",
"typescript"
] | UNKNOWN | internal/website/sidebars.js | sidebars.js | 1,557 | module.exports = {
docs: [
{
type: 'category',
label: 'Introduction',
collapsed: false,
items: [
'intro',
'intro/how-it-works',
// 'introduction/features',
'intro/new-in-2',
'contributing',
],
},
{ type: 'doc', id: 'getting-started' },
... | 113 | 1,557 | 73 | 0.98 | 2026-04-23T08:35:11.638720 | true |
github_NVIDIA_k8s-device-plugin_73fcbac955c026ba43215da77bf7950010310274 | Go | NVIDIA | k8s-device-plugin | 3,723 | 806 | NVIDIA device plugin for Kubernetes | [
"kubernetes"
] | Apache-2.0 | internal/lm/mig-strategy_test.go | mig-strategy_test.go | 12,466 | /**
# Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required... | 911 | 12,466 | 423 | 0.98 | 2026-04-17T22:27:45.116769 | true |
github_slackhq_nebula_8338d5173a002102c0f1ac9458701ba83563d977 | Go | slackhq | nebula | 17,229 | 1,122 | A scalable overlay networking tool with a focus on performance, simplicity and security | [] | MIT | remote_list.go | remote_list.go | 19,985 | package nebula
import (
"context"
"net"
"net/netip"
"slices"
"sort"
"strconv"
"sync"
"sync/atomic"
"time"
"github.com/sirupsen/logrus"
)
// forEachFunc is used to benefit folks that want to do work inside the lock
type forEachFunc func(addr netip.AddrPort, preferred bool)
// The checkFuncs here are to sim... | 2,821 | 19,985 | 720 | 0.98 | 2026-04-17T10:15:16.599297 | true |
github_sindresorhus_execa_6b7745ea3ae0d3dfc031a2958a8f58a7c0fb4210 | JavaScript | sindresorhus | execa | 7,493 | 250 | Process execution for humans | [
"binary",
"child-process",
"exec",
"execute",
"javascript",
"nodejs",
"shell",
"spawn",
"spawned-processes",
"streams"
] | MIT | lib/methods/template.js | template.js | 4,951 | import {ChildProcess} from 'node:child_process';
import isPlainObject from 'is-plain-obj';
import {isUint8Array, uint8ArrayToString} from '../utils/uint-array.js';
// Check whether the template string syntax is being used
export const isTemplateString = templates => Array.isArray(templates) && Array.isArray(templates.... | 580 | 4,951 | 154 | 0.98 | 2026-04-23T07:15:50.716870 | true |
github_drprojects_superpoint_transformer_f94083aa628eaacf6e665ff2f21d230cba088447 | Python | drprojects | superpoint_transformer | 987 | 132 | Official PyTorch implementation of Superpoint Transformer [ICCV'23], SuperCluster [3DV'24 Oral], and EZ-SP [ICRA'26] | [
"3d",
"3dv2024",
"deep-learning",
"efficient",
"fast",
"graph-clustering",
"hierarchical",
"iccv2023",
"lightweight",
"panoptic-segmentation",
"partition",
"partitioning",
"point-cloud",
"pytorch",
"semantic-segmentation",
"superpoint",
"transformer"
] | MIT | src/transforms/partition.py | partition.py | 27,341 | import torch
import numpy as np
from torch_scatter import scatter_sum, scatter_mean
from omegaconf import OmegaConf
from pycut_pursuit.cp_d0_dist import cp_d0_dist
from grid_graph import edge_list_to_forward_star
from src.transforms import Transform
from src.data import Data, NAG, Cluster, InstanceData
from src.utils ... | 2,741 | 27,333 | 654 | 0.98 | 2026-04-22T21:13:14.666801 | true |
github_shouldjs_should.js_bd557abd24e7b6ff28f63ddbd54399661b6965af | JavaScript | shouldjs | should.js | 1,894 | 120 | BDD style assertions for node.js -- test framework agnostic | [
"assertions",
"bdd",
"javascript",
"node-js",
"should",
"tdd",
"test",
"testing",
"tests"
] | MIT | lib/ext/string.js | string.js | 1,237 | /*
* should.js - assertion library
* Copyright(c) 2010-2013 TJ Holowaychuk <[REDACTED_EMAIL]>
* Copyright(c) 2013-2017 Denis Bardadym <[REDACTED_EMAIL]>
* MIT Licensed
*/
export default function(should, Assertion) {
/**
* Assert given string starts with prefix
* @name startWith
* @memberOf Assertion
... | 143 | 1,237 | 49 | 0.98 | 2026-04-23T12:27:03.094921 | true |
github_farion1231_cc-switch_ea641f0996fced39d21c61ac1cc41fd9c7c14189 | 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/hooks/useSkills.ts | useSkills.ts | 9,380 | import {
useMutation,
useQuery,
useQueryClient,
keepPreviousData,
} from "@tanstack/react-query";
import {
skillsApi,
type SkillBackupEntry,
type DiscoverableSkill,
type ImportSkillSelection,
type InstalledSkill,
type SkillUpdateInfo,
type SkillsShSearchResult,
} from "@/lib/api/skills";
import ty... | 860 | 8,770 | 361 | 0.98 | 2026-04-17T13:18:54.927299 | true |
github_skyzh_tiny-llm_df2f7730ced97aecbb3b6060868e052c298d3889 | Python | skyzh | tiny-llm | 4,096 | 307 | A course of learning LLM inference serving on Apple Silicon for systems engineers: build a tiny vLLM + Qwen. | [
"course",
"large-language-model",
"llm",
"python",
"qwen",
"qwen2",
"serving",
"vllm"
] | Apache-2.0 | src/tiny_llm_ref/layer_norm.py | layer_norm.py | 483 | import mlx.core as mx
class RMSNorm:
def __init__(self, dim: int, weight: mx.array, eps: float = 1e-5):
self.dim = dim
self.eps = eps
self.weight = weight.astype(mx.float32)
def __call__(self, x: mx.array) -> mx.array:
orig_dtype = x.dtype
x = x.astype(mx.float32)
... | 49 | 483 | 18 | 0.98 | 2026-04-17T23:26:57.787363 | true |
github_microsoft_qlib_dc6229f92d2c386c10dd7fbc075919e0d3988632 | Python | microsoft | qlib | 40,835 | 6,425 | Qlib is an AI-oriented Quant investment platform that aims to use AI tech to empower Quant Research, from exploring ideas to implementing productions. Qlib supports diverse ML modeling paradigms, including supervised learning, market dynamics modeling, and RL, and is now equipped with https://github.com/microsoft/RD-Ag... | [
"algorithmic-trading",
"auto-quant",
"deep-learning",
"finance",
"fintech",
"investment",
"machine-learning",
"paper",
"platform",
"python",
"quant",
"quant-dataset",
"quant-models",
"quantitative-finance",
"quantitative-trading",
"research",
"research-paper",
"stock-data"
] | MIT | setup.py | setup.py | 509 | import os
import numpy
from setuptools import Extension, setup
NUMPY_INCLUDE = numpy.get_include()
setup(
ext_modules=[
Extension(
"qlib.data._libs.rolling",
["qlib/data/_libs/rolling.pyx"],
language="c++",
include_dirs=[NUMPY_INCLUDE],
),
... | 28 | 509 | 25 | 0.98 | 2026-04-17T06:43:31.700639 | true |
github_nearai_ironclaw_99b8fd813c921dac9a06c31dbb0909af27fab462 | Rust | nearai | ironclaw | 11,845 | 1,350 | IronClaw is OpenClaw inspired implementation in Rust focused on privacy and security | [] | Apache-2.0 | src/boot_screen.rs | boot_screen.rs | 10,951 | //! Boot screen displayed after all initialization completes.
//!
//! Shows a compact ANSI-styled status panel with three tiers:
//! - **Tier 1 (always):** Name + version, model + backend.
//! - **Tier 2 (conditional):** Gateway URL, tunnel URL, non-default channels.
//! - **Tier 3 (removed):** Database, tool count, fe... | 840 | 10,581 | 357 | 0.98 | 2026-04-17T14:19:32.787920 | true |
github_nutsdb_nutsdb_e0c414f6c77442a10d9fc6b197a3b4d27aa7842c | Go | nutsdb | nutsdb | 3,563 | 342 | A simple, fast, embeddable, persistent key/value store written in pure Go. It supports fully serializable transactions and many data structures such as list, set, sorted set. | [
"data-structures",
"database",
"go",
"golang",
"key-value",
"kv-store",
"nutsdb",
"supports-transactions"
] | Apache-2.0 | hintfile.go | hintfile.go | 9,805 | // Copyright 2019 The nutsdb Author. 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 app... | 1,372 | 9,805 | 473 | 0.98 | 2026-04-17T18:21:51.491232 | true |
github_parse-community_parse-server_0c9069d6b5f64b42a108d0643421199797834869 | TypeScript | 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/index.ts | index.ts | 1,582 | import ParseServer from './ParseServer';
import FileSystemAdapter from '@parse/fs-files-adapter';
import InMemoryCacheAdapter from './Adapters/Cache/InMemoryCacheAdapter';
import NullCacheAdapter from './Adapters/Cache/NullCacheAdapter';
import RedisCacheAdapter from './Adapters/Cache/RedisCacheAdapter';
import LRUCach... | 136 | 1,582 | 48 | 0.98 | 2026-04-23T06:47:41.048434 | true |
github_stepfun-ai_Step-Audio-EditX_8200f322e25267c6aa8205951fed0d6ff3d4c3fd | Python | stepfun-ai | Step-Audio-EditX | 907 | 62 | A powerful 3B-parameter, LLM-based Reinforcement Learning audio edit model excels at editing emotion, speaking style, and paralinguistics, and features robust zero-shot text-to-speech | [
"audio-editing",
"cross-lingual",
"emotion-control",
"paralinguistics",
"reinforcement-learning",
"speaking-style",
"style-control",
"text-to-speech",
"tts",
"voice-cloning",
"zero-shot-tts"
] | Apache-2.0 | model_loader.py | model_loader.py | 8,040 | """
Unified model loading utility using vLLM for high-performance inference
Supports ModelScope, HuggingFace and local path loading
"""
import os
import logging
import threading
from typing import Optional
from transformers import AutoTokenizer
from funasr_detach import AutoModel
# vLLM imports
from vllm import LLM, S... | 645 | 8,023 | 233 | 0.98 | 2026-04-22T20:25:45.015873 | true |
github_Mrs4s_go-cqhttp_b18a76a7f2172fc3a83afaec4404ccf73fecc5c5 | Go | Mrs4s | go-cqhttp | 10,666 | 1,599 | cqhttp的golang实现,轻量、原生跨平台. | [
"bot",
"coolq",
"coolq-http-api",
"qqbot",
"qqrobot"
] | AGPL-3.0 | internal/selfdiagnosis/diagnoses.go | diagnoses.go | 3,669 | // Package selfdiagnosis 自我诊断相关
package selfdiagnosis
import (
"github.com/Mrs4s/MiraiGo/client"
log "github.com/sirupsen/logrus"
)
// NetworkDiagnosis 诊断网络状态并输出结果
func NetworkDiagnosis(c *client.QQClient) {
log.Infof("开始诊断网络情况")
qualityInfo := c.ConnectionQualityTest()
log.Debugf("聊天服务器连接延迟: %vms", qualityInfo.... | 241 | 2,901 | 82 | 0.98 | 2026-04-17T12:34:46.525261 | true |
github_zhouxiaoka_autoclip_mvp_3f1718bdeccd5ba7e3c678cbc1d71af2ee95d15c | Python | zhouxiaoka | autoclip_mvp | 953 | 165 | AutoClip: AI-powered video clipping and highlight generation · 一款智能高光提取与剪辑的二创工具 | [
"ai-video-editing",
"auto-highlight",
"llm",
"video",
"video-editing"
] | MIT | src/pipeline/step6_video.py | step6_video.py | 6,408 | """
Step 6: 视频切割 - 生成切片视频和合集视频
"""
import json
import logging
from typing import List, Dict, Optional
from pathlib import Path
from ..utils.video_processor import VideoProcessor
from ..config import METADATA_DIR, CLIPS_DIR, COLLECTIONS_DIR
logger = logging.getLogger(__name__)
class VideoGenerator:
"""视频生成器"""
... | 362 | 5,578 | 170 | 0.98 | 2026-04-18T00:05:06.285504 | true |
github_ChromeDevTools_chrome-devtools-mcp_4cefab55e6109ea0f55fc08b66410c26920ea4da | 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/formatters/ConsoleFormatter.ts | ConsoleFormatter.ts | 9,745 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {
createStackTraceForConsoleMessage,
type TargetUniverse,
SymbolizedError,
} from '../DevtoolsUtils.js';
import {UncaughtError} from '../PageCollector.js';
import * as DevTools from '../third_party/index.js';
import ty... | 856 | 9,745 | 351 | 0.98 | 2026-04-23T08:42:35.896514 | true |
github_dosco_graphjin_5f16de9ceac9525607303f61e02f77cbf6e6a106 | Go | dosco | graphjin | 3,050 | 187 | GraphJin - An Automagical Compiler to Connect AI to Your Databases | [
"cloud-native",
"cockroachdb",
"database",
"graphql",
"mariadb",
"mongodb",
"mssql",
"mysql",
"oracle",
"postgresql",
"sql",
"sqlite",
"yugabyte"
] | Apache-2.0 | core/schema_ddl.go | schema_ddl.go | 36,491 | package core
import (
"fmt"
"strings"
"github.com/dosco/graphjin/core/v3/internal/sdata"
)
// DDLDialect defines how to generate DDL for a specific database
type DDLDialect interface {
Name() string
QuoteIdentifier(s string) string
MapType(graphqlType string, notNull bool, primaryKey bool) string
MapDefault(d... | 4,134 | 36,491 | 1,306 | 0.98 | 2026-04-17T18:26:32.182580 | true |
github_open-policy-agent_opa_90148bed58a577e5ed740a56672532d9f3e852da | Go | open-policy-agent | opa | 11,603 | 1,544 | Open Policy Agent (OPA) is an open source, general-purpose policy engine. | [
"authorization",
"cloud-native",
"compliance",
"declarative",
"json",
"opa",
"open-policy-agent",
"policy"
] | Apache-2.0 | internal/compile/compile.go | compile.go | 4,528 | // Copyright 2025 The OPA Authors
// SPDX-License-Identifier: Apache-2.0
package compile
import (
"encoding/json"
"fmt"
"slices"
"github.com/open-policy-agent/opa/internal/levenshtein"
"github.com/open-policy-agent/opa/internal/ucast"
"github.com/open-policy-agent/opa/v1/ast"
)
const (
invalidUnknownCode = "... | 594 | 4,528 | 173 | 0.98 | 2026-04-17T12:14:39.893122 | true |
github_goharbor_harbor_c8eb7e428b9190365fbdd8127ba9ab9eda74a853 | TypeScript | goharbor | harbor | 28,287 | 5,198 | An open source trusted cloud native registry project that stores, signs, and scans content. | [
"cloud-native",
"cncf",
"cncf-project",
"container",
"container-management",
"container-registry",
"containers",
"docker",
"hacktoberfest",
"helm",
"kubernetes",
"registry"
] | Apache-2.0 | src/portal/cypress.config.ts | cypress.config.ts | 135 | import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:4200',
},
});
| 15 | 135 | 8 | 0.98 | 2026-04-17T08:25:36.292600 | true |
github_stepfun-ai_Step-Audio-EditX_fb3125927cc7c7330f5d2d730e5c76a554e93c5a | Python | stepfun-ai | Step-Audio-EditX | 907 | 62 | A powerful 3B-parameter, LLM-based Reinforcement Learning audio edit model excels at editing emotion, speaking style, and paralinguistics, and features robust zero-shot text-to-speech | [
"audio-editing",
"cross-lingual",
"emotion-control",
"paralinguistics",
"reinforcement-learning",
"speaking-style",
"style-control",
"text-to-speech",
"tts",
"voice-cloning",
"zero-shot-tts"
] | Apache-2.0 | src/dataset/edit_dataset.py | edit_dataset.py | 14,695 | import json
import logging
import hashlib
import os
import torch
import torchaudio
import numpy as np
from torch.utils.data import Dataset, ConcatDataset
from typing import List, Dict, Any, Optional, Union
from transformers import PreTrainedTokenizerBase, AutoTokenizer
from trl import apply_chat_template
AUDIO_EDIT_CL... | 1,131 | 14,455 | 326 | 0.98 | 2026-04-22T20:25:45.668244 | true |
github_GoogleCloudPlatform_microservices-demo_67271e4e7dc0354e3bc42780f378ef2214cfb4b7 | JavaScript | GoogleCloudPlatform | microservices-demo | 20,118 | 9,776 | Sample cloud-first application with 10 microservices showcasing Kubernetes, Istio, and gRPC. | [
"gcp",
"gke",
"google-cloud",
"grpc",
"istio",
"kubernetes",
"kustomize",
"sample-application",
"samples",
"skaffold",
"terraform"
] | Apache-2.0 | src/paymentservice/server.js | server.js | 2,838 | // Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in ... | 278 | 2,838 | 107 | 0.98 | 2026-04-17T09:30:45.202481 | true |
github_rustdesk_rustdesk_2ba49a0cfcb7206106ff159603851e4622656f06 | 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/hu.rs | hu.rs | 52,935 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Állapot"),
("Your Desktop", "Saját számítógép"),
("desk_tip", "A számítógép ezzel a jelszóval és azonosítóval érhető el távolról."),
("Password", "Jelszó"),
("R... | 4,659 | 50,124 | 748 | 0.98 | 2026-04-17T13:14:32.567598 | true |
github_getsentry_sentry_468af0188e462ad50b6505f8def30907228451b1 | TypeScript | getsentry | sentry | 43,664 | 4,662 | Developer-first error tracking and performance monitoring | [
"apm",
"crash-reporting",
"crash-reports",
"csp-report",
"devops",
"django",
"error-logging",
"error-monitoring",
"fair-source",
"hacktoberfest",
"monitor",
"monitoring",
"python",
"sentry",
"tag-production"
] | NOASSERTION | eslint.config.ts | eslint.config.ts | 52,047 | /**
* To get started with this ESLint Configuration list be sure to read at least
* these sections of the docs:
* - https://eslint.org/docs/latest/use/configure/configuration-files#specifying-files-and-ignores
* - https://eslint.org/docs/latest/use/configure/configuration-files#configuration-objects
* - https:/... | 3,917 | 52,047 | 1,399 | 0.98 | 2026-04-23T01:23:52.783160 | true |
github_iib0011_omni-tools_9ba4b71c790633e81b029cf8b89d63b1706a4310 | TypeScript | iib0011 | omni-tools | 9,110 | 600 | Self-hosted collection of powerful web-based tools for everyday tasks. No ads, no tracking, just fast, accessible utilities right from your browser! | [
"alternative",
"converter",
"data-manipulation",
"developer-tools",
"devtools",
"frontend",
"good-first-issue",
"image-manipulation",
"image-processing",
"javascript",
"pdf-manipulation",
"productivity",
"react",
"self-hosted",
"swissarmyknife",
"tools",
"typescript",
"video-manipu... | MIT | src/tools/index.test.ts | index.test.ts | 4,512 | import { describe, it, expect } from 'vitest';
import type { TFunction } from 'i18next';
import { filterTools } from './index';
import type { DefinedTool } from './defineTool';
import type { FullI18nKey, I18nNamespaces } from '../i18n';
const mergePdfTool = {
type: 'pdf',
path: 'pdf/merge-pdf',
name: 'pdf:mergeP... | 471 | 4,512 | 130 | 0.98 | 2026-04-18T00:23:14.510663 | true |
github_vikiboss_60s_70dd657fc5461f620ecf9460ff997934cd162d4f | TypeScript | vikiboss | 60s | 5,155 | 891 | ⏰ 60s API 免费接口。每天 60 秒看世界、奥运奖牌榜、小红书/B站/微博/抖音/知乎热搜、金价、油价、天气、翻译、壁纸、Epic 游戏、二维码、猫眼票房|一系列 高质量、开源、可靠、全球 CDN 加速 的开放 API 集合,支持 Docker / Deno / Bun / Cloudflare Workers / Node.js 部署 | [
"60s",
"api",
"bilibili",
"bing",
"bun",
"cloudflare-workers",
"deno",
"docker",
"entertainment",
"fun",
"news",
"today-in-history",
"typescript",
"weibo",
"youdao"
] | MIT | src/modules/ai-news.module.ts | ai-news.module.ts | 5,842 | import { Common, dayjs, TZ_SHANGHAI } from '../common.ts'
import { load } from 'cheerio'
import type { RouterMiddleware } from '@oak/oak'
class ServiceAINews {
#cache = new Map<string, AINewsItem>()
handle(): RouterMiddleware<'/ai-news'> {
return async (ctx) => {
const date = ctx.request.url.searchPara... | 558 | 5,450 | 199 | 0.98 | 2026-04-17T18:01:17.619860 | true |
github_vercel-labs_dev3000_4055d97ad5044c6a28cf5e73e138c83d24125598 | TypeScript | vercel-labs | dev3000 | 1,147 | 68 | Captures your web app's complete development timeline - server logs, browser events, console messages, network requests, and automatic screenshots - in a unified, timestamped feed for AI debugging. | [
"ai",
"devtools",
"web"
] | MIT | src/utils/agent-selection.ts | agent-selection.ts | 2,716 | import { execSync } from "child_process"
export interface AgentSubOption {
label: string
command: string
}
export interface AgentOption {
name: string
binary: string
displayName: string
available: boolean
command?: string // Custom command to run (defaults to binary if not specified)
subOptions?: Agen... | 322 | 2,716 | 102 | 0.98 | 2026-04-18T00:31:31.809859 | true |
github_karmada-io_karmada_74f6da0164158aa759181b702277eaab27fd9715 | Go | karmada-io | karmada | 5,427 | 1,097 | Open, Multi-Cloud, Multi-Cluster Kubernetes Orchestration | [
"cloud-computing",
"cloud-native",
"containers",
"k8s",
"kubernetes",
"multi-cluster",
"multicloud"
] | Apache-2.0 | pkg/printers/tablegenerator.go | tablegenerator.go | 6,018 | /*
Copyright 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, ... | 698 | 6,018 | 172 | 0.98 | 2026-04-17T21:27:42.741770 | true |
github_AnswerDotAI_ModernBERT_0405f55038082173a4d9866cba406f435370fb79 | Python | AnswerDotAI | ModernBERT | 1,661 | 143 | Bringing BERT into modernity via both architecture changes and scaling | [
"bert",
"embeddings",
"llm",
"nlp"
] | Apache-2.0 | src/bert_padding.py | bert_padding.py | 5,938 | # Copyright 2022 MosaicML Examples authors
# SPDX-License-Identifier: Apache-2.0
# Adapted from https://github.com/HazyResearch/flash-attention/blob/main/flash_attn/bert_padding.py
# Which was adapted from https://github.com/mlcommons/training_results_v1.1/blob/main/NVIDIA/benchmarks/bert/implementations/pytorch/paddi... | 611 | 5,938 | 142 | 0.98 | 2026-04-17T23:45:43.916123 | true |
github_BrainJS_brain.js_5a06ca953b963ce88950f25a092ea01cc4ccfae9 | TypeScript | BrainJS | brain.js | 14,860 | 1,078 | 🤖 GPU accelerated Neural networks in JavaScript for Browsers and Node.js | [
"api",
"brain",
"browser",
"convolutional-neural-networks",
"easy-to-use",
"hacktoberfest",
"neural-network",
"node",
"nodejs",
"recurrent-neural-networks",
"stream",
"web"
] | MIT | src/layer/arthur-feed-forward.ts | arthur-feed-forward.ts | 2,065 | import {
ArthurDeviationWeights,
arthurDeviationWeights,
IArthurDeviationWeightsSettings,
} from '../praxis/arthur-deviation-weights';
import {
arthurDeviationBiases,
IArthurDeviationBiasesSettings,
} from '../praxis/arthur-deviation-biases';
import { ILayer } from './base-layer';
import { add } from './add';... | 184 | 2,065 | 72 | 0.98 | 2026-04-17T17:55:55.233551 | true |
github_graphql-nexus_nexus_83a919d1f3573b1d897649f9eff11a6337420626 | TypeScript | graphql-nexus | nexus | 3,427 | 278 | Code-First, Type-Safe, GraphQL Schema Construction | [
"graphql",
"graphql-nexus",
"graphql-schema",
"nexus",
"typescript"
] | MIT | src/definitions/mutationField.ts | mutationField.ts | 4,172 | import type { FieldOutConfig, OutputDefinitionBlock } from './definitionBlocks'
import { extendType, NexusExtendTypeDef } from './extendType'
export type MutationFieldConfig<FieldName extends string> =
| FieldOutConfig<'Mutation', FieldName>
| (() => FieldOutConfig<'Mutation', FieldName>)
/**
* [API Docs](https:... | 586 | 4,170 | 139 | 0.98 | 2026-04-18T01:37:11.560446 | true |
github_huggingface_transformers_dfe26aec2391bde9d1842706c7c6fe1e9b7a2a0b | Python | huggingface | transformers | 159,498 | 32,898 | 🤗 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 | conftest.py | conftest.py | 7,806 | # 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... | 740 | 7,806 | 182 | 0.98 | 2026-04-17T06:40:56.682272 | true |
github_datitran_object_detector_app_999ca28d654d58c28d5296dbc425952f4c58e44a | Python | datitran | object_detector_app | 1,309 | 737 | Real-Time Object Recognition App with Tensorflow and OpenCV | [
"opencv",
"tensorflow"
] | MIT | object_detection_app.py | object_detection_app.py | 5,344 | import os
import cv2
import time
import argparse
import multiprocessing
import numpy as np
import tensorflow as tf
from utils.app_utils import FPS, WebcamVideoStream, HLSVideoStream
from multiprocessing import Queue, Pool
from object_detection.utils import label_map_util
from object_detection.utils import visualizatio... | 423 | 5,344 | 143 | 0.98 | 2026-04-23T00:28:11.542980 | true |
github_jdh-algo_JoyVASA_8bc683629c8a0edcb1c395ec6d3d40aff7bb7396 | 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 | train.py | train.py | 28,469 | import argparse
from collections import deque, defaultdict
from pathlib import Path
import os
import sys
import logging
import numpy as np
import torch
import torch.optim as optim
from tensorboardX import SummaryWriter
from torch.utils import data
import src.utils as utils
from src.dataset import infinite_data_loader... | 2,242 | 28,457 | 515 | 0.98 | 2026-04-22T22:00:38.847617 | true |
github_gin-gonic_gin_9442aa70851c73998f5db20540645286a6846b62 | Go | gin-gonic | gin | 88,327 | 8,572 | Gin is a high-performance HTTP web framework written in Go. It provides a Martini-like API but with significantly better performance—up to 40 times faster—thanks to httprouter. Gin is designed for building REST APIs, web applications, and microservices. | [
"framework",
"gin",
"go",
"middleware",
"performance",
"router",
"server"
] | MIT | doc.go | doc.go | 414 | /*
Package gin implements a HTTP web framework called gin.
See https://gin-gonic.com/ for more information about gin.
Example:
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
r.Run... | 52 | 414 | 23 | 0.98 | 2026-04-17T06:53:48.618938 | true |
github_hijkzzz_pymarl2_5393b7fb756c8cf05c9e19a1bd1497a95519d162 | Python | hijkzzz | pymarl2 | 708 | 135 | Fine-tuned MARL algorithms on SMAC (100% win rates on most scenarios) | [
"marl",
"reinforcement-learning",
"smac",
"sota",
"starcraft"
] | Apache-2.0 | src/utils/logging.py | logging.py | 2,238 | from collections import defaultdict
import logging
import numpy as np
import torch as th
class Logger:
def __init__(self, console_logger):
self.console_logger = console_logger
self.use_tb = False
self.use_sacred = False
self.use_hdf = False
self.stats = defaultdict(lambda:... | 208 | 2,238 | 69 | 0.98 | 2026-04-22T20:37:57.767302 | true |
github_bootstrap-vue_bootstrap-vue_ef93e9a0dfec6b7c624043f4c52beaac8894dc53 | JavaScript | bootstrap-vue | bootstrap-vue | 14,460 | 1,857 | MOVED to https://github.com/bootstrap-vue-next/bootstrap-vue-next | [
"a11y",
"accessibility",
"accessible",
"bootstrap",
"bootstrapvue",
"component-library",
"components",
"icons",
"nuxt",
"nuxtjs",
"vue",
"wai-aria"
] | MIT | src/mixins/model.js | model.js | 202 | import { makeModelMixin } from '../utils/model'
const { mixin, props, prop, event } = makeModelMixin('value')
export { mixin as modelMixin, props, prop as MODEL_PROP_NAME, event as MODEL_EVENT_NAME }
| 28 | 202 | 6 | 0.98 | 2026-04-23T11:49:25.138001 | true |
github_gitui-org_gitui_41c4d318c7edd90a681e62deb69a7aef428d900c | Rust | gitui-org | gitui | 21,783 | 710 | Blazing 💥 fast terminal-ui for git written in rust 🦀 | [
"async",
"bash",
"command-line-interface",
"command-line-tool",
"git",
"hacktoberfest",
"rust",
"terminal",
"tui"
] | MIT | src/popups/msg.rs | msg.rs | 4,272 | use crate::components::{
visibility_blocking, CommandBlocking, CommandInfo, Component,
DrawableComponent, EventState, ScrollType, VerticalScroll,
};
use crate::strings::order;
use crate::{
app::Environment,
keys::{key_match, SharedKeyConfig},
strings, ui,
};
use anyhow::Result;
use crossterm::event::Event;
use rat... | 402 | 4,272 | 210 | 0.98 | 2026-04-17T13:38:04.154074 | true |
github_1Password_typeshare_a3ccc4ccf04efdc7f39833049250caa3f8de1b79 | Rust | 1Password | typeshare | 2,928 | 123 | Typeshare is the ultimate tool for synchronizing your type definitions between Rust and other languages for seamless FFI. | [
"cli",
"ffi",
"rust",
"serde"
] | Apache-2.0 | core/src/reconcile.rs | reconcile.rs | 6,654 | //! Post reconcile references after all types have been parsed.
//!
//! Types can be renamed via `serde(rename = "NewName")`. These types will get the new
//! name however we still need to see if we have any other types that reference the renamed type
//! and update those references accordingly.
use crate::{
langua... | 562 | 6,654 | 186 | 0.98 | 2026-04-17T19:19:20.091704 | true |
github_AsyncFuncAI_deepwiki-open_b29c1b104306af491b186355571806fa5fcdba04 | TypeScript | AsyncFuncAI | deepwiki-open | 15,812 | 1,772 | 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 | src/utils/websocketClient.ts | websocketClient.ts | 2,164 | /**
* WebSocket client for chat completions
* This replaces the HTTP streaming endpoint with a WebSocket connection
*/
// Get the server base URL from environment or use default
const SERVER_BASE_URL = process.env.SERVER_BASE_URL || 'http://localhost:8001';
// Convert HTTP URL to WebSocket URL
const getWebSocketUr... | 282 | 2,164 | 86 | 0.98 | 2026-04-22T17:11:53.963240 | true |
github_graphql_graphql-js_64e2ba5dea843e1a2c81632b744ef2a46d89bb74 | TypeScript | graphql | graphql-js | 20,323 | 2,056 | A reference implementation of GraphQL for JavaScript | [
"graphql",
"graphql-js"
] | MIT | src/__testUtils__/expectJSON.ts | expectJSON.ts | 1,220 | import { expect } from 'chai';
import { isObjectLike } from '../jsutils/isObjectLike';
import { mapValue } from '../jsutils/mapValue';
/**
* Deeply transforms an arbitrary value to a JSON-safe value by calling toJSON
* on any nested value which defines it.
*/
function toJSONDeep(value: unknown): unknown {
if (!i... | 131 | 1,220 | 52 | 0.98 | 2026-04-18T01:24:34.232296 | true |
github_TheAlgorithms_Rust_1f7d1a57de366a438156c56492b5bb1dd1747707 | Rust | TheAlgorithms | Rust | 25,663 | 2,550 | All Algorithms implemented in Rust | [
"algorithms",
"data-structures",
"hacktoberfest",
"rust",
"rust-lang"
] | MIT | src/big_integer/multiply.rs | multiply.rs | 2,362 | /// Performs long multiplication on string representations of non-negative numbers.
pub fn multiply(num1: &str, num2: &str) -> String {
if !is_valid_nonnegative(num1) || !is_valid_nonnegative(num2) {
panic!("String does not conform to specification")
}
if num1 == "0" || num2 == "0" {
return... | 251 | 2,362 | 78 | 0.98 | 2026-04-17T13:31:46.508257 | true |
github_firefox-devtools_profiler_e0aa9a1e5783c78471e97528aca4fc6141977ead | 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/profile-logic/mozilla-symbolication-api.ts | mozilla-symbolication-api.ts | 8,614 | /* 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 * as v from 'valibot';
import type {
AddressResult,
LibSymbolicationRequest,
LibSymbolicationResponse,... | 1,086 | 8,614 | 227 | 0.98 | 2026-04-18T00:29:48.919230 | true |
github_LyleMi_Learn-Web-Hacking_9ea79b2c462c9130e4dc3eb0a908d99514a57acd | Python | LyleMi | Learn-Web-Hacking | 5,199 | 918 | Study Notes For Web Hacking / Web安全学习笔记 | [
"hacking",
"penetration-testing",
"pentesting",
"security",
"study-notes",
"web-hacking"
] | CC0-1.0 | source/conf.py | conf.py | 4,508 | # -*- coding: utf-8 -*-
#
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.... | 648 | 4,496 | 154 | 0.98 | 2026-04-18T00:39:49.662686 | true |
github_BrainJS_brain.js_5848698854111952755378fe7042b60ed6b3f930 | TypeScript | BrainJS | brain.js | 14,860 | 1,078 | 🤖 GPU accelerated Neural networks in JavaScript for Browsers and Node.js | [
"api",
"brain",
"browser",
"convolutional-neural-networks",
"easy-to-use",
"hacktoberfest",
"neural-network",
"node",
"nodejs",
"recurrent-neural-networks",
"stream",
"web"
] | MIT | src/layer/zeros.ts | zeros.ts | 687 | import { zeros2D } from '../utilities/zeros-2d';
import { Model } from './types';
import { ILayerSettings } from './base-layer';
export class Zeros extends Model {
constructor(settings: ILayerSettings) {
super(settings);
this.validate();
this.weights = zeros2D(this.width, this.height);
this.deltas = ... | 77 | 687 | 27 | 0.98 | 2026-04-17T17:56:17.437503 | true |
github_axios_axios_1ad6658c0e268878dc4e22840e3d52ed48084f7f | 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/parseProtocol.js | parseProtocol.js | 153 | 'use strict';
export default function parseProtocol(url) {
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
return (match && match[1]) || '';
}
| 18 | 153 | 7 | 0.98 | 2026-04-23T06:16:57.217396 | true |
github_ChenRocks_fast_abs_rl_dac6965250fb174ed59460fd6ac34ce599d99192 | Python | ChenRocks | fast_abs_rl | 624 | 185 | Code for ACL 2018 paper: "Fast Abstractive Summarization with Reinforce-Selected Sentence Rewriting. Chen and Bansal" | [
"abstractive-summarization",
"deep-learning",
"natural-language-processing",
"pytorch",
"reinforcement-learning"
] | MIT | metric.py | metric.py | 4,849 | """ ROUGE utils"""
import os
import threading
import subprocess as sp
from collections import Counter, deque
from cytoolz import concat, curry
def make_n_grams(seq, n):
""" return iterator """
ngrams = (tuple(seq[i:i+n]) for i in range(len(seq)-n+1))
return ngrams
def _n_gram_match(summ, ref, n):
su... | 566 | 4,849 | 163 | 0.98 | 2026-04-22T20:43:35.277822 | true |
github_THUDM_WebGLM_1347e8ffc39ea1d959a03164e3a709457ca5fe2c | Python | THUDM | WebGLM | 1,604 | 135 | WebGLM: An Efficient Web-enhanced Question Answering System (KDD 2023) | [
"chatgpt",
"llm",
"rlhf",
"webglm"
] | Apache-2.0 | train_retriever.py | train_retriever.py | 7,138 | from transformers import RobertaTokenizer, RobertaModel, AutoModelWithLMHead, AutoTokenizer, Trainer, AutoModel, BertLMHeadModel
from datasets.load import load_dataset, load_from_disk
import torch, os, sys, time, random, json, argparse
from rouge_score.rouge_scorer import RougeScorer
from torch.utils.data import Datas... | 523 | 7,138 | 176 | 0.98 | 2026-04-17T23:46:36.277467 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.