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_Kenshin_simpread_fc60d95d14202e35a2ee0145cff926f51314b130 | 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/service/browser.js | browser.js | 1,306 | console.log( "=== simpread browser load ===" )
const mode = {
chrome : "chrome",
sogou : "sogouExplorer",
firefox: "firefox",
}, userAgent = () => {
if ( window.navigator.userAgent.toLowerCase().includes( "firefox" ) ) {
return "firefox";
} else {
return "chrome"
}
... | 153 | 1,306 | 69 | 0.98 | 2026-04-23T05:51:56.400655 | true |
github_visomaster_VisoMaster_070c4c01d388e6baea24f81c2d52800df8faac10 | Python | visomaster | VisoMaster | 1,815 | 313 | Powerful & Easy-to-Use Video Face Swapping and Editing Software | [
"ai",
"computer-vision",
"deepfake",
"face-editor",
"faceswap",
"live-portrait",
"video-editor"
] | GPL-3.0 | app/processors/models_processor.py | models_processor.py | 20,152 | import threading
import os
import subprocess as sp
import gc
import traceback
from typing import Dict, TYPE_CHECKING
from packaging import version
import numpy as np
import onnxruntime
import torch
import onnx
from torchvision.transforms import v2
from PySide6 import QtCore
try:
import tensorrt as t... | 1,310 | 20,151 | 410 | 0.98 | 2026-04-22T17:52:06.958960 | true |
github_graphql_express-graphql_d63ee572a7f0bbaebdc7597f8aaa0c40ab6e91b2 | TypeScript | graphql | express-graphql | 6,280 | 528 | Create a GraphQL HTTP server with Express. | [
"express-graphql",
"express-middleware",
"graphql"
] | MIT | src/__tests__/usage-test.ts | usage-test.ts | 3,271 | import express from 'express';
import request from 'supertest';
import { expect } from 'chai';
import { describe, it } from 'mocha';
import { GraphQLSchema } from 'graphql';
import { graphqlHTTP } from '../index';
describe('Useful errors when incorrectly used', () => {
it('requires an option factory function', () =... | 339 | 3,271 | 121 | 0.98 | 2026-04-18T01:31:07.638820 | true |
github_bfly123_claude_code_bridge_52316e2680a42d03913053b2effd2a8ed289ca96 | Python | bfly123 | claude_code_bridge | 2,331 | 221 | Real-time multi-AI collaboration: Claude, Codex & Gemini with persistent context, minimal token overhead | [
"ai-collaboration",
"ai-tools",
"claude-code",
"cli",
"codex",
"cross-platform",
"gemini",
"llm",
"multi-agent-systems",
"python",
"terminal"
] | NOASSERTION | lib/fault_injection/__init__.py | __init__.py | 362 | from __future__ import annotations
from .models import FaultRule, SCHEMA_VERSION, VALID_FAILURE_REASONS
from .service import ConsumedFault, FaultInjectionService
from .store import FaultInjectionStore
__all__ = [
'ConsumedFault',
'FaultInjectionService',
'FaultInjectionStore',
'FaultRule',
'SCHEMA... | 29 | 362 | 15 | 0.98 | 2026-04-22T15:41:44.171927 | true |
github_nodejs_node_05000e933f0b55b3c326daac9d87c6cdeb0b8bcc | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/internal/locks.js | locks.js | 10,269 | 'use strict';
const {
ObjectDefineProperties,
Promise,
PromisePrototypeThen,
PromiseResolve,
SafePromisePrototypeFinally,
Symbol,
SymbolToStringTag,
} = primordials;
const {
ERR_ILLEGAL_CONSTRUCTOR,
ERR_INVALID_THIS,
} = require('internal/errors');
const {
kEmptyObject,
lazyDOMException,
kEnum... | 1,018 | 10,269 | 340 | 0.98 | 2026-04-23T06:15:58.318570 | true |
github_drprojects_superpoint_transformer_3f7a3401775bb2c63b8933a4ac4ab6b2c71f2eb8 | 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/download.py | download.py | 1,458 | import os
import os.path as osp
from six.moves import urllib
import ssl
import subprocess
def download_url(url, folder, log=True):
"""Download the content of an URL to a specific folder.
:param url: string
:param folder: string
:param log: bool
If `False`, will not print anything to the conso... | 153 | 1,458 | 58 | 0.98 | 2026-04-22T21:13:19.101087 | true |
github_Fosowl_agenticSeek_d69bc64ac18d87126c3fce4fedb46b8e5c0b52e8 | Python | Fosowl | agenticSeek | 26,046 | 2,914 | Fully Local Manus AI. No APIs, No $200 monthly bills. Enjoy an autonomous agent that thinks, browses the web, and code for the sole cost of electricity. 🔔 Official updates only via twitter @Martin993886460 (Beware of fake account) | [
"agentic-ai",
"agents",
"ai",
"autonomous-agents",
"deepseek-r1",
"llm",
"llm-agents",
"voice-assistant"
] | GPL-3.0 | cli.py | cli.py | 3,275 | #!/usr/bin python3
import sys
import argparse
import configparser
import asyncio
from sources.llm_provider import Provider
from sources.interaction import Interaction
from sources.agents import Agent, CoderAgent, CasualAgent, FileAgent, PlannerAgent, BrowserAgent, McpAgent
from sources.browser import Browser, create_... | 159 | 3,275 | 78 | 0.98 | 2026-04-22T14:58:01.347243 | true |
github_PyO3_pyo3_3d6e8f9f54bfec8bd4d42484729503bb21c65095 | Rust | PyO3 | pyo3 | 15,582 | 958 | Rust bindings for the Python interpreter | [
"binding",
"ffi",
"python",
"python-c-api",
"rust"
] | Apache-2.0 | src/conversions/hashbrown.rs | hashbrown.rs | 7,530 | #![cfg(feature = "hashbrown")]
//! Conversions to and from [hashbrown](https://docs.rs/hashbrown/)’s
//! `HashMap` and `HashSet`.
//!
//! # Setup
//!
//! To use this feature, add this to your **`Cargo.toml`**:
//!
//! ```toml
//! [dependencies]
//! # change * to the latest versions
//! hashbrown = "*"
#![doc = concat... | 668 | 7,528 | 247 | 0.98 | 2026-04-17T13:52:09.038010 | true |
github_hashicorp_vault_27518d3b16fa71fc4c612e27f7b526bf58ea82f2 | Go | hashicorp | vault | 35,474 | 4,652 | A tool for secrets management, encryption as a service, and privileged access management | [
"go",
"secrets",
"vault"
] | NOASSERTION | api/sys_plugins_test.go | sys_plugins_test.go | 9,389 | // Copyright IBM Corp. 2016, 2025
// SPDX-License-Identifier: MPL-2.0
package api
import (
"context"
"net/http"
"net/http/httptest"
"reflect"
"testing"
"github.com/hashicorp/go-secure-stdlib/strutil"
)
func TestRegisterPlugin(t *testing.T) {
mockVaultServer := httptest.NewServer(http.HandlerFunc(mockVaultHan... | 804 | 9,389 | 371 | 0.98 | 2026-04-23T15:56:30.051326 | true |
github_starship_starship_dce5ebe4cad8149e3c280c015491a129fa76de0d | 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/nodejs.rs | nodejs.rs | 1,206 | use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct NodejsConfig<'a> {
pub format: &'a str,
pub version_format: &'a str,
pub symbol: &'a s... | 104 | 1,204 | 44 | 0.98 | 2026-04-17T13:17:53.670514 | true |
github_vectordotdev_vector_4149fdca7da8db2fa8cf4ce1f884d8f103678c5a | Rust | vectordotdev | vector | 21,666 | 2,093 | A high-performance observability data pipeline. | [
"agent",
"cloud-native",
"data-transformation",
"datadog",
"etl",
"events",
"forwarder",
"hacktoberfest",
"high-performance",
"logs",
"metrics",
"monitoring",
"observability",
"pipelines",
"rust-lang",
"stream-processing",
"telemetry",
"traces"
] | MPL-2.0 | lib/vector-core/build.rs | build.rs | 382 | fn main() {
println!("cargo:rerun-if-changed=proto/event.proto");
prost_build::Config::new()
.protoc_arg("--experimental_allow_proto3_optional")
.btree_map(["."])
.bytes(["raw_bytes"])
.compile_protos(
&["proto/event.proto"],
&["proto", "../../proto/third-... | 16 | 382 | 13 | 0.98 | 2026-04-17T13:38:43.947011 | true |
github_loro-dev_loro_fbee1919d0556b6b5d6af80f9f8b6c6045a350e3 | JavaScript | loro-dev | loro | 5,522 | 138 | Make your JSON data collaborative and version-controlled with CRDTs | [
"collaborative-editing",
"crdt",
"local-first",
"offline-first",
"p2p",
"privacy-first",
"rich-text"
] | MIT | sponsorkit.config.js | sponsorkit.config.js | 1,162 | import { defineConfig, tierPresets } from "sponsorkit";
const tanaincSponsor = {
sponsor: {
type: "Organization",
login: "tanainc",
name: "Tana, Inc.",
avatarUrl: "https://avatars.githubusercontent.com/u/77619227?v=4",
websiteUrl: "https://www.tana.inc",
linkUrl: "https://github.com/tanainc",... | 117 | 1,162 | 39 | 0.98 | 2026-04-17T14:58:53.195603 | true |
github_drprojects_superpoint_transformer_d4d870d481804ffc88a55ccba727be404c0547f9 | 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/datasets/dales.py | dales.py | 17,181 | import os
import sys
import torch
import shutil
import logging
import os.path as osp
from plyfile import PlyData
from typing import List
from torch_geometric.nn.pool.consecutive import consecutive_cluster
from torch_geometric.data import extract_tar
from src.datasets import BaseDataset
from src.data import Data, Insta... | 1,934 | 17,157 | 403 | 0.98 | 2026-04-22T21:12:44.327872 | true |
github_farion1231_cc-switch_f5cfd16d267d1c7419b1c4c18359d66d33dac581 | 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/config/mcpPresets.ts | mcpPresets.ts | 3,288 | import { McpServer, McpServerSpec } from "../types";
import { isWindows } from "@/lib/platform";
export type McpPreset = Omit<McpServer, "enabled" | "description">;
// 创建跨平台 npx 命令配置
// Windows 需要使用 cmd /c wrapper 来执行 npx.cmd
// Mac/Linux 可以直接执行 npx
const createNpxCommand = (
packageName: string,
extraArgs: strin... | 268 | 3,056 | 105 | 0.98 | 2026-04-17T13:18:46.236672 | true |
github_HuolalaTech_page-spy-web_5797589c971874fea469227631dc28c015826466 | TypeScript | HuolalaTech | page-spy-web | 5,589 | 347 | A remote debugging platform you'll definitely find useful. Lightweight, cross-platform, out-of-box debugging tool | [
"console",
"debugger",
"devtools",
"remote-control"
] | MIT | src/utils/useUrlParam.ts | useUrlParam.ts | 378 | import { useMemo } from 'react';
import { useLocation } from 'react-router-dom';
export const useUrlParam = () => {
// DON'T USE useSearch OR URLSearchParams, it decodes the url value automatically
const { search } = useLocation();
const replayUrl = useMemo(() => {
const url = search.split('?url=')?.[1];
... | 56 | 378 | 13 | 0.98 | 2026-04-18T00:24:06.760803 | true |
github_jbexta_AgentPilot_fd0653de9244af35bfbd2364d4b94217c0b14e92 | Python | jbexta | AgentPilot | 549 | 77 | A versatile workflow automation platform to create, organize, and execute AI workflows, from a single LLM to complex AI-driven workflows. | [
"agent",
"agi",
"ai",
"artificial-intelligence",
"claude",
"copilot",
"copilot-chat",
"desktop-assistant",
"gemini",
"gui",
"openai",
"python",
"realtime-api",
"structured-output",
"tool-calling",
"windows-copilot",
"workflow-automation",
"workflow-engine"
] | AGPL-3.0 | src/gui/demo.py | demo.py | 26,864 | import sys
import time
import pyautogui
from PySide6.QtCore import QRunnable
from PySide6.QtWidgets import QWidget, QGraphicsItem, QApplication
from src.utils import sql
from src.utils.helpers import convert_to_safe_case, compute_workflow
SPEED_RUN = False
def check_alive():
# Check if the main window is alive
... | 2,183 | 26,864 | 602 | 0.98 | 2026-04-23T01:20:18.551105 | true |
github_nodejs_node_c756e18bc4586366af40379e588d623bb01e1430 | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/internal/linkedlist.js | linkedlist.js | 1,128 | 'use strict';
function init(list) {
list._idleNext = list;
list._idlePrev = list;
return list;
}
// Show the most idle item.
function peek(list) {
if (list._idlePrev === list) return null;
return list._idlePrev;
}
// Remove an item from its list.
function remove(item) {
if (item._idleNext) {
item._id... | 153 | 1,128 | 56 | 0.98 | 2026-04-23T06:15:57.496342 | true |
github_prettier_prettier_50117757c42a3f689f4fcbcc5bc28d38db033d72 | TypeScript | prettier | prettier | 51,817 | 4,704 | Prettier is an opinionated code formatter. | [
"angular",
"ast",
"css",
"flow",
"formatter",
"graphql",
"html",
"javascript",
"json",
"jsx",
"less",
"markdown",
"prettier",
"printer",
"scss",
"typescript",
"vue",
"yaml"
] | MIT | src/document/public.d.ts | public.d.ts | 7,419 | // https://github.com/prettier/prettier/blob/next/src/document/public.js
export namespace builders {
type DocCommand =
| Align
| BreakParent
| Cursor
| Fill
| Group
| IfBreak
| Indent
| IndentIfBreak
| Label
| Line
| LineSuffix
| LineSuffixBoundary
| Trim;
type Do... | 674 | 7,419 | 255 | 0.98 | 2026-04-23T11:43:52.854363 | true |
github_Capsize-Games_airunner_7eab89e880372cc3d4fd4d332b46093acd9e50ab | Python | Capsize-Games | airunner | 1,316 | 98 | Offline inference engine for art, real-time voice conversations, LLM powered chatbots and automated workflows | [
"ai",
"ai-art",
"art",
"asset-generator",
"chatbot",
"deep-learning",
"desktop-app",
"image-generation",
"mistral",
"multimodal",
"privacy",
"pygame",
"pyside6",
"python",
"self-hosted",
"speech-to-text",
"stable-diffusion",
"text-to-image",
"text-to-speech",
"text-to-speech-ap... | GPL-3.0 | src/airunner/main.py | main.py | 9,880 | #!/usr/bin/env python
"""
----------------------------------------------------------------
Import order is crucial for AI Runner to work as expected.
Do not change the order of the imports.
----------------------------------------------------------------
"""
#############################################################... | 705 | 9,880 | 284 | 0.98 | 2026-04-17T16:24:47.210564 | true |
github_epi052_feroxbuster_223ece898799b3b17bb931140d7c70a0c846b52c | Rust | epi052 | feroxbuster | 7,680 | 612 | A fast, simple, recursive content discovery tool written in Rust. | [
"content-discovery",
"enumeration",
"hacktoberfest",
"pentest",
"pentesting-tool",
"rust",
"url-bruteforcer",
"web"
] | MIT | src/filters/utils.rs | utils.rs | 6,408 | use super::FeroxFilter;
use super::SimilarityFilter;
use crate::event_handlers::Handles;
use crate::response::FeroxResponse;
use crate::utils::{logged_request, parse_url_with_raw_path};
use crate::DEFAULT_METHOD;
use crate::NEAR_DUPLICATE_DISTANCE;
use anyhow::Result;
use regex::Regex;
use std::sync::Arc;
/// wrapper ... | 538 | 6,408 | 200 | 0.98 | 2026-04-17T14:36:13.972258 | true |
github_jdx_mise_9becf3bb8dd94492cb1b033e5ae4697b4d01a354 | Rust | jdx | mise | 26,796 | 1,060 | dev tools, env vars, task runner | [] | MIT | src/cmd.rs | cmd.rs | 29,690 | use std::collections::HashSet;
use std::ffi::{OsStr, OsString};
use std::fmt::{Debug, Display, Formatter};
use std::io::{BufRead, BufReader, Write};
use std::path::{Path, PathBuf};
use std::process::{Command, ExitStatus, Stdio};
use std::sync::atomic::{AtomicU8, Ordering};
use std::sync::mpsc::channel;
use std::sync::{... | 2,661 | 29,684 | 910 | 0.98 | 2026-04-17T13:31:05.300299 | true |
github_gastownhall_gastown_f9597ee897ebc9b6e6e8ec56bfc3e4cccb87a236 | Go | gastownhall | gastown | 14,234 | 1,286 | Gas Town - multi-agent workspace manager | [] | MIT | internal/cmd/account_test.go | account_test.go | 9,214 | package cmd
import (
"os"
"path/filepath"
"runtime"
"strings"
"testing"
"time"
"github.com/spf13/cobra"
"github.com/steveyegge/gastown/internal/config"
)
// setupTestTownForAccount creates a minimal Gas Town workspace with accounts.
func setupTestTownForAccount(t *testing.T) (townRoot string, accountsDir str... | 1,037 | 9,214 | 323 | 0.98 | 2026-04-17T10:44:21.605275 | true |
github_keystonejs_keystone-classic_009bf2c6427b87559e0720f9c70133b049552c89 | JavaScript | keystonejs | keystone-classic | 14,530 | 2,175 | Node.js CMS and web app framework | [
"cms",
"javascript",
"keystonejs",
"nodejs"
] | MIT | lib/list/automap.js | automap.js | 290 | /**
* Checks to see if a field path matches a currently unmapped path, and
* if so, adds a mapping for it.
*/
function automap (field) {
if ((field.path in this.mappings) && !this.mappings[field.path]) {
this.map(field.path, field.path);
}
return this;
}
module.exports = automap;
| 44 | 290 | 13 | 0.98 | 2026-04-23T06:55:22.440212 | true |
github_Ki6an_fastT5_3a5828b2e8f25fd79cef4ecec29995af5388b77e | Python | Ki6an | fastT5 | 588 | 74 | ⚡ boost inference speed of T5 models by 5x & reduce the model size by 3x. | [
"deep-learning",
"fast",
"fastt5",
"inference",
"inference-speed",
"nlp",
"onnx",
"onnxruntime",
"python",
"pytorch",
"quantization",
"quantized-onnx-models",
"question-answering",
"t5",
"transformer",
"translation"
] | Apache-2.0 | setup.py | setup.py | 1,766 | import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="fastt5",
version="0.1.4",
license="apache-2.0",
author="Kiran R",
author_email="[REDACTED_EMAIL... | 137 | 1,766 | 61 | 0.98 | 2026-04-22T21:49:26.598334 | true |
github_labteral_chatgpt-python_ef0883cde6f91c3e05e4741755d79671234ee5b8 | JavaScript | labteral | chatgpt-python | 522 | 74 | Unofficial Python SDK for OpenAI's ChatGPT | [
"chatgpt",
"davinci",
"gpt-3",
"gpt3-library",
"openai"
] | GPL-3.0 | interceptor.js | interceptor.js | 1,184 | const textareas = document.getElementsByTagName('textarea');
const lastTextarea = textareas[textareas.length - 1];
let buttons = document.getElementsByTagName('button');
buttons = Array.prototype.slice.call(buttons);
const lastButton = buttons[buttons.length - 1];
lastTextarea.value = 'Hello'
lastButton.click();
var... | 99 | 1,184 | 41 | 0.98 | 2026-04-23T01:22:11.852748 | true |
github_epi052_feroxbuster_32c4dbd943b6633d539976caa5ed49d62b914714 | Rust | epi052 | feroxbuster | 7,680 | 612 | A fast, simple, recursive content discovery tool written in Rust. | [
"content-discovery",
"enumeration",
"hacktoberfest",
"pentest",
"pentesting-tool",
"rust",
"url-bruteforcer",
"web"
] | MIT | src/filters/similarity.rs | similarity.rs | 2,216 | use super::*;
use crate::nlp::preprocess;
use crate::NEAR_DUPLICATE_DISTANCE;
use gaoya::simhash::{SimHash, SimHashBits, SimSipHasher64};
use lazy_static::lazy_static;
lazy_static! {
/// single instance of the sip hasher used in similarity filtering
pub static ref SIM_HASHER: SimHash<SimSipHasher64, u64, 64> =... | 236 | 2,216 | 69 | 0.98 | 2026-04-17T14:36:12.202113 | true |
github_PrefectHQ_prefect_44e31b90c2274b69cfbbc2924a6e7546ab265902 | Python | PrefectHQ | prefect | 22,192 | 2,267 | Prefect is a workflow orchestration framework for building resilient data pipelines in Python. | [
"automation",
"data",
"data-engineering",
"data-ops",
"data-science",
"infrastructure",
"ml-ops",
"observability",
"orchestration",
"pipeline",
"prefect",
"python",
"workflow",
"workflow-engine"
] | Apache-2.0 | src/prefect/cache_policies.py | cache_policies.py | 13,156 | import inspect
from copy import deepcopy
from dataclasses import dataclass, field
from logging import Logger
from pathlib import Path
from typing import (
TYPE_CHECKING,
Any,
Callable,
Dict,
Literal,
Optional,
Union,
)
from typing_extensions import Self
from prefect.context import TaskRunC... | 1,277 | 13,156 | 413 | 0.98 | 2026-04-17T16:37:56.432029 | true |
github_adam-mcdaniel_sage_5947c5687ffd286b154d060c0d327841b2b26723 | 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/lib.rs | lib.rs | 11,610 | /*
###############################################################################
# THE SAGE PROGRAMMING LANGUAGE #
# #
# █████ ██████ ███████ ██████ `-. _.-' ... | 1,089 | 10,428 | 147 | 0.98 | 2026-04-17T17:14:51.681058 | true |
github_NVIDIA_k8s-device-plugin_cc9413e715eb4f4cf4027b68105f8521d7d34ecf | Go | NVIDIA | k8s-device-plugin | 3,723 | 806 | NVIDIA device plugin for Kubernetes | [
"kubernetes"
] | Apache-2.0 | internal/flags/kubeclient.go | kubeclient.go | 3,161 | /*
* Copyright 2023 The Kubernetes Authors.
* Copyright 2024 NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
... | 370 | 3,161 | 115 | 0.98 | 2026-04-17T22:27:40.542277 | true |
github_rtk-ai_rtk_8d3da7275006242232c23e6bebbd48dd457a0762 | Rust | rtk-ai | rtk | 28,400 | 1,665 | CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies | [
"agentic-coding",
"ai-coding",
"anthropic",
"claude-code",
"cli",
"command-line-tool",
"cost-reduction",
"developer-tools",
"llm",
"open-source",
"productivity",
"rust",
"token-optimization"
] | Apache-2.0 | src/core/config.rs | config.rs | 6,721 | //! Reads user settings from config.toml.
use super::constants::{CONFIG_TOML, DEFAULT_HISTORY_DAYS, RTK_DATA_DIR};
use anyhow::Result;
use serde::{Deserialize, Serialize};
use std::path::PathBuf;
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct Config {
#[serde(default)]
pub tracking: TrackingConf... | 609 | 6,721 | 252 | 0.98 | 2026-04-17T13:28:16.679790 | true |
github_coreybutler_nvm-windows_7900e8c91225eae273a74018d35c9354c180f981 | Go | coreybutler | nvm-windows | 45,978 | 3,795 | A node.js version management utility for Windows. Ironically written in Go. | [
"go",
"management",
"node",
"node-version-manager",
"nodejs",
"nvm",
"switch",
"version",
"version-manager",
"versioning",
"windows"
] | MIT | src/web/web.go | web.go | 11,833 | package web
import (
"crypto/tls"
"fmt"
"io"
"io/ioutil"
"net"
"net/http"
"net/url"
"nvm/arch"
"nvm/file"
"os"
"os/exec"
"os/signal"
"path/filepath"
"strconv"
"strings"
"syscall"
"nvm/utility"
"archive/zip"
"github.com/blang/semver"
fs "github.com/coreybutler/go-fsutil"
)
var nvmversion = ""
va... | 1,619 | 11,833 | 507 | 0.98 | 2026-04-17T07:26:18.965754 | true |
github_farion1231_cc-switch_3ba8abe5f56ec5e2a0559cecd2c545d996188ef8 | 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/useAutoCompact.ts | useAutoCompact.ts | 1,689 | import { useEffect, useRef, useState, type RefObject } from "react";
/**
* Detects whether the container's children overflow the available width
* and returns a `compact` flag for the AppSwitcher.
*
* Uses ResizeObserver on a flex-constrained container. The container
* must have `flex-1 min-w-0 overflow-hidden` s... | 218 | 1,685 | 50 | 0.98 | 2026-04-17T13:18:48.135483 | true |
github_alexellis_arkade_203491777c1df2037d0bac002d7000b30f81fcb4 | Go | alexellis | arkade | 4,573 | 303 | Open Source Marketplace For Developer Tools | [
"apps",
"arkade",
"automation",
"cert-manager",
"cka",
"ckad",
"cli",
"devops",
"hacktoberfest",
"helm",
"inlets",
"istio",
"k3s",
"k8s",
"kubernetes",
"learning",
"nginx",
"openfaas",
"oss"
] | MIT | cmd/apps/inletsoperator_app.go | inletsoperator_app.go | 12,962 | // Copyright (c) arkade author(s) 2022. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package apps
import (
"bytes"
"encoding/json"
"fmt"
"io"
"log"
"os"
"path"
"strconv"
"strings"
"github.com/pkg/errors"
"github.com/spf13/cobra"... | 1,432 | 12,962 | 451 | 0.98 | 2026-04-17T21:47:05.600635 | true |
github_GoogleCloudPlatform_kubectl-ai_7c8f6b6f810ffb0fd54bd7f0222251d297d6d257 | Go | GoogleCloudPlatform | kubectl-ai | 7,415 | 692 | AI powered Kubernetes Assistant | [
"ai",
"assistant",
"cli",
"kubernetes"
] | Apache-2.0 | internal/mocks/gollm_mock.go | gollm_mock.go | 7,465 | // Code generated by MockGen. DO NOT EDIT.
// Source: github.com/GoogleCloudPlatform/kubectl-ai/gollm (interfaces: Client,Chat)
//
// Generated by this command:
//
// mockgen -destination=gollm_mock.go -package=mocks github.com/GoogleCloudPlatform/kubectl-ai/gollm Client,Chat
//
// Package mocks is a generated GoMock ... | 751 | 7,465 | 222 | 0.98 | 2026-04-17T20:28:06.039519 | true |
github_iced-rs_iced_f1f94f3230f56cd8ab425a461b64a46f0278b2b2 | 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/rectangle.rs | rectangle.rs | 11,721 | use crate::alignment;
use crate::{Padding, Point, Radians, Size, Vector};
/// An axis-aligned rectangle.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct Rectangle<T = f32> {
/// X coordinate of the top-left corner.
pub x: T,
/// Y coordinate of the top-left corner.
pub y: T,
/// ... | 1,381 | 11,721 | 395 | 0.98 | 2026-04-17T13:26:59.990473 | true |
github_codeceptjs_CodeceptJS_081dae75eb1df4a5f1fc5a0a160e1da5af0119be | JavaScript | codeceptjs | CodeceptJS | 4,221 | 752 | Supercharged End 2 End Testing Framework for NodeJS | [
"acceptance-testing",
"bdd",
"bdd-framework",
"codeceptjs",
"e2e-tests",
"end-to-end-testing",
"graphql-testing",
"hacktoberfest",
"javascript",
"nodejs",
"pageobject",
"playwright",
"selenium",
"selenium-webdriver",
"testing",
"webdriver",
"webdriverio"
] | MIT | lib/actor.js | actor.js | 3,415 | const Step = require('./step')
const MetaStep = require('./step/meta')
const recordStep = require('./step/record')
const container = require('./container')
const { methodsOfObject } = require('./utils')
const { TIMEOUT_ORDER } = require('./timeout')
const event = require('./event')
const store = require('./store')
cons... | 396 | 3,411 | 126 | 0.98 | 2026-04-23T07:35:46.809652 | true |
github_hi-abhi_tensorflow-value-iteration-networks_5e1316fc2165807f63a86ae9cbae060c0b9a19b8 | Python | hi-abhi | tensorflow-value-iteration-networks | 551 | 117 | TensorFlow implementation of the Value Iteration Networks (NIPS '16) paper | [
"deep-learning",
"machine-learning",
"neural-networks",
"reinforcement-learning",
"tensorflow"
] | Apache-2.0 | model.py | model.py | 5,750 | import numpy as np
import tensorflow as tf
from utils import conv2d_flipkernel
def VI_Block(X, S1, S2, config):
k = config.k # Number of value iterations performed
ch_i = config.ch_i # Channels in input layer
ch_h = config.ch_h # Channels in initial hidden layer
ch_q = config.ch_q # Channels in q... | 740 | 5,750 | 117 | 0.98 | 2026-04-22T20:49:52.016849 | true |
github_taylorwilsdon_google_workspace_mcp_83b8f5e1c32e41f0632eff043a45305b6fae187b | Python | taylorwilsdon | google_workspace_mcp | 2,133 | 643 | Control Gmail, Google Calendar, Docs, Sheets, Slides, Chat, Forms, Tasks, Search & Drive with AI - Comprehensive Google Workspace / G Suite MCP Server & CLI Tool | [
"ai",
"g-suite",
"gmail",
"google-calendar",
"google-chat",
"google-docs",
"google-drive",
"google-forms",
"google-sheets",
"google-tasks",
"google-workspace",
"gsuite",
"llm",
"llm-tools",
"mcp",
"mcp-server",
"model-context-protocol",
"model-context-protocol-server",
"model-con... | MIT | core/config.py | config.py | 1,176 | """
Shared configuration for Google Workspace MCP server.
This module holds configuration values that need to be shared across modules
to avoid circular imports.
NOTE: OAuth configuration has been moved to auth.oauth_config for centralization.
This module now imports from there for backward compatibility.
"""
import ... | 108 | 1,176 | 40 | 0.98 | 2026-04-17T16:04:08.007348 | true |
github_eloialonso_iris_06910349c0fe4360c14c3071baa81783d0f41a43 | Python | eloialonso | iris | 877 | 94 | Transformers are Sample-Efficient World Models. ICLR 2023, notable top 5%. | [
"artificial-intelligence",
"atari",
"deep-learning",
"machine-learning",
"reinforcement-learning",
"research",
"transformers",
"world-models"
] | GPL-3.0 | src/models/world_model.py | world_model.py | 5,365 | from dataclasses import dataclass
from typing import Any, Optional, Tuple
from einops import rearrange
import torch
import torch.nn as nn
import torch.nn.functional as F
from dataset import Batch
from .kv_caching import KeysValues
from .slicer import Embedder, Head
from .tokenizer import Tokenizer
from .transformer i... | 382 | 5,365 | 123 | 0.98 | 2026-04-22T20:26:52.757183 | true |
github_opendilab_DI-drive_6729b8b3c5f0edf2c33ee6b0ae8122a6cdf3d878 | 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/simple_carla_env.py | simple_carla_env.py | 20,667 | import os
import time
import carla
import numpy as np
from typing import Any, Dict, Optional, Tuple
from gym import spaces
from collections import defaultdict
from .base_drive_env import BaseDriveEnv
from core.simulators import CarlaSimulator
from core.utils.others.visualizer import Visualizer
from core.utils.simulato... | 1,667 | 20,667 | 524 | 0.98 | 2026-04-22T20:42:08.739416 | true |
github_vercel_pkg_d27bce6fa8cbb2767deb4c3e55c802ca643e0668 | TypeScript | vercel | pkg | 24,392 | 1,065 | Package your Node.js project into an executable | [
"binaries",
"cli",
"compiler",
"nodejs"
] | MIT | lib/help.ts | help.ts | 2,513 | import chalk from 'chalk';
export default function help() {
// eslint-disable-next-line no-console
console.log(`
${chalk.bold('pkg')} [options] <input>
${chalk.dim('Options:')}
-h, --help output usage information
-v, --version output pkg version
-t, --targets comma-separat... | 272 | 2,495 | 52 | 0.98 | 2026-04-23T06:43:03.267742 | true |
github_BurntSushi_ripgrep_3479b69e9c36cba90e4fe3e96f997fd12e217032 | Rust | BurntSushi | ripgrep | 62,333 | 2,482 | ripgrep recursively searches directories for a regex pattern while respecting your gitignore | [
"cli",
"command-line",
"command-line-tool",
"gitignore",
"grep",
"recursively-search",
"regex",
"ripgrep",
"rust",
"search"
] | Unlicense | build.rs | build.rs | 2,246 | fn main() {
set_git_revision_hash();
set_windows_exe_options();
}
/// Embed a Windows manifest and set some linker options.
///
/// The main reason for this is to enable long path support on Windows. This
/// still, I believe, requires enabling long path support in the registry. But
/// if that's enabled, then... | 230 | 2,246 | 62 | 0.95 | 2026-04-13T14:05:16.071277 | true |
github_starship_starship_d11a7e73b03991d0befdcd191183b0983536045b | 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/hostname.rs | hostname.rs | 892 | use indexmap::IndexMap;
use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct HostnameConfig<'a> {
pub ssh_only: bool,
pub ssh_symbol: &'a str,
... | 88 | 889 | 36 | 0.98 | 2026-04-17T13:17:46.006699 | true |
github_grommet_grommet_fb11b6e8fd0ba4f69fe98daf4a10ec2a6b9763be | TypeScript | grommet | grommet | 8,355 | 1,036 | a react-based framework that provides accessibility, modularity, responsiveness, and theming in a tidy package | [
"a11y",
"babel",
"design-system",
"grommet",
"hacktoberfest",
"javascript",
"react",
"ux-framework"
] | Apache-2.0 | src/js/index.d.ts | index.d.ts | 4,011 | export * from './components/Accordion';
export * from './components/AccordionPanel';
export * from './components/Anchor';
export * from './components/Avatar';
export * from './components/Box';
export * from './components/Button';
export * from './components/Calendar';
export * from './components/Carousel';
export * fro... | 407 | 4,011 | 102 | 0.98 | 2026-04-23T05:54:00.976046 | true |
github_rust-lang_rustlings_26bb1a2ccdfeee61aae742fc206f0fd5a21c9fdc | 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/info_file.rs | info_file.rs | 3,844 | use anyhow::{Context, Error, Result, bail};
use serde::Deserialize;
use std::{fs, io::ErrorKind};
use crate::{embedded::EMBEDDED_FILES, exercise::RunnableExercise};
/// Deserialized from the `info.toml` file.
#[derive(Deserialize)]
pub struct ExerciseInfo {
/// Exercise's unique name.
pub name: &'static str,
... | 426 | 3,844 | 123 | 0.98 | 2026-04-17T13:16:13.779755 | true |
github_huggingface_transformers_863242a695c639a3dac008b8d65ac670eef8cfdf | Python | huggingface | transformers | 159,743 | 32,972 | 🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training. | [
"audio",
"deep-learning",
"deepseek",
"gemma",
"glm",
"hacktoberfest",
"llm",
"machine-learning",
"model-hub",
"natural-language-processing",
"nlp",
"pretrained-models",
"python",
"pytorch",
"pytorch-transformers",
"qwen",
"speech-recognition",
"transformer",
"vlm"
] | Apache-2.0 | src/transformers/testing_utils.py | testing_utils.py | 159,254 | # 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... | 15,788 | 159,243 | 4,389 | 0.98 | 2026-04-22T13:18:05.620948 | true |
github_farion1231_cc-switch_538d6ee403f7709af26c12903b78be78b0427127 | 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/usePromptActions.ts | usePromptActions.ts | 4,104 | import { useState, useCallback } from "react";
import { useTranslation } from "react-i18next";
import { toast } from "sonner";
import { promptsApi, type Prompt, type AppId } from "@/lib/api";
export function usePromptActions(appId: AppId) {
const { t } = useTranslation();
const [prompts, setPrompts] = useState<Rec... | 383 | 4,020 | 153 | 0.98 | 2026-04-17T13:18:52.094284 | true |
github_infiniflow_ragflow_0d5d62334edd59f68d0ab8069c72e2ab3b5403d9 | Python | infiniflow | ragflow | 78,360 | 8,839 | RAGFlow is a leading open-source Retrieval-Augmented Generation (RAG) engine that fuses cutting-edge RAG with Agent capabilities to create a superior context layer for LLMs | [
"agent",
"agentic",
"agentic-ai",
"agentic-workflow",
"ai",
"context-engineering",
"context-retrieval",
"deep-research",
"deepseek",
"deepseek-r1",
"document-understanding",
"graphrag",
"harness",
"llm",
"mcp",
"ollama",
"openai",
"openclaw",
"rag",
"retrieval-augmented-generat... | Apache-2.0 | api/apps/api_app.py | api_app.py | 2,332 | #
# Copyright 2024 The InfiniFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by... | 228 | 2,332 | 56 | 0.98 | 2026-04-17T15:23:02.923014 | true |
github_withspectrum_spectrum_404aa2d1f23d95054df2905dba3c9b8e4d35978c | JavaScript | withspectrum | spectrum | 10,848 | 1,204 | Simple, powerful online communities. | [
"expo",
"flowtype",
"graphql",
"nodejs",
"react",
"reactjs",
"rethinkdb",
"styled-components"
] | BSD-3-Clause | api/models/session.js | session.js | 167 | // @flow
import { db } from 'shared/db';
export const destroySession = (id: string) => {
return db
.table('sessions')
.get(id)
.delete()
.run();
};
| 23 | 167 | 11 | 0.98 | 2026-04-23T05:43:04.665247 | true |
github_Huachao_vscode-restclient_d1c33ae21336de3abfc45f18ec46101e3afc2180 | TypeScript | Huachao | vscode-restclient | 5,981 | 516 | REST Client Extension for Visual Studio Code | [
"graphql",
"http",
"http-client",
"rest",
"rest-api",
"rest-client",
"typescript",
"visual-studio-code",
"vscode",
"vscode-extension"
] | MIT | src/utils/userDataManager.ts | userDataManager.ts | 3,238 | import * as fs from 'fs-extra';
import * as os from 'os';
import * as path from 'path';
import { HistoricalHttpRequest } from '../models/httpRequest';
import { JsonFileUtility } from './jsonFileUtility';
const restClientDir = 'rest-client';
const rootPath = process.env.VSC_REST_CLIENT_HOME !== undefined
? process.... | 244 | 3,238 | 103 | 0.98 | 2026-04-18T01:32:36.495974 | true |
github_k8sgpt-ai_k8sgpt_651e0881f62b74a7e5c8c909be79c3a6e513f027 | Go | k8sgpt-ai | k8sgpt | 7,675 | 979 | Giving Kubernetes Superpowers to everyone | [
"ai",
"devops",
"kubernetes",
"llama",
"openai",
"sre",
"tooling"
] | Apache-2.0 | pkg/ai/amazonbedrockconverse.go | amazonbedrockconverse.go | 4,949 | package ai
import (
"context"
"errors"
"fmt"
"github.com/aws/aws-sdk-go-v2/aws"
awsconfig "github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/service/bedrockruntime"
"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
"os"
"strings"
)
const amazonBedrockConverseClientName = "amazonbed... | 516 | 4,949 | 162 | 0.98 | 2026-04-17T20:24:10.611205 | true |
github_huggingface_transformers_b0ebb053086ba5de4ae59a99fc021526acec231e | Python | huggingface | transformers | 159,743 | 32,972 | 🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training. | [
"audio",
"deep-learning",
"deepseek",
"gemma",
"glm",
"hacktoberfest",
"llm",
"machine-learning",
"model-hub",
"natural-language-processing",
"nlp",
"pretrained-models",
"python",
"pytorch",
"pytorch-transformers",
"qwen",
"speech-recognition",
"transformer",
"vlm"
] | Apache-2.0 | src/transformers/initialization.py | initialization.py | 12,277 | # Copyright 2025 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicabl... | 1,223 | 12,277 | 334 | 0.98 | 2026-04-22T13:17:57.548933 | true |
github_pubkey_rxdb_b3f39186e5863885e013fa6093e0bfa0124fadf6 | TypeScript | pubkey | rxdb | 23,156 | 1,161 | A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/ | [
"angular",
"browser-database",
"couchdb",
"crdt",
"database",
"firebase",
"graphql",
"indexeddb",
"ionic",
"local-first",
"localstorage",
"nodejs",
"nosql",
"postgres",
"pouchdb",
"react-native",
"realtime",
"realtime-database",
"rxdb",
"sqlite"
] | Apache-2.0 | src/rx-database.ts | rx-database.ts | 33,459 | import { IdleQueue } from 'custom-idle-queue';
import type {
LeaderElector
} from 'broadcast-channel';
import { ObliviousSet } from 'oblivious-set';
import type {
CollectionsOfDatabase,
RxDatabase,
RxCollectionCreator,
RxJsonSchema,
RxCollection,
RxDumpDatabase,
RxDumpDatabaseAny,
Ba... | 2,948 | 33,459 | 966 | 0.98 | 2026-04-23T08:22:05.668057 | true |
github_parse-community_parse-server_bae6f593e9edc5a52e0a2e4748a81fccf443b428 | JavaScript | parse-community | parse-server | 21,382 | 4,819 | Parse Server for Node.js / Express | [
"baas",
"backend",
"file-storage",
"graphql",
"graphql-api",
"graphql-relay",
"graphql-server",
"hacktoberfest",
"mbaas",
"mongodb",
"nodejs",
"notifications",
"object-storage",
"parse-platform",
"parse-server",
"postgres",
"relay",
"rest-api"
] | Apache-2.0 | src/Routers/IAPValidationRouter.js | IAPValidationRouter.js | 3,900 | import PromiseRouter from '../PromiseRouter';
const request = require('../request');
const rest = require('../rest');
import Parse from 'parse/node';
// TODO move validation logic in IAPValidationController
const IAP_SANDBOX_URL = 'https://sandbox.itunes.apple.com/verifyReceipt';
const IAP_PRODUCTION_URL = 'https://bu... | 424 | 3,900 | 124 | 0.98 | 2026-04-23T06:47:28.396747 | true |
github_csslc_CCSR_2779ab00dea49756b6e5b761de36efdc732beb35 | Python | csslc | CCSR | 601 | 44 | [TIP2026] Official codes of CCSRv2 and CCSRv1: Improving the Stability and Efficiency of Diffusion Models for Content Consistent Super-Resolution | [
"arbitrary-steps-image-super-resolution",
"ccsr",
"diffusion"
] | Apache-2.0 | train_ccsr_stage2.py | train_ccsr_stage2.py | 49,325 | #!/usr/bin/env python
# coding=utf-8
# Copyright 2023 The HuggingFace Inc. team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LI... | 3,693 | 49,302 | 1,220 | 0.98 | 2026-04-22T22:41:43.420799 | true |
github_hibiken_asynq_967f5196f5f52e227ce10519c9d7579ea0af0eef | Go | hibiken | asynq | 13,154 | 922 | Simple, reliable, and efficient distributed task queue in Go | [
"asynchronous-tasks",
"background-jobs",
"go",
"golang",
"redis",
"task-queue",
"worker-pool"
] | MIT | server_test.go | server_test.go | 6,653 | // Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq
import (
"context"
"fmt"
"syscall"
"testing"
"time"
"github.com/hibiken/asynq/internal/rdb"
"github.com/hibiken/asynq/internal/testbroker"
"gi... | 753 | 6,653 | 268 | 0.98 | 2026-04-17T11:26:42.399648 | true |
github_kentcdodds_react-testing-library-course_695632008f7a963415f410ad63317b78a903093e | JavaScript | kentcdodds | react-testing-library-course | 1,082 | 377 | Test React Components with Jest and React Testing Library on TestingJavaScript.com | [
"kcd-edu",
"react",
"react-testing-library",
"testing",
"testingjavascript"
] | NOASSERTION | src/__tests__/react-router-03.js | react-router-03.js | 1,508 | import * as React from 'react'
import {BrowserRouter} from 'react-router-dom'
import {render as rtlRender, screen} from '@testing-library/react'
import userEvent from '@testing-library/user-event'
import {Main} from '../main'
// normally you'd put this logic in your test utility file so it can be used
// for all of yo... | 182 | 1,508 | 42 | 0.98 | 2026-04-23T12:34:03.620762 | true |
github_moleculerjs_moleculer_200d2127fa2d72d7119b64f6491bc5b4788f7c2f | JavaScript | moleculerjs | moleculer | 6,372 | 599 | :rocket: Progressive microservices framework for Node.js | [
"distributed-systems",
"microservice",
"microservice-framework",
"microservices",
"moleculer",
"nodejs"
] | MIT | src/loggers/console.js | console.js | 1,781 | /*
* moleculer
* Copyright (c) 2023 MoleculerJS (https://github.com/moleculerjs/moleculer)
* MIT Licensed
*/
/* eslint-disable no-console */
"use strict";
const FormattedLogger = require("./formatted");
const kleur = require("kleur");
/**
* Import types
*
* @typedef {import("../logger-factory")} LoggerFactor... | 183 | 1,781 | 83 | 0.98 | 2026-04-23T07:18:58.637278 | true |
github_firefox-devtools_profiler_a2a1168af8ad03150a94dc62bfe4771c771467a2 | 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/utils/bisect.ts | bisect.ts | 6,525 | // This file originally comes from https://github.com/3rd-Eden/node-bisection/, but has been
// imported and changed to fix some bugs.
/*
Copyright (c) 2010/2011 Arnout Kazemier,3rd-Eden
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentati... | 1,113 | 6,525 | 210 | 0.98 | 2026-04-18T00:30:09.894174 | true |
github_Chalarangelo_30-seconds-of-code_d7ab68a035912f43d706b1343e3a38b0abe674f5 | 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/lib/loader.js | loader.js | 2,099 | import fs from 'fs';
import models from '#src/models/models.js';
import serializers from '#src/serializers/serializers.js';
import pages from '#src/adapters/page/page.js';
import Model from '#src/core/model.js';
import SearchIndex from '#src/lib/searchIndex.js';
import Page from '#src/adapters/page.js';
import AstroCo... | 182 | 2,099 | 78 | 0.98 | 2026-04-23T06:14:54.877559 | true |
github_knadh_listmonk_7ae8d82b007f4b190117b273294359229e8118f4 | Go | knadh | listmonk | 19,550 | 1,998 | High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app. | [
"campaign",
"campaign-management",
"email-marketing",
"email-subscription",
"listmonk",
"mailing-list",
"newsletter",
"newsletter-management",
"newsletter-software",
"self-hosted",
"sms-gateway",
"smtp",
"transactional-emails"
] | AGPL-3.0 | internal/core/templates.go | templates.go | 3,197 | package core
import (
"database/sql"
"net/http"
"github.com/knadh/listmonk/models"
"github.com/labstack/echo/v4"
null "gopkg.in/volatiletech/null.v6"
)
// GetTemplates retrieves all templates.
func (c *Core) GetTemplates(status string, noBody bool) ([]models.Template, error) {
out := []models.Template{}
if er... | 303 | 3,197 | 89 | 0.98 | 2026-04-17T09:35:10.041979 | true |
github_bigint_hey_1a4487dbabd6e3316ff3f7062182fa40eb2d2c73 | 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/getCollectActionData.ts | getCollectActionData.ts | 869 | import type {
RecipientPercent,
SimpleCollectActionFragment
} from "@/indexer/generated";
interface CollectActionData {
price?: number;
assetAddress?: string;
assetSymbol?: string;
collectLimit?: number;
endsAt?: string;
recipients?: RecipientPercent[];
}
const getCollectActionData = (
collectAction... | 74 | 869 | 35 | 0.98 | 2026-04-18T01:23:05.820116 | true |
github_alibaba_sentinel-golang_837303889f7ad1ff9ace638a5164cbe550e0a3e6 | Go | alibaba | sentinel-golang | 2,950 | 453 | Sentinel Go enables reliability and resiliency for Go microservices | [
"cloud-native",
"go",
"golang",
"microservice",
"microservices",
"middleware",
"rate-limiting",
"resiliency"
] | Apache-2.0 | core/circuitbreaker/doc.go | doc.go | 5,286 | // Copyright 1999-2020 Alibaba Group Holding Ltd.
//
// 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 ... | 695 | 5,286 | 128 | 0.98 | 2026-04-18T00:58:03.153282 | true |
github_rhaiscript_rhai_0f9d24e184f00e91efca3996296be91b88744f6d | 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/types/immutable_string.rs | immutable_string.rs | 18,790 | //! The `ImmutableString` type.
use crate::func::{shared_get_mut, shared_make_mut, shared_take};
use crate::{Shared, SmartString};
#[cfg(feature = "no_std")]
use std::prelude::v1::*;
use std::{
borrow::Borrow,
cmp::Ordering,
fmt,
hash::Hash,
iter::FromIterator,
ops::{Add, AddAssign, Deref, Sub,... | 2,025 | 18,790 | 779 | 0.98 | 2026-04-17T15:16:44.615228 | true |
github_polyrabbit_hacker-news-digest_df5da154aa83b256e457078889661c0abfa3f241 | Python | polyrabbit | hacker-news-digest | 752 | 95 | :newspaper: Let ChatGPT Summarize Hacker News for You | [
"chatgpt",
"chatgpt-api",
"crawler",
"data-extraction",
"extract-summaries",
"hacker-news",
"hacker-news-digest",
"hacker-news-reader",
"machine-learning",
"news-aggregator",
"openai",
"openai-api",
"python",
"rss",
"spider"
] | LGPL-3.0 | publish.py | publish.py | 5,654 | import argparse
import logging
import os
import time
from datetime import datetime
from urllib.parse import urljoin
from feedwerk.atom import AtomFeed
from jinja2 import Environment, FileSystemLoader, filters
import config
import db.translation
from db import image
from hacker_news.algolia_api import get_daily_news
f... | 447 | 5,654 | 154 | 0.98 | 2026-04-23T01:14:32.779995 | true |
github_apollographql_apollo-client-devtools_38034b1dc24866fcc1ca714099b087e9af544527 | JavaScript | apollographql | apollo-client-devtools | 1,525 | 174 | Apollo Client browser developer tools. | [
"apollo-client",
"apollo-client-devtools",
"chrome-extension",
"devtools",
"firefox-extension",
"graphql"
] | MIT | webpack.config.js | webpack.config.js | 7,060 | import path from "path";
import url from "url";
import CopyPlugin from "copy-webpack-plugin";
import TerserPlugin from "terser-webpack-plugin";
import WebExtPlugin from "web-ext-plugin";
import { StatsWriterPlugin } from "webpack-stats-plugin";
import webpack from "webpack";
import packageJson from "./packages/apollo-c... | 555 | 7,060 | 252 | 0.98 | 2026-04-18T00:28:51.214385 | true |
github_codenotary_immudb_3df9b4c48e2c4c9dfc592af91a3acdb0d631b013 | Go | codenotary | immudb | 8,958 | 362 | immudb - immutable database based on zero trust, SQL/Key-Value/Document model, tamperproof, data change history | [
"auditable",
"compliance",
"cryptographic",
"database",
"gdpr",
"go",
"immutable",
"immutable-database",
"key-value",
"merkle-tree",
"pci-dss",
"performance",
"sql",
"tamper-evident",
"tamperproof",
"timetravel",
"verification",
"verify",
"zero-trust"
] | NOASSERTION | pkg/database/lazy_db.go | lazy_db.go | 17,729 | /*
Copyright 2025 Codenotary Inc. All rights reserved.
SPDX-License-Identifier: BUSL-1.1
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://mariadb.com/bsl11/
Unless required by applicable law or agreed to in writing, software
distributed under the Licen... | 2,118 | 17,729 | 727 | 0.98 | 2026-04-17T18:11:21.667622 | true |
github_claudiajs_claudia_d77672654945605e25c323eb4f2a0714584556b4 | JavaScript | claudiajs | claudia | 3,893 | 277 | Deploy Node.js projects to AWS Lambda and API Gateway easily | [
"api-gateway",
"aws",
"aws-lambda",
"claudia",
"javascript",
"nodejs",
"serverless"
] | MIT | src/tasks/add-policy.js | add-policy.js | 339 | const fsPromise = require('../util/fs-promise');
module.exports = function addPolicy(iam, policyName, roleName, fileName) {
'use strict';
return fsPromise.readFileAsync(fileName, 'utf8')
.then(policyContents => iam.putRolePolicy({
RoleName: roleName,
PolicyName: policyName,
PolicyDocument: policyContents
... | 28 | 339 | 11 | 0.98 | 2026-04-23T07:43:49.257938 | true |
github_rusiaaman_wcgw_664899364d9fbbe6761d8391db3b5221d2297bf1 | Python | rusiaaman | wcgw | 659 | 61 | Shell and coding agent on mcp clients | [
"agent",
"ai-agent",
"ai-coding",
"anthropic",
"chatgpt",
"claude",
"claude-desktop",
"custom-gpt",
"llm",
"llm-agent",
"llm-code",
"mcp",
"mcp-server",
"openai",
"shell",
"terminal"
] | Apache-2.0 | src/wcgw_cli/openai_utils.py | openai_utils.py | 2,439 | from typing import cast
from openai.types.chat import (
ChatCompletionAssistantMessageParam,
ChatCompletionMessage,
ChatCompletionMessageParam,
ParsedChatCompletionMessage,
)
from tokenizers import Tokenizer # type: ignore[import-untyped]
from wcgw.client.common import CostData, History
def get_inp... | 211 | 2,439 | 68 | 0.98 | 2026-04-23T01:17:01.749120 | true |
github_superlinear-ai_raglite_de3722224b041008b2588083a366ec82d89d4f30 | Python | superlinear-ai | raglite | 1,151 | 101 | 🥤 RAGLite is a Python toolkit for Retrieval-Augmented Generation (RAG) with DuckDB or PostgreSQL | [
"chainlit",
"colbert",
"duckdb",
"evals",
"late-chunking",
"late-interaction",
"llm",
"markdown",
"pdf",
"pgvector",
"postgres",
"postgresql",
"query-adapter",
"rag",
"reranking",
"retrieval-augmented-generation",
"sqlite",
"vector-search"
] | MPL-2.0 | src/raglite/_eval.py | _eval.py | 13,167 | """Generation and evaluation of evals."""
import asyncio
import contextlib
from concurrent.futures import ThreadPoolExecutor, as_completed
from functools import partial
from random import randint
from typing import TYPE_CHECKING, ClassVar
import numpy as np
from pydantic import BaseModel, ConfigDict, Field, field_val... | 1,362 | 13,167 | 304 | 0.98 | 2026-04-17T23:56:31.184647 | true |
github_bigint_hey_a94403745303e334a919653a0f3ac68b5b1cde4b | 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/cropUtils.ts | cropUtils.ts | 991 | import type { Area } from "react-easy-crop";
const createImage = (url: string): Promise<HTMLImageElement> =>
new Promise((resolve, reject) => {
const image = new Image();
image.addEventListener("load", () => resolve(image));
image.addEventListener("error", (error) => reject(error));
image.src = url;
... | 107 | 991 | 41 | 0.98 | 2026-04-18T01:23:00.627132 | true |
github_rclone_rclone_9872a99e29e629c89b2a2db7cd53b4bc3a7d76a7 | 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/mount/fs.go | fs.go | 2,955 | // FUSE main Fs
//go:build linux
package mount
import (
"context"
"syscall"
"bazil.org/fuse"
fusefs "bazil.org/fuse/fs"
"github.com/rclone/rclone/cmd/mountlib"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/fserrors"
"github.com/rclone/rclone/fs/log"
"github.com/rclone/rclone/vfs"
)
// FS repr... | 343 | 2,955 | 109 | 0.98 | 2026-04-17T07:18:57.162795 | true |
github_drprojects_superpoint_transformer_b9220be22d7e9eacd564e2a9dc5ec26dc1fe89a8 | 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/geometry.py | geometry.py | 11,384 | import torch
import numpy as np
import pgeof
import math
from tqdm import tqdm
from src.utils.neighbors import neighbors_dense_to_csr
from src.utils.scatter import scatter_pca
__all__ = [
'cross_product_matrix',
'rodrigues_rotation_matrix',
'base_vectors_3d',
'geometric_features']
def cross_product... | 1,203 | 11,384 | 359 | 0.98 | 2026-04-22T21:13:21.218666 | true |
github_rust-lang_rustlings_5687864183b32ce24ff609ed4fb4fe099c525072 | 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 | build.rs | build.rs | 176 | fn main() {
// Fix building from source on Windows because it can't handle file links.
#[cfg(windows)]
let _ = std::fs::copy("dev/Cargo.toml", "dev-Cargo.toml");
}
| 23 | 176 | 6 | 0.98 | 2026-04-17T13:16:08.226364 | true |
github_MervinPraison_PraisonAI_8adb5340942d7fda14e0fd725524582735cbd504 | Python | MervinPraison | PraisonAI | 6,951 | 1,061 | PraisonAI 🦞 — Hire a 24/7 AI Workforce. Stop writing boilerplate and start shipping autonomous agents that research, plan, code, and execute tasks. Deployed in 5 lines of code with built-in memory, RAG, and support for 100+ LLMs. | [
"agents",
"ai",
"ai-agent-framework",
"ai-agent-sdk",
"ai-agents",
"ai-agents-framework",
"ai-agents-sdk",
"ai-framwork",
"aiagent",
"aiagentframework",
"aiagents",
"aiagentsframework",
"claw",
"framework",
"multi-agent",
"multi-agent-system",
"multi-agent-systems",
"multi-agents",... | MIT | src/praisonai-agents/05_error_handling_monitoring.py | 05_error_handling_monitoring.py | 7,643 | """
Error Handling with Performance Monitoring - Example 5
Demonstrates performance monitoring for error scenarios:
- Error rate tracking
- Failed operation timing
- Recovery mechanism performance
- Exception handling with monitoring
Shows how to monitor performance when things go wrong.
"""
import random
import tim... | 729 | 7,583 | 195 | 0.98 | 2026-04-17T15:41:00.694302 | true |
github_starship_starship_ab8c775f16e3b76244635b2e37535f367efe33c6 | 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/cc.rs | cc.rs | 679 | use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Clone)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields),
schemars(bound = "CcConfig<'a, T>: std::default::Default, T: schemars::JsonSchema")
)]
#[serde(default)]
pub struct CcConfig<... | 66 | 679 | 25 | 0.98 | 2026-04-17T13:17:28.319696 | true |
github_aden-hive_hive_d32ac972cd401f06aebbe3756cd9d95358e880b2 | Python | aden-hive | hive | 10,120 | 5,618 | Multi-Agent Harness for Production AI | [
"agent",
"agent-framework",
"agent-skills",
"anthropic",
"automation",
"autonomous-agents",
"claude",
"harness",
"harness-engineering",
"human-in-the-loop",
"openai",
"python",
"self-hosted",
"self-improving"
] | Apache-2.0 | core/tests/debug_codex_verbose.py | debug_codex_verbose.py | 1,899 | """Run Codex stream with litellm debug logging enabled.
Run: .venv/bin/python core/tests/debug_codex_verbose.py
"""
import asyncio
import sys
sys.path.insert(0, "core")
import litellm # noqa: E402
litellm._turn_on_debug()
from framework.config import get_api_base, get_api_key, get_llm_extra_kwargs # noqa: E402
... | 154 | 1,899 | 67 | 0.98 | 2026-04-23T00:56:48.635482 | true |
github_gtalarico_flask-vuejs-template_3c7424edc4182d20a4343c8f699dceb308384662 | JavaScript | gtalarico | flask-vuejs-template | 1,486 | 316 | Flask + Vue JS Template | [
"flask",
"flask-api",
"flask-restful",
"flask-restplus",
"heroku",
"python",
"python3",
"vuejs",
"vuejs-templates"
] | MIT | src/store.js | store.js | 153 | import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
},
mutations: {
},
actions: {
}
})
| 23 | 153 | 17 | 0.98 | 2026-04-23T02:55:45.110690 | true |
github_casey_just_8909bce3f2d42810e77508bd7a5bd493f9b417ab | Rust | casey | just | 32,946 | 763 | 🤖 Just a command runner | [] | CC0-1.0 | src/numerator.rs | numerator.rs | 377 | use super::*;
pub(crate) struct Numerator(u32);
impl Numerator {
pub(crate) fn new() -> Self {
Self(constants().len().try_into().unwrap())
}
pub(crate) fn next(&mut self) -> Number {
let id = self.0;
self.0 += 1;
Number(id)
}
pub(crate) fn constant(i: usize) -> Number {
assert!(i < con... | 45 | 377 | 21 | 0.98 | 2026-04-17T13:23:25.295583 | true |
github_ChromeDevTools_chrome-devtools-mcp_83acf9f778fb469145a2e628588f92f9ad73690d | 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/tools/console.ts | console.ts | 2,964 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {zod} from '../third_party/index.js';
import type {ConsoleMessageType} from '../third_party/index.js';
import {ToolCategory} from './categories.js';
import {definePageTool} from './ToolDefinition.js';
type ConsoleResponseTy... | 279 | 2,964 | 110 | 0.98 | 2026-04-23T08:42:45.393648 | true |
github_muxinc_next-video_1af94aaa0654ee346b97ed74c5a86fd23c2e031a | TypeScript | muxinc | next-video | 1,199 | 65 | The easiest way to add video in your Nextjs app. | [
"hacktoberfest",
"next",
"nextjs",
"react",
"react-video",
"video",
"video-player",
"video-processing",
"video-streaming"
] | MIT | src/request-handler.ts | request-handler.ts | 2,532 | import type { NextApiRequest, NextApiResponse } from 'next';
import { callHandler } from './process.js';
import { createAsset, getAsset } from './assets.js';
import { getVideoConfig } from './config.js';
// App Router
export async function GET(request: Request) {
const { searchParams } = new URL(request.url)
const... | 356 | 2,532 | 95 | 0.98 | 2026-04-23T11:29:15.669519 | true |
github_goreleaser_goreleaser_f83eac236fcb1f6d149ab9a92bc4afc897aea3e7 | Go | goreleaser | goreleaser | 15,713 | 1,065 | Release engineering, simplified | [
"announcements",
"github-actions",
"hacktoberfest",
"package",
"release-automation",
"release-engineering"
] | MIT | internal/redact/redact.go | redact.go | 2,148 | // Package redact provides functions to redact secrets from strings.
package redact
import (
"cmp"
"io"
"slices"
"strings"
)
// Writer wraps the writer and redacts secret-looking environment
// variable values in the written data with their "$NAME" counterparts.
//
// Each entry in env should be in "KEY=VALUE" fo... | 325 | 2,148 | 106 | 0.98 | 2026-04-17T10:30:28.306607 | true |
github_alexellis_k3sup_1c0c5dd1602305987e0c1a8ee236372b7a14ca00 | Go | alexellis | k3sup | 7,208 | 443 | bootstrap K3s over SSH in < 60s 🚀 | [
"cloud",
"cloud-native",
"devops",
"devtools",
"edge",
"go",
"k3s",
"k8s",
"kubernetes",
"raspberry-pi",
"vm"
] | NOASSERTION | cmd/install.go | install.go | 17,624 | package cmd
import (
"bytes"
"fmt"
"log"
"net"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"github.com/alexellis/k3sup/pkg"
operator "github.com/alexellis/k3sup/pkg/operator"
"errors"
homedir "github.com/mitchellh/go-homedir"
"github.com/spf13/cobra"
"golang.org/x/crypto/ssh"
"golang.org/x/cr... | 2,152 | 17,624 | 640 | 0.98 | 2026-04-17T20:28:41.338620 | true |
github_louis-e_arnis_3a3b046f5cafb370daf7c7fbbcda22df31a56f57 | Rust | louis-e | arnis | 15,087 | 1,199 | Generate any location from the real world in Minecraft with a high level of detail. | [
"maps",
"minecraft",
"openstreetmap",
"osm",
"overpass-api",
"rust",
"tauri"
] | Apache-2.0 | src/colors.rs | colors.rs | 2,712 | pub type RGBTuple = (u8, u8, u8);
pub fn color_text_to_rgb_tuple(text: &str) -> Option<RGBTuple> {
if let Some(rgb) = full_hex_color_to_rgb_tuple(text) {
return Some(rgb);
}
if let Some(rgb) = short_hex_color_to_rgb_tuple(text) {
return Some(rgb);
}
if let Some(rgb) = color_name_t... | 346 | 2,712 | 89 | 0.98 | 2026-04-17T13:53:29.041990 | true |
github_opentofu_opentofu_7c55c9600da13eed22dbd875af3eb72cb11d897b | Go | opentofu | opentofu | 28,396 | 1,208 | OpenTofu lets you declaratively manage your cloud infrastructure. | [] | MPL-2.0 | internal/backend/unparsed_value_test.go | unparsed_value_test.go | 7,849 | // Copyright (c) The OpenTofu Authors
// SPDX-License-Identifier: MPL-2.0
// Copyright (c) 2023 HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package backend
import (
"strings"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/hashicorp/hcl/v2"
"github.com/zclconf/go-cty/cty"
"github.com/opentofu/ope... | 750 | 7,849 | 240 | 0.98 | 2026-04-17T08:24:45.476828 | true |
github_nodejs_node_18e979630e0e195f96624168733770b405ef9972 | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/perf_hooks.js | perf_hooks.js | 1,235 | 'use strict';
const {
ObjectDefineProperty,
} = primordials;
const {
constants,
} = internalBinding('performance');
const { PerformanceEntry } = require('internal/perf/performance_entry');
const { PerformanceResourceTiming } = require('internal/perf/resource_timing');
const {
PerformanceObserver,
Performance... | 95 | 1,235 | 55 | 0.98 | 2026-04-23T06:16:11.707242 | true |
github_langflow-ai_langflow_e1d06bae5b91611bdc92e331233917e3c3761a35 | JavaScript | langflow-ai | langflow | 147,265 | 8,829 | Langflow is a powerful tool for building and deploying AI-powered agents and workflows. | [
"agents",
"chatgpt",
"generative-ai",
"large-language-models",
"multiagent",
"react-flow"
] | MIT | src/frontend/jest.config.js | jest.config.js | 1,917 | module.exports = {
preset: "ts-jest",
testEnvironment: "jsdom",
coverageProvider: "v8",
injectGlobals: true,
moduleNameMapper: {
"\\.(css|less|scss|sass)$": "<rootDir>/src/__mocks__/styleMock.js",
"^@/(.*)$": "<rootDir>/src/$1",
"^@jsonquerylang/jsonquery$":
"<rootDir>/src/__mocks__/@jsonque... | 119 | 1,915 | 62 | 0.98 | 2026-04-22T21:54:37.086227 | true |
github_devtron-labs_devtron_45ef8139dbd621e45c5f7caef3fae09f47e965f5 | Go | devtron-labs | devtron | 5,455 | 569 | The only Kubernetes dashboard you need | [
"aks",
"appops",
"argocd",
"continuous-deployment",
"dashboard",
"deployment",
"deployment-automation",
"deployment-pipeline",
"deployment-strategy",
"devtron",
"eks",
"gitops",
"gke",
"hacktoberfest",
"kubectl",
"kubernetes",
"kubernetes-dashboard",
"kubernetes-deployment",
"rel... | Apache-2.0 | api/argoApplication/wire_argoApplication.go | wire_argoApplication.go | 2,361 | /*
* Copyright (c) 2024. Devtron 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 agre... | 149 | 2,361 | 60 | 0.98 | 2026-04-17T21:25:27.887120 | true |
github_devspace-sh_devspace_ca92e62961916abb5a89e654eaf46408077dd3ad | Go | devspace-sh | devspace | 4,958 | 408 | DevSpace - The Fastest Developer Tool for Kubernetes ⚡ Automate your deployment workflow with DevSpace and develop software directly inside Kubernetes. | [
"cli",
"cloud-native",
"container",
"containerization",
"dev",
"developer-tool",
"developer-tools",
"development",
"development-tools",
"devops",
"devops-tools",
"devspace",
"devtool",
"docker",
"golang",
"helm",
"kaniko",
"kubernetes",
"microservice",
"minikube"
] | Apache-2.0 | cmd/deploy.go | deploy.go | 1,326 | package cmd
import (
"github.com/loft-sh/devspace/cmd/flags"
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
"github.com/loft-sh/devspace/pkg/util/factory"
"github.com/spf13/cobra"
)
// NewDeployCmd creates a new deploy command
func NewDeployCmd(f factory.Factory, globalFlags *flags.GlobalFlags,... | 111 | 1,326 | 42 | 0.98 | 2026-04-17T21:41:41.341923 | true |
github_ChatGPTNextWeb_NextChat_be229c20cc296f9749600c954e67095244dacdf2 | TypeScript | ChatGPTNextWeb | NextChat | 87,769 | 59,807 | ✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows | [
"calclaude",
"chatgpt",
"claude",
"cross-platform",
"desktop",
"fe",
"gemini",
"gemini-pro",
"gemini-server",
"gemini-ultra",
"gpt-4o",
"groq",
"nextjs",
"ollama",
"react",
"tauri",
"tauri-app",
"vercel",
"webui"
] | MIT | app/locales/es.ts | es.ts | 20,498 | import { SubmitKey } from "../store/config";
import type { PartialLocaleType } from "./index";
import { getClientConfig } from "../config/client";
import { SAAS_CHAT_UTM_URL } from "@/app/constant";
const isApp = !!getClientConfig()?.isApp;
const es: PartialLocaleType = {
WIP: "En construcción...",
Error: {
Un... | 2,295 | 20,235 | 618 | 0.98 | 2026-04-23T08:58:13.187166 | true |
github_pytorch_text_5c61b2519e04617b3f7aedc8600c350579e27d39 | Python | pytorch | text | 3,564 | 812 | Models, data loaders and abstractions for language processing, powered by PyTorch | [
"data-loader",
"dataset",
"deep-learning",
"models",
"nlp",
"pytorch"
] | BSD-3-Clause | run-clang-format.py | run-clang-format.py | 10,667 | #!/usr/bin/env python
"""
MIT License
Copyright (c) 2017 Guillaume Papin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy,... | 1,071 | 10,667 | 332 | 0.98 | 2026-04-17T17:44:10.843339 | true |
github_yinkaisheng_Python-UIAutomation-for-Windows_a9a7845332e2cf24b41ff9c2f41556c3d2f51adb | Python | yinkaisheng | Python-UIAutomation-for-Windows | 3,464 | 584 | 🐍Python 3 wrapper of Microsoft UIAutomation. Support UIAutomation for MFC, WindowsForm, WPF, Modern UI(Metro UI), Qt, IE, Firefox, Chrome ... | [
"automation",
"gui",
"python",
"uiautomation",
"windows"
] | Apache-2.0 | rename_wheel.py | rename_wheel.py | 283 | #!python3
# -*- coding: utf-8 -*-
import os, sys, time
def main():
os.chdir('dist')
for file in os.listdir(os.path.curdir):
if 'py2.' in file:
newfile = file.replace('py2.', '')
os.rename(file, newfile)
if __name__ == '__main__':
main()
| 32 | 283 | 14 | 0.98 | 2026-04-23T03:29:47.320567 | true |
github_4thfever_cultivation-world-simulator_755f426768e05aabf3e552f3b228ecd8e1ad78f2 | Python | 4thfever | cultivation-world-simulator | 1,562 | 180 | 基于 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/sect_thinker.py | sect_thinker.py | 5,944 | from __future__ import annotations
from pathlib import Path
from typing import TYPE_CHECKING, Any
from src.config import get_settings_service
from src.i18n import t
from src.i18n.template_resolver import resolve_locale_template_path
from src.run.log import get_logger
from src.utils.config import CONFIG
from src.utils... | 457 | 5,874 | 168 | 0.98 | 2026-04-22T16:34:37.138821 | true |
github_compodoc_compodoc_58401f57bbc05f3480a3a68bd5f8b1077ee7692b | TypeScript | compodoc | compodoc | 4,100 | 415 | :notebook_with_decorative_cover: The missing documentation tool for your Angular, Nest & Stencil application | [
"angular",
"angular2",
"ast",
"devtools",
"documentation",
"documentation-tool",
"generator",
"jsdoc",
"typescript"
] | MIT | src/utils/angular-api.util.ts | angular-api.util.ts | 1,626 | import * as _ from 'lodash';
import { IApiSourceResult } from './api-source-result.interface';
import * as path from 'path';
// Try multiple paths to find api-list.json - supports both source and bundled contexts
let apiListPath = '../src/data/api-list.json';
try {
// First try relative path (works from source)
... | 170 | 1,626 | 60 | 0.98 | 2026-04-18T00:24:33.562429 | true |
github_apex_up_5a6e29d173c580c68f640566ebd1090cb54df56e | Go | apex | up | 8,809 | 389 | Deploy infinitely scalable serverless apps, apis, and sites in seconds to AWS. | [
"api",
"api-gateway",
"aws",
"aws-infrastructure",
"aws-lambda",
"deploy-tool",
"deployment",
"golang",
"graphql",
"heroku",
"http",
"lambda",
"microservice",
"microservices",
"nodejs",
"serverless",
"static",
"up"
] | MIT | internal/errorpage/errorpage_test.go | errorpage_test.go | 1,470 | package errorpage
import (
"path/filepath"
"testing"
"github.com/tj/assert"
)
// load pages from dir.
func load(t testing.TB, dir string) Pages {
dir = filepath.Join("testdata", dir)
pages, err := Load(dir)
assert.NoError(t, err, "load")
return pages
}
func TestPages_precedence(t *testing.T) {
pages := load... | 180 | 1,470 | 76 | 0.98 | 2026-04-18T00:52:09.439677 | true |
github_botaoye_OSTrack_9270d2e5c341ac0e37622032c666219da4a64b6e | Python | botaoye | OSTrack | 624 | 86 | [ECCV 2022] Joint Feature Learning and Relation Modeling for Tracking: A One-Stream Framework | [
"tracking",
"transformer"
] | MIT | lib/utils/variable_hook.py | variable_hook.py | 1,552 | import torch
from bytecode import Bytecode, Instr
class get_local(object):
cache = {}
is_activate = False
def __init__(self, varname):
self.varname = varname
def __call__(self, func):
if not type(self).is_activate:
return func
type(self).cache[func... | 108 | 1,552 | 51 | 0.98 | 2026-04-22T21:46:37.468031 | true |
github_liruilong940607_prope_4b8072b225ec96eeb5dbb44f10b5276bdfca49e6 | Python | liruilong940607 | prope | 709 | 11 | Cameras as Relative Positional Encoding | [
"multi-view",
"positional-encoding",
"transformer"
] | UNKNOWN | setup.py | setup.py | 142 | from setuptools import setup, find_packages
setup(
name="prope",
version="0.0.0",
packages=find_packages(),
license="MIT",
)
| 11 | 142 | 9 | 0.98 | 2026-04-22T21:42:00.325991 | true |
github_easegress-io_easegress_9828b2f69a2beb390c83bbff171f2d2b6ebd52f5 | Go | easegress-io | easegress | 5,873 | 493 | A Cloud Native traffic orchestration system | [
"api-gateway",
"cloud-native",
"distributed-systems",
"etcd",
"gateway",
"go",
"golang",
"http",
"kubernetes",
"load-balancer",
"mesh",
"microservice",
"microservices",
"proxy-server",
"raft",
"reverse-proxy",
"service-mesh",
"sidecar",
"traffic"
] | Apache-2.0 | pkg/resilience/resilience.go | resilience.go | 2,978 | /*
* Copyright (c) 2017, The Easegress Authors
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless r... | 428 | 2,978 | 117 | 0.98 | 2026-04-17T21:19:35.130024 | true |
github_isomorphic-git_isomorphic-git_67e1b8f9943e09394bd371e1b7f118465eb6c846 | JavaScript | isomorphic-git | isomorphic-git | 8,181 | 460 | A pure JavaScript implementation of git for node and browsers! | [
"browser",
"git",
"hacktoberfest",
"isomorphic-javascript",
"javascript",
"nodejs",
"vcs"
] | MIT | src/api/fastForward.js | fastForward.js | 3,468 | // @ts-check
import '../typedefs.js'
import { _pull } from '../commands/pull.js'
import { FileSystem } from '../models/FileSystem.js'
import { assertParameter } from '../utils/assertParameter.js'
import { discoverGitdir } from '../utils/discoverGitdir.js'
import { join } from '../utils/join.js'
/**
* Like `pull`, bu... | 431 | 3,468 | 105 | 0.98 | 2026-04-23T07:10:30.724131 | true |
github_kefranabg_readme-md-generator_45b969f810a284b3b219a87b619baab87108bf03 | JavaScript | kefranabg | readme-md-generator | 11,104 | 1,380 | 📄 CLI that generates beautiful README.md files | [
"cli",
"generator",
"readme",
"readme-badges",
"readme-generator",
"readme-md",
"readme-template"
] | MIT | src/questions/license-url.spec.js | license-url.spec.js | 1,308 | const askLicenseUrl = require('./license-url')
describe('askLicenseUrl', () => {
it('should return correct question format', () => {
const licenseUrl =
'https://github.com/kefranabg/readme-md-generator/blob/master/LICENSE'
const projectInfos = { licenseUrl }
const result = askLicenseUrl(projectInf... | 120 | 1,305 | 47 | 0.98 | 2026-04-23T12:38:33.755322 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.