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_crablang_crab_2f67e12df9191ff48875d7bd950a383275a2995b | Rust | crablang | crab | 5,094 | 62 | A community fork of a language named after a plant fungus. All of the memory-safe features you love, now with 100% less bureaucracy! | [] | NOASSERTION | src/librustdoc/visit_ast.rs | visit_ast.rs | 25,373 | //! The Rust AST Visitor. Extracts useful information and massages it into a form
//! usable for `clean`.
use rustc_data_structures::fx::{FxHashSet, FxIndexMap};
use rustc_hir as hir;
use rustc_hir::def::{DefKind, Res};
use rustc_hir::def_id::{DefId, DefIdMap, LocalDefId, LocalDefIdSet};
use rustc_hir::intravisit::{wa... | 2,369 | 25,373 | 647 | 0.98 | 2026-04-17T15:19:37.954658 | true |
github_codingforentrepreneurs_Try-Django_3f66c9178d43c389d1bba140f09432caa44b3a67 | Python | codingforentrepreneurs | Try-Django | 1,269 | 821 | Learn Django bit by bit in this series | [
"django",
"django2",
"learn",
"python",
"python3",
"python36",
"tutorial"
] | MIT | src/products/models.py | models.py | 594 | from django.db import models
from django.urls import reverse
# Create your models here.
class Product(models.Model):
title = models.CharField(max_length=120) # max_length = required
description = models.TextField(blank=True, null=True)
price = models.DecimalField(decimal_places=2, max_digits=100... | 47 | 594 | 12 | 0.98 | 2026-04-23T02:02:40.006039 | true |
github_rustdesk_rustdesk_dc78bc0d99a66e65c4a33ed1903d48e8d1c998c4 | 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/ge.rs | ge.rs | 81,517 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "სტატუსი"),
("Your Desktop", "თქვენი სამუშაო მაგიდა"),
("desk_tip", "თქვენი სამუშაო მაგიდა ხელმისაწვდომია ამ ID-ით და პაროლით."),
("Password", "პაროლი"),
("Ready... | 4,103 | 46,599 | 748 | 0.98 | 2026-04-17T13:14:30.456244 | true |
github_screego_server_d421416bbc7f671f35339c5536b47eba3e2b734f | Go | screego | server | 10,343 | 708 | screen sharing for developers https://screego.net/ | [
"docker",
"go",
"privacy",
"screensharing-tool",
"selfhosted",
"webrtc"
] | GPL-3.0 | cmd/hash.go | hash.go | 1,018 | package cmd
import (
"fmt"
"os"
"syscall"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/screego/server/logger"
"github.com/urfave/cli"
"golang.org/x/crypto/bcrypt"
"golang.org/x/term"
)
var hashCmd = cli.Command{
Name: "hash",
Flags: []cli.Flag{
&cli.StringFlag{Name: "name"},
&cli.St... | 104 | 1,018 | 48 | 0.98 | 2026-04-17T12:40:00.328490 | true |
github_lightningnetwork_lnd_0cb3643184f50d751af050c40b54b1859b6dfc32 | Go | lightningnetwork | lnd | 8,131 | 2,257 | Lightning Network Daemon ⚡️ | [
"bitcoin",
"blockchain",
"cryptocurrency",
"cryptography",
"lightning",
"lightning-network",
"micropayments",
"payments",
"peer-to-peer",
"protocol"
] | MIT | server_test.go | server_test.go | 4,579 | package lnd
import (
"testing"
"time"
"github.com/stretchr/testify/require"
)
// TestNodeAnnouncementTimestampComparison tests the timestamp comparison
// logic used in setSelfNode to ensure node announcements have strictly
// increasing timestamps at second precision (as required by BOLT-07 and
// enforced by th... | 492 | 4,579 | 142 | 0.98 | 2026-04-17T16:44:52.330472 | true |
github_triggerdotdev_jsonhero-web_6f2b75842d73884882bc7459df97ce5a1b370174 | 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/dataType.ts | dataType.ts | 1,074 | import { JSONValueType } from "@jsonhero/json-infer-types";
export interface HierarchicalTypes {
types: string[];
}
export function concatenated(types: HierarchicalTypes): string {
return types.types.join("/");
}
export function getHierarchicalTypes(type: JSONValueType): HierarchicalTypes {
let types: string[]... | 98 | 1,074 | 55 | 0.98 | 2026-04-18T00:22:25.928923 | true |
github_axios_axios_cded2b04455c18380ee481e643fa1d4c3d5feabc | JavaScript | axios | axios | 109,012 | 11,651 | Promise based HTTP client for the browser and node.js | [
"hacktoberfest",
"http-client",
"javascript",
"nodejs",
"promise"
] | MIT | gulpfile.js | gulpfile.js | 2,181 | import gulp from 'gulp';
import fs from 'fs-extra';
import axios from './scripts/axios-build-instance.js';
import minimist from 'minimist';
const argv = minimist(process.argv.slice(2));
gulp.task('default', async function () {
console.log('hello!');
});
const clear = gulp.task('clear', async function () {
await ... | 215 | 2,181 | 80 | 0.98 | 2026-04-23T06:16:40.268808 | true |
github_winfunc_deepreasoning_e51f83fce8353d8cc60958a78d44b0016343ab24 | Rust | winfunc | deepreasoning | 5,361 | 439 | A high-performance LLM inference API and Chat UI that integrates DeepSeek R1's CoT reasoning traces with Anthropic Claude models. | [
"ai",
"anthropic",
"anthropic-claude",
"api",
"chain-of-thought",
"claude",
"deepseek",
"deepseek-r1",
"llm",
"rust"
] | MIT | src/models/response.rs | response.rs | 6,259 | //! Response models for the API endpoints.
//!
//! This module defines the structures used to represent API responses,
//! including chat completions, usage statistics, and streaming events.
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
/// Primary response structure... | 693 | 6,259 | 218 | 0.98 | 2026-04-17T15:03:46.611362 | true |
github_pathwaycom_pathway_7e71761aec8137720dfde3c14b9941589d3154dc | 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/python_api/external_index_wrappers.rs | external_index_wrappers.rs | 7,925 | // Copyright © 2026 Pathway
use pyo3::{prelude::*, IntoPyObjectExt};
use std::sync::Arc;
use usearch::ffi::MetricKind;
use crate::engine::external_index_wrappers::{ExternalIndexData, ExternalIndexQuery};
use crate::external_integration::brute_force_knn_integration::{
BruteForceKNNIndexFactory, BruteForceKnnMetr... | 616 | 7,924 | 249 | 0.98 | 2026-04-23T04:40:51.085671 | true |
github_ChatGPTNextWeb_NextChat_f60b0e2ad719baf5ea5cf85dcb2c462ce90c01c1 | 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/client/api.ts | api.ts | 10,962 | import { getClientConfig } from "../config/client";
import {
ACCESS_CODE_PREFIX,
ModelProvider,
ServiceProvider,
} from "../constant";
import {
ChatMessageTool,
ChatMessage,
ModelType,
useAccessStore,
useChatStore,
} from "../store";
import { ChatGPTApi, DalleRequestPayload } from "./platforms/openai";
... | 1,013 | 10,876 | 400 | 0.98 | 2026-04-23T08:58:05.658268 | true |
github_GuDong2003_xianyu-auto-reply-fix_fa2fd889a9b35f52713a25568873639c42400b59 | Python | GuDong2003 | xianyu-auto-reply-fix | 654 | 174 | 闲鱼智能客服系统,支持多账号管理、AI自动回复、自动发货确认、多渠道消息通知,提供完整的 Web 管理后台 | [
"ai",
"auto-reply",
"automation",
"goofish",
"playwright",
"python",
"websocket",
"xianyu"
] | UNKNOWN | auto_updater.py | auto_updater.py | 38,967 | """
自动热更新模块
支持在不重新下载整个exe/容器的情况下,自动更新少量修改的文件。
更新机制:
1. 从远程服务器获取更新清单(包含文件列表、版本、MD5哈希)
2. 比较本地文件与远程文件的哈希值
3. 只下载有变化的文件
4. 备份旧文件,下载新文件
5. 需要时重启应用
支持更新的文件类型:
- Python 源文件 (.py)
- 前端文件 (.js, .ts, .tsx, .jsx, .vue, .css, .html, .txt, .json)
- 配置文件 (.yml, .json)
- 静态资源(图片、字体等)
"""
import os
import sys
import json
import h... | 2,240 | 35,407 | 1,020 | 0.98 | 2026-04-23T03:57:42.029325 | true |
github_samtay_so_976b8bc6b3c64e549e772504651233f5af228d7d | Rust | samtay | so | 1,421 | 42 | A terminal interface for Stack Overflow | [
"cli",
"cursive",
"rust",
"stackexchange",
"stackoverflow",
"terminal",
"tui"
] | MIT | src/tui/views.rs | views.rs | 21,669 | use std::rc::Rc;
use std::time::Duration;
use std::{fmt, thread};
use std::{
fmt::Display,
marker::{Send, Sync},
};
use cursive::event::{Callback, Event, EventResult, Key};
use cursive::traits::{Finder, Nameable, Resizable, Scrollable};
use cursive::utils::markup::StyledString;
use cursive::view::{CannotFocus,... | 1,881 | 21,669 | 704 | 0.98 | 2026-04-17T19:30:51.395432 | true |
github_michaelthwan_searchGPT_4ab64989999c49ad7a48666fabd1e1ad5c093745 | Python | michaelthwan | searchGPT | 708 | 69 | Grounded search engine (i.e. with source reference) based on LLM / ChatGPT / OpenAI API. It supports web search, file content search etc. | [
"ai",
"chatgpt",
"grounded-api",
"grounded-bot",
"language-model",
"llm",
"machine-learning",
"nlp",
"nlp-machine-learning",
"openai",
"python",
"retrieval",
"retrieval-model"
] | MIT | src/LLMService.py | LLMService.py | 9,011 | import os
from abc import ABC, abstractmethod
from urllib.parse import urlparse
import openai
import pandas as pd
import yaml
from Util import setup_logger, get_project_root, storage_cached
from website.sender import Sender, MSG_TYPE_SEARCH_STEP, MSG_TYPE_OPEN_AI_STREAM
logger = setup_logger('LLMService')
class LL... | 701 | 9,011 | 213 | 0.98 | 2026-04-23T01:14:55.170501 | true |
github_avwo_whistle_d13f0078968714fd6d836bef6c7b3a6e8db8fbbb | JavaScript | avwo | whistle | 15,478 | 1,155 | HTTP, HTTP2, HTTPS, Websocket debugging proxy | [
"charles",
"debug",
"fiddler",
"hosts",
"node",
"nodejs",
"proxy",
"web",
"weinre"
] | MIT | lib/util/index.js | index.js | 102,498 | var http = require('http');
var path = require('path');
var os = require('os');
var fs = require('fs');
var vm = require('vm');
var net = require('net');
var crypto = require('crypto');
var fse = require('fs-extra2');
var qs = require('querystring');
var extend = require('extend');
var LRU = require('lru-cache');
var i... | 11,421 | 102,398 | 4,000 | 0.98 | 2026-04-23T06:51:26.850718 | true |
github_pathwaycom_pathway_93809679e419c03c625dd2cba0c3d73f61d971fe | 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/persistence/input_snapshot.rs | input_snapshot.rs | 12,885 | use log::{error, info, warn};
use std::io::{BufReader, Cursor, ErrorKind as IoErrorKind, Read, Seek, SeekFrom};
use std::mem::take;
use bincode::{deserialize_from, serialize, ErrorKind as BincodeError};
use lz4_flex::block::{compress_prepend_size, decompress_size_prepended};
use serde::{Deserialize, Serialize};
use c... | 1,058 | 12,885 | 362 | 0.98 | 2026-04-23T04:40:48.196637 | true |
github_graphql-nexus_nexus_7b2e1bdc214186a7d1a2ffe10a0c64457853dfa2 | TypeScript | graphql-nexus | nexus | 3,427 | 278 | Code-First, Type-Safe, GraphQL Schema Construction | [
"graphql",
"graphql-nexus",
"graphql-schema",
"nexus",
"typescript"
] | MIT | src/messages.ts | messages.ts | 1,347 | export const messages = {
/* istanbul ignore next */
removedDeclarativeWrapping: (location: string, used: string[]) => `\
[declarativeWrappingPlugin]: The ${used.join(' / ')} object prop${
used.length > 1 ? 's' : ''
} used in the ${location} has been
moved to a plugin, as improved chaining APIs and the list()... | 171 | 1,347 | 34 | 0.98 | 2026-04-18T01:37:19.625297 | true |
github_AdguardTeam_AdGuardHome_35b94447f1bf87078e931f38c7608f33e6d990b9 | Go | AdguardTeam | AdGuardHome | 33,577 | 2,303 | Network-wide ads & trackers blocking DNS server | [
"adblock",
"adguard",
"dns",
"dns-over-https",
"dns-over-quic",
"dns-over-tls",
"dnscrypt",
"golang",
"open-source",
"privacy"
] | GPL-3.0 | internal/aghnet/hostscontainer.go | hostscontainer.go | 7,015 | package aghnet
import (
"context"
"fmt"
"io"
"io/fs"
"log/slog"
"net/netip"
"path"
"path/filepath"
"sync/atomic"
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
"github.com/AdguardTeam/golibs/errors"
"github.com/AdguardTeam/golibs/hostsfile"
"github.com/AdguardTeam/golibs/logutil/slogutil"
)
// host... | 953 | 7,015 | 258 | 0.98 | 2026-04-17T07:43:00.956506 | true |
github_tsuru_tsuru_c75d15b6af6e080f2f7cfdab8e5e0edda8f5edd5 | 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/index.go | index.go | 1,094 | // Copyright 2015 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 api
import (
"html/template"
"net/http"
"path"
"github.com/tsuru/config"
)
// title: index
// path: /
// method: GET
// responses:
//
// 200: OK
f... | 139 | 1,094 | 48 | 0.98 | 2026-04-17T21:31:57.109455 | true |
github_pathwaycom_pathway_8b8333f20a847b0afa5b9629d2648ff839d434b2 | Rust | pathwaycom | pathway | 63,434 | 1,631 | Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG. | [
"batch-processing",
"data-analytics",
"data-pipelines",
"data-processing",
"dataflow",
"etl",
"etl-framework",
"iot-analytics",
"kafka",
"machine-learning-algorithms",
"pathway",
"python",
"real-time",
"rust",
"stream-processing",
"streaming",
"time-series-analysis"
] | NOASSERTION | src/connectors/sqlite.rs | sqlite.rs | 8,544 | // Copyright © 2026 Pathway
use log::error;
use std::borrow::Cow;
use std::collections::{HashMap, HashSet, VecDeque};
use std::mem::take;
use std::str::from_utf8;
use std::thread::sleep;
use std::time::Duration;
use crate::connectors::data_storage::{CommitPossibility, ConversionError, ValuesMap};
use crate::connector... | 582 | 8,543 | 232 | 0.98 | 2026-04-23T04:40:33.830949 | true |
github_h2oai_h2ogpt_3faef1c4acf105164ed2a2284c287321f5516a74 | 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 | setup.py | setup.py | 3,790 | import os
import setuptools
from typing import List
from setuptools import find_packages
for_pypi = os.getenv('PYPI') is not None
def parse_requirements(file_name: str) -> List[str]:
with open(file_name) as f:
lines = f.read().splitlines()
# Filter out comments and empty lines
lines = [line for... | 275 | 3,790 | 117 | 0.98 | 2026-04-17T15:34:04.573850 | true |
github_Mai-with-u_MaiBot_8c9113d437b1075624a129465da895b198105ad1 | Python | Mai-with-u | MaiBot | 4,665 | 500 | MaiSaka, an LLM-based intelligent agent, is a digital lifeform devoted to understanding you and interacting in the style of a real human. She does not pursue perfection, nor does she seek efficiency; instead, she values warmth, authenticity, and genuine connection. | [
"agent",
"chat",
"chatbot",
"llm",
"llm-agent",
"llms",
"python",
"qq-bot",
"qqbot"
] | GPL-3.0 | src/llm_models/request_snapshot.py | request_snapshot.py | 18,988 | from datetime import datetime
from enum import Enum
from pathlib import Path
from typing import Any, Mapping, Sequence
import base64
import json
import re
from src.common.logger import get_logger
from src.config.model_configs import APIProvider, ModelInfo
from src.llm_models.model_client.base_client import AudioTrans... | 1,215 | 18,016 | 490 | 0.98 | 2026-04-22T15:21:41.962963 | true |
github_gastownhall_gastown_a45399881848c9b9891555ecf5d42a509edb9a0b | Go | gastownhall | gastown | 14,234 | 1,286 | Gas Town - multi-agent workspace manager | [] | MIT | internal/beads/beads_sling_context_test.go | beads_sling_context_test.go | 5,081 | package beads
import (
"testing"
"github.com/steveyegge/gastown/internal/scheduler/capacity"
)
func TestFormatParseSlingContextRoundTrip(t *testing.T) {
original := &capacity.SlingContextFields{
Version: 1,
WorkBeadID: "gt-abc123",
TargetRig: "gastown",
Formula: "mol-polecat... | 505 | 5,081 | 157 | 0.98 | 2026-04-17T10:44:03.055095 | true |
github_go-jet_jet_f02637055c500f5e2ee95867fe9bca9af5a8f6ca | 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/column_list_test.go | column_list_test.go | 789 | package jet
import (
"github.com/stretchr/testify/require"
"testing"
)
func TestColumnList_SET(t *testing.T) {
columnList1 := ColumnList{IntegerColumn("id"), StringColumn("Name"), BoolColumn("active")}
columnList2 := ColumnList{IntegerColumn("id"), StringColumn("Name"), BoolColumn("active")}
columnList1.SET(col... | 64 | 789 | 26 | 0.98 | 2026-04-17T18:21:04.713364 | true |
github_rangle_augury_796fb1a82fe9e6f1334dac21c9d67921b8f60aa2 | TypeScript | rangle | augury | 1,995 | 214 | Angular Debugging and Visualization Tools | [
"angular",
"angular2",
"augury",
"debugging",
"devtools"
] | MIT | src/frontend/app.ts | app.ts | 10,137 | import { ChangeDetectorRef, Component, NgZone, ErrorHandler, OnDestroy, DoCheck, OnInit } from '@angular/core';
import { UncaughtErrorHandler } from './utils/uncaught-error-handler';
import { reportUncaughtError } from '../utils/error-handling';
import { Connection, DirectConnection } from './channel';
import {
Ap... | 764 | 10,137 | 358 | 0.98 | 2026-04-18T00:27:07.535858 | true |
github_typicode_lowdb_c9de11699330ce42ba585957358d7fc1bd4dbd88 | TypeScript | typicode | lowdb | 22,525 | 967 | Simple and fast JSON database | [
"database",
"electron",
"embeddable",
"embedded-database",
"javascript",
"json",
"localstorage",
"lodash",
"nodejs",
"storage"
] | MIT | src/adapters/Memory.ts | Memory.ts | 480 | import { Adapter, SyncAdapter } from '../core/Low.js'
export class Memory<T> implements Adapter<T> {
#data: T | null = null
read(): Promise<T | null> {
return Promise.resolve(this.#data)
}
write(obj: T): Promise<void> {
this.#data = obj
return Promise.resolve()
}
}
export class MemorySync<T> i... | 69 | 480 | 27 | 0.98 | 2026-04-23T06:45:31.200985 | true |
github_ParabolInc_parabol_e1242419e8f73571e619ee35d7c3dc7b59c0f86b | JavaScript | ParabolInc | parabol | 2,002 | 364 | Free online agile retrospective meeting tool | [
"agile",
"graphql",
"kanban",
"nodejs",
"react",
"realtime",
"redis",
"rethinkdb",
"retrospective",
"saas",
"stripe"
] | NOASSERTION | graphql.config.js | graphql.config.js | 345 | module.exports = {
projects: {
server: {
schema: './packages/server/graphql/public/schema.graphql',
documents: './packages/server/**/*',
// not sure why this is necessary, but it picks up relay fragments on the client,
// which are handled by the relay extension
exclude: './packages/... | 40 | 345 | 12 | 0.98 | 2026-04-18T01:41:05.735068 | true |
github_redux-form_redux-form_e041451041a26908b19ba95d4f3b05c1fc9dd2ac | 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/immutable/isAsyncValidating.js | isAsyncValidating.js | 176 | // @flow
import createIsAsyncValidating from '../selectors/isAsyncValidating'
import immutable from '../structure/immutable'
export default createIsAsyncValidating(immutable)
| 13 | 176 | 6 | 0.98 | 2026-04-23T04:57:21.351728 | true |
github_tsenart_vegeta_f2e54244e2ca8c17b806ac5d52aae6fec2e027e6 | Go | tsenart | vegeta | 25,004 | 1,419 | HTTP load testing tool and library. It's over 9000! | [
"benchmarking",
"go",
"http",
"load-testing"
] | MIT | lib/targets_easyjson.go | targets_easyjson.go | 3,074 | // This file has been modified from the original generated code to make it work with
// type alias jsonTarget so that the methods aren't exposed in Target.
package vegeta
import (
http "net/http"
jlexer "github.com/mailru/easyjson/jlexer"
jwriter "github.com/mailru/easyjson/jwriter"
)
type jsonTarget Target
fun... | 375 | 3,074 | 168 | 0.98 | 2026-04-17T08:40:46.566941 | true |
github_nektos_act_a75ee944e642771ed651e38da07379ce42fe19a8 | Go | nektos | act | 69,901 | 1,912 | Run your GitHub Actions locally 🚀 | [
"ci",
"devops",
"github-actions",
"golang"
] | MIT | pkg/model/anchors.go | anchors.go | 828 | package model
import (
"errors"
"gopkg.in/yaml.v3"
)
func resolveAliasesExt(node *yaml.Node, path map[*yaml.Node]bool, skipCheck bool) error {
if !skipCheck && path[node] {
return errors.New("circular alias")
}
switch node.Kind {
case yaml.AliasNode:
aliasTarget := node.Alias
if aliasTarget == nil {
r... | 103 | 828 | 39 | 0.98 | 2026-04-17T07:13:46.430869 | true |
github_dc-js_dc.js_0b442673612bccaf69ba580cf047c12dfa508b24 | JavaScript | dc-js | dc.js | 7,439 | 1,774 | Multi-Dimensional charting built to work natively with crossfilter rendered with d3.js | [
"charting",
"crossfilter",
"visualization"
] | Apache-2.0 | src/charts/bubble-overlay.js | bubble-overlay.js | 7,236 | import {BaseMixin} from '../base/base-mixin';
import {BubbleMixin} from '../base/bubble-mixin';
import {transition} from '../core/core';
import {constants} from '../core/constants';
import {utils} from '../core/utils';
import {d3compat} from '../core/config';
const BUBBLE_OVERLAY_CLASS = 'bubble-overlay';
const BUBBLE... | 683 | 7,236 | 218 | 0.98 | 2026-04-23T14:20:31.411084 | true |
github_Automattic_mongoose_a1b384fb12d23e3930c3c01adff1ca2b61dfa030 | JavaScript | Automattic | mongoose | 27,471 | 3,979 | MongoDB object modeling designed to work in an asynchronous environment. | [
"mongo",
"mongodb",
"nodejs",
"odm",
"orm"
] | MIT | lib/cast/int32.js | int32.js | 848 | 'use strict';
const isBsonType = require('../helpers/isBsonType');
const assert = require('assert');
/**
* Given a value, cast it to a Int32, or throw an `Error` if the value
* cannot be casted. `null` and `undefined` are considered valid.
*
* @param {any} value
* @return {number}
* @throws {Error} if `value` d... | 127 | 848 | 37 | 0.98 | 2026-04-23T06:42:05.828173 | true |
github_hzwer_ECCV2022-RIFE_65a9b67e4cfe37f3cbb5f9254fbfe963a5704ecc | Python | hzwer | ECCV2022-RIFE | 5,385 | 534 | ECCV2022 - Real-Time Intermediate Flow Estimation for Video Frame Interpolation | [
"aigc",
"computer-vision",
"deep-learning",
"slomo-filter",
"video-interpolation"
] | MIT | inference_img.py | inference_img.py | 4,187 | import os
import cv2
import torch
import argparse
from torch.nn import functional as F
import warnings
warnings.filterwarnings("ignore")
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
torch.set_grad_enabled(False)
if torch.cuda.is_available():
torch.backends.cudnn.enabled = True
torch.ba... | 397 | 4,187 | 112 | 0.98 | 2026-04-17T17:32:07.708368 | true |
github_SuperTails_langcraft_67605e82c3c1c7ef79629fc3f2acdfebd32ba192 | Rust | SuperTails | langcraft | 561 | 7 | Compiler from LLVM IR to Minecraft datapacks. | [
"compiler",
"llvm",
"minecraft"
] | Apache-2.0 | src/compile_ir.rs | compile_ir.rs | 218,894 | use crate::analysis::{AbstractBlock, BlockEdge, BlockEnd};
use crate::cir::FuncCall as McFuncCall;
use crate::cir::Function as McFunction;
use crate::cir::FunctionId as McFuncId;
use crate::cir::{
self, Command, Data, DataKind, DataTarget, Execute, ExecuteCondKind, ExecuteCondition,
ExecuteStoreKind, ExecuteSub... | 16,293 | 218,894 | 6,360 | 0.98 | 2026-04-17T17:10:14.845947 | true |
github_dani-garcia_vaultwarden_492fdb1986a366a47f691210f9bf05e5e2f3cb2e | 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/notifications.rs | notifications.rs | 21,527 | use std::{
net::IpAddr,
sync::{Arc, LazyLock},
time::Duration,
};
use chrono::{NaiveDateTime, Utc};
use rmpv::Value;
use rocket::{futures::StreamExt, Route};
use rocket_ws::{Message, WebSocket};
use tokio::sync::mpsc::Sender;
use crate::{
auth::{ClientIp, WsAccessTokenHeader},
db::{
models... | 1,865 | 21,527 | 657 | 0.98 | 2026-04-17T13:16:31.454773 | true |
github_niri-wm_niri_53c06069887b9850ea397cc6b091d3bd2869628d | Rust | niri-wm | niri | 22,641 | 820 | A scrollable-tiling Wayland compositor. | [
"rust",
"smithay",
"tiling-window-manager",
"wayland",
"wayland-compositor"
] | GPL-3.0 | src/layout/monitor.rs | monitor.rs | 76,070 | use std::cmp::min;
use std::iter::zip;
use std::rc::Rc;
use std::time::Duration;
use niri_config::{CornerRadius, LayoutPart};
use smithay::backend::renderer::element::utils::{
CropRenderElement, Relocate, RelocateRenderElement, RescaleRenderElement,
};
use smithay::output::Output;
use smithay::utils::{Logical, Poi... | 6,536 | 76,070 | 2,167 | 0.98 | 2026-04-17T13:35:36.151549 | true |
github_k0sproject_k0s_4289d0b056a20ce6fa7db1e87c73f204c8574f83 | Go | k0sproject | k0s | 5,874 | 492 | k0s - The Zero Friction Kubernetes | [
"kubernetes"
] | NOASSERTION | cmd/backup/backup_unix.go | backup_unix.go | 2,563 | //go:build unix
// SPDX-FileCopyrightText: 2021 k0s authors
// SPDX-License-Identifier: Apache-2.0
package backup
import (
"errors"
"fmt"
"io"
"os"
"strings"
"github.com/k0sproject/k0s/cmd/internal"
"github.com/k0sproject/k0s/internal/pkg/dir"
k0sv1beta1 "github.com/k0sproject/k0s/pkg/apis/k0s/v1beta1"
"gi... | 261 | 2,563 | 93 | 0.98 | 2026-04-17T21:18:13.297792 | true |
github_eksctl-io_eksctl_828ac6a7073e2d48ecee5cbca1f577fb0c42e94c | Go | eksctl-io | eksctl | 5,192 | 1,490 | The official CLI for Amazon EKS | [
"amazon-web-services",
"aws-cloudformation",
"aws-ec2",
"aws-eks",
"eks",
"kubernetes",
"kubernetes-cluster",
"kubernetes-deployment",
"kubernetes-setup"
] | NOASSERTION | cmd/schema/generate.go | generate.go | 1,420 | package main
import (
"fmt"
"os"
"path/filepath"
api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io"
"github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5"
"github.com/weaveworks/schemer/definition"
schemapkg "github.com/weaveworks/schemer/schema"
)
func main() {
if len(os.Args) != 2 {
panic("expecte... | 148 | 1,420 | 54 | 0.98 | 2026-04-17T21:34:42.623874 | true |
github_fluxcd_flux_2935a7f35b91e6f6befbb9ff5982e6687b77dd2f | Go | fluxcd | flux | 6,870 | 1,068 | Successor: https://github.com/fluxcd/flux2 | [
"gitops",
"kubernetes",
"legacy"
] | Apache-2.0 | pkg/registry/client_factory.go | client_factory.go | 4,955 | package registry
import (
"context"
"crypto/tls"
"net"
"net/http"
"net/url"
"sync"
"time"
"github.com/docker/distribution/registry/client/auth"
"github.com/docker/distribution/registry/client/auth/challenge"
"github.com/docker/distribution/registry/client/transport"
"github.com/go-kit/kit/log"
"github.co... | 597 | 4,955 | 187 | 0.98 | 2026-04-17T20:31:26.858568 | true |
github_triton-inference-server_server_774728f189b0908f708254db70a4bdba96e20eaf | Python | triton-inference-server | server | 10,594 | 1,761 | The Triton Inference Server provides an optimized cloud and edge inferencing solution. | [
"cloud",
"datacenter",
"deep-learning",
"edge",
"gpu",
"inference",
"machine-learning"
] | BSD-3-Clause | build.py | build.py | 113,235 | #!/usr/bin/env python3
# Copyright 2020-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# * Redistributions of source code must retain the above copyright
#... | 9,583 | 113,235 | 3,157 | 0.98 | 2026-04-22T13:50:01.680686 | true |
github_librespot-org_librespot_f6a176548ebc09a6c400f364c554a85ecbc69045 | Rust | librespot-org | librespot | 6,720 | 822 | Open Source Spotify client library | [
"librespot",
"rust",
"spotify",
"spotify-connect"
] | MIT | src/lib.rs | lib.rs | 330 | #![crate_name = "librespot"]
pub use librespot_audio as audio;
pub use librespot_connect as connect;
pub use librespot_core as core;
pub use librespot_discovery as discovery;
pub use librespot_metadata as metadata;
pub use librespot_oauth as oauth;
pub use librespot_playback as playback;
pub use librespot_protocol as ... | 43 | 330 | 11 | 0.98 | 2026-04-17T14:44:35.926320 | true |
github_clauderic_react-sortable-hoc_7008ecea0109417859ab183181b05a48416a7b23 | JavaScript | clauderic | react-sortable-hoc | 10,895 | 965 | A set of higher-order components to turn any list into an animated, accessible and touch-friendly sortable list✌️ | [
"drag-and-drop",
"dragging",
"front-end",
"grid",
"higher-order-component",
"javascript",
"react",
"sortable",
"sorting"
] | MIT | src/SortableHandle/index.js | index.js | 1,029 | import * as React from 'react';
import {findDOMNode} from 'react-dom';
import invariant from 'invariant';
import {provideDisplayName} from '../utils';
export default function sortableHandle(
WrappedComponent,
config = {withRef: false},
) {
return class WithSortableHandle extends React.Component {
static dis... | 108 | 1,029 | 40 | 0.98 | 2026-04-23T05:42:01.430649 | true |
github_knative_serving_dec06f96e7dd23e454ea4f268143e3be4cefc97d | Go | knative | serving | 6,031 | 1,220 | Kubernetes-based, scale-to-zero, request-driven compute | [
"app",
"autoscaler",
"container",
"developer-productivity",
"function",
"knative",
"kubernetes",
"networking",
"scale",
"serverless",
"serverless-containers"
] | Apache-2.0 | pkg/metrics/key.go | key.go | 1,091 | /*
Copyright 2025 The Knative 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... | 115 | 1,091 | 32 | 0.98 | 2026-04-17T20:45:11.821155 | true |
github_Wilfred_bfc_3e05197830d3a6beb6b06ecb8838c8ed42d79af7 | Rust | Wilfred | bfc | 541 | 34 | An industrial-grade brainfuck compiler | [
"brainfuck",
"compiler",
"llvm",
"rust"
] | GPL-2.0 | src/execution.rs | execution.rs | 24,957 | #![warn(trivial_numeric_casts)]
//! Compile time execution of BF programs.
use std::env;
use std::num::Wrapping;
use crate::bfir::AstNode::*;
use crate::bfir::{AstNode, BfValue};
use crate::diagnostics::Warning;
use crate::bounds::highest_cell_index;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ExecutionStat... | 2,239 | 24,957 | 809 | 0.98 | 2026-04-17T17:10:30.037514 | true |
github_authelia_authelia_f273c2130bb4ced994391c4eda5e4ccbe0c0a436 | Go | authelia | authelia | 27,525 | 1,374 | The Single Sign-On Multi-Factor portal for web apps, now OpenID Certified™ | [
"2fa",
"authentication",
"docker",
"golang",
"kubernetes",
"ldap",
"mfa",
"multifactor",
"oauth2",
"openid-connect",
"passkeys",
"push-notifications",
"security",
"sso",
"sso-authentication",
"totp",
"two-factor",
"two-factor-authentication",
"webauthn",
"yubikey"
] | Apache-2.0 | internal/authentication/types.go | types.go | 8,810 | package authentication
import (
"context"
"errors"
"fmt"
"net/mail"
"net/url"
"strings"
"github.com/go-ldap/ldap/v3"
"github.com/sirupsen/logrus"
"golang.org/x/text/language"
"github.com/authelia/authelia/v4/internal/clock"
)
// UserDetails represent the details retrieved for a given user.
type UserDetail... | 1,010 | 8,810 | 416 | 0.98 | 2026-04-17T08:30:28.477930 | true |
github_bigint_hey_c6d6b7133fa55830a1eaa02b95b210299738dd79 | TypeScript | bigint | hey | 29,463 | 1,807 | Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿 | [
"blockchain",
"crypto",
"dapp",
"graphql",
"hacktoberfest",
"lens-protocol",
"nextjs",
"react",
"social-media",
"tailwindcss",
"turborepo",
"typescript",
"vitest",
"wagmi",
"web3"
] | GPL-3.0 | src/types/giphy.d.ts | giphy.d.ts | 242 | export interface IGif {
id: string;
images: {
original: { url: string };
original_still: { url: string };
};
slug: string;
title: string;
}
export interface Category {
gif: IGif;
name: string;
name_encoded: string;
}
| 35 | 242 | 16 | 0.98 | 2026-04-18T01:23:21.337469 | true |
github_MorvanZhou_NLP-Tutorials_948f6e23eb501628946784b3c6523a04eebffb0e | Python | MorvanZhou | NLP-Tutorials | 953 | 315 | Simple implementations of NLP models. Tutorials are written in Chinese on my website https://mofanpy.com | [
"attention",
"bert",
"elmo",
"gpt",
"nlp",
"seq2seq",
"transformer",
"tutorial",
"w2v"
] | MIT | tf_idf_sklearn.py | tf_idf_sklearn.py | 1,361 | from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.metrics.pairwise import cosine_similarity
from visual import show_tfidf # this refers to visual.py in my [repo](https://github.com/MorvanZhou/NLP-Tutorials/)
docs = [
"it is a good day, I like to stay here",
"I am happy to be here",
... | 189 | 1,361 | 39 | 0.98 | 2026-04-22T21:15:30.029665 | true |
github_puppeteer_replay_82cf761df603884105b3cdaafc723d91b83d3af3 | TypeScript | puppeteer | replay | 1,320 | 564 | Library that provides an API to replay and stringify recordings created using Chrome DevTools Recorder | [
"automation",
"devtools",
"javascript",
"puppeteer"
] | Apache-2.0 | src/PuppeteerStringifyExtension.ts | PuppeteerStringifyExtension.ts | 14,404 | /**
Copyright 2022 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to... | 1,281 | 14,404 | 489 | 0.98 | 2026-04-18T00:30:36.262581 | true |
github_MichalLytek_type-graphql_9945117bfb0fa3e579822263b4844bef950f0781 | 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/index.ts | index.ts | 163 | export * from "./decorators";
export * from "./errors";
export * from "./typings";
export * from "./metadata";
export * from "./scalars";
export * from "./utils";
| 24 | 163 | 7 | 0.98 | 2026-04-17T17:57:58.935385 | true |
github_axios_axios_96e8acb0268374a2fc5ce623742ada3276015df1 | 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/AxiosTransformStream.js | AxiosTransformStream.js | 3,809 | 'use strict';
import stream from 'stream';
import utils from '../utils.js';
const kInternals = Symbol('internals');
class AxiosTransformStream extends stream.Transform {
constructor(options) {
options = utils.toFlatObject(
options,
{
maxRate: 0,
chunkSize: 64 * 1024,
minChun... | 365 | 3,809 | 157 | 0.98 | 2026-04-23T06:16:49.318589 | true |
github_prs-eth_OverlapPredator_7936e3a08063eb9ca327b0fde26e6d31439977da | Python | prs-eth | OverlapPredator | 592 | 87 | [CVPR 2021, Oral] PREDATOR: Registration of 3D Point Clouds with Low Overlap. | [
"3dvision",
"attention-mechanism",
"point-cloud",
"registration",
"transformer"
] | MIT | lib/utils.py | utils.py | 2,744 | """
General utility functions
Author: Shengyu Huang
Last modified: 30.11.2020
"""
import os,re,sys,json,yaml,random, argparse, torch, pickle
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
import numpy as np
from scipy.spatial.transform import Rotation
from sklearn.neighbors import ... | 312 | 2,744 | 117 | 0.98 | 2026-04-22T21:48:37.259941 | true |
github_ChromeDevTools_chrome-devtools-mcp_7b73bc0fffeda89812a87be48b22acc7f255fca7 | 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/daemon/utils.ts | utils.ts | 3,526 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'node:fs';
import os from 'node:os';
import path from 'node:path';
import process from 'node:process';
import {logger} from '../logger.js';
import type {YargsOptions} from '../third_party/index.js';
export const DA... | 416 | 3,526 | 132 | 0.98 | 2026-04-18T00:21:01.534568 | true |
github_starship_starship_d361f18ef0bb2f690fa0b70f6546eb145ab7d4be | 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/nix_shell.rs | nix_shell.rs | 1,068 | use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct NixShellConfig<'a> {
pub format: &'a str,
pub symbol: &'a str,
pub style: &'a str,
... | 127 | 1,064 | 38 | 0.98 | 2026-04-17T13:17:53.373296 | true |
github_pingcap_tidb_4ae780121c093fe6f5372a24d7d7ddcd58f25c49 | Go | pingcap | tidb | 39,976 | 6,168 | TiDB - the open-source, cloud-native, distributed SQL database designed for modern applications. | [
"cloud-native",
"database",
"distributed-database",
"distributed-transactions",
"go",
"hacktoberfest",
"htap",
"mysql",
"mysql-compatibility",
"scale",
"serverless",
"sql",
"tidb"
] | Apache-2.0 | pkg/bindinfo/utils.go | utils.go | 11,960 | // Copyright 2025 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to i... | 1,366 | 11,960 | 348 | 0.98 | 2026-04-17T07:31:12.737397 | true |
github_ipfs_kubo_64eb532cf25ea87e960211acad6cbb25dfa88750 | Go | ipfs | kubo | 16,988 | 3,152 | An IPFS implementation in Go | [
"ipfs"
] | NOASSERTION | core/commands/update_github.go | update_github.go | 8,517 | package commands
// This file implements fetching Kubo release binaries from GitHub Releases.
//
// We use GitHub Releases instead of dist.ipfs.tech because GitHub is harder
// to censor. Many networks and regions block or interfere with IPFS-specific
// infrastructure, but GitHub is widely accessible and its TLS-prot... | 1,155 | 8,517 | 279 | 0.98 | 2026-04-17T10:18:06.908663 | true |
github_cloudwego_hertz_c4ad0e426d50ed989348befe6cb0253cd1a86a47 | Go | cloudwego | hertz | 7,170 | 620 | Go HTTP framework with high-performance and strong-extensibility for building micro-services. | [
"go",
"http",
"microservices"
] | Apache-2.0 | pkg/app/fs_test.go | fs_test.go | 19,680 | /*
* Copyright 2022 CloudWeGo Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | 2,163 | 19,680 | 698 | 0.98 | 2026-04-18T00:54:39.743622 | true |
github_pvolok_mprocs_4af8b7a437279bbdc2fbe96745f7b95591f7918f | Rust | pvolok | mprocs | 2,518 | 101 | Run multiple commands in parallel | [
"cli",
"linux",
"macos",
"rust",
"terminal",
"tui",
"windows"
] | MIT | src/term_driver/input_parser.rs | input_parser.rs | 24,025 | use anyhow::{anyhow, bail, Context};
use crate::term::{
key::{
Key, KeyCode, KeyEventKind, KeyEventState, KeyMods, MediaKeyCode,
ModKeyCode,
},
mouse::{MouseButton, MouseEvent, MouseEventKind},
};
use super::internal::InternalTermEvent as E;
pub struct InputParser {
buf: Vec<u8>,
#[cfg(windows)]
... | 2,457 | 24,025 | 784 | 0.98 | 2026-04-17T19:22:41.093978 | true |
github_insin_nwb_fba53d96a17f3a615701ff72e94169514122fe96 | 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/webpackUtils.js | webpackUtils.js | 4,358 | import fs from 'fs'
import path from 'path'
import chalk from 'chalk'
import figures from 'figures'
import filesize from 'filesize'
import {sync as gzipSize} from 'gzip-size'
const FRIENDLY_SYNTAX_ERROR_LABEL = 'Syntax error:'
let s = n => n === 1 ? '' : 's'
/**
* Create a banner comment for a UMD build file from ... | 443 | 4,356 | 156 | 0.98 | 2026-04-23T06:08:15.709377 | true |
github_tulios_kafkajs_3fd3cb1c801064da35054346f424ff234261f088 | JavaScript | tulios | kafkajs | 3,994 | 584 | A modern Apache Kafka client for node.js | [
"kafka",
"kafka-client",
"nodejs",
"npm-package"
] | MIT | index.js | index.js | 1,157 | const Kafka = require('./src')
const PartitionAssigners = require('./src/consumer/assigners')
const AssignerProtocol = require('./src/consumer/assignerProtocol')
const Partitioners = require('./src/producer/partitioners')
const Compression = require('./src/protocol/message/compression')
const ConfigResourceTypes = requ... | 79 | 1,157 | 31 | 0.98 | 2026-04-23T07:41:51.999383 | true |
github_raminmh_CfC_1d821c011cb56fd4fcd0af6933f671651a222286 | Python | raminmh | CfC | 1,025 | 160 | Closed-form Continuous-time Neural Networks | [
"deep-learning",
"neural-ode",
"pytorch",
"recurrent-neural-networks",
"sequence-models",
"tensorflow"
] | Apache-2.0 | duv_person_activity.py | duv_person_activity.py | 14,125 | ###########################
# Latent ODEs for Irregularly-Sampled Time Series
# Authors: Yulia Rubanova and Ricky Chen
###########################
import os
from sklearn import model_selection
import duv_utils as utils
import numpy as np
import tarfile
import torch
from torch.utils.data import DataLoader
from torchv... | 1,158 | 14,125 | 411 | 0.98 | 2026-04-23T00:36:25.961040 | true |
github_opendilab_DI-drive_3c0daa996b57bd95010f35594ad875b6b02bdb97 | 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/envs/__init__.py | __init__.py | 1,120 | '''
Copyright 2021 OpenDILab. All Rights Reserved:
Description:
'''
from gym.envs.registration import register, registry
from core import SIMULATORS
from .base_drive_env import BaseDriveEnv
from .drive_env_wrapper import DriveEnvWrapper, BenchmarkEnvWrapper
envs = []
env_map = {}
if 'carla' in SIMULATORS:
from .s... | 94 | 1,120 | 40 | 0.98 | 2026-04-22T20:42:05.711757 | true |
github_rhaiscript_rhai_148e3c2be079ac1485fbcd7d2b32093cbe769455 | Rust | rhaiscript | rhai | 5,282 | 231 | Rhai - An embedded scripting language for Rust. | [
"embedded",
"embedded-scripting-language",
"no-std",
"rhai",
"scripting-engine",
"scripting-language",
"wasm",
"webassembly"
] | Apache-2.0 | src/api/run.rs | run.rs | 4,697 | //! Module that defines the public evaluation API of [`Engine`].
use crate::eval::Caches;
use crate::parser::ParseState;
use crate::{Engine, RhaiResultOf, Scope, AST};
#[cfg(feature = "no_std")]
use std::prelude::v1::*;
impl Engine {
/// Evaluate a string as a script.
///
/// # Example
///
/// ```... | 543 | 4,697 | 160 | 0.98 | 2026-04-17T15:16:10.827763 | true |
github_gardener_gardener_9ea936bf065a48ca3883be57cf79bbdbfbb5f97f | Go | gardener | gardener | 3,366 | 562 | Homogeneous Kubernetes clusters at scale on any infrastructure using hosted control planes. | [
"cluster",
"controller",
"extensibility",
"gardener",
"golang",
"hcp",
"hosted-control-planes",
"hosted-controlplanes",
"k8s",
"k8s-in-k8s",
"kubernetes",
"kubernetes-cluster",
"kubernetes-in-kubernetes"
] | Apache-2.0 | pkg/extensions/extensions_suite_test.go | extensions_suite_test.go | 337 | // SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and Gardener contributors
//
// SPDX-License-Identifier: Apache-2.0
package extensions_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestExtensions(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Exte... | 35 | 337 | 18 | 0.98 | 2026-04-17T22:36:09.699498 | true |
github_nfl_react-helmet_0ee6fdf187af606ff455722f4b0d0b3202eb4160 | JavaScript | nfl | react-helmet | 17,485 | 645 | A document head manager for React | [
"helmet",
"react",
"side-effect"
] | MIT | karma.config.js | karma.config.js | 3,384 | // Karma configuration
module.exports = function(config) {
function normalizationBrowserName(browser) {
return browser.toLowerCase().split(/[ /-]/)[0];
}
config.set({
// ... normal karma configuration
basePath: "",
// How long will Karma wait for a message from a browser b... | 295 | 3,384 | 112 | 0.98 | 2026-04-23T04:53:42.394160 | true |
github_centrifugal_centrifugo_8f1e0215d8b27e744ee8b360d24b94f057e516cb | Go | centrifugal | centrifugo | 10,173 | 694 | Scalable real-time messaging server in a language-agnostic way. Self-hosted alternative to Pubnub, Pusher, Ably, socket.io, Phoenix.PubSub, SignalR. Set up once and forever. | [
"ably",
"alternative",
"eventsource",
"grpc",
"http-streaming",
"http3",
"messaging",
"pubnub",
"pubsub",
"pusher",
"real-time",
"redis",
"scalability",
"server-sent-events",
"socket-io",
"sse",
"streaming",
"websocket",
"websockets",
"webtransport"
] | Apache-2.0 | internal/cli/checktoken.go | checktoken.go | 2,579 | package cli
import (
"encoding/json"
"fmt"
"os"
"github.com/centrifugal/centrifugo/v6/internal/config"
"github.com/centrifugal/centrifugo/v6/internal/confighelpers"
"github.com/centrifugal/centrifugo/v6/internal/jwtverify"
"github.com/cristalhq/jwt/v5"
"github.com/spf13/cobra"
)
func CheckToken() *cobra.Com... | 280 | 2,579 | 89 | 0.98 | 2026-04-17T12:44:23.846432 | true |
github_IBM_sarama_992476080610a279627d1c404fdd38ad0e7f1b65 | Go | IBM | sarama | 12,462 | 1,843 | Sarama is a Go library for Apache Kafka. | [
"go",
"kafka",
"kafka-client"
] | MIT | alter_user_scram_credentials_request.go | alter_user_scram_credentials_request.go | 3,969 | package sarama
type AlterUserScramCredentialsRequest struct {
Version int16
// Deletions represent list of SCRAM credentials to remove
Deletions []AlterUserScramCredentialsDelete
// Upsertions represent list of SCRAM credentials to update/insert
Upsertions []AlterUserScramCredentialsUpsert
}
func (r *AlterUser... | 477 | 3,969 | 161 | 0.98 | 2026-04-17T11:36:19.587375 | true |
github_StevenBlack_hosts_2a79fcef5fd25c06979e5aa9dda99a4a6134fb8a | Python | StevenBlack | hosts | 30,251 | 2,401 | 🔒 Consolidating and extending hosts files from several well-curated sources. Optionally pick extensions for porn, social media, and other categories. | [
"ad-blocker",
"anti-virus",
"curated-sources",
"gambling-filter",
"hosts",
"malware",
"porn-filter",
"pornblocker",
"privacy",
"protection",
"python",
"ransomware",
"security",
"social-media-filter",
"trojans",
"unified-hosts"
] | MIT | updateHostsFile.py | updateHostsFile.py | 58,975 | #!/usr/bin/env python3
# Script by Ben Limmer
# https://github.com/l1m5
#
# This Python script will combine all the host files you provide
# as sources into one, unique host file to keep your internet browsing happy.
import argparse
import fnmatch
import ipaddress
import json
import locale
import os
import platform
f... | 5,648 | 58,975 | 1,987 | 0.98 | 2026-04-23T04:11:02.915765 | true |
github_playcanvas_engine_ce968cc27f6915990c552df7f843600525894696 | JavaScript | playcanvas | engine | 14,770 | 1,766 | Powerful web graphics runtime built on WebGL, WebGPU, WebXR and glTF | [
"3d-gaussian-splatting",
"game-development",
"game-engine",
"gamedev",
"gaussian-splatting",
"gltf",
"hacktoberfest",
"javascript",
"nodejs",
"playcanvas",
"typescript",
"virtual-reality",
"webgl",
"webgl2",
"webgpu",
"webxr"
] | MIT | src/framework/scene-registry.js | scene-registry.js | 16,450 | import { path } from '../core/path.js';
import { Debug } from '../core/debug.js';
import { ABSOLUTE_URL } from './asset/constants.js';
import { SceneRegistryItem } from './scene-registry-item.js';
/**
* @import { AppBase } from './app-base.js'
* @import { Entity } from './entity.js'
*/
/**
* @callback LoadHierarc... | 1,955 | 16,450 | 485 | 0.98 | 2026-04-23T06:54:36.998436 | true |
github_sindresorhus_execa_57c18c261dd9e97cf78e9dfe29d66da7a9da7baa | JavaScript | sindresorhus | execa | 7,493 | 250 | Process execution for humans | [
"binary",
"child-process",
"exec",
"execute",
"javascript",
"nodejs",
"shell",
"spawn",
"spawned-processes",
"streams"
] | MIT | lib/stdio/direction.js | direction.js | 2,862 | import process from 'node:process';
import {
isStream as isNodeStream,
isReadableStream as isNodeReadableStream,
isWritableStream as isNodeWritableStream,
} from 'is-stream';
import {isWritableStream} from './type.js';
// For `stdio[fdNumber]` beyond stdin/stdout/stderr, we need to guess whether the value passed is... | 340 | 2,862 | 77 | 0.98 | 2026-04-23T07:15:58.561948 | true |
github_hijkzzz_pymarl2_db2356a3daf42d0be6b7abaf28c975f083595cd3 | 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/th_utils.py | th_utils.py | 852 | import torch
from torch import nn
def clip_by_tensor(t,t_min,t_max):
"""
clip_by_tensor
:param t: tensor
:param t_min: min
:param t_max: max
:return: cliped tensor
"""
t=t.float()
t_min=t_min.float()
t_max=t_max.float()
result = (t >= t_min).float() * t + (t < t_min).float... | 89 | 852 | 33 | 0.98 | 2026-04-22T20:37:58.839768 | true |
github_actionhero_actionhero_d2bd2f7f7bd8544b38599961acb58f79abdd27ad | TypeScript | actionhero | actionhero | 2,418 | 259 | Actionhero is a realtime multi-transport nodejs API Server with integrated cluster capabilities and delayed tasks | [
"actionhero",
"api",
"api-server",
"async-await",
"cluster",
"delayed-jobs",
"delayed-tasks",
"framework",
"frameworks",
"http",
"https",
"javascript",
"nodejs",
"server",
"socket-client",
"tcp",
"ts",
"typescript",
"websocket"
] | Apache-2.0 | src/config/websocket.ts | websocket.ts | 2,273 | // Note that to use the websocket server, you also need the web server enabled
import { ActionheroConfigInterface } from "..";
const namespace = "websocket";
declare module ".." {
export interface ActionheroConfigInterface {
[namespace]: ReturnType<(typeof DEFAULT)[typeof namespace]>;
}
}
export const DEFAU... | 251 | 2,273 | 63 | 0.98 | 2026-04-17T18:07:25.108303 | true |
github_payloadcms_payload_1485130f4bf416811595c263e0c3165fd0e0177b | JavaScript | payloadcms | payload | 41,881 | 3,599 | Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications. | [
"cms",
"content-management",
"content-management-system",
"express",
"graphql",
"headless",
"headless-cms",
"jamstack",
"javascript",
"mit-license",
"mongodb",
"nextjs",
"nodejs",
"open-source",
"payload",
"payloadcms",
"postgres",
"react",
"typescript"
] | MIT | eslint.config.js | eslint.config.js | 2,745 | import payloadEsLintConfig from '@payloadcms/eslint-config'
import payloadPlugin from '@payloadcms/eslint-plugin'
import mdxTextParser from '@payloadcms/eslint-plugin/customRules/mdx-text-parser.js'
export const defaultESLintIgnores = [
'**/.temp',
'**/.*', // ignore all dotfiles
'**/.git',
'**/.hg',
'**/.pn... | 196 | 2,745 | 120 | 0.98 | 2026-04-18T01:22:14.195183 | true |
github_adhikasp_mcp-client-cli_2e2c96007720f007b8b88ad1e123df597ec7bd1c | Python | adhikasp | mcp-client-cli | 673 | 81 | A simple CLI to run LLM prompt and implement MCP client. | [
"langchain",
"llm",
"mcp",
"model-context-protocol"
] | MIT | src/mcp_client_cli/memory.py | memory.py | 23,305 | """SQLite-based store implementation with vector search capabilities.
This store provides persistent storage using SQLite with optional vector search functionality.
It implements the BaseStore interface from langgraph.
"""
from datetime import datetime, timezone
import json
import logging
from pathlib import Path
fro... | 1,972 | 23,305 | 626 | 0.98 | 2026-04-23T00:49:43.730326 | true |
github_upper_db_00aec9c0633e85b712684be4d54213eaa2c3637c | Go | upper | db | 3,653 | 239 | Data Access Layer (DAL) for PostgreSQL, CockroachDB, MySQL, SQLite and MongoDB with ORM-like features. | [
"cockroachdb",
"dal",
"database",
"db",
"go",
"golang",
"mongodb",
"mysql",
"nosql",
"orm",
"postgresql",
"sql",
"sqlite",
"upper"
] | MIT | internal/sqlbuilder/placeholder_test.go | placeholder_test.go | 3,018 | package sqlbuilder
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
db "github.com/upper/db/v4"
)
func TestPrepareForDisplay(t *testing.T) {
samples := []struct {
In string
Out string
}{
{
In: "12345",
Out: "12345",
},
{
In: "\r\n\t12345",
Out: "12345",
},
{
In: "1... | 430 | 3,018 | 150 | 0.98 | 2026-04-17T18:20:38.302184 | true |
github_firefox-devtools_profiler_67cbc9e4caa937d9eea126e690c33d3898ae94d7 | JavaScript | firefox-devtools | profiler | 1,482 | 465 | Firefox Profiler — Web app for Firefox performance analysis | [
"devtools",
"firefox",
"gecko-profiler",
"javascript",
"performance",
"profiler",
"react",
"redux"
] | MPL-2.0 | jest.config.js | jest.config.js | 1,480 | /* 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/. */
module.exports = {
testMatch: ['<rootDir>/src/**/*.test.{js,jsx,ts,tsx}'],
moduleFileExtensions: ['js', 'jsx',... | 132 | 1,480 | 48 | 0.98 | 2026-04-23T08:53:43.015671 | true |
github_kubernetes_kops_b2e484844ba188ab211aebe36c89fc1248bb826f | Go | kubernetes | kops | 16,589 | 4,699 | Kubernetes Operations (kOps) - Production Grade k8s Installation, Upgrades and Management | [
"cncf",
"containers",
"go",
"kops",
"kubernetes"
] | Apache-2.0 | cmd/kops/toolbox_dump.go | toolbox_dump.go | 8,935 | /*
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, ... | 978 | 8,935 | 299 | 0.98 | 2026-04-17T10:23:38.231173 | true |
github_rustdesk_rustdesk_0f49079a2276227917b4e69fd5ba8110983067de | 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/es.rs | es.rs | 48,478 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Estado"),
("Your Desktop", "Tu escritorio"),
("desk_tip", "Puedes acceder a tu escritorio con esta ID y contraseña."),
("Password", "Contraseña"),
("Ready", "Li... | 5,020 | 48,081 | 748 | 0.98 | 2026-04-17T13:14:27.667512 | true |
github_Shy2593666979_AgentChat_bb12d99e7d22f9899c4e3509c40d2d368a8b9c51 | TypeScript | Shy2593666979 | AgentChat | 670 | 83 | AgentChat 是一个基于 LLM 的智能体交流平台,内置默认 Agent 并支持用户自定义 Agent。通过多轮对话和任务协作,Agent 可以理解并协助完成复杂任务。项目集成 LangChain、Function Call、MCP 协议、RAG、Memory、HITL、Skill、Milvus 和 ElasticSearch 等技术,实现高效的知识检索与工具调用,使用 FastAPI 构建高性能后端服务。 | [
"agent",
"agent-memory",
"agent-skills",
"human-in-the-loop",
"langchain",
"llm",
"mcp",
"mcp-client",
"mcp-server",
"mysql",
"redis"
] | MIT | src/frontend/components.d.ts | components.d.ts | 2,501 | /* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}
declare module 'vue' {
export interface GlobalComponents {
AgentCard: typeof import('./src/components/agentCard/agentCard.vue')['default']
AgentFor... | 135 | 2,501 | 48 | 0.98 | 2026-04-23T00:50:08.692798 | true |
github_rustdesk_rustdesk_06ad254c78729819f7468227df61a3af70975f7c | 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/da.rs | da.rs | 44,670 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Status"),
("Your Desktop", "Dit skrivebord"),
("desk_tip", "Du kan give adgang til dit skrivebord med dette ID og denne adgangskode."),
("Password", "Adgangskode"),
... | 4,347 | 44,261 | 748 | 0.98 | 2026-04-17T13:14:25.057521 | true |
github_bagisto_nextjs-commerce_625d6f650ed66dfac24503a613239c526cd72b62 | TypeScript | bagisto | nextjs-commerce | 5,080 | 97 | Open source headless commerce that’s fast, flexible, and built to scale,launch stunning storefronts that convert and grow your business without limits. | [
"headless",
"headless-commerce",
"nextjs",
"nextjs-commerce",
"open-source-headless-ecommerce"
] | MIT | src/utils/auth.ts | auth.ts | 2,277 | import NextAuth, { NextAuthOptions } from "next-auth";
import CredentialsProvider from "next-auth/providers/credentials";
import { bagistoFetch } from "@/utils/bagisto";
import { CUSTOMER_LOGIN } from "@/graphql/customer/mutations";
export const authOptions: NextAuthOptions = {
session: {
strategy: "jwt",
ma... | 227 | 2,277 | 89 | 0.98 | 2026-04-23T10:07:19.611755 | true |
github_GoogleCloudPlatform_microservices-demo_77f0516263d7342aacdd9aa5bb541884be22b150 | 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/index.js | index.js | 2,159 | /*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | 224 | 2,159 | 76 | 0.98 | 2026-04-17T09:30:44.589262 | true |
github_bnb-chain_bsc_4b0ae680acaaa987fc8dc655f62157d60510b6ac | Go | bnb-chain | bsc | 3,240 | 1,785 | A BNB Smart Chain client based on the go-ethereum fork | [
"blockchain",
"bnb",
"ethereum"
] | LGPL-3.0 | cmd/rlpdump/rlpdump_test.go | rlpdump_test.go | 2,240 | // Copyright 2021 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any la... | 275 | 2,240 | 85 | 0.98 | 2026-04-17T16:50:10.308513 | true |
github_ofek_pyapp_c29273e07c37c8c5d55d7515db3760f3041ffde7 | Rust | ofek | pyapp | 1,961 | 56 | Runtime installer for Python applications | [
"application",
"build",
"cli",
"packaging",
"python",
"rust"
] | UNKNOWN | src/terminal.rs | terminal.rs | 905 | use std::time::Duration;
use indicatif::{ProgressBar, ProgressStyle};
// https://github.com/sindresorhus/cli-spinners/blob/main/spinners.json
const SPINNER: &[&str] = &["∙∙∙", "●∙∙", "∙●∙", "∙∙●", "∙∙∙"];
pub fn io_progress_bar(message: String, size: u64) -> ProgressBar {
let pb = ProgressBar::new(size);
pb.... | 63 | 875 | 32 | 0.98 | 2026-04-17T19:24:52.592444 | true |
github_drprojects_superpoint_transformer_3d54c6fd332011b7eaaf8ef4e2f80b31a9d210f9 | 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/utils/keys.py | keys.py | 2,109 | from collections.abc import Iterable
import inspect
__all__ = [
'RADIOMETRIC_FEATURES',
'GEOMETRIC_FEATURES',
'POINT_FEATURES',
'SEGMENT_BASE_FEATURES',
'SUBEDGE_FEATURES',
'ON_THE_FLY_HORIZONTAL_FEATURES',
'ON_THE_FLY_VERTICAL_FEATURES',
'sanitize_keys',
'filter_kwargs']
RADIOME... | 205 | 2,109 | 92 | 0.98 | 2026-04-22T21:13:24.612987 | true |
github_Chalarangelo_30-seconds-of-code_d1de5b97e4f3f9ebf35d8abac8a04b079d653ab7 | 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/models/language.js | language.js | 408 | import Model from '#src/core/model.js';
import Snippet from '#src/models/snippet.js';
export default class Language extends Model {
static {
Model.prepare(this, ['id']);
}
constructor(data) {
super(data);
this.id = data.id;
this.long = data.long;
this.short = data.short;
this.name = data... | 46 | 408 | 21 | 0.98 | 2026-04-23T06:14:58.817782 | true |
github_github_github-mcp-server_801122dca80f9bf14130259aed2b30f509b52022 | Go | github | github-mcp-server | 28,940 | 3,995 | GitHub's official MCP Server | [
"github",
"mcp",
"mcp-server"
] | MIT | pkg/github/pullrequests_test.go | pullrequests_test.go | 118,323 | package github
import (
"context"
"encoding/json"
"net/http"
"testing"
"time"
"github.com/github/github-mcp-server/internal/githubv4mock"
"github.com/github/github-mcp-server/internal/toolsnaps"
"github.com/github/github-mcp-server/pkg/lockdown"
"github.com/github/github-mcp-server/pkg/translations"
"github... | 8,889 | 118,323 | 3,807 | 0.98 | 2026-04-17T08:22:41.392109 | true |
github_tree-sitter_tree-sitter_64ed3bf27f18e0ff0ccb9bab6fa45350619d1a8a | TypeScript | tree-sitter | tree-sitter | 24,792 | 2,582 | An incremental parsing system for programming tools | [
"c",
"incremental",
"parser",
"parsing",
"rust",
"tree-sitter",
"wasm"
] | MIT | lib/binding_web/vitest.config.ts | vitest.config.ts | 316 | import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
globals: true,
environment: 'node',
coverage: {
include: [
'web-tree-sitter.js',
],
exclude: [
'test/**',
'dist/**',
'lib/**',
'wasm/**'
],
},
}
})
| 31 | 316 | 20 | 0.98 | 2026-04-17T13:33:44.041941 | true |
github_pranshuparmar_witr_e800bcc28563252be287e95deb02adfd45b00a3b | Go | pranshuparmar | witr | 14,306 | 360 | Why is this running? | [] | Apache-2.0 | internal/proc/socketstate_darwin.go | socketstate_darwin.go | 4,390 | //go:build darwin
package proc
import (
"fmt"
"os/exec"
"strconv"
"strings"
"github.com/pranshuparmar/witr/pkg/model"
)
// GetSocketStates returns all socket states for a given port
func GetSocketStates(port int) ([]model.SocketInfo, error) {
var sockets []model.SocketInfo
// Use netstat to get all socket s... | 589 | 4,390 | 173 | 0.98 | 2026-04-17T10:43:03.426789 | true |
github_botaoye_OSTrack_133cddf2d084cab599c01fbeb15ac82880705bb4 | Python | botaoye | OSTrack | 624 | 86 | [ECCV 2022] Joint Feature Learning and Relation Modeling for Tracking: A One-Stream Framework | [
"tracking",
"transformer"
] | MIT | lib/train/train_script_distill.py | train_script_distill.py | 4,675 | import os
# loss function related
from lib.utils.box_ops import giou_loss
from torch.nn.functional import l1_loss
from torch.nn import BCEWithLogitsLoss
# train pipeline related
from lib.train.trainers import LTRTrainer
# distributed training related
from torch.nn.parallel import DistributedDataParallel as DDP
# some m... | 403 | 4,675 | 112 | 0.98 | 2026-04-22T21:46:33.532811 | true |
github_EvoMap_evolver_8d40438f3df0329b91aba44fbe765d5040f6d8b6 | JavaScript | EvoMap | evolver | 6,584 | 643 | The GEP-powered self-evolving engine for AI agents. Auditable evolution with Genes, Capsules, and Events. | evomap.ai | [
"a2a",
"agent-evolution",
"agent-framework",
"agent-protocol",
"ai-agent",
"auditable-ai",
"autonomous-agent",
"cli",
"evomap",
"gep",
"llm-agent",
"mcp",
"memory-system",
"nodejs",
"prompt-engineering",
"prompt-governance",
"self-evolution",
"self-evolving",
"skill-library",
"... | GPL-3.0 | src/gep/gitOps.js | gitOps.js | 8,236 | // Git operations extracted from solidify.js for maintainability.
// All functions that directly invoke git CLI or manage rollback live here.
const fs = require('fs');
const path = require('path');
const { execSync } = require('child_process');
const { getRepoRoot } = require('./paths');
// 10 MB — prevents RangeErro... | 954 | 8,234 | 235 | 0.98 | 2026-04-23T07:17:51.760594 | true |
github_redux-form_redux-form_5f989c683e23fe5c156bbdac6a603a5ffa9ae8d1 | 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/actions.js | actions.js | 8,939 | // @flow
import {
ARRAY_INSERT,
ARRAY_MOVE,
ARRAY_POP,
ARRAY_PUSH,
ARRAY_REMOVE,
ARRAY_REMOVE_ALL,
ARRAY_SHIFT,
ARRAY_SPLICE,
ARRAY_SWAP,
ARRAY_UNSHIFT,
AUTOFILL,
BLUR,
CHANGE,
CLEAR_SUBMIT,
CLEAR_SUBMIT_ERRORS,
CLEAR_ASYNC_ERROR,
DESTROY,
FOCUS,
INITIALIZE,
REGISTER_FIELD,
RES... | 1,054 | 8,939 | 467 | 0.98 | 2026-04-23T04:56:58.766630 | true |
github_gemini-testing_gemini_5dd60a738717d7f652d5a5e5e490be53ede1da1e | JavaScript | gemini-testing | gemini | 1,508 | 148 | 💀💀💀[DEPRECATED] Use hermione | [
"gemini",
"selenium",
"testing",
"testing-tools",
"visual-regression",
"yandex"
] | MIT | lib/runner/runner.js | runner.js | 192 | 'use strict';
const PassthroughEmitter = require('../passthrough-emitter');
module.exports = class Runner extends PassthroughEmitter {
run() {
throw 'Not implemented';
}
};
| 20 | 192 | 11 | 0.98 | 2026-04-23T12:30:14.969958 | true |
github_reliverse_relivator_a8bba8321026802c0f54a9d17788e08900f7a76a | JavaScript | reliverse | relivator | 1,550 | 275 | 🏬 relivator: next.js 15 react 19 ecommerce template ▲ better-auth polar shadcn/ui tailwind drizzle orm typescript ts radix, postgres neon, app router saas commerce ecommerce shop pricing payments dark mode full stack free ⭐ more stars 👉 more features | [
"drizzle-orm",
"e-commerce",
"ecommerce",
"next-auth",
"nextauthjs",
"nextjs",
"nextjs-boilerplate",
"nextjs-example",
"nextjs-starter",
"nextjs-tailwind",
"nextjs-template",
"nextjs14",
"nextjs15",
"radix-ui",
"shadcn",
"shadcn-ui",
"starter",
"stripe",
"t3-stack",
"template"
... | MIT | eslint.config.js | eslint.config.js | 1,461 | import eslintReact from "@eslint-react/eslint-plugin";
import eslintJs from "@eslint/js";
import eslintParserTypeScript from "@typescript-eslint/parser";
import perfectionist from "eslint-plugin-perfectionist";
import eslintPluginReadableTailwind from "eslint-plugin-readable-tailwind";
import tseslint from "typescript-... | 101 | 1,461 | 47 | 0.98 | 2026-04-23T11:12:23.780599 | true |
github_zeroclaw-labs_zeroclaw_86ee0e01c6ff20d367123ede77ed76fbb75d8eac | Rust | zeroclaw-labs | zeroclaw | 30,264 | 4,379 | Fast, small, and fully autonomous AI personal assistant infrastructure, ANY OS, ANY PLATFORM — deploy anywhere, swap anything 🦀 | [
"agent",
"agentic",
"ai",
"infra",
"ml",
"openclaw",
"os",
"zeroclaw"
] | Apache-2.0 | src/memory/traits.rs | traits.rs | 2,444 | pub use zeroclaw_api::memory_traits::*;
pub use async_trait::async_trait;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn memory_category_display_outputs_expected_values() {
assert_eq!(MemoryCategory::Core.to_string(), "core");
assert_eq!(MemoryCategory::Daily.to_string(), "daily");
... | 130 | 2,444 | 69 | 0.98 | 2026-04-17T13:26:31.766135 | true |
github_starship_starship_7af8831537dff7e322da17125ea69e0c214e6c7f | 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 | build.rs | build.rs | 1,657 | use std::fs::{self, File};
use std::io;
use std::io::Write;
use shadow_rs::SdResult;
fn main() -> SdResult<()> {
shadow_rs::ShadowBuilder::builder()
.hook(gen_presets_hook)
.build()?;
#[cfg(windows)]
{
let mut res = winres::WindowsResource::new();
res.set_manifest_file("st... | 131 | 1,657 | 64 | 0.98 | 2026-04-17T13:17:25.046617 | true |
github_livekit_livekit_df47226e9b19deb6159a9dcca59b41b90d262e0b | Go | livekit | livekit | 18,220 | 1,897 | End-to-end realtime stack for connecting humans and AI | [
"golang",
"media-server",
"sfu",
"video",
"voice",
"voice-ai",
"webrtc"
] | Apache-2.0 | pkg/routing/node.go | node.go | 3,416 | // Copyright 2023 LiveKit, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to i... | 370 | 3,416 | 159 | 0.98 | 2026-04-17T09:41:56.039295 | true |
github_Lightning-AI_pytorch-lightning_862b5f95d88457732e2c19500c6aa71f9141df02 | Python | Lightning-AI | pytorch-lightning | 31,054 | 3,705 | Pretrain, finetune ANY AI model of ANY size on 1 or 10,000+ GPUs with zero code changes. | [
"ai",
"artificial-intelligence",
"data-science",
"deep-learning",
"machine-learning",
"python",
"pytorch"
] | Apache-2.0 | src/lightning_fabric/__version__.py | __version__.py | 361 | import os
_PACKAGE_ROOT = os.path.dirname(__file__)
_VERSION_PATH = os.path.join(os.path.dirname(_PACKAGE_ROOT), "version.info")
if not os.path.exists(_VERSION_PATH):
# relevant for `bdist_wheel`
_VERSION_PATH = os.path.join(_PACKAGE_ROOT, "version.info")
with open(_VERSION_PATH, encoding="utf-8") as fopen:
... | 28 | 361 | 10 | 0.98 | 2026-04-17T06:44:35.008139 | true |
github_axios_axios_bc36d65b1af4369a64d0c13ae2e7cf253e3d3bcd | 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/formDataToJSON.js | formDataToJSON.js | 2,245 | 'use strict';
import utils from '../utils.js';
/**
* It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']
*
* @param {string} name - The name of the property to get.
*
* @returns An array of strings.
*/
function parsePropPath(name) {
// foo[x][y][z]
// foo.x.y.z
// foo-x... | 303 | 2,245 | 98 | 0.98 | 2026-04-23T06:16:54.351100 | true |
github_ChatGPTNextWeb_NextChat_fd7a4da98ca4ef057c28a127020dcb80b30b4bb0 | TypeScript | ChatGPTNextWeb | NextChat | 87,769 | 59,807 | ✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows | [
"calclaude",
"chatgpt",
"claude",
"cross-platform",
"desktop",
"fe",
"gemini",
"gemini-pro",
"gemini-server",
"gemini-ultra",
"gpt-4o",
"groq",
"nextjs",
"ollama",
"react",
"tauri",
"tauri-app",
"vercel",
"webui"
] | MIT | app/utils/merge.ts | merge.ts | 419 | export function merge(target: any, source: any) {
Object.keys(source).forEach(function (key) {
if (
source.hasOwnProperty(key) && // Check if the property is not inherited
source[key] &&
typeof source[key] === "object" || key === "__proto__" || key === "constructor"
) {
merge((target[k... | 51 | 419 | 13 | 0.98 | 2026-04-23T08:58:33.910585 | true |
github_rustdesk_rustdesk_72652776a92584254eb153e02de4b84f83af2acc | Rust | rustdesk | rustdesk | 111,484 | 16,696 | An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer. | [
"android",
"anydesk",
"dart",
"flatpak",
"flutter",
"flutter-apps",
"ios",
"linux",
"macos",
"p2p",
"rdp",
"remote-control",
"remote-desktop",
"rust",
"rust-lang",
"teamviewer",
"vnc",
"wayland",
"windows"
] | AGPL-3.0 | src/client.rs | client.rs | 152,824 | #[cfg(not(any(target_os = "android", target_os = "ios")))]
use crate::clipboard::clipboard_listener;
use async_trait::async_trait;
use bytes::Bytes;
#[cfg(not(any(target_os = "android", target_os = "ios")))]
use clipboard_master::CallbackResult;
#[cfg(not(target_os = "linux"))]
use cpal::{
traits::{DeviceTrait, Hos... | 12,626 | 152,822 | 4,200 | 0.98 | 2026-04-17T13:14:11.388485 | true |
github_EmbraceAGI_LifeReloaded_a68cb6d003d4c50fc244cf81b887adf632e262c7 | Python | EmbraceAGI | LifeReloaded | 692 | 57 | A life simulation Game powered by GPT-4's “Advanced Data Analysis” function , offering you a second chance at life. 由GPT4的Advanced Data Analysis功能驱动的人生重来模拟器,给您人生第二春。 | [
"advanced-data-analysis",
"chatgpt",
"code",
"codeinterpreter",
"game",
"gpt",
"gpt-4",
"llm",
"openai",
"prompt",
"prompt-engineering"
] | Apache-2.0 | core/person.py | person.py | 4,695 | import copy
import json
import random
cities = [
'北京',
'上海',
'天津',
'重庆',
'哈尔滨',
'长春',
'沈阳',
'呼和浩特',
'石家庄',
'太原',
'西安',
'济南',
'乌鲁木齐',
'西宁',
'兰州',
'郑州',
'南京',
'武汉',
'杭州',
'合肥',
'福州',
'南昌',
'长沙',
'贵阳',
'广州',
'昆明',
... | 479 | 4,493 | 159 | 0.98 | 2026-04-23T01:15:55.728876 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.