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_Maciek-roboblog_Claude-Code-Usage-Monitor_d167db1797af66cf4f07c5c3db0d2edafc890446 | Python | Maciek-roboblog | Claude-Code-Usage-Monitor | 7,603 | 379 | Real-time Claude Code usage monitor with predictions and warnings | [
"ai",
"analytics",
"claude",
"claude-code",
"claude-usage",
"limits",
"monitoring",
"terminal",
"usage-tracking"
] | MIT | src/tests/test_error_handling.py | test_error_handling.py | 11,568 | """Tests for error handling module."""
from typing import Dict
from unittest.mock import Mock, patch
import pytest
from claude_monitor.error_handling import ErrorLevel, report_error
class TestErrorLevel:
"""Test cases for ErrorLevel enum."""
def test_error_level_values(self) -> None:
"""Test that ... | 791 | 11,548 | 316 | 0.98 | 2026-04-17T15:39:42.106703 | true |
github_redux-form_redux-form_3266ae095c6e5c4b508bf1ccac3d5ea02ecdd922 | 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/hasSubmitSucceeded.js | hasSubmitSucceeded.js | 165 | // @flow
import createHasSubmitSucceeded from './selectors/hasSubmitSucceeded'
import plain from './structure/plain'
export default createHasSubmitSucceeded(plain)
| 13 | 165 | 6 | 0.98 | 2026-04-23T04:57:14.341611 | true |
github_Azure-Samples_aisearch-openai-rag-audio_4bdc20dfdccde43efb5649068426281a1817f3d9 | Python | Azure-Samples | aisearch-openai-rag-audio | 556 | 352 | A simple example implementation of the VoiceRAG pattern to power interactive voice generative AI experiences using RAG with Azure AI Search and Azure OpenAI's gpt-4o-realtime-preview model. | [
"ai-azd-templates",
"azd-templates",
"azure",
"azure-ai-search",
"generative-ai",
"gpt",
"language-model",
"openai",
"rag",
"retrieval-augmented-generation",
"search",
"vector-database"
] | MIT | app/backend/rtmt.py | rtmt.py | 10,785 | import asyncio
import json
import logging
from enum import Enum
from typing import Any, Callable, Optional
import aiohttp
from aiohttp import web
from azure.core.credentials import AzureKeyCredential
from azure.identity import DefaultAzureCredential, get_bearer_token_provider
logger = logging.getLogger("voicerag")
c... | 831 | 10,785 | 229 | 0.98 | 2026-04-22T22:06:50.234972 | true |
github_makenotion_notion-sdk-js_5cf84ca9ad0b4426658c38950366fbeb503692b7 | TypeScript | makenotion | notion-sdk-js | 5,586 | 706 | Official Notion JavaScript Client | [
"api",
"api-client",
"javascript",
"js",
"notion",
"typescript"
] | MIT | src/api-endpoints/databases.ts | databases.ts | 6,076 | // cspell:disable-file
// Note: This is a generated file. DO NOT EDIT!
import type {
IdRequest,
IdResponse,
InitialDataSourceRequest,
PageCoverRequest,
PageCoverResponse,
PageIconRequest,
PageIconResponse,
ParentOfDatabaseResponse,
RichTextItemRequest,
RichTextItemResponse,
} from "./common"
type ... | 795 | 6,076 | 225 | 0.98 | 2026-04-17T17:59:43.420736 | true |
github_ridgerchu_matmulfreellm_7ca3d7ad778e606a09456bfe2b037b4cf0802345 | Python | ridgerchu | matmulfreellm | 3,057 | 201 | Implementation for MatMul-free LM. | [
"large-language-model",
"linear-transformer",
"llm"
] | Apache-2.0 | generate.py | generate.py | 654 | import os
os.environ["TOKENIZERS_PARALLELISM"] = "false"
import mmfreelm
from transformers import AutoModelForCausalLM, AutoTokenizer
#Change here to our open-sourced model
name = 'ridger/MMfreeLM-370M'
tokenizer = AutoTokenizer.from_pretrained(name)
model = AutoModelForCausalLM.from_pretrained(name).cuda().half()
inpu... | 57 | 654 | 12 | 0.98 | 2026-04-17T23:32:17.467247 | true |
github_npm_cli_deec803c9b710be637dfd5a38495796b72cf41cd | JavaScript | npm | cli | 9,697 | 4,289 | the package manager for JavaScript | [
"javascript",
"nodejs",
"npm",
"npm-cli",
"package-manager",
"tools"
] | NOASSERTION | lib/utils/did-you-mean.js | did-you-mean.js | 1,143 | const Npm = require('../npm')
const { distance } = require('fastest-levenshtein')
const { commands } = require('./cmd-list.js')
const runScripts = ['stop', 'start', 'test', 'restart']
const isClose = (scmd, cmd) => distance(scmd, cmd) < scmd.length * 0.4
const didYouMean = (pkg, scmd) => {
const { scripts = {}, bi... | 159 | 1,143 | 34 | 0.98 | 2026-04-23T07:03:39.992237 | true |
github_redux-form_redux-form_0ae869b341b4a3857a722ecc14392440c5b225ee | 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/hasSubmitFailed.js | hasSubmitFailed.js | 170 | // @flow
import createHasSubmitFailed from '../selectors/hasSubmitFailed'
import immutable from '../structure/immutable'
export default createHasSubmitFailed(immutable)
| 13 | 170 | 6 | 0.98 | 2026-04-23T04:57:20.769053 | true |
github_huggingface_transformers_9c9e7b929f6f08242eab29f15c6be97d7022a047 | 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/dynamic_module_utils.py | dynamic_module_utils.py | 34,752 | # Copyright 2021 The HuggingFace Inc. team.
#
# 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 ... | 3,602 | 34,752 | 811 | 0.98 | 2026-04-22T13:17:52.197835 | true |
github_AkaliKong_MiniOneRec_5e07bd5baa6b198ffb45005ee01253be9ec292b5 | Python | AkaliKong | MiniOneRec | 1,452 | 205 | Minimal reproduction of OneRec | [
"generative-ai",
"generative-recommendation",
"generative-recommenders",
"large-language-model",
"large-language-models",
"llm",
"recommendation",
"recommendation-system",
"recommender-system",
"scaling-laws"
] | Apache-2.0 | minionerec_trainer.py | minionerec_trainer.py | 61,749 | # 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... | 4,928 | 61,741 | 1,156 | 0.98 | 2026-04-17T23:49:06.628133 | true |
github_dani-garcia_vaultwarden_0ae9c7dbf88ab30a71a927ad7acb9702d3b61a52 | 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/web.rs | web.rs | 10,531 | use std::path::{Path, PathBuf};
use rocket::{
fs::NamedFile,
http::ContentType,
response::{content::RawCss as Css, content::RawHtml as Html, Redirect},
serde::json::Json,
Catcher, Route,
};
use serde_json::Value;
use crate::{
api::{core::now, ApiResult, EmptyResult},
auth::decode_file_down... | 847 | 10,531 | 249 | 0.98 | 2026-04-17T13:16:32.106162 | true |
github_sharkdp_bat_e3b01b8ccc0a70c6e01243935669e9ab40c463f3 | Rust | sharkdp | bat | 58,255 | 1,524 | A cat(1) clone with wings. | [
"cli",
"command-line",
"git",
"hacktoberfest",
"rust",
"syntax-highlighting",
"terminal",
"tool"
] | Apache-2.0 | src/macros.rs | macros.rs | 196 | #[macro_export]
macro_rules! bat_warning {
($($arg:tt)*) => ({
use nu_ansi_term::Color::Yellow;
eprintln!("{}: {}", Yellow.paint("[bat warning]"), format!($($arg)*));
})
}
| 16 | 196 | 8 | 0.98 | 2026-04-17T13:16:53.643922 | true |
github_51bitquant_ai-hedge-fund-crypto_993b94a266cf9d26b51971abe0dbf6566086d6e8 | Python | 51bitquant | ai-hedge-fund-crypto | 571 | 149 | AI-Hedge-Fund for Crypto 🚀 AI-powered hedge fund for cryptocurrency trading, leveraging LLM agents for intelligent decision-making. | [
"ai-agent",
"ai-trading",
"ai-trading-agent",
"algorithmic-trading",
"backtesting",
"crypto-trading",
"hedge-fund",
"langchain",
"langchain-python",
"llm",
"llm-agent",
"multi-timeframe-analysis",
"openai",
"portfolio-management",
"quantitative-finance",
"strategy-ensembling",
"techn... | MIT | src/strategies/my_strategy.py | my_strategy.py | 3,011 | from typing import Dict, Any
import json
import pandas as pd
from langchain_core.messages import HumanMessage
from src.graph import AgentState, BaseNode
class MyStrategy(BaseNode):
def __call__(self, state: AgentState) -> Dict[str, Any]:
"""
Custom strategy implementation that processes market dat... | 243 | 3,011 | 81 | 0.98 | 2026-04-23T00:53:39.128941 | true |
github_jesseduffield_lazydocker_cea7224243ff92aae884b25fcf22ba50dcb876aa | Go | jesseduffield | lazydocker | 50,674 | 1,602 | The lazier way to manage everything docker | [] | MIT | pkg/config/config_windows.go | config_windows.go | 247 | package config
// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() OSConfig {
return OSConfig{
OpenCommand: `cmd /c "start "" {{filename}}"`,
OpenLinkCommand: `cmd /c "start "" {{link}}"`,
}
}
| 30 | 247 | 10 | 0.98 | 2026-04-17T07:22:06.069234 | true |
github_glasskube_glasskube_c709310acdb3972ca623da165ce6ae5fda86f070 | Go | glasskube | glasskube | 3,487 | 194 | 🧊 The next generation Package Manager for Kubernetes 📦 Featuring a GUI and a CLI. Glasskube packages are dependency aware, GitOps ready and can get automatic updates via a central public package repository. | [
"cloud-native",
"cncf",
"cobra",
"cobra-cli",
"containers",
"devops",
"devops-tools",
"docusaurus",
"giscuss",
"glasskube",
"go",
"golang",
"htmx",
"kubebuilder",
"kubernetes",
"kubernetes-operator",
"package",
"package-manager"
] | Apache-2.0 | cmd/cert-manager/main.go | main.go | 3,702 | package main
import (
"context"
"os"
"github.com/glasskube/glasskube/internal/certificates"
"github.com/go-logr/logr"
"github.com/spf13/cobra"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
arv1ac "k8s.io/client-go/applyconfigurations/admissionregistration/v1"
corev1ac "k8s.io/client-go/applyconfigurations/cor... | 319 | 3,702 | 122 | 0.98 | 2026-04-17T22:32:01.230794 | true |
github_parse-community_parse-server_698729fc4ff71a6900c11c2bb4dd85839e5c7936 | 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/ClientSDK.js | ClientSDK.js | 891 | var semver = require('semver');
function compatible(compatibleSDK) {
return function (clientSDK) {
if (typeof clientSDK === 'string') {
clientSDK = fromString(clientSDK);
}
// REST API, or custom SDK
if (!clientSDK) {
return true;
}
const clientVersion = clientSDK.version;
con... | 91 | 891 | 41 | 0.98 | 2026-04-23T06:47:02.585756 | true |
github_hrkfdn_ncspot_8f8c53b00894dd3d0aa2a596d42c232955b3aca7 | Rust | hrkfdn | ncspot | 6,560 | 264 | Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes. | [] | BSD-2-Clause | src/ui/search.rs | search.rs | 3,762 | #![allow(unused_imports)]
use cursive::direction::Orientation;
use cursive::event::{AnyCb, Event, EventResult, Key};
use cursive::traits::{Finder, Nameable, View};
use cursive::view::{IntoBoxedView, Selector, ViewNotFound, ViewWrapper};
use cursive::views::{EditView, NamedView, ViewRef};
use cursive::{Cursive, Printer... | 304 | 3,762 | 126 | 0.98 | 2026-04-17T14:48:04.801705 | true |
github_claudiajs_claudia_d77434fdee7009f264bb9f43ed431e7d33358e2f | JavaScript | claudiajs | claudia | 3,893 | 277 | Deploy Node.js projects to AWS Lambda and API Gateway easily | [
"api-gateway",
"aws",
"aws-lambda",
"claudia",
"javascript",
"nodejs",
"serverless"
] | MIT | src/util/array-logger.js | array-logger.js | 1,154 | module.exports = function ArrayLogger() {
'use strict';
const combinedLog = [],
unique = function (array) {
return Array.from(new Set(array));
},
pushLog = function (type, entries) {
combinedLog.push([type].concat(Array.prototype.slice.apply(entries)));
},
extractLog = function (type) {
return comb... | 124 | 1,154 | 44 | 0.98 | 2026-04-23T07:43:58.890162 | true |
github_PaulDanielML_MuJoCo_RL_UR5_665c5d1bd5a9b59fa5179713190fa94ebf4df9ad | Python | PaulDanielML | MuJoCo_RL_UR5 | 667 | 68 | A MuJoCo/Gym environment for robot control using Reinforcement Learning. The task of agents in this environment is pixel-wise prediction of grasp success chances. | [
"computer-vision",
"gym-environment",
"mujoco",
"pick-and-place",
"reinforcement-learning",
"robotics"
] | MIT | example_agent.py | example_agent.py | 926 | #!/usr/bin/env python3
import gym
import numpy as np
from termcolor import colored
import time
env = gym.make("gym_grasper:Grasper-v0", show_obs=False, render=True)
N_EPISODES = 100
N_STEPS = 100
env.print_info()
for episode in range(1, N_EPISODES + 1):
obs = env.reset()
for step in range(N_STEPS):
... | 85 | 926 | 32 | 0.98 | 2026-04-22T20:40:44.258221 | true |
github_calcom_cal.diy_3d3b995f969f0243e6693516847e4fedddba0ff8 | TypeScript | calcom | cal.diy | 41,983 | 12,970 | Scheduling infrastructure for absolutely everyone. | [
"next-auth",
"nextjs",
"open-source",
"postgresql",
"prisma",
"t3-stack",
"tailwindcss",
"trpc",
"turborepo",
"typescript",
"zod"
] | MIT | vitest.workspace.ts | vitest.workspace.ts | 7,387 | import { defineWorkspace } from "vitest/config";
// Vitest 4.0 no longer allows custom CLI flags, so we use environment variables instead
// eslint-disable-next-line turbo/no-undeclared-env-vars
const packagedEmbedTestsOnly = process.env.VITEST_MODE === "packaged-embed";
// eslint-disable-next-line turbo/no-undeclared... | 430 | 7,387 | 207 | 0.98 | 2026-04-23T08:59:37.141498 | true |
github_rust-lang_rust_21ce508d8560cf3ddaf2d8e5bc4efa71470a703b | Rust | rust-lang | rust | 112,076 | 14,769 | Empowering everyone to build reliable and efficient software. | [
"compiler",
"language",
"rust"
] | Apache-2.0 | src/librustdoc/core.rs | core.rs | 20,272 | use std::sync::{Arc, LazyLock};
use std::{io, mem};
use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexMap};
use rustc_data_structures::unord::UnordSet;
use rustc_driver::USING_INTERNAL_FEATURES;
use rustc_errors::TerminalUrl;
use rustc_errors::annotate_snippet_emitter_writer::AnnotateSnippetEmitter;
use rus... | 1,736 | 20,272 | 527 | 0.98 | 2026-04-17T13:13:48.182905 | true |
github_gitui-org_gitui_ea30c7f135eb92d6314ee651f704d9e4054eb1bb | Rust | gitui-org | gitui | 21,783 | 710 | Blazing 💥 fast terminal-ui for git written in rust 🦀 | [
"async",
"bash",
"command-line-interface",
"command-line-tool",
"git",
"hacktoberfest",
"rust",
"terminal",
"tui"
] | MIT | src/watcher.rs | watcher.rs | 1,774 | use anyhow::Result;
use crossbeam_channel::{unbounded, Sender};
use notify::{RecommendedWatcher, RecursiveMode, Watcher};
use notify_debouncer_mini::{new_debouncer, DebounceEventResult};
use scopetime::scope_time;
use std::{path::Path, thread, time::Duration};
pub struct RepoWatcher {
receiver: crossbeam_channel::Rec... | 177 | 1,774 | 83 | 0.98 | 2026-04-17T13:38:18.188279 | true |
github_pingcap_tidb_595330f239e1d88e3bc4eacf6e3f15fd8f5c1104 | 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/ddl/affinity_test.go | affinity_test.go | 11,006 | // 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,065 | 11,006 | 298 | 0.98 | 2026-04-17T07:31:17.993713 | true |
github_rhaiscript_rhai_6163aa05db150f14cf43a329bd8519eb5b6eb2eb | 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/eval/stmt.rs | stmt.rs | 43,638 | //! Module defining functions for evaluating a statement.
use super::{Caches, EvalContext, GlobalRuntimeState, Target};
use crate::ast::{
ASTFlags, BinaryExpr, Expr, FlowControl, OpAssignment, Stmt, SwitchCasesCollection,
};
use crate::func::{get_builtin_op_assignment_fn, get_hasher};
use crate::tokenizer::Token;
... | 3,129 | 43,638 | 1,052 | 0.98 | 2026-04-17T15:16:22.040112 | true |
github_rustdesk_rustdesk_ac51d5c322e9eed9a7d5a5c52939916667701408 | 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/hbbs_http/record_upload.rs | record_upload.rs | 7,356 | use crate::hbbs_http::create_http_client_with_url;
use bytes::Bytes;
use hbb_common::{bail, config::Config, lazy_static, log, ResultType};
use reqwest::blocking::{Body, Client};
use scrap::record::RecordState;
use serde::Serialize;
use serde_json::Map;
use std::{
fs::File,
io::{prelude::*, SeekFrom},
sync::... | 512 | 7,356 | 212 | 0.98 | 2026-04-17T13:14:19.111579 | true |
github_zhouxiaoka_autoclip_mvp_fcc51f182d1527117bc60587949d181d7330252c | Python | zhouxiaoka | autoclip_mvp | 957 | 165 | AutoClip: AI-powered video clipping and highlight generation · 一款智能高光提取与剪辑的二创工具 | [
"ai-video-editing",
"auto-highlight",
"llm",
"video",
"video-editing"
] | MIT | src/pipeline/step1_outline.py | step1_outline.py | 8,004 | """
Step 1: 大纲提取 - 从转写文本中提取结构性大纲
"""
import json
import logging
import re
from typing import List, Dict, Any, Optional
from pathlib import Path
from ..utils.llm_factory import LLMFactory
from ..utils.text_processor import TextProcessor
from ..config import PROMPT_FILES, METADATA_DIR
logger = logging.getLogger(__name_... | 510 | 7,240 | 218 | 0.98 | 2026-04-22T17:02:48.085463 | true |
github_rustdesk_rustdesk_18118788e3230d32c8151603827f4d948969ea5c | 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/custom_server.rs | custom_server.rs | 8,466 | use hbb_common::{
bail,
base64::{engine::general_purpose::URL_SAFE_NO_PAD, Engine as _},
sodiumoxide::crypto::sign,
ResultType,
};
use serde_derive::{Deserialize, Serialize};
#[derive(Debug, PartialEq, Default, Serialize, Deserialize, Clone)]
pub struct CustomServer {
#[serde(default)]
pub key:... | 535 | 8,466 | 220 | 0.98 | 2026-04-17T13:14:15.440102 | true |
github_ultraworkers_claw-code_20ef85931f6da9ff62c819291fd37b3de67ba39a | Python | ultraworkers | claw-code | 185,575 | 108,568 | The repo is finally unlocked. enjoy the party! The fastest repo in history to surpass 100K stars ⭐. Join Discord: https://discord.gg/5TUQKqFWd Built in Rust using oh-my-codex. | [] | UNKNOWN | src/command_graph.py | command_graph.py | 1,247 | from __future__ import annotations
from dataclasses import dataclass
from .commands import get_commands
from .models import PortingModule
@dataclass(frozen=True)
class CommandGraph:
builtins: tuple[PortingModule, ...]
plugin_like: tuple[PortingModule, ...]
skill_like: tuple[PortingModule, ...]
def ... | 111 | 1,247 | 35 | 0.98 | 2026-04-17T13:13:07.199932 | true |
github_google_zx_c10da51a354d1d94e56a5a3db328585aeafc7f8b | TypeScript | google | zx | 45,409 | 1,253 | A tool for writing better scripts | [
"bash",
"child-process",
"cli",
"exec",
"javascript",
"nodejs",
"pipe",
"shell",
"spawn"
] | Apache-2.0 | src/internals.ts | internals.ts | 1,255 | // Copyright 2025 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 in ... | 189 | 1,255 | 45 | 0.98 | 2026-04-23T06:18:09.096573 | true |
github_NodeBB_NodeBB_5f290bdc9a06db8aeb978383a87d7238c9dfca7e | JavaScript | NodeBB | NodeBB | 15,048 | 2,942 | Node.js based forum software built for the modern web | [
"community",
"forum",
"javascript",
"mongodb",
"node",
"nodebb",
"nodejs",
"postgresql",
"redis",
"socket-io",
"websockets"
] | GPL-3.0 | src/controllers/users.js | users.js | 7,402 | 'use strict';
const nconf = require('nconf');
const user = require('../user');
const meta = require('../meta');
const db = require('../database');
const pagination = require('../pagination');
const privileges = require('../privileges');
const helpers = require('./helpers');
const api = require('../api');
const utils... | 715 | 7,402 | 223 | 0.98 | 2026-04-23T06:53:19.970702 | true |
github_easegress-io_easegress_716abc8759566af168d3eb86951458fd62448adc | 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 | cmd/server/main.go | main.go | 841 | /*
* 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... | 126 | 841 | 29 | 0.98 | 2026-04-17T21:19:09.697912 | true |
github_txthinking_brook_f9f4ec46bd6590e258b823169a6b1e385eec5888 | Go | txthinking | brook | 15,116 | 2,394 | A cross-platform programmable network tool | [
"android",
"cross-platform",
"decryption",
"encryption",
"ios",
"linux",
"macos",
"mitm",
"network-analysis",
"network-monitoring",
"network-programming",
"network-security",
"openwrt",
"packet-capture",
"proxy",
"socks5",
"tls",
"vpn",
"windows",
"zero-configuration"
] | GPL-3.0 | dnsclient.go | dnsclient.go | 1,953 | // Copyright (c) 2016-present Cloud <[REDACTED_EMAIL]>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 3 of the GNU General Public
// License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, bu... | 333 | 1,953 | 87 | 0.98 | 2026-04-17T10:36:15.089667 | true |
github_crazy-max_diun_00c748b7d632684bca4350631c0000607576407b | Go | crazy-max | diun | 4,582 | 148 | Receive notifications when an image is updated on a Docker registry | [
"automation",
"discord",
"docker",
"golang",
"gotify",
"kubernetes",
"manifest",
"nomad",
"notifications",
"pushover",
"registry",
"rocketchat",
"slack",
"swarm",
"telegram",
"update",
"update-checker",
"watch"
] | MIT | internal/db/migrate.go | migrate.go | 1,752 | package db
import (
"encoding/json"
"time"
"github.com/opencontainers/go-digest"
"github.com/pkg/errors"
"github.com/rs/zerolog/log"
bbolterr "go.etcd.io/bbolt/errors"
)
// Migrate runs database migration
func (c *Client) Migrate() error {
if c.metadata.Version == dbVersion {
return nil
}
migrations := m... | 208 | 1,752 | 79 | 0.98 | 2026-04-17T21:46:18.596171 | true |
github_theAIGuysCode_yolov4-deepsort_2ec49f4150bf73a15a411b647491bbf718b2eb85 | Python | theAIGuysCode | yolov4-deepsort | 1,416 | 752 | Object tracking implemented with YOLOv4, DeepSort, and TensorFlow. | [
"deep-sort",
"object-detection",
"object-tracker",
"object-tracking",
"tensorflow",
"yolov4",
"yolov4-deepsort"
] | GPL-3.0 | core/dataset.py | dataset.py | 14,407 | #! /usr/bin/env python
# coding=utf-8
import os
import cv2
import random
import numpy as np
import tensorflow as tf
import core.utils as utils
from core.config import cfg
class Dataset(object):
"""implement Dataset here"""
def __init__(self, FLAGS, is_training: bool, dataset_type: str = "conv... | 1,041 | 14,407 | 383 | 0.98 | 2026-04-23T00:24:30.597402 | true |
github_vikiboss_60s_cf0b54aa1ec20feece406bec80e510631d63982b | TypeScript | vikiboss | 60s | 5,155 | 891 | ⏰ 60s API 免费接口。每天 60 秒看世界、奥运奖牌榜、小红书/B站/微博/抖音/知乎热搜、金价、油价、天气、翻译、壁纸、Epic 游戏、二维码、猫眼票房|一系列 高质量、开源、可靠、全球 CDN 加速 的开放 API 集合,支持 Docker / Deno / Bun / Cloudflare Workers / Node.js 部署 | [
"60s",
"api",
"bilibili",
"bing",
"bun",
"cloudflare-workers",
"deno",
"docker",
"entertainment",
"fun",
"news",
"today-in-history",
"typescript",
"weibo",
"youdao"
] | MIT | src/modules/douban-weekly.module.ts | douban-weekly.module.ts | 5,221 | import { Common } from '../common.ts'
import type { RouterMiddleware } from '@oak/oak'
type DoubanCategory = 'movie' | 'tv_chinese' | 'tv_global' | 'show_chinese' | 'show_global'
interface DoubanRawItem {
rank: number
rank_value_changed: number
trend_up: boolean
trend_down: boolean
title: string
id: stri... | 505 | 5,038 | 171 | 0.98 | 2026-04-17T18:01:21.350031 | true |
github_ChatGPTNextWeb_NextChat_e0556a8537247b216f9e3d1c2abd740277d4df5f | 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/no.ts | no.ts | 19,197 | 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 no: PartialLocaleType = {
WIP: "Arbeid pågår ...",
Error: {
Unau... | 1,970 | 18,986 | 612 | 0.98 | 2026-04-23T08:58:16.592205 | true |
github_ChromeDevTools_chrome-devtools-mcp_09a78d8cbd42f8ef327b538dc251ce35d64248b1 | 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/bin/chrome-devtools-mcp-cli-options.ts | chrome-devtools-mcp-cli-options.ts | 12,949 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type {YargsOptions} from '../third_party/index.js';
import {yargs, hideBin} from '../third_party/index.js';
export const cliOptions = {
autoConnect: {
type: 'boolean',
description:
'If specified, automatical... | 1,439 | 12,949 | 380 | 0.98 | 2026-04-23T08:42:31.349052 | true |
github_reactstrap_reactstrap_56619a78954820df4972c73177c16ab1c09e360d | JavaScript | reactstrap | reactstrap | 10,527 | 1,288 | Simple React Bootstrap 5 components | [
"bootstrap",
"components",
"hacktoberfest",
"javascript",
"react",
"reactstrap",
"ui"
] | MIT | src/Row.js | Row.js | 1,439 | import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules, tagPropType, deprecated } from './utils';
const rowColWidths = ['xs', 'sm', 'md', 'lg', 'xl', 'xxl'];
const rowColsPropType = PropTypes.oneOfType([
PropTypes.number,
PropTypes.string,
]);
... | 149 | 1,439 | 67 | 0.98 | 2026-04-23T05:44:25.213211 | true |
github_BurntSushi_xsv_921ad00bf1cf26945940dffaa6c9e7b8241f8409 | Rust | BurntSushi | xsv | 10,758 | 329 | A fast CSV command line toolkit written in Rust. | [
"cli",
"command-line",
"csv",
"rust"
] | Unlicense | src/cmd/mod.rs | mod.rs | 316 | pub mod cat;
pub mod count;
pub mod fixlengths;
pub mod flatten;
pub mod fmt;
pub mod frequency;
pub mod headers;
pub mod index;
pub mod input;
pub mod join;
pub mod partition;
pub mod reverse;
pub mod sample;
pub mod search;
pub mod select;
pub mod slice;
pub mod sort;
pub mod split;
pub mod stats;
pub mod table;
| 60 | 316 | 21 | 0.98 | 2026-04-17T14:22:48.549984 | true |
github_stair-lab_kg-gen_8a4ff102e8b034e888f163cddc47cabef201109b | JavaScript | stair-lab | kg-gen | 1,108 | 164 | [NeurIPS '25] Knowledge Graph Generation from Any Text | [
"benchmark",
"knowledge-graph",
"llm"
] | UNKNOWN | app/script.js | script.js | 85,245 | (function () {
// Show loading screen immediately on page load
function showInitialLoadingScreen() {
const loadingOverlay = document.createElement('div');
loadingOverlay.id = 'kg-gen-loading-overlay';
Object.assign(loadingOverlay.style, {
position: 'fixed',
top: ... | 6,346 | 85,245 | 2,276 | 0.98 | 2026-04-18T00:00:10.683085 | true |
github_cordx56_rustowl_cf2e7108b264ca110bda411890aa1496663b53b4 | Rust | cordx56 | rustowl | 5,111 | 112 | Visualize Ownership and Lifetimes in Rust | [
"lifetime",
"ownership",
"rust",
"visualization"
] | MPL-2.0 | src/lsp/progress.rs | progress.rs | 3,303 | use serde::Serialize;
use tower_lsp::{Client, lsp_types};
#[derive(Serialize, Clone, Copy, PartialEq, Eq, Debug)]
#[serde(rename_all = "snake_case")]
pub enum AnalysisStatus {
Analyzing,
Finished,
Error,
}
pub struct ProgressToken {
client: Option<Client>,
token: Option<lsp_types::NumberOrString>,... | 211 | 3,303 | 98 | 0.98 | 2026-04-17T15:17:56.879113 | true |
github_ChatGPTNextWeb_NextChat_6b80c2ec1a49211d4700a69020932de16f441df9 | 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/pt.ts | pt.ts | 16,817 | import { SubmitKey } from "../store/config";
import { PartialLocaleType } from "../locales/index";
import { getClientConfig } from "../config/client";
import { SAAS_CHAT_UTM_URL } from "@/app/constant";
const isApp = !!getClientConfig()?.isApp;
const pt: PartialLocaleType = {
WIP: "Em breve...",
Error: {
Unaut... | 1,884 | 16,542 | 540 | 0.98 | 2026-04-23T08:58:16.897158 | true |
github_canopy-network_canopy_9012ef99ccab84d1a52a5395951ad88c72cfc241 | Go | canopy-network | canopy | 10,008 | 13,358 | The official go implementation of the Canopy Network protocol | [
"auto-scaling-architecture",
"layerless-blockchain-creator",
"mesh-security-provider",
"permissionless-interoperability",
"recursive-cloning-model"
] | MIT | lib/wrapper.pb.go | wrapper.pb.go | 5,800 | // Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.6
// protoc v5.29.3
// source: wrapper.proto
package lib
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
uns... | 583 | 5,798 | 190 | 0.98 | 2026-04-17T13:12:42.600702 | true |
github_jaredhanson_passport_7d2db6e122db6f695baebb8ca7bf8ec5fcf281e8 | JavaScript | jaredhanson | passport | 23,532 | 1,251 | Simple, unobtrusive authentication for Node.js. | [
"express",
"nodejs",
"oauth",
"oauth2",
"openid",
"openid-connect",
"passport",
"saml"
] | MIT | lib/framework/connect.js | connect.js | 504 | /**
* Module dependencies.
*/
var initialize = require('../middleware/initialize')
, authenticate = require('../middleware/authenticate');
/**
* Framework support for Connect/Express.
*
* This module provides support for using Passport with Express. It exposes
* middleware that conform to the `fn(req, res, ... | 64 | 504 | 23 | 0.98 | 2026-04-23T06:43:28.987805 | true |
github_rusiaaman_wcgw_66d9a85aca8a0ebcad45c806d8618c7a1341120f | 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/cli.py | cli.py | 948 | import importlib
from typing import Optional
import typer
from typer import Typer
from wcgw_cli.anthropic_client import loop as claude_loop
from wcgw_cli.openai_client import loop as openai_loop
app = Typer(pretty_exceptions_show_locals=False)
@app.command()
def loop(
claude: bool = False,
first_message: O... | 85 | 948 | 41 | 0.98 | 2026-04-23T01:17:01.116587 | true |
github_kwhitley_itty-router_591bbd2e6fdcac4c781118d5b74941e8a4ccd33f | TypeScript | kwhitley | itty-router | 2,019 | 83 | A little router. | [
"api",
"cloudflare",
"cloudflare-workers",
"edge",
"itty-router",
"javascript",
"middleware",
"router",
"serverless",
"service-worker"
] | MIT | src/AutoRouter.spec.ts | AutoRouter.spec.ts | 3,485 | import { describe, expect, it, mock } from 'bun:test'
import { toReq } from '../lib'
import { AutoRouter } from './AutoRouter'
import { text } from './text'
import { error } from './error'
describe(`SPECIFIC TESTS: AutoRouter`, () => {
const jsonData = [1,2,3]
describe('BEHAVIORS', () => {
describe('DEFAULT',... | 370 | 3,485 | 107 | 0.98 | 2026-04-17T18:08:27.821347 | true |
github_facebook_relay_521e03ae69485621a9923b88b20229fcef6fccdf | JavaScript | facebook | relay | 18,930 | 1,888 | Relay is a JavaScript framework for building data-driven React applications. | [] | MIT | gulpfile.js | gulpfile.js | 8,094 | /**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @oncall relay
*/
'use strict';
const babelOptions = require('./scripts/getBabelOptions')({
ast: false,
plugin... | 727 | 8,094 | 315 | 0.98 | 2026-04-17T13:45:12.154735 | true |
github_kserve_kserve_75802beb19d93651a29a347d20eb8e2d03216c78 | Go | kserve | kserve | 5,343 | 1,450 | Standardized Distributed Generative and Predictive AI Inference Platform for Scalable, Multi-Framework Deployment on Kubernetes | [
"artificial-intelligence",
"cncf",
"genai",
"hacktoberfest",
"istio",
"k8s",
"knative",
"kserve",
"kubeflow",
"kubernetes",
"llm-inference",
"machine-learning",
"mlops",
"model-interpretability",
"model-serving",
"pytorch",
"service-mesh",
"tensorflow",
"vllm",
"xgboost"
] | Apache-2.0 | pkg/logger/marshaller_json_test.go | marshaller_json_test.go | 12,728 | /*
Copyright 2024 The KServe 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... | 1,004 | 12,728 | 434 | 0.98 | 2026-04-17T21:30:13.561857 | true |
github_rustdesk_rustdesk_0a5ab0299956461f774c41c647bd890cc4682d45 | 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/ro.rs | ro.rs | 40,716 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Stare"),
("Your Desktop", "Desktopul tău"),
("desk_tip", "Desktopul tău poate fi accesat folosind ID-ul și parola de mai jos."),
("Password", "Parolă"),
("Ready... | 3,857 | 39,969 | 748 | 0.98 | 2026-04-17T13:14:39.285350 | true |
github_explosion_spacy-course_10c308474b8e56cde483dac4c64322b595c5a80e | JavaScript | explosion | spacy-course | 2,418 | 376 | 👩🏫 Advanced NLP with spaCy: A free online course | [
"binder",
"course",
"dependency-parsing",
"gatsby",
"gatsbyjs",
"jupyter",
"machine-learning",
"named-entity-recognition",
"natural-language-processing",
"nlp",
"online-course",
"part-of-speech-tagging",
"spacy",
"word-vectors"
] | MIT | src/components/button.js | button.js | 1,493 | import React, { useContext } from 'react'
import classNames from 'classnames'
import { LocaleContext } from '../context'
import IconCheck from '../../static/icon_check.svg'
import classes from '../styles/button.module.sass'
export const Button = ({ Component = 'button', children, onClick, variant, small, className })... | 125 | 1,493 | 41 | 0.98 | 2026-04-22T19:42:39.387200 | true |
github_opendilab_DI-drive_43e1b822fedde87d739abe262f5a5df80b413a02 | 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/eval/base_evaluator.py | base_evaluator.py | 2,179 | '''
Copyright 2021 OpenDILab. All Rights Reserved:
Description:
'''
import os
import sys
import copy
from abc import abstractmethod
from typing import Any, Dict, Optional
from easydict import EasyDict
from ding.utils.default_helper import deep_merge_dicts
from ding.utils import EasyTimer, build_logger
class BaseEv... | 211 | 2,179 | 86 | 0.98 | 2026-04-22T20:42:09.333021 | true |
github_spegel-org_spegel_7c02c450333e43534e748006ec597f4630dd0a29 | Go | spegel-org | spegel | 3,600 | 143 | Stateless cluster local OCI registry mirror. | [
"cloud",
"containerd",
"docker",
"go",
"golang",
"kubernetes",
"oci",
"p2p",
"registry"
] | MIT | pkg/oci/distribution_test.go | distribution_test.go | 4,888 | package oci
import (
"fmt"
"net/http"
"net/url"
"testing"
"github.com/opencontainers/go-digest"
"github.com/stretchr/testify/require"
)
func TestParseDistributionPath(t *testing.T) {
t.Parallel()
tests := []struct {
name string
registry string
path string
expectedName string
ex... | 367 | 4,888 | 166 | 0.98 | 2026-04-17T22:30:07.801632 | true |
github_mozilla_sccache_be49c1dfd2d8effae013dde782754e53c38f4383 | Rust | mozilla | sccache | 7,178 | 656 | Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage. | [] | Apache-2.0 | src/server.rs | server.rs | 87,613 | // Copyright 2016 Mozilla Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed... | 7,267 | 87,613 | 2,413 | 0.98 | 2026-04-17T14:40:20.396101 | true |
github_BetaStreetOmnis_xhs_ai_publisher_362255296e145a4e61d1da0a57f0f277937599fc | Python | BetaStreetOmnis | xhs_ai_publisher | 1,927 | 283 | AI-powered Xiaohongshu/Rednote content creation and publishing tool with PyQt desktop UI, FastAPI service, login-state reuse, preview publish, and automated browser workflows. | [
"ai",
"automation",
"fastapi",
"playwright",
"pyqt5",
"rednote",
"xiaohongshu"
] | Apache-2.0 | src/core/logger.py | logger.py | 2,100 | import logging
import os
from datetime import datetime
from typing import Optional
class Logger:
"""统一的日志管理器"""
def __init__(self, name: str = "xiaohongshu", log_dir: str = None):
self.logger = logging.getLogger(name)
self.logger.setLevel(logging.DEBUG)
# 避免重复添... | 131 | 2,010 | 60 | 0.98 | 2026-04-17T16:07:28.481161 | true |
github_jtesta_ssh-audit_9ae64fad0247ed697a87d5e297b6f03389cc0ad8 | Python | jtesta | ssh-audit | 4,163 | 211 | SSH server & client security auditing (banner, key exchange, encryption, mac, compression, compatibility, security, etc) | [
"auditing",
"security",
"ssh"
] | MIT | src/ssh_audit/__main__.py | __main__.py | 269 | import sys
import traceback
from ssh_audit.ssh_audit import main
from ssh_audit import exitcodes
exit_code = exitcodes.GOOD
try:
exit_code = main()
except Exception:
exit_code = exitcodes.UNKNOWN_ERROR
print(traceback.format_exc())
sys.exit(exit_code)
| 26 | 269 | 17 | 0.98 | 2026-04-18T00:41:34.394298 | true |
github_nodejs_node_ff410235b7f0fde51e94e3b256b936ca56fa6d01 | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/cluster.js | cluster.js | 1,376 | // Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modi... | 210 | 1,376 | 30 | 0.98 | 2026-04-23T06:15:38.828254 | true |
github_tlsfuzzer_python-ecdsa_f7109659e69f19ff9cfc211925cdaae13c0478dc | Python | tlsfuzzer | python-ecdsa | 974 | 336 | pure-python ECDSA signature/verification and ECDH key agreement | [
"cryptography",
"digital-signatures",
"ecdh",
"ecdsa",
"elliptic-curves",
"python"
] | NOASSERTION | src/ecdsa/ecdsa.py | ecdsa.py | 31,699 | #! /usr/bin/env python
"""
Low level implementation of Elliptic-Curve Digital Signatures.
.. note ::
You're most likely looking for the :py:class:`~ecdsa.keys` module.
This is a low-level implementation of the ECDSA that operates on
integers, not byte strings.
NOTE: This a low level implementation of ECD... | 3,112 | 31,699 | 1,095 | 0.98 | 2026-04-23T04:34:20.937533 | true |
github_pubkey_rxdb_56d344cecb70c5b3a2f74aa5d4b143289d9c339a | TypeScript | pubkey | rxdb | 23,146 | 1,160 | A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/ | [
"angular",
"browser-database",
"couchdb",
"crdt",
"database",
"firebase",
"graphql",
"indexeddb",
"ionic",
"local-first",
"localstorage",
"nodejs",
"nosql",
"postgres",
"pouchdb",
"react-native",
"realtime",
"realtime-database",
"rxdb",
"sqlite"
] | Apache-2.0 | src/rx-collection.ts | rx-collection.ts | 45,457 | import {
filter,
map,
mergeMap
} from 'rxjs';
import {
ucfirst,
flatClone,
promiseSeries,
pluginMissing,
ensureNotFalsy,
getFromMapOrThrow,
PROMISE_RESOLVE_FALSE,
PROMISE_RESOLVE_VOID,
NON_PREMIUM_COLLECTION_LIMIT,
hasPremiumFlag
} from './plugins/utils/index.ts';
im... | 3,730 | 45,455 | 1,338 | 0.98 | 2026-04-18T01:24:04.368613 | true |
github_buyukakyuz_install-nothing_cd4255f26a30eed12050e0aae918fcd39b68a183 | Rust | buyukakyuz | install-nothing | 1,267 | 37 | A terminal application that simulates installing things but doesn't actually install anything | [
"cli",
"rust",
"simulation",
"terminal"
] | MIT | src/stages/boot.rs | boot.rs | 1,350 | use super::InstallationStage;
use crate::config::BootConfig;
use crate::kernel_logs::KernelLogs;
use colored::*;
use rand::Rng;
use std::io;
use std::thread;
use std::time::Duration;
pub struct BootStage {
config: BootConfig,
kernel_logs: KernelLogs,
}
impl BootStage {
pub fn new(config: BootConfig) -> Se... | 110 | 1,350 | 55 | 0.98 | 2026-04-17T19:32:34.520443 | true |
github_deepfakes_faceswap_916f3963cde62df55bdd651092ad3f1d21fba562 | Python | deepfakes | faceswap | 55,150 | 13,412 | Deepfakes Software For All | [
"deep-face-swap",
"deep-learning",
"deep-neural-networks",
"deepface",
"deepfakes",
"deeplearning",
"face-swap",
"faceswap",
"fakeapp",
"machine-learning",
"myfakeapp",
"neural-nets",
"neural-networks",
"openfaceswap"
] | GPL-3.0 | lib/keras_utils.py | keras_utils.py | 11,534 | #!/usr/bin/env python3
""" Common multi-backend Keras utilities """
from __future__ import annotations
import typing as T
import numpy as np
from keras import ops, Variable
from lib.utils import get_module_objects
if T.TYPE_CHECKING:
from keras import KerasTensor
# TODO these can probably be switched to pure p... | 1,102 | 11,534 | 355 | 0.95 | 2026-04-13T13:40:17.968870 | true |
github_kedacore_keda_6b01882a415d268a7f0d987e1c2017d725772792 | Go | kedacore | keda | 10,102 | 1,398 | KEDA is a Kubernetes-based Event Driven Autoscaling component. It provides event driven scale for any container running in Kubernetes | [
"autoscaling",
"event-driven",
"hacktoberfest",
"keda",
"kubernetes",
"serverless"
] | Apache-2.0 | pkg/scalers/azure_blob_scaler_test.go | azure_blob_scaler_test.go | 7,352 | /*
Copyright 2021 The KEDA Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, softwar... | 581 | 7,352 | 135 | 0.98 | 2026-04-17T12:46:02.159582 | true |
github_hyperledger-solang_solang_1f5af92ad362e1ae0b155e98f77cd4bd1988823e | Rust | hyperledger-solang | solang | 1,376 | 257 | Solidity Compiler for Solana, Polkadot and Stellar | [
"blockchain",
"bpf",
"compiler",
"polkadot",
"rust",
"smart-contracts",
"solana",
"solidity",
"soroban",
"stellar",
"substrate",
"wasm"
] | Apache-2.0 | src/codegen/tests.rs | tests.rs | 4,383 | // SPDX-License-Identifier: Apache-2.0
#[cfg(test)]
use crate::{codegen, sema::ast};
#[test]
fn test_builtin_conversion() {
let input: Vec<ast::Builtin> = vec![
ast::Builtin::Accounts,
ast::Builtin::AddMod,
ast::Builtin::ArrayLength,
ast::Builtin::Balance,
ast::Builtin::Bla... | 143 | 4,383 | 128 | 0.98 | 2026-04-17T17:06:34.459742 | true |
github_parcel-bundler_lightningcss_91ff8c677124ff365c89183dea05a154328d2ac5 | Rust | parcel-bundler | lightningcss | 7,503 | 259 | An extremely fast CSS parser, transformer, bundler, and minifier written in Rust. | [
"build-tool",
"compiler",
"css",
"minifier",
"parser",
"rust"
] | MPL-2.0 | src/targets.rs | targets.rs | 11,278 | //! Browser target options.
#![allow(missing_docs)]
use std::borrow::Borrow;
use crate::vendor_prefix::VendorPrefix;
use bitflags::bitflags;
#[cfg(any(feature = "serde", feature = "nodejs"))]
use serde::{Deserialize, Serialize};
/// Browser versions to compile CSS for.
///
/// Versions are represented as a single 2... | 1,148 | 11,278 | 327 | 0.95 | 2026-04-13T14:09:06.113131 | true |
github_Thysrael_Horizon_9a20ae67cf1705f731cb7427b06b57fad9108ef8 | Python | Thysrael | Horizon | 1,040 | 173 | 📡 Your own AI-powered news rader. Generates daily briefings in English & Chinese. | 构建你专属的 AI 新闻雷达 | [
"aggregator",
"llm",
"mcp",
"news",
"openclaw",
"python"
] | UNKNOWN | src/scrapers/reddit.py | reddit.py | 7,817 | """Reddit scraper implementation."""
import asyncio
import logging
import re
from datetime import datetime, timezone
from typing import List, Optional
import httpx
from .base import BaseScraper
from ..models import ContentItem, RedditConfig, RedditSubredditConfig, RedditUserConfig, SourceType
logger = logging.getLo... | 631 | 7,817 | 211 | 0.98 | 2026-04-18T00:01:01.758171 | true |
github_hashicorp_terraform_ddff2e968af08687cf1f51d8cb91cd51624a2e09 | Go | hashicorp | terraform | 48,150 | 10,287 | Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned. | [
"cloud",
"cloud-management",
"graph",
"infrastructure-as-code",
"terraform"
] | NOASSERTION | internal/addrs/move_endpoint_module.go | move_endpoint_module.go | 26,472 | // Copyright IBM Corp. 2014, 2026
// SPDX-License-Identifier: BUSL-1.1
package addrs
import (
"fmt"
"reflect"
"strings"
"github.com/zclconf/go-cty/cty"
"github.com/hashicorp/terraform/internal/tfdiags"
)
// anyKeyImpl is the InstanceKey representation indicating a wildcard, which
// matches all possible keys.... | 3,650 | 26,472 | 744 | 0.98 | 2026-04-17T07:23:58.888770 | true |
github_XTLS_Xray-core_8b003eaaf320cd8550ba1d7a7c80413863094682 | Go | XTLS | Xray-core | 37,134 | 5,192 | Xray, Penetrates Everything. Also the best v2ray-core. Where the magic happens. An open platform for various uses. | [
"anticensorship",
"dns",
"network",
"proxy",
"reality",
"shadowsocks",
"socks5",
"tls",
"trojan",
"tunnel",
"utls",
"vision",
"vless",
"vmess",
"vpn",
"wireguard",
"xhttp",
"xray",
"xtls",
"xudp"
] | MPL-2.0 | app/dns/nameserver.go | nameserver.go | 8,222 | package dns
import (
"context"
"net/url"
"strings"
"time"
"github.com/xtls/xray-core/common/errors"
"github.com/xtls/xray-core/common/geodata"
"github.com/xtls/xray-core/common/net"
"github.com/xtls/xray-core/common/session"
"github.com/xtls/xray-core/core"
"github.com/xtls/xray-core/features/dns"
"github.... | 890 | 8,222 | 251 | 0.98 | 2026-04-17T07:36:53.936127 | true |
github_EvoMap_evolver_f491e17dfa2cdd72a51c8a140b0d449ad99a54ff | 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/policyCheck.js | policyCheck.js | 192,439 | const _0x445afd=_0x43d8;(function(_0x5402fd,_0x2b39f7){const _0x615f42=_0x43d8,_0x3964c7=_0x5402fd();while(!![]){try{const _0x4aa5a1=-parseInt(_0x615f42(0x398,'\x29\x38\x48\x6e'))/(0x1*0x24af+-0x1*0xe9f+-0x160f)+-parseInt(_0x615f42(0x3a9,'\x43\x6d\x71\x4d'))/(-0xc97+0x185*0x17+-0x165a)*(-parseInt(_0x615f42(0x5ca,'\x63\... | 508 | 192,439 | 1 | 0.98 | 2026-04-23T07:18:00.122169 | true |
github_ipython_ipython_2af117f9d65942566d9c0b905d9dbc13adf5dc0a | Python | ipython | ipython | 16,693 | 4,470 | Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc. | [
"closember",
"data-science",
"hacktoberfest",
"ipython",
"jupyter",
"notebook",
"python",
"repl",
"spec-0"
] | BSD-3-Clause | setup.py | setup.py | 3,792 | # -*- coding: utf-8 -*-
"""Setup script for IPython.
Under Posix environments it works like a typical setup.py script.
Under Windows, the command sdist is not supported, since IPython
requires utilities which are not available under Windows."""
#------------------------------------------------------------------------... | 412 | 3,792 | 117 | 0.98 | 2026-04-17T16:38:27.599402 | true |
github_Schniz_fnm_7e73960e5101bd69c762db7f8d360297f626369a | Rust | Schniz | fnm | 25,118 | 619 | 🚀 Fast and simple Node.js version manager, built in Rust | [
"hacktoberfest",
"javascript",
"nodejs",
"nvm",
"reasonml",
"version"
] | GPL-3.0 | src/current_version.rs | current_version.rs | 1,310 | use thiserror::Error;
use crate::config::FnmConfig;
use crate::system_version;
use crate::version::Version;
pub fn current_version(config: &FnmConfig) -> Result<Option<Version>, Error> {
let multishell_path = config.multishell_path().ok_or(Error::EnvNotApplied)?;
if multishell_path.read_link().ok() == Some(s... | 110 | 1,310 | 43 | 0.98 | 2026-04-17T13:32:55.754404 | true |
github_FilippoAiraldi_mpc-reinforcement-learning_e80990212b2087700eb649e6e590cb1556451998 | Python | FilippoAiraldi | mpc-reinforcement-learning | 681 | 69 | Reinforcement Learning with Model Predictive Control | [
"casadi",
"model-predictive-control",
"optimization",
"reinforcement-learning"
] | MIT | tmp.py | tmp.py | 470 | from timeit import repeat
import numpy as np
rng = np.random.default_rng(0)
gradients = [rng.random(77) for _ in range(121)]
gradients = tuple(gradients)
glob = {"np": np, "gradients": gradients}
times = repeat("np.mean(gradients, 0)", repeat=100, number=1000, globals=glob)
print(np.mean(times), "+/-", np.... | 47 | 470 | 15 | 0.98 | 2026-04-22T20:39:49.821108 | true |
github_expressjs_body-parser_4b08631c1f11030ba345d45b610b481873c62616 | JavaScript | expressjs | body-parser | 5,500 | 754 | Node.js body parsing middleware | [
"body",
"expressjs",
"javascript",
"json",
"middleware",
"nodejs",
"parser",
"urlencoded"
] | MIT | lib/types/urlencoded.js | urlencoded.js | 3,526 | /*!
* body-parser
* Copyright(c) 2014 Jonathan Ong
* Copyright(c) 2014-2015 Douglas Christopher Wilson
* MIT Licensed
*/
'use strict'
/**
* Module dependencies.
* @private
*/
var createError = require('http-errors')
var debug = require('debug')('body-parser:urlencoded')
var read = require('../read')
var qs =... | 431 | 3,526 | 139 | 0.98 | 2026-04-23T07:29:00.861643 | true |
github_go-gitea_gitea_efdbe3a9ee94bf37a186721877ab55961ca037b8 | Go | go-gitea | gitea | 54,955 | 6,587 | Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD | [
"bitbucket",
"cicd",
"devops",
"docker-registry-v2",
"git",
"git-gui",
"git-lfs",
"git-server",
"gitea",
"github",
"github-actions",
"gitlab",
"go",
"golang",
"hacktoberfest",
"maven-server",
"npm-registry",
"self-hosted",
"typescript",
"vue"
] | MIT | cmd/admin_user_must_change_password_test.go | admin_user_must_change_password_test.go | 3,663 | // Copyright 2025 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package cmd
import (
"testing"
"code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/models/unittest"
user_model "code.gitea.io/gitea/models/user"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"... | 237 | 3,663 | 79 | 0.98 | 2026-04-17T07:19:17.712192 | true |
github_deepfakes_faceswap_b24e5e0c40913931569aad49698507caa418e5b0 | Python | deepfakes | faceswap | 55,172 | 13,408 | Deepfakes Software For All | [
"deep-face-swap",
"deep-learning",
"deep-neural-networks",
"deepface",
"deepfakes",
"deeplearning",
"face-swap",
"faceswap",
"fakeapp",
"machine-learning",
"myfakeapp",
"neural-nets",
"neural-networks",
"openfaceswap"
] | GPL-3.0 | lib/align/objects.py | objects.py | 10,507 | #! /usr/env/bin/python3
"""Dataclass objects for holding and serializing alignments data"""
from __future__ import annotations
from dataclasses import dataclass, field, fields, MISSING
import types
import typing as T
import numpy as np
import numpy.typing as npt
from lib.logger import format_array
from .constants i... | 1,100 | 10,507 | 291 | 0.98 | 2026-04-17T06:42:09.461201 | true |
github_txn2_kubefwd_f627bc279f8181773d36359b60fe46e22fedab95 | Go | txn2 | kubefwd | 4,089 | 222 | Bulk port forwarding Kubernetes services for local development. | [
"api-rest",
"developer-tools",
"devops",
"devops-tools",
"devtools",
"k8s",
"kubefwd",
"kubernetes",
"kubernetes-clusters",
"kubernetes-namespace",
"mcp-server",
"networking",
"port-forward",
"port-forwarding",
"proxy"
] | Apache-2.0 | pkg/fwdmcp/resources.go | resources.go | 13,726 | package fwdmcp
import (
"context"
"encoding/json"
"fmt"
"time"
"github.com/modelcontextprotocol/go-sdk/mcp"
)
// registerResources registers all MCP resources
func (s *Server) registerResources() {
// kubefwd://services - Current service state
s.mcpServer.AddResource(&mcp.Resource{
URI: "kubefwd://s... | 1,360 | 13,726 | 495 | 0.98 | 2026-04-17T22:22:06.099829 | true |
github_Pythagora-io_gpt-pilot_308bb85ddd48ac3d7362d8500b1f7d78de7eceab | Python | Pythagora-io | gpt-pilot | 33,772 | 3,500 | The first real AI developer | [
"ai",
"codegen",
"coding-assistant",
"developer-tools",
"gpt-4",
"research-project"
] | NOASSERTION | core/config/actions.py | actions.py | 2,362 | BH_START_BUG_HUNT = "Start bug hunt for task #{}"
BH_WAIT_BUG_REP_INSTRUCTIONS = "Awaiting bug reproduction instructions for task #{}"
BH_START_USER_TEST = "Start user testing for task #{}"
BH_STARTING_PAIR_PROGRAMMING = "Start pair programming for task #{}"
CM_UPDATE_FILES = "Updating files"
DEV_WAIT_TEST = "Awaiti... | 319 | 2,362 | 59 | 0.98 | 2026-04-17T15:26:41.013283 | true |
github_brianlovin_briOS_85b17260c5cfcc4541d27436ee04ef063f899136 | TypeScript | brianlovin | briOS | 2,250 | 252 | My personal website. | [
"apollo",
"graphql",
"javascript",
"nextjs",
"planetscale",
"prisma",
"react",
"styled-components"
] | UNKNOWN | src/lib/hn-cache.ts | hn-cache.ts | 3,423 | import { Redis } from "@upstash/redis";
import { HackerNewsPost } from "@/types/hackernews";
// Lazy-initialize Redis to avoid errors during build if env vars aren't set
let redis: Redis | null = null;
function getRedis(): Redis | null {
if (redis) return redis;
if (!process.env.UPSTASH_HN_CACHE_REST_URL || !pr... | 448 | 3,423 | 134 | 0.98 | 2026-04-18T01:40:05.406737 | true |
github_rust-lang_rust_63b869c0f2d51c0f326a266a65f2f518007c5577 | Rust | rust-lang | rust | 112,076 | 14,769 | Empowering everyone to build reliable and efficient software. | [
"compiler",
"language",
"rust"
] | Apache-2.0 | src/librustdoc/scrape_examples.rs | scrape_examples.rs | 13,716 | //! This module analyzes crates to find call sites that can serve as examples in the documentation.
use std::fs;
use std::path::PathBuf;
use rustc_data_structures::fx::{FxHashSet, FxIndexMap};
use rustc_errors::DiagCtxtHandle;
use rustc_hir as hir;
use rustc_hir::intravisit::{self, Visitor};
use rustc_macros::{Decoda... | 1,189 | 13,716 | 373 | 0.98 | 2026-04-17T13:13:52.298419 | true |
github_farion1231_cc-switch_675c67a053291cc5c0d41cd8b77d69ead4b5e89c | 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/lib/authBinding.ts | authBinding.ts | 452 | import type { ProviderMeta } from "@/types";
export function resolveManagedAccountId(
meta: ProviderMeta | undefined,
authProvider: string,
): string | null {
const binding = meta?.authBinding;
if (
binding?.source === "managed_account" &&
binding.authProvider === authProvider
) {
return binding... | 54 | 452 | 22 | 0.98 | 2026-04-17T13:18:56.471967 | true |
github_farion1231_cc-switch_5682ac465854c7dc800af7f259caef314aa79852 | 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/lib/platform.ts | platform.ts | 1,555 | // 轻量平台检测,避免在 SSR 或无 navigator 的环境报错
export const isMac = (): boolean => {
try {
const ua = navigator.userAgent || "";
const plat = (navigator.platform || "").toLowerCase();
return /mac/i.test(ua) || plat.includes("mac");
} catch {
return false;
}
};
export const isWindows = (): boolean => {
tr... | 173 | 1,321 | 49 | 0.98 | 2026-04-17T13:18:57.242412 | true |
github_wavetermdev_waveterm_d554cfab09c686bd831f927d8ec10e5e2eb68638 | Go | wavetermdev | waveterm | 19,626 | 898 | An open-source, AI-integrated, cross-platform terminal for seamless workflows | [
"command-line",
"developer-tools",
"linux",
"macos",
"productivity",
"terminal",
"terminal-emulators",
"windows"
] | Apache-2.0 | pkg/aiusechat/tools_writefile.go | tools_writefile.go | 15,205 | // Copyright 2025, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
package aiusechat
import (
"fmt"
"os"
"path/filepath"
"github.com/wavetermdev/waveterm/pkg/aiusechat/uctypes"
"github.com/wavetermdev/waveterm/pkg/filebackup"
"github.com/wavetermdev/waveterm/pkg/util/fileutil"
"github.com/wavetermdev... | 1,762 | 15,205 | 527 | 0.98 | 2026-04-17T09:34:01.087319 | true |
github_kubernetes-sigs_external-dns_b4963d35bbf3f779fb3686e9dfe7820471931010 | Go | kubernetes-sigs | external-dns | 8,903 | 2,853 | Configure external DNS servers dynamically from Kubernetes resources | [
"aws",
"clouddns",
"dns",
"dns-controller",
"dns-providers",
"dns-record",
"dns-servers",
"external-dns",
"gcp",
"ingress",
"k8s-sig-network",
"kubernetes",
"route53"
] | Apache-2.0 | pkg/metrics/metrics_test.go | metrics_test.go | 3,133 | /*
Copyright 2025 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, ... | 283 | 3,133 | 115 | 0.98 | 2026-04-17T20:16:47.473121 | true |
github_jackwener_OpenCLI_415dc4c547103b844982b7623dac18da0756ed0f | TypeScript | jackwener | OpenCLI | 16,976 | 1,661 | Make Any Website & Tool Your CLI. A universal CLI Hub and AI-native runtime. Transform any website, Electron app, or local binary into a standardized command-line interface. Built for AI Agents to discover, learn, and execute tools seamlessly via a unified AGENT.md integration. | [
"ai-agent",
"ai-agents",
"ai-tools",
"cli"
] | Apache-2.0 | src/completion.test.ts | completion.test.ts | 859 | import { describe, expect, it, vi } from 'vitest';
const { mockGetRegistry } = vi.hoisted(() => ({
mockGetRegistry: vi.fn(() => new Map([
['github/issues', { site: 'github', name: 'issues' }],
])),
}));
vi.mock('./registry.js', () => ({
getRegistry: mockGetRegistry,
}));
import { getCompletions } from './c... | 87 | 859 | 31 | 0.98 | 2026-04-23T12:36:51.450847 | true |
github_avelino_awesome-go_60f075484c003885f9a3dd3035e7c22591705e7f | Go | avelino | awesome-go | 170,179 | 13,150 | A curated list of awesome Go frameworks, libraries and software | [
"awesome",
"awesome-list",
"go",
"golang",
"golang-library",
"hacktoberfest"
] | MIT | maturity_test.go | maturity_test.go | 2,096 | package main
import (
"encoding/json"
"fmt"
"net/http"
"os"
"strings"
"testing"
"time"
"github.com/PuerkitoBio/goquery"
)
var (
githubApiAuthorizationToken = os.Getenv("GITHUB_API_TOKEN")
minimumMaturityDate = time.Now().AddDate(0, -5, 0)
)
func TestMaturity(t *testing.T) {
doc := goqueryFromRead... | 224 | 2,096 | 78 | 0.98 | 2026-04-17T06:50:01.158131 | true |
github_pathwaycom_pathway_5c265c208093e03193d91598215aedf172395a2c | 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/external_integration/brute_force_knn_integration.rs | brute_force_knn_integration.rs | 9,001 | // Copyright © 2026 Pathway
use itertools::Itertools;
use ndarray::{s, Array2, ArrayView2, Axis};
use crate::engine::error::DynResult;
use crate::engine::{Error, Key};
use ordered_float::{self, OrderedFloat};
use std::cmp::max;
use super::{
DerivedFilteredSearchIndex, ExternalIndex, ExternalIndexFactory, KeyScor... | 654 | 9,000 | 275 | 0.98 | 2026-04-23T04:40:43.677135 | true |
github_apache_apisix-ingress-controller_a900917824a87a58e9439ba1439d863484e4bca4 | Go | apache | apisix-ingress-controller | 1,127 | 371 | APISIX Ingress Controller for Kubernetes | [
"api",
"apigateway",
"apisix",
"controller",
"crds",
"devops",
"ingress",
"k8s",
"kubernetes",
"kubernetes-ingress",
"loadbalancing",
"microservices"
] | Apache-2.0 | api/v2/apisixupstream_types.go | apisixupstream_types.go | 15,404 | // Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may... | 1,687 | 15,402 | 325 | 0.98 | 2026-04-18T01:20:18.224678 | true |
github_rustdesk_rustdesk_234004d15cc0aeb1cb87e04890f70a20e7577cad | 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/privacy_mode.rs | privacy_mode.rs | 12,808 | use crate::ui_interface::get_option;
#[cfg(windows)]
use crate::{
display_service,
ipc::{connect, Data},
platform::is_installed,
};
#[cfg(windows)]
use hbb_common::tokio;
use hbb_common::{anyhow::anyhow, bail, lazy_static, tokio::sync::oneshot, ResultType};
use serde_derive::{Deserialize, Serialize};
use st... | 1,070 | 12,808 | 432 | 0.98 | 2026-04-17T13:14:56.385616 | true |
github_rust-lang_rustlings_4f0685b6e0146527c806f1946401c31bf21f1869 | 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/watch/terminal_event.rs | terminal_event.rs | 2,306 | use crossterm::event::{self, Event, KeyCode, KeyEventKind};
use std::sync::{
atomic::Ordering::Relaxed,
mpsc::{Receiver, Sender},
};
use crate::watch::{EXERCISE_RUNNING, WatchEvent};
pub enum InputEvent {
Next,
Run,
Hint,
List,
CheckAll,
Reset,
Quit,
}
pub fn terminal_event_handle... | 157 | 2,306 | 74 | 0.98 | 2026-04-17T13:16:18.548433 | true |
github_apache_cassandra-gocql-driver_1bfdc7b926a1aa04adf35e55f1388cec28b59d7d | Go | apache | cassandra-gocql-driver | 2,683 | 645 | GoCQL Driver for Apache Cassandra® | [
"cassandra",
"client",
"database",
"driver",
"go",
"golang",
"nosql"
] | Apache-2.0 | example_udt_struct_test.go | example_udt_struct_test.go | 2,512 | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 342 | 2,512 | 80 | 0.98 | 2026-04-17T18:27:43.598001 | true |
github_Automattic_mongoose_8de1b278773452aeccfe1f56e7e4615e29fa0aea | JavaScript | Automattic | mongoose | 27,471 | 3,979 | MongoDB object modeling designed to work in an asynchronous environment. | [
"mongo",
"mongodb",
"nodejs",
"odm",
"orm"
] | MIT | lib/internal.js | internal.js | 1,619 | /*!
* Dependencies
*/
'use strict';
const StateMachine = require('./stateMachine');
const ActiveRoster = StateMachine.ctor('require', 'modify', 'init', 'default', 'ignore');
module.exports = exports = InternalCache;
function InternalCache() {
this.activePaths = new ActiveRoster();
}
InternalCache.prototype.str... | 157 | 1,619 | 47 | 0.98 | 2026-04-23T06:42:34.783185 | true |
github_jondot_hygen_fd0d0a923139e7c36280efe7096ca733b2410ffc | TypeScript | jondot | hygen | 5,936 | 272 | The simple, fast, and scalable code generator that lives in your project. | [
"cli",
"generator",
"nodejs",
"tools"
] | MIT | src/types.ts | types.ts | 1,179 | export interface Logger {
ok: (msg: string) => void
notice: (msg: string) => void
warn: (msg: string) => void
err: (msg: string) => void
log: (msg: string) => void
colorful: (msg: string) => void
}
export interface Prompter<Q, T> {
prompt: (arg0: Q) => Promise<T>
}
export interface RenderedAction {
file... | 156 | 1,179 | 56 | 0.98 | 2026-04-23T07:24:51.083823 | true |
github_feder-cr_Jobs_Applier_AI_Agent_AIHawk_20b1448c016ace34ea953950689c1169cc56794e | Python | feder-cr | Jobs_Applier_AI_Agent_AIHawk | 29,705 | 4,530 | AIHawk aims to easy job hunt process by automating the job application process. Utilizing artificial intelligence, it enables users to apply for multiple jobs in a tailored way. | [
"agent",
"application-resume",
"artificial-intelligence",
"automate",
"automation",
"bot",
"chatgpt",
"chrome",
"gpt",
"human-resources",
"job",
"jobs",
"jobsearch",
"jobseeker",
"opeai",
"python",
"resume",
"scraper",
"scraping",
"selenium"
] | AGPL-3.0 | src/logging.py | logging.py | 2,496 | import logging.handlers
import os
import sys
import logging
from loguru import logger
from selenium.webdriver.remote.remote_connection import LOGGER as selenium_logger
from config import LOG_LEVEL, LOG_SELENIUM_LEVEL, LOG_TO_CONSOLE, LOG_TO_FILE
def remove_default_loggers():
"""Remove default loggers from root l... | 176 | 2,496 | 81 | 0.98 | 2026-04-23T03:23:34.335471 | true |
github_nodejs_node_36bde94013d1a872c070d0e89c4e67e7a45fcef5 | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/internal/webidl.js | webidl.js | 12,168 | 'use strict';
const {
ArrayBufferIsView,
ArrayBufferPrototypeGetByteLength,
ArrayPrototypePush,
ArrayPrototypeToSorted,
DataViewPrototypeGetBuffer,
MathAbs,
MathMax,
MathMin,
MathPow,
MathSign,
MathTrunc,
NumberIsNaN,
NumberMAX_SAFE_INTEGER,
NumberMIN_SAFE_INTEGER,
ObjectAssign,
ObjectP... | 1,586 | 12,126 | 460 | 0.98 | 2026-04-23T06:16:07.616009 | true |
github_imsyy_DailyHotApi_7a9eb158ba83144ffe296338ae226bf23cfa939b | TypeScript | imsyy | DailyHotApi | 3,759 | 1,259 | 🔥 今日热榜 API,一个聚合热门数据的 API 接口,支持 RSS 模式 及 Vercel 部署 | 前端页面:https://github.com/imsyy/DailyHot | [
"api",
"daily-hot",
"list",
"rss",
"vercel"
] | MIT | src/utils/logger.ts | logger.ts | 2,117 | import { config } from "../config.js";
import { createLogger, format, transports } from "winston";
import path from "path";
import chalk from "chalk";
let pathOption: (typeof transports.File)[] = [];
// 日志输出目录
if (config.USE_LOG_FILE) {
try {
pathOption = [
new transports.File({
filename: path.res... | 228 | 2,003 | 82 | 0.98 | 2026-04-23T08:10:50.537829 | true |
github_rustdesk_rustdesk_f0645e4bf075f5b1d269eb9e9bcac5ee3d6ee45b | Rust | rustdesk | rustdesk | 111,120 | 16,633 | An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer. | [
"android",
"anydesk",
"dart",
"flatpak",
"flutter",
"flutter-apps",
"ios",
"linux",
"macos",
"p2p",
"rdp",
"remote-control",
"remote-desktop",
"rust",
"rust-lang",
"teamviewer",
"vnc",
"wayland",
"windows"
] | AGPL-3.0 | src/virtual_display_manager.rs | virtual_display_manager.rs | 32,850 | use hbb_common::{bail, platform::windows::is_windows_version_or_greater, ResultType};
// This string is defined here.
// https://github.com/rustdesk-org/RustDeskIddDriver/blob/b370aad3f50028b039aad211df60c8051c4a64d6/RustDeskIddDriver/RustDeskIddDriver.inf#LL73C1-L73C40
pub const RUSTDESK_IDD_DEVICE_STRING: &'static ... | 2,808 | 32,850 | 926 | 0.95 | 2026-04-13T14:04:52.406016 | true |
github_ChatGPTNextWeb_NextChat_96292dac3571999fa75fb637f79d08c6e217a48e | 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/hmac.ts | hmac.ts | 7,661 | // From https://gist.github.com/guillermodlpa/f6d955f838e9b10d1ef95b8e259b2c58
// From https://gist.github.com/stevendesu/2d52f7b5e1f1184af3b667c0b5e054b8
// To ensure cross-browser support even without a proper SubtleCrypto
// impelmentation (or without access to the impelmentation, as is the case with
// Chrome load... | 1,124 | 7,661 | 247 | 0.98 | 2026-04-23T08:58:32.971026 | true |
github_MervinPraison_PraisonAI_39430aabf160fc45b84032fa2bb9d4838bb51fe5 | 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/simple-mcp-server.py | simple-mcp-server.py | 119 | from praisonaiagents import Agent
agent = Agent(instructions="Create a Tweet")
agent.launch(port=8080, protocol="mcp") | 11 | 119 | 4 | 0.98 | 2026-04-17T15:41:27.830204 | true |
github_ChromeDevTools_chrome-devtools-mcp_92fe6afcd0c223536d8063a23fd46f2dd47c7f03 | 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/pages.ts | pages.ts | 14,727 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {logger} from '../logger.js';
import type {CdpPage, Dialog, HTTPRequest} from '../third_party/index.js';
import {zod} from '../third_party/index.js';
import {ToolCategory} from './categories.js';
import type {ContextPage} f... | 1,341 | 14,727 | 488 | 0.98 | 2026-04-23T08:42:48.409529 | true |
github_tuna-f1sh_cyme_3200a87c9ce4e98940b705bd4103db3079906690 | Rust | tuna-f1sh | cyme | 1,114 | 28 | List system USB buses and devices. A modern cross-platform lsusb that attempts to maintain compatibility with, but also add new features | [
"cli",
"libusb",
"lsusb",
"macos",
"rust",
"tool",
"usb"
] | GPL-3.0 | src/lsusb/names.rs | names.rs | 5,261 | //! Port of names.c in usbutils that provides name lookups for USB data using udev, falling back to USB IDs repository.
//!
//! lsusb uses udev and the bundled hwdb (based on USB IDs) for name lookups. To attempt parity with lsusb, this module uses udev_hwdb if the feature is enabled, otherwise it will fall back to the... | 571 | 5,261 | 143 | 0.98 | 2026-04-17T19:35:49.794280 | true |
github_seungeunrho_minimalRL_2e8455d06ffdd2c24bd0a7eaeaf5a5a57b440265 | Python | seungeunrho | minimalRL | 3,184 | 494 | Implementations of basic RL algorithms with minimal lines of codes! (pytorch based) | [
"a2c",
"a3c",
"acer",
"ddpg",
"deep-learning",
"deep-reinforcement-learning",
"dqn",
"machine-learning",
"policy-gradients",
"ppo",
"pytorch",
"reinforce",
"reinforcement-learning",
"sac",
"simple"
] | MIT | actor_critic.py | actor_critic.py | 3,198 | import gym
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
from torch.distributions import Categorical
#Hyperparameters
learning_rate = 0.0002
gamma = 0.98
n_rollout = 10
class ActorCritic(nn.Module):
def __init__(self):
super(ActorCritic, self)._... | 265 | 3,198 | 98 | 0.98 | 2026-04-17T17:49:19.562070 | true |
github_sindresorhus_execa_e13f74989488f155f3474520ccf2e28c011af765 | JavaScript | sindresorhus | execa | 7,493 | 250 | Process execution for humans | [
"binary",
"child-process",
"exec",
"execute",
"javascript",
"nodejs",
"shell",
"spawn",
"spawned-processes",
"streams"
] | MIT | lib/pipe/throw.js | throw.js | 1,504 | import {makeEarlyError} from '../return/result.js';
import {abortSourceStream, endDestinationStream} from '../io/pipeline.js';
// When passing invalid arguments to `source.pipe()`, throw asynchronously.
// We also abort both subprocesses.
export const handlePipeArgumentsError = ({
sourceStream,
sourceError,
destina... | 143 | 1,504 | 59 | 0.98 | 2026-04-23T07:15:53.477674 | true |
github_unkeyed_unkey_2ec0add3e736bd5d1ffada38ebb886c30eadced4 | Go | unkeyed | unkey | 5,242 | 613 | The Developer Platform for Modern APIs | [
"api",
"api-keys",
"authentication",
"authorization",
"deployment",
"gateway",
"open-source",
"rate-limiter"
] | NOASSERTION | cmd/run/main.go | main.go | 2,800 | package run
import (
"context"
"fmt"
"github.com/unkeyed/unkey/cmd/run/api"
"github.com/unkeyed/unkey/cmd/run/ctrl"
"github.com/unkeyed/unkey/cmd/run/frontline"
"github.com/unkeyed/unkey/cmd/run/krane"
"github.com/unkeyed/unkey/cmd/run/sentinel"
"github.com/unkeyed/unkey/cmd/run/vault"
"github.com/unkeyed/un... | 323 | 2,800 | 67 | 0.98 | 2026-04-17T18:00:23.512109 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.