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_tellform_tellform_6798e52578892c02eb2a7f4a2124023f5034b013
JavaScript
tellform
tellform
3,028
518
✏️ Free Opensource Alternative to TypeForm or Google Forms ⛺
[ "form-builder", "forms", "google-forms", "mean-stack", "nodejs", "self-hosted", "typeform" ]
NOASSERTION
app/routes/forms.server.routes.js
forms.server.routes.js
1,811
'use strict'; /** * Module dependencies. */ var forms = require('../../app/controllers/forms.server.controller'), auth = require('../../config/passport_helpers'), config = require('../../config/config'), core = require('../../app/controllers/core.server.controller'); module.exports = function(app) { // Form Rou...
83
1,811
57
0.98
2026-04-23T07:56:26.200988
true
github_nearai_ironclaw_7d41ce1663105fc63e8963f69c253b33d4606f2b
Rust
nearai
ironclaw
11,845
1,350
IronClaw is OpenClaw inspired implementation in Rust focused on privacy and security
[]
Apache-2.0
src/cli/completion.rs
completion.rs
2,705
use clap::{CommandFactory, Parser}; use clap_complete::{Shell, generate}; use std::io::{self, Write}; /// Generate shell completion scripts for ironclaw #[derive(Parser, Debug)] pub struct Completion { /// The shell to generate completions for #[arg(value_enum, long)] pub shell: Shell, } impl Completion {...
280
2,705
79
0.98
2026-04-17T14:19:43.002500
true
github_adam-mcdaniel_sage_4543ab8b5ecf657d18ddd4e05175d8be76a8f5d2
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/lir/error.rs
error.rs
13,305
use super::{ Annotation, AssignOp, BinaryOp, ConstExpr, Expr, Mutability, Pattern, PolyProcedure, TernaryOp, Type, UnaryOp }; use core::fmt::{Debug, Display, Formatter, Result as FmtResult}; /// An LIR compilation error. #[derive(Clone, Debug)] pub enum Error { /// An error with some annotation about the sourc...
1,335
13,305
359
0.98
2026-04-17T17:14:53.706928
true
github_ChatGPTNextWeb_NextChat_5c2f071e3016e049e75db6f6c06ffcdbba064272
TypeScript
ChatGPTNextWeb
NextChat
87,769
59,807
✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows
[ "calclaude", "chatgpt", "claude", "cross-platform", "desktop", "fe", "gemini", "gemini-pro", "gemini-server", "gemini-ultra", "gpt-4o", "groq", "nextjs", "ollama", "react", "tauri", "tauri-app", "vercel", "webui" ]
MIT
app/mcp/client.ts
client.ts
1,366
import { Client } from "@modelcontextprotocol/sdk/client/index.js"; import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js"; import { MCPClientLogger } from "./logger"; import { ListToolsResponse, McpRequestMessage, ServerConfig } from "./types"; import { z } from "zod"; const logger = new MCP...
140
1,366
56
0.98
2026-04-23T08:58:22.864145
true
github_qax-os_excelize_9984e78c92375a2116e914f619f677ebb547a942
Go
qax-os
excelize
20,478
1,890
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets
[ "agent", "ai", "analytics", "chart", "ecma-376", "excel", "excelize", "formula", "go", "mcp", "microsoft", "office", "ooxml", "spreadsheet", "statistics", "table", "vba", "visualization", "xlsx", "xml" ]
BSD-3-Clause
merge.go
merge.go
7,264
// Copyright 2016 - 2026 The excelize Authors. All rights reserved. Use of // this source code is governed by a BSD-style license that can be found in // the LICENSE file. // // Package excelize providing a set of functions that allow you to write to and // read from XLAM / XLSM / XLSX / XLTM / XLTX files. Supports rea...
1,017
7,262
248
0.98
2026-04-17T09:27:45.196117
true
github_bigint_hey_83b62c065f18a03f34d1a59db8fb9cf9d27f66f9
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/trimify.ts
trimify.ts
115
const trimify = (value: string): string => value?.replace(/\n\n\s*\n/g, "\n\n").trim(); export default trimify;
12
115
5
0.98
2026-04-18T01:23:15.978350
true
github_o2sh_onefetch_7764e46763ff51e7e9582cd466f762754bd8d915
Rust
o2sh
onefetch
11,730
305
Command-line Git information tool
[ "cli", "command-line", "command-line-interface", "git", "rust", "tool" ]
MIT
src/info/authors.rs
authors.rs
10,356
use super::git::sig::Sig; use crate::{ cli::NumberSeparator, info::utils::{format_number, info_field::InfoField}, }; use serde::Serialize; use std::{collections::HashMap, fmt::Write}; #[derive(Serialize, Clone, Debug, PartialEq)] #[serde(rename_all = "camelCase")] pub struct Author { pub name: String, ...
765
10,356
379
0.98
2026-04-17T14:20:16.697447
true
github_easegress-io_easegress_d9d4838898f7b08e2ed2f68d822d8957dc9f99d0
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/api/metadata.go
metadata.go
2,838
/* * 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...
342
2,838
119
0.98
2026-04-17T21:19:13.095830
true
github_Automattic_mongoose_e82ab22f769928575731f7fead6cd0b9021b32d8
JavaScript
Automattic
mongoose
27,471
3,979
MongoDB object modeling designed to work in an asynchronous environment.
[ "mongo", "mongodb", "nodejs", "odm", "orm" ]
MIT
lib/error/createCollectionsError.js
createCollectionsError.js
508
'use strict'; const MongooseError = require('./mongooseError'); /** * createCollections Error constructor * * @param {string} message * @param {string} errorsMap * @inherits MongooseError * @api private */ class CreateCollectionsError extends MongooseError { constructor(message, errorsMap) { super(messa...
50
508
27
0.98
2026-04-23T06:42:13.900110
true
github_foresterre_cargo-msrv_3c105f964547fc3da34de6d70ac2177fb0f24d52
Rust
foresterre
cargo-msrv
1,171
42
🦀 Find the minimum supported Rust version (MSRV) for your project
[ "cargo", "cargo-msrv", "cli", "hacktoberfest", "msrv", "rust", "rust-lang", "rust-tools" ]
Apache-2.0
src/external_command/rustup_command.rs
rustup_command.rs
4,317
use crate::error::{IoError, IoErrorSource, TResult}; use camino::Utf8Path; use std::ffi::{OsStr, OsString}; use std::process::{Command, Stdio}; pub struct RustupCommand { command: Command, args: Vec<OsString>, stdout: Stdio, stderr: Stdio, // Span used to trace the path to execution of a RustupComm...
360
4,317
153
0.98
2026-04-17T19:34:40.579806
true
github_axios_axios_5d18745a7aeed24c13c84ccc5cecf6af534290a7
JavaScript
axios
axios
109,012
11,651
Promise based HTTP client for the browser and node.js
[ "hacktoberfest", "http-client", "javascript", "nodejs", "promise" ]
MIT
lib/adapters/adapters.js
adapters.js
3,310
import utils from '../utils.js'; import httpAdapter from './http.js'; import xhrAdapter from './xhr.js'; import * as fetchAdapter from './fetch.js'; import AxiosError from '../core/AxiosError.js'; /** * Known adapters mapping. * Provides environment-specific adapters for Axios: * - `http` for Node.js * - `xhr` for...
445
3,310
131
0.98
2026-04-23T06:16:41.173399
true
github_npm_cli_39e3a599fc37e1286f96d28b60f05eb8be3c801d
JavaScript
npm
cli
9,697
4,289
the package manager for JavaScript
[ "javascript", "nodejs", "npm", "npm-cli", "package-manager", "tools" ]
NOASSERTION
lib/commands/audit.js
audit.js
3,248
const npmAuditReport = require('npm-audit-report') const ArboristWorkspaceCmd = require('../arborist-cmd.js') const auditError = require('../utils/audit-error.js') const { log, output } = require('proc-log') const reifyFinish = require('../utils/reify-finish.js') const VerifySignatures = require('../utils/verify-signat...
317
3,248
123
0.98
2026-04-23T07:03:11.120200
true
github_tinygo-org_tinygo_83f527d575099ee23f9adfda9c2a0d19cb0617b1
Go
tinygo-org
tinygo
17,351
1,023
Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.
[ "adafruit", "arduino", "arm", "avr", "esp32", "gpio", "i2c", "llvm", "microbit", "microcontroller", "nrf51", "nrf52", "samd21", "spi", "stm32", "tinygo", "wasi", "wasm", "webassembly" ]
NOASSERTION
src/machine/board_bluepill.go
board_bluepill.go
1,484
//go:build bluepill package machine import ( "device/stm32" "runtime/interrupt" ) // Pins printed on the silkscreen const ( C13 = PC13 C14 = PC14 C15 = PC15 A0 = PA0 A1 = PA1 A2 = PA2 A3 = PA3 A4 = PA4 A5 = PA5 A6 = PA6 A7 = PA7 B0 = PB0 B1 = PB1 B10 = PB10 B11 = PB11 B12 = PB12 B13 = PB...
279
1,484
111
0.98
2026-04-17T10:14:12.963480
true
github_pathwaycom_pathway_2130bfdca948114fc6de28b7731efb0c9f3370d7
Rust
pathwaycom
pathway
63,434
1,631
Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG.
[ "batch-processing", "data-analytics", "data-pipelines", "data-processing", "dataflow", "etl", "etl-framework", "iot-analytics", "kafka", "machine-learning-algorithms", "pathway", "python", "real-time", "rust", "stream-processing", "streaming", "time-series-analysis" ]
NOASSERTION
src/connectors/mssql.rs
mssql.rs
70,245
// Copyright © 2026 Pathway use log::info; use std::borrow::Cow; use std::collections::HashMap; use std::mem::take; use chrono::Timelike; use hex; use tiberius::{Client, ColumnData, Config, Query}; use tokio::net::TcpStream; use tokio::runtime::Runtime as TokioRuntime; use tokio_util::compat::{Compat, TokioAsyncWrite...
5,905
70,194
1,807
0.98
2026-04-23T04:40:31.266538
true
github_nearai_ironclaw_9be2f7c284d7c550b99bb5781b595d3d502268f0
Rust
nearai
ironclaw
11,845
1,350
IronClaw is OpenClaw inspired implementation in Rust focused on privacy and security
[]
Apache-2.0
src/auth/mod.rs
mod.rs
29,919
pub mod oauth; pub mod providers; use std::collections::HashMap; use std::future::Future; use std::sync::{Arc, Weak}; use std::time::Duration; use serde::{Deserialize, Serialize}; use crate::db::{SettingsStore, UserStore}; use crate::secrets::{CreateSecretParams, DecryptedSecret, SecretError, SecretsStore}; use crat...
2,670
29,905
842
0.98
2026-04-17T14:19:31.240780
true
github_rustdesk_rustdesk_c5d4dfde81be5123eb6db08cf9f1a34fe7f6ec01
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/keyboard.rs
keyboard.rs
48,019
#[cfg(feature = "flutter")] use crate::flutter; #[cfg(target_os = "windows")] use crate::platform::windows::{get_char_from_vk, get_unicode_from_vk}; #[cfg(not(any(feature = "flutter", feature = "cli")))] use crate::ui::CUR_SESSION; use crate::ui_session_interface::{InvokeUiSession, Session}; #[cfg(not(any(target_os = "...
4,208
48,016
1,402
0.98
2026-04-17T13:14:20.503574
true
github_Pythagora-io_gpt-pilot_ee2586cbf110455c435295e14dc4739461da8665
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/agents/developer.py
developer.py
20,028
import json from enum import Enum from typing import Annotated, Literal, Union from uuid import UUID, uuid4 from pydantic import BaseModel, Field from core.agents.base import BaseAgent from core.agents.convo import AgentConvo from core.agents.mixins import ChatWithBreakdownMixin, RelevantFilesMixin from core.agents.r...
1,546
20,028
485
0.98
2026-04-17T15:26:31.550568
true
github_bigint_hey_634f5b801f461fa7924a9b96572d63c6d90c7c70
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/store/createToggleStore.ts
createToggleStore.ts
303
import { createTrackedStore } from "./createTrackedStore"; interface ToggleStore { show: boolean; setShow: (show: boolean) => void; } export const createToggleStore = (initial = false) => createTrackedStore<ToggleStore>((set) => ({ setShow: (show) => set({ show }), show: initial }));
37
303
13
0.98
2026-04-18T01:23:19.771445
true
github_lbjlaq_Antigravity-Manager_60a17614bea5b625c93094de7e13c854353dd7a7
TypeScript
lbjlaq
Antigravity-Manager
28,337
3,089
Professional Antigravity Account Manager & Switcher. One-click seamless account switching for Antigravity Tools. Built with Tauri v2 + React (Rust).专业的 Antigravity 账号管理与切换工具。为 Antigravity 提供一键无缝账号切换功能。
[ "account-manager", "antigravity" ]
NOASSERTION
src/services/configService.ts
configService.ts
323
import { request as invoke } from '../utils/request'; import { AppConfig } from '../types/config'; export async function loadConfig(): Promise<AppConfig> { return await invoke('load_config'); } export async function saveConfig(config: AppConfig): Promise<void> { return await invoke('save_config', { config });...
38
323
11
0.98
2026-04-17T13:28:44.623791
true
github_ChenglongChen_pytorch-DRL_6657aebffe0cb62097f7598b51bb620b2a55e3b5
Python
ChenglongChen
pytorch-DRL
612
109
PyTorch implementations of various Deep Reinforcement Learning (DRL) algorithms for both single agent and multi-agent.
[ "a2c", "acktr", "actor-critic", "advantage-actor-critic", "ddpg", "deep-deterministic-policy-gradient", "deep-q-network", "deep-reinforcement-learning", "dqn", "drl", "madrl", "multi-agent", "ppo", "proximal-policy-optimization", "pytorch", "reinforcement-learning", "rl" ]
MIT
PPO.py
PPO.py
7,232
import torch as th from torch import nn from torch.optim import Adam, RMSprop import numpy as np from copy import deepcopy from common.Agent import Agent from common.Model import ActorNetwork, CriticNetwork from common.utils import index_to_one_hot, to_tensor_var class PPO(Agent): """ An agent learned with...
544
7,232
162
0.98
2026-04-22T20:44:42.002826
true
github_ChromeDevTools_chrome-devtools-mcp_bc13f641b618b39e4b907e5a06049521cacc7948
TypeScript
ChromeDevTools
chrome-devtools-mcp
36,793
2,272
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/formatters/SnapshotFormatter.ts
SnapshotFormatter.ts
4,387
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type {TextSnapshot} from '../TextSnapshot.js'; import type {TextSnapshotNode} from '../types.js'; export class SnapshotFormatter { #snapshot: TextSnapshot; constructor(snapshot: TextSnapshot) { this.#snapshot = sna...
445
4,387
168
0.98
2026-04-23T08:42:37.728609
true
github_caddyserver_caddy_4f20bede30fc477c168769e8ef8e01cd08d3d88e
Go
caddyserver
caddy
71,610
4,694
Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS
[ "acme", "automatic-https", "caddy", "caddyfile", "go", "golang", "http", "http-server", "http3", "https", "privacy", "reverse-proxy", "security", "tls", "web-server" ]
Apache-2.0
replacer_test.go
replacer_test.go
11,297
// Copyright 2015 Matthew Holt and The Caddy 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 applicab...
1,431
11,269
533
0.98
2026-04-17T07:12:14.875330
true
github_nodejs_node_9949a6cde47a2319c453f1b5b8672843a2ddcbc9
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/socket_list.js
socket_list.js
2,709
'use strict'; const { ERR_CHILD_CLOSED_BEFORE_REPLY } = require('internal/errors').codes; const EventEmitter = require('events'); // This object keeps track of the sockets that are sent class SocketListSend extends EventEmitter { constructor(child, key) { super(); this.key = key; this.child = child; ...
259
2,709
109
0.98
2026-04-23T06:16:01.600118
true
github_JordanKnott_taskcafe_d0b62df256edc6e0d46cc4dbebf300938b90e083
Go
JordanKnott
taskcafe
5,189
466
An open source project management tool with Kanban boards
[ "golang", "gqlgen", "graphql", "kanban-board", "project-management", "react", "typescript" ]
MIT
internal/db/task.sql.go
task.sql.go
29,062
// Code generated by sqlc. DO NOT EDIT. // source: task.sql package db import ( "context" "database/sql" "time" "github.com/google/uuid" "github.com/lib/pq" ) const createDueDateReminder = `-- name: CreateDueDateReminder :one INSERT INTO task_due_date_reminder (task_id, period, duration, remind_at) VALUES ($1,...
3,175
29,062
1,049
0.98
2026-04-18T01:33:58.011070
true
github_clintonwoo_hackernews-react-graphql_be2ae5879418dad93d0adfa95744a6e2af6dfbf0
TypeScript
clintonwoo
hackernews-react-graphql
4,484
552
Hacker News clone rewritten with universal JavaScript, using React and GraphQL.
[ "apollo", "express", "graphql", "hacker-news", "hn", "javascript", "js", "nextjs", "node", "react" ]
MIT
src/config.ts
config.ts
1,144
/** True if the app is running on the server, false if running on the client */ export const IS_SERVER = typeof window === 'undefined'; /* SERVER CONFIG */ export const dev = process.env.NODE_ENV !== 'production'; export const appPath = process.env.NODE_ENV === 'production' ? './dist' : './src'; export const HN_DB_UR...
131
1,144
29
0.98
2026-04-18T01:34:54.512557
true
github_ctrlplusb_easy-peasy_c07046b3c0e5ddcdd5ccf22a6cb23341b61e78b8
JavaScript
ctrlplusb
easy-peasy
5,044
191
Vegetarian friendly state for React
[ "hooks", "immer", "immutable", "react", "react-hooks", "redux", "state-management" ]
MIT
.babelrc.js
.babelrc.js
419
const { NODE_ENV } = process.env; module.exports = { presets: [ [ '@babel/env', { targets: NODE_ENV === 'test' ? { node: 18 } : 'defaults, not dead', modules: false, loose: true, }, ], ], plugins: [ '@babel/plugin-transform-r...
44
419
22
0.98
2026-04-23T06:14:14.975730
true
github_kubernetes_enhancements_b81837d5a85e04a62d26d1463a4bfb7c3a62d9bd
Go
kubernetes
enhancements
3,866
1,656
Enhancements tracking repo for Kubernetes
[ "enhancements", "k8s-sig-architecture", "kubernetes", "kubernetes-releases" ]
Apache-2.0
api/proposal.go
proposal.go
7,269
/* Copyright 2021 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, ...
852
7,269
256
0.98
2026-04-17T22:26:07.650786
true
github_kserve_kserve_2a0b44b747e64c3d7f276b7080c3586784bcc366
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/modelconfig/configmap.go
configmap.go
4,187
/* Copyright 2021 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...
477
4,187
166
0.98
2026-04-17T21:30:17.296629
true
github_farion1231_cc-switch_42e63ef9de7550a8f45502c08ad60d1b9b2a65dc
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/useDirectorySettings.ts
useDirectorySettings.ts
10,189
import { useCallback, useEffect, useRef, useState } from "react"; import { useTranslation } from "react-i18next"; import { toast } from "sonner"; import { homeDir, join } from "@tauri-apps/api/path"; import { settingsApi, type AppId } from "@/lib/api"; import type { SettingsFormState } from "./useSettingsForm"; type D...
929
10,101
366
0.98
2026-04-17T13:18:49.065451
true
github_databricks_click_7124961081f703038b79f803ea90a472de56e39e
Rust
databricks
click
1,508
92
The "Command Line Interactive Controller for Kubernetes"
[ "cli", "kubectl", "kubernetes", "rust" ]
Apache-2.0
src/main.rs
main.rs
5,390
// Copyright 2017 Databricks, 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 in writi...
501
5,390
196
0.98
2026-04-17T19:29:39.477706
true
github_cheat_cheat_130ebf2c0a6488c9fac3aa024237f675a0d7070f
Go
cheat
cheat
13,269
848
cheat allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options for commands that they use frequently, but not frequently enough to remember.
[ "bash", "cheat", "cheatsheet", "cheatsheets", "documentation", "help", "interactive-cheatsheets", "man-page" ]
MIT
internal/config/paths_test.go
paths_test.go
4,231
package config import ( "path/filepath" "reflect" "runtime" "testing" "github.com/davecgh/go-spew/spew" ) // TestValidatePathsNix asserts that the proper config paths are returned on // *nix platforms func TestValidatePathsNix(t *testing.T) { if runtime.GOOS == "windows" { t.Skip("filepath.Join uses backslas...
523
4,231
185
0.98
2026-04-17T11:24:08.440519
true
github_directus_directus_dc63b2bb8a0e699944bdeda1ff05e79f16e8af0f
TypeScript
directus
directus
34,882
4,723
The flexible backend for all your projects 🐰 Turn your DB into a headless CMS, admin panels, or apps with a custom UI, instant APIs, auth & more.
[ "api", "app", "cms", "composable", "data-visualization", "database", "directus", "graphql", "headless-cms", "javascript", "mariadb", "mssql", "mysql", "no-code", "node", "postgresql", "sql", "sqlite", "typescript", "vue" ]
NOASSERTION
api/src/deployment.ts
deployment.ts
2,703
import type { Credentials, Options, ProviderType } from '@directus/types'; import getDatabase from './database/index.js'; import type { DeploymentDriver } from './deployment/deployment.js'; import { NetlifyDriver, VercelDriver } from './deployment/drivers/index.js'; import { useLogger } from './logger/index.js'; import...
326
2,703
96
0.98
2026-04-23T07:57:57.553339
true
github_golang_dep_878f7bf8e6e06bfad40914b3666c5775d4176a13
Go
golang
dep
12,751
1,029
Go dependency management tool experiment (deprecated)
[ "dependency-manager", "golang", "package-manager", "toolchain" ]
BSD-3-Clause
cmd/dep/check.go
check.go
7,771
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "flag" "fmt" "io/ioutil" "log" "os" "path/filepath" "sort" "strings" "github.com/golang/dep" "github.com/golang/dep/g...
993
7,771
262
0.98
2026-04-17T11:34:01.093593
true
github_microsoft_typescript-go_f5b0b751ed867cd2228f70ff9cf639e9bb277812
Go
microsoft
typescript-go
24,802
893
Staging repo for development of native port of TypeScript
[]
Apache-2.0
internal/checker/relater.go
relater.go
230,971
package checker import ( "slices" "strconv" "strings" "unicode/utf8" "github.com/microsoft/typescript-go/internal/ast" "github.com/microsoft/typescript-go/internal/binder" "github.com/microsoft/typescript-go/internal/collections" "github.com/microsoft/typescript-go/internal/core" "github.com/microsoft/typesc...
24,507
230,971
4,928
0.98
2026-04-17T08:41:45.108404
true
github_vibrantlabsai_ragas_13dca55f3055532090b00210c36dbd5ec25f73bf
Python
vibrantlabsai
ragas
13,587
1,368
Supercharge Your LLM Application Evaluations 🚀
[ "evaluation", "llm", "llmops" ]
Apache-2.0
src/ragas/experiment.py
experiment.py
7,375
"""Experiments hold the results of an experiment against a dataset.""" __all__ = ["Experiment", "experiment", "version_experiment"] import asyncio import typing as t from pathlib import Path from pydantic import BaseModel from tqdm import tqdm from ragas.backends.base import BaseBackend from ragas.dataset import Da...
691
7,375
233
0.98
2026-04-22T15:04:47.858548
true
github_ZhuLinsen_daily_stock_analysis_ac9e03b7c2041eab3a69f0e8dbff84621667dde3
Python
ZhuLinsen
daily_stock_analysis
30,272
30,966
LLM驱动的 A/H/美股智能分析器:多数据源行情 + 实时新闻 + LLM决策仪表盘 + 多渠道推送,零成本定时运行,纯白嫖. LLM-powered stock analysis system for A/H/US markets.
[ "agent", "ai", "aigc", "gemini", "llm", "quant", "quantitative-trading", "rag", "stock" ]
MIT
test_env.py
test_env.py
16,521
# -*- coding: utf-8 -*- """ =================================== A股自选股智能分析系统 - 环境验证测试 =================================== 用于验证 .env 配置是否正确,包括: 1. 配置加载测试 2. 数据库查看 3. 数据源测试 4. LLM 调用测试 5. 通知推送测试 使用方法: python test_env.py # 运行所有测试 python test_env.py --db # 仅查看数据库 python test_env.py --llm ...
1,282
14,436
489
0.98
2026-04-17T15:27:54.322346
true
github_nightwatchjs_nightwatch_ffb6f5079715f909c0a04ab28efb3edaf5049819
JavaScript
nightwatchjs
nightwatch
11,945
1,404
Integrated end-to-end testing framework written in Node.js and using W3C Webdriver API. Developed at @browserstack
[ "automated-testing", "chromedriver", "end-to-end-testing", "hacktoberfest", "javascript", "nightwatch", "nightwatchjs", "nodejs", "selenium", "selenium-server", "selenium-webdriver", "testing", "w3c-webdriver", "webdriver" ]
MIT
lib/testsuite/globals.js
globals.js
7,171
const path = require('path'); const lodashCloneDeep = require('lodash/cloneDeep'); const TestHooks = require('./hooks.js'); const Context = require('./context.js'); const Utils = require('../utils'); const {Logger} = Utils; const PluginLoader = require('../api/_loaders/plugin.js'); class GlobalsContext extends Context...
694
7,171
300
0.98
2026-04-23T06:58:45.953000
true
github_shadcn-ui_ui_0c002a976f96a358446c32e8c6b60157b3226520
TypeScript
shadcn-ui
ui
112,856
8,629
A set of beautifully-designed, accessible components and a code distribution platform. Works with your favorite frameworks. Open Source. Open Code.
[ "base-ui", "components", "laravel", "nextjs", "radix-ui", "react", "shadcn", "tailwindcss", "tanstack", "ui", "vite" ]
MIT
vitest.workspace.ts
vitest.workspace.ts
148
import { defineWorkspace } from "vitest/config" export default defineWorkspace([ "./vitest.config.ts", "./packages/tests/vitest.config.ts", ])
12
148
7
0.98
2026-04-23T08:57:36.976554
true
github_starship_starship_72ffd87ce348924e0315cc680f4b6364affb96a1
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/gleam.rs
gleam.rs
899
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct GleamConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub symbol: &'a st...
85
897
35
0.98
2026-04-17T13:17:42.288534
true
github_ginlix-ai_LangAlpha_d794967f8a011ff4353eeefb565ccd09c4c8ea6e
Python
ginlix-ai
LangAlpha
919
131
Claude Code for Finance
[ "agent", "investment", "langchain", "langraph", "llm", "mcp", "skills", "trading" ]
Apache-2.0
src/llms/content_utils.py
content_utils.py
18,494
""" Core Content Extraction Utilities for LLM Messages This module provides low-level utilities for extracting text and reasoning content from various LLM message formats. These utilities are provider-agnostic and handle: - Different reasoning/thinking formats (OpenAI, Anthropic, standardized content_blocks) - Text e...
1,772
18,494
501
0.98
2026-04-23T00:45:51.587606
true
github_glample_Arnold_c63c9a696ef7a19798366ddbb6b80d09bcb26621
Python
glample
Arnold
536
111
Arnold - DOOM Agent
[ "artificial-intelligence", "doom", "doom-2", "neural-network", "q-learning", "reinforcement-learning", "self-playing", "vizdoom-competition" ]
UNKNOWN
src/doom/labels.py
labels.py
1,966
def parse_labels_mapping(s): """ Parse the mapping between a label type and it's feature map. For instance: '0;1;2;3' -> [0, 1, 2, 3] '0+2;3' -> [0, None, 0, 1] '3;0+2;1' -> [1, 2, 1, 0] """ if len(s) > 0: split = [[int(y) for y in x.split('+')] for x in s.split(';')] e...
223
1,966
69
0.98
2026-04-22T20:51:05.243910
true
github_spegel-org_spegel_b44c61ea0e361ff2c02fd5855f04954b7a83e924
Go
spegel-org
spegel
3,600
143
Stateless cluster local OCI registry mirror.
[ "cloud", "containerd", "docker", "go", "golang", "kubernetes", "oci", "p2p", "registry" ]
MIT
internal/resilient/retry_test.go
retry_test.go
2,765
package resilient import ( "context" "errors" "fmt" "testing" "testing/synctest" "time" "github.com/stretchr/testify/require" ) func TestDelayFunc(t *testing.T) { t.Parallel() expected := 13 * time.Millisecond d := FixedDelay(expected)(10, nil) require.Equal(t, expected, d) delay := BackoffDelay(10*tim...
316
2,765
110
0.98
2026-04-17T22:29:55.976361
true
github_ChromeDevTools_chrome-devtools-mcp_e652d64fe406e0e4b62cd7a95342db02c2650ef4
TypeScript
ChromeDevTools
chrome-devtools-mcp
35,846
2,192
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/utils/ExtensionRegistry.ts
ExtensionRegistry.ts
1,212
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import fs from 'node:fs/promises'; import path from 'node:path'; export interface InstalledExtension { id: string; name: string; version: string; isEnabled: boolean; path: string; } export class ExtensionRegistry { #e...
119
1,212
54
0.98
2026-04-18T00:21:19.070985
true
github_avwo_whistle_5c0da3ec7df03c715b4e13b4b904c44d0430f758
JavaScript
avwo
whistle
15,478
1,155
HTTP, HTTP2, HTTPS, Websocket debugging proxy
[ "charles", "debug", "fiddler", "hosts", "node", "nodejs", "proxy", "web", "weinre" ]
MIT
index.js
index.js
6,583
require('./lib/util/patch'); var net = require('net'); var tls = require('tls'); var extend = require('extend'); var path = require('path'); var cluster = require('cluster'); var os = require('os'); var assert = require('assert'); var common = require('./lib/util/common'); var ver = process.version.substring(1).split(...
735
6,573
248
0.98
2026-04-23T06:51:02.797531
true
github_vercel_pkg_d4d832a81fcd69d099ecf5043ea95fc2e4081a3c
TypeScript
vercel
pkg
24,392
1,065
Package your Node.js project into an executable
[ "binaries", "cli", "compiler", "nodejs" ]
MIT
lib/mach-o.ts
mach-o.ts
1,647
import { execFileSync } from 'child_process'; function parseCStr(buf: Buffer) { for (let i = 0; i < buf.length; i += 1) { if (buf[i] === 0) { return buf.slice(0, i).toString(); } } } function patchCommand(type: number, buf: Buffer, file: Buffer) { // segment_64 if (type === 0x19) { const nam...
209
1,647
71
0.98
2026-04-23T06:43:04.744706
true
github_starship_starship_accdf7ba93d73d7b64e11320b59b7fa376f1599f
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/rlang.rs
rlang.rs
936
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct RLangConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub style: &'a str...
89
933
35
0.98
2026-04-17T13:18:00.417029
true
github_Universal-Debloater-Alliance_universal-android-debloater-next-generation_68c584e3420c51732fe11a5aa388d2a874806ac0
Rust
Universal-Debloater-Alliance
universal-android-debloater-next-generation
6,383
273
Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices. Improve your privacy, the security and battery life of your device.
[ "adb", "android", "bloatware-list", "bloatware-removal", "debloat", "debloater", "debloating", "privacy" ]
GPL-3.0
src/core/mod.rs
mod.rs
139
pub mod adb; pub mod config; pub mod helpers; pub mod save; pub mod sync; pub mod theme; pub mod uad_lists; pub mod update; pub mod utils;
27
139
10
0.98
2026-04-17T14:49:24.029577
true
github_pathwaycom_pathway_4c498c99542d4b01c4cc0f6d523efca0c156ac71
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/engine/timestamp.rs
timestamp.rs
4,079
use std::fmt::{self, Display}; use std::str::FromStr; use differential_dataflow::lattice::Lattice; use serde::Deserialize; use serde::Serialize; use timely::order::TotalOrder; use timely::progress::timestamp::Refines; use timely::progress::PathSummary; use timely::progress::Timestamp as TimestampTrait; use timely::Par...
438
4,079
172
0.98
2026-04-23T04:40:41.985138
true
github_weiaicunzai_pytorch-cifar100_c5034606788fc8b4c49e076cd90ef50fcfe30181
Python
weiaicunzai
pytorch-cifar100
4,764
1,201
Practice on cifar100(ResNet, DenseNet, VGG, GoogleNet, InceptionV3, InceptionV4, Inception-ResNetv2, Xception, Resnet In Resnet, ResNext,ShuffleNet, ShuffleNetv2, MobileNet, MobileNetv2, SqueezeNet, NasNet, Residual Attention Network, SENet, WideResNet)
[ "cifar100", "deep-learning", "densenet", "googlenet", "image-classification", "inception-resnet-v2", "inceptionv3", "inceptionv4", "mobilenet", "nasnet", "pytorch", "resnet", "resnext", "shufflenet", "squeezenet", "wideresnet", "xception" ]
UNKNOWN
train.py
train.py
8,135
# train.py #!/usr/bin/env python3 """ train network using pytorch author baiyu """ import os import sys import argparse import time from datetime import datetime import numpy as np import torch import torch.nn as nn import torch.optim as optim import torchvision import torchvision.transforms as transforms from tor...
620
8,135
229
0.98
2026-04-17T17:34:46.253869
true
github_MishaLaskin_curl_5836371d313dc8633ac5c5092e42cac3d5515550
Python
MishaLaskin
curl
603
92
CURL: Contrastive Unsupervised Representation Learning for Sample-Efficient Reinforcement Learning
[ "contrastive-learning", "contrastive-loss", "contrastive-predictive-coding", "curl", "deep-learning", "deep-learning-algorithms", "deep-neural-networks", "deep-q-learning", "deep-q-network", "deep-reinforcement-learning", "deep-rl", "deeplearning", "deeplearning-ai", "gpu", "model-free-r...
MIT
curl_sac.py
curl_sac.py
16,120
import numpy as np import torch import torch.nn as nn import torch.nn.functional as F import copy import math import utils from encoder import make_encoder LOG_FREQ = 10000 def gaussian_logprob(noise, log_std): """Compute Gaussian log probability.""" residual = (-0.5 * noise.pow(2) - log_std).sum(-1, keepdi...
1,249
16,120
487
0.98
2026-04-22T20:45:49.660084
true
github_go-gitea_gitea_e54e01830c7a6f4b41c0dd15c62f2d61f2a0a59a
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_auth_smtp_test.go
admin_auth_smtp_test.go
5,785
// Copyright 2025 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT package cmd import ( "context" "testing" auth_model "code.gitea.io/gitea/models/auth" "code.gitea.io/gitea/services/auth/source/smtp" "github.com/stretchr/testify/assert" "github.com/urfave/cli/v3" ) func TestAddSMTP(t ...
541
5,785
272
0.98
2026-04-17T07:19:12.427861
true
github_Windy3f3f3f3f_claude-code-from-scratch_ea5880a1188ff92866e871f332a79580ef616e30
TypeScript
Windy3f3f3f3f
claude-code-from-scratch
984
333
Build your own Claude Code from scratch. 🔍 Claude Code 开源了 50 万行代码,读不动?用 ~4000 行 TypeScript / Python 从零复现核心架构,11 章分步教程带你理解 coding agent 精髓
[ "ai", "ai-agent", "anthropic", "build-from-scratch", "claude", "claude-code", "coding-agent", "llm", "tutorial", "typescript" ]
MIT
src/mcp.ts
mcp.ts
9,321
/** * MCP Client — connects to stdio-based MCP servers, discovers and forwards tool calls. * Uses raw JSON-RPC over stdio (no SDK dependency for simplicity). * * Config is read from .claude/settings.json and ~/.claude/settings.json: * { "mcpServers": { "name": { "command": "...", "args": [...], "env": {...} } } ...
1,015
9,061
267
0.98
2026-04-22T17:00:41.117737
true
github_bigint_hey_6d0ebe024656d7ea1d2b9281145562152de19d27
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/getAnyKeyValue.ts
getAnyKeyValue.ts
1,287
import type { Address } from "viem"; import type { AnyKeyValueFragment } from "@/indexer/generated"; interface AddressKeyValue { __typename: "AddressKeyValue"; key: string; address: string; } interface BigDecimalKeyValue { __typename: "BigDecimalKeyValue"; key: string; bigDecimal: string; } interface Str...
146
1,287
52
0.98
2026-04-18T01:23:03.958046
true
github_salesforce_warp-drive_faa169054b1a5ce8819fd2c64dc9afa07389c425
Python
salesforce
warp-drive
503
83
Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU (JMLR 2022)
[ "cuda", "deep-learning", "gpu", "high-throughput", "multiagent-reinforcement-learning", "numba", "pytorch", "reinforcement-learning" ]
BSD-3-Clause
setup.py
setup.py
1,555
# Copyright (c) 2021, salesforce.com, inc. # All rights reserved. # SPDX-License-Identifier: BSD-3-Clause # For full license text, see the LICENSE file in the repo root # or https://opensource.org/licenses/BSD-3-Clause from setuptools import find_packages, setup with open("README.md", "r") as fh: long_description...
124
1,555
47
0.98
2026-04-22T20:53:59.760127
true
github_axios_axios_761279105b69595b4f53ae2e8b592aa3d9445281
JavaScript
axios
axios
109,012
11,651
Promise based HTTP client for the browser and node.js
[ "hacktoberfest", "http-client", "javascript", "nodejs", "promise" ]
MIT
lib/helpers/formDataToStream.js
formDataToStream.js
3,093
import util from 'util'; import { Readable } from 'stream'; import utils from '../utils.js'; import readBlob from './readBlob.js'; import platform from '../platform/index.js'; const BOUNDARY_ALPHABET = platform.ALPHABET.ALPHA_DIGIT + '-_'; const textEncoder = typeof TextEncoder === 'function' ? new TextEncoder() : ne...
322
3,093
120
0.98
2026-04-23T06:16:54.665852
true
github_avwo_whistle_b2e3a1065c88d675efee57d1e8612ed1ebbde4dd
JavaScript
avwo
whistle
15,478
1,155
HTTP, HTTP2, HTTPS, Websocket debugging proxy
[ "charles", "debug", "fiddler", "hosts", "node", "nodejs", "proxy", "web", "weinre" ]
MIT
lib/service/extract-saz.js
extract-saz.js
8,088
var AdmZip = require('adm-zip'); var parseString = require('xml2js').parseString; var parseUrl = require('../util/parse-url-safe'); var common = require('../util/common'); var util = require('./util'); function getMetaAttrs(meta) { meta = meta && meta.Session; if (!meta) { return {}; } var result = meta.Se...
812
8,088
279
0.98
2026-04-23T06:51:20.287119
true
github_nextapps-de_flexsearch_f35372e0a060b95fc8f34a940624c52557355bfd
JavaScript
nextapps-de
flexsearch
13,675
523
Next-generation full-text search library for Browser and Node.js
[ "elasticsearch", "full-text-search", "fulltext-search", "fuzzy", "fuzzy-search", "javascript", "javascript-library", "nodejs", "open-source", "search", "search-algorithm", "search-engine", "search-in-text", "searching", "searching-algorithms", "web", "web-worker" ]
Apache-2.0
src/compress.js
compress.js
1,654
// COMPILER BLOCK --> import { SUPPORT_CACHE } from "./config.js"; // <-- COMPILER BLOCK let table;// = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+/"; let timer; const cache = new Map(); function toRadix(number, radix = 255) { if(!table){ table = new Array(radix); // the char...
222
1,654
79
0.98
2026-04-23T06:57:09.351046
true
github_zai-org_ChatGLM2-6B_1af24c962943c74199712269e45a94a02a4b2cc5
Python
zai-org
ChatGLM2-6B
15,611
1,816
ChatGLM2-6B: An Open Bilingual Chat LLM | 开源双语对话语言模型
[ "chatglm", "chatglm-6b", "large-language-models", "llm" ]
NOASSERTION
web_demo.py
web_demo.py
4,221
from transformers import AutoModel, AutoTokenizer import gradio as gr import mdtex2html from utils import load_model_on_gpus tokenizer = AutoTokenizer.from_pretrained("THUDM/chatglm2-6b", trust_remote_code=True) model = AutoModel.from_pretrained("THUDM/chatglm2-6b", trust_remote_code=True).cuda() # 多显卡支持,使用下面两行代替上面一行,...
326
4,161
109
0.98
2026-04-17T22:51:03.488530
true
github_farion1231_cc-switch_0944b91d1025e717742eb102102115f21fa7ab8f
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/useSettingsForm.ts
useSettingsForm.ts
5,327
import { useCallback, useEffect, useRef, useState } from "react"; import { useTranslation } from "react-i18next"; import { useSettingsQuery } from "@/lib/query"; import type { Settings } from "@/types"; type Language = "zh" | "en" | "ja"; export type SettingsFormState = Omit<Settings, "language"> & { language: Lang...
461
5,255
172
0.98
2026-04-17T13:18:54.351192
true
github_IBM_MAX-Image-Resolution-Enhancer_81393fce310fae672c9f1eb6a6e06e397aae8e26
Python
IBM
MAX-Image-Resolution-Enhancer
1,041
159
Upscale an image by a factor of 4, while generating photo-realistic details.
[ "ai", "codait", "computer-vision", "docker-image", "ibm", "machine-learning", "machine-learning-models", "neural-network", "tensorflow" ]
Apache-2.0
api/metadata.py
metadata.py
907
# # Copyright 2018-2019 IBM Corp. 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 applicable law...
124
907
27
0.98
2026-04-17T16:33:29.985490
true
github_avelino_awesome-go_680ee332828904690be6aab0aa55098ef0a6d20b
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
pkg/slug/generator_test.go
generator_test.go
882
package slug import "testing" func TestGenerate(t *testing.T) { tests := []struct { name string input string expected string }{ { name: "with spaces", input: "some string with spaces", expected: "some-string-with-spaces", }, { name: "with out any non-literal chars", inpu...
105
880
40
0.98
2026-04-17T06:50:02.833704
true
github_go-gitea_gitea_0a327e333df540c3f00553d6669ddf583ba53854
TypeScript
go-gitea
gitea
54,955
6,587
Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD
[ "bitbucket", "cicd", "devops", "docker-registry-v2", "git", "git-gui", "git-lfs", "git-server", "gitea", "github", "github-actions", "gitlab", "go", "golang", "hacktoberfest", "maven-server", "npm-registry", "self-hosted", "typescript", "vue" ]
MIT
eslint.config.ts
eslint.config.ts
44,965
import arrayFunc from 'eslint-plugin-array-func'; import comments from '@eslint-community/eslint-plugin-eslint-comments'; import deMorgan from 'eslint-plugin-de-morgan'; import github from 'eslint-plugin-github'; import globals from 'globals'; import importPlugin from 'eslint-plugin-import-x'; import playwright from 'e...
2,540
44,965
1,026
0.98
2026-04-17T07:19:30.573912
true
github_mobarski_ask-my-pdf_9e2e2231fff11f041c0cfaa42d068bf449a37f1f
Python
mobarski
ask-my-pdf
597
274
Question answering system for PDF files
[ "gpt3", "openai", "openai-api", "pdf", "qna", "streamlit" ]
MIT
src/css.py
css.py
151
v1 = """ /* feedback checkbox */ .css-18fuwiq { position: relative; padding-top: 6px; } .css-949r0i { position: relative; padding-top: 6px; } """
22
151
13
0.98
2026-04-23T01:18:01.406095
true
github_nearai_ironclaw_6d1087c8d6c0819ea808ce45c478414b2bf04a3e
Rust
nearai
ironclaw
11,845
1,350
IronClaw is OpenClaw inspired implementation in Rust focused on privacy and security
[]
Apache-2.0
src/agent/task.rs
task.rs
7,777
//! Task types for the scheduler. //! //! Tasks are the unit of work that can be scheduled for execution. //! They can represent full LLM-driven jobs, parallel tool batches, //! or background computations. use std::fmt; use std::time::Duration; use async_trait::async_trait; use serde::{Deserialize, Serialize}; use uu...
849
7,777
284
0.98
2026-04-17T14:19:29.503614
true
github_open-webui_open-webui_916c7cd5f97c492c35f4ba3e358d54f79a44d8c9
JavaScript
open-webui
open-webui
133,328
18,916
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
[ "ai", "llm", "llm-ui", "llm-webui", "llms", "mcp", "ollama", "ollama-webui", "open-webui", "openai", "openapi", "rag", "self-hosted", "ui", "webui" ]
NOASSERTION
src/lib/dayjs.js
dayjs.js
2,709
import dayjs from 'dayjs'; // Import all locales import 'dayjs/locale/af'; import 'dayjs/locale/am'; import 'dayjs/locale/ar'; import 'dayjs/locale/az'; import 'dayjs/locale/be'; import 'dayjs/locale/bg'; import 'dayjs/locale/bi'; import 'dayjs/locale/bm'; import 'dayjs/locale/bn'; import 'dayjs/locale/bo'; import 'da...
213
2,709
107
0.98
2026-04-22T14:51:23.701721
true
github_rclone_rclone_782e8988bbf37f86f9f0614cb6c5ebb42bd7cb57
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/mount2/node.go
node.go
15,879
//go:build linux || (darwin && amd64) package mount2 import ( "context" "os" "path" "syscall" fusefs "github.com/hanwen/go-fuse/v2/fs" "github.com/hanwen/go-fuse/v2/fuse" "github.com/rclone/rclone/cmd/mountlib" "github.com/rclone/rclone/fs" "github.com/rclone/rclone/fs/log" "github.com/rclone/rclone/vfs" )...
2,228
15,879
489
0.98
2026-04-17T07:19:01.293758
true
github_farion1231_cc-switch_d6a3aab8d956c52cf2ae9efb2f4f91d054fc60e6
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/constants.ts
constants.ts
445
// Provider 类型常量 export const PROVIDER_TYPES = { GITHUB_COPILOT: "github_copilot", CODEX_OAUTH: "codex_oauth", } as const; // 用量脚本模板类型常量 export const TEMPLATE_TYPES = { CUSTOM: "custom", GENERAL: "general", NEW_API: "newapi", GITHUB_COPILOT: "github_copilot", TOKEN_PLAN: "token_plan", BALANCE: "balance...
45
417
18
0.98
2026-04-17T13:18:44.801780
true
github_pamburus_hl_c2d317b3184bdbfb40c0714a1fd6842da296611f
Rust
pamburus
hl
3,077
63
A fast and powerful log viewer and processor that converts JSON logs or logfmt logs into a clear human-readable format.
[ "cli", "command-line-tool", "hl", "human", "json", "json-log", "json-logging", "json-logs", "log", "log-viewer", "logfmt", "logging", "logs", "rust", "structured-logging", "translates-json-logs", "viewer" ]
MIT
src/themecfg/version.rs
version.rs
5,632
// std imports use std::{ fmt, hash::Hash, str::{self, FromStr}, }; // third-party imports use serde::{Deserialize, Deserializer, Serialize, de::Visitor}; use static_assertions::const_assert; use crate::themecfg::MergeOptions; // relative imports use super::{Error, MergeFlag, MergeFlags, Result}; /// Th...
678
5,632
204
0.98
2026-04-17T19:18:37.674816
true
github_sampsyo_bril_87e6104762c22b5b0a5fdfcd40cbd5998419227e
TypeScript
sampsyo
bril
756
328
an educational compiler intermediate representation
[ "bril", "compiler", "programming-language" ]
MIT
brilck.ts
brilck.ts
11,286
import * as bril from "./bril-ts/bril.ts"; import { BaseSignature, FuncType, OP_SIGS, PolySignature, PolyType, Signature, } from "./bril-ts/types.ts"; import { readStdin, unreachable } from "./bril-ts/util.ts"; /** * The JavaScript types of Bril constant values. */ const CONST_TYPES: { [key: string]: str...
1,583
11,286
478
0.98
2026-04-17T17:08:26.490104
true
github_cert-manager_cert-manager_efbf58105dcd2edb644d3d7f0aca07493670f623
Go
cert-manager
cert-manager
13,754
2,362
Automatically provision and manage TLS certificates in Kubernetes
[ "certificate", "crd", "hacktoberfest", "kubernetes", "letsencrypt", "tls" ]
Apache-2.0
pkg/healthz/healthz.go
healthz.go
2,982
/* Copyright 2020 The cert-manager 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...
353
2,982
92
0.98
2026-04-17T11:16:12.458075
true
github_bigint_hey_9afb345ecad6d49099e9f192bb5da11d72fea784
TypeScript
bigint
hey
29,455
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/attachmentUtils.ts
attachmentUtils.ts
1,689
import { toast } from "sonner"; import generateUUID from "@/helpers//generateUUID"; import type { NewAttachment } from "@/types/misc"; import compressImage from "./compressImage"; const BYTES_IN_MB = 1_000_000; const MAX_UPLOAD_LIMIT = 8 * BYTES_IN_MB; export const validateFileSize = (file: File): boolean => { cons...
186
1,689
65
0.98
2026-04-23T08:20:46.390756
true
github_yuanchenyang_smalldiffusion_f8073ad24282906c1e5801d8bf7e5dab7a7f14ac
Python
yuanchenyang
smalldiffusion
736
56
Simple and readable code for training and sampling from diffusion models
[ "diffusion", "diffusion-model", "diffusion-models" ]
MIT
src/smalldiffusion/model_unet.py
model_unet.py
7,025
# Adapted from PNDM implmentation (https://github.com/luping-liu/PNDM) # which is adapted from DDIM implementation (https://github.com/ermongroup/ddim) import math import torch from einops import rearrange from itertools import pairwise from torch import nn from .model import ( alpha, Attention, ModelMixin, CondSe...
620
7,025
195
0.98
2026-04-22T22:40:30.994811
true
github_xszyou_Fay_88aad4b40596682008d437a71d480ae03b4ca04a
Python
xszyou
Fay
12,704
2,265
fay是一个帮助数字人(2.5d、3d、移动、pc、网页)或大语言模型(openai兼容、deepseek)连通业务系统的agent框架。
[ "ai", "android", "api", "python", "ue5", "unity3d", "wav2lip" ]
GPL-3.0
core/content_db.py
content_db.py
11,481
import sqlite3 import time import threading import functools from utils import util def synchronized(func): @functools.wraps(func) def wrapper(self, *args, **kwargs): with self.lock: return func(self, *args, **kwargs) return wrapper __content_tb = None def new_instance():...
913
10,689
324
0.98
2026-04-17T15:33:22.595021
true
github_nodejs_node_6121923f2f5fdc44637690f94ef55faf28bbec1a
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/punycode.js
punycode.js
12,959
'use strict'; const { isInsideNodeModules, } = internalBinding('util'); if (!isInsideNodeModules()) { process.emitWarning( 'The `punycode` module is deprecated. Please use a userland ' + 'alternative instead.', 'DeprecationWarning', 'DEP0040', ); } /** Highest positive signed 32-bit float value */ const m...
2,020
12,959
456
0.98
2026-04-23T06:16:12.446929
true
github_tach-org_tach_fdc344b766f147d61db22c1c44f799c996212356
Rust
tach-org
tach
2,700
85
A Python tool to visualize + enforce dependencies, using modular architecture 🌎 Open source 🐍 Installable via pip 🔧 Able to be adopted incrementally - ⚡ Implemented with no runtime impact ♾️ Interoperable with your existing systems 🦀 Written in rust
[ "ci", "cli", "code-quality", "config", "dependency-management", "developer-tools", "devops", "framework", "library", "monorepo", "open-source", "package", "productivity", "programming", "python", "rust", "static-code-analysis", "terminal" ]
MIT
src/resolvers/mod.rs
mod.rs
292
pub mod glob; pub mod module; pub mod package; pub mod source_root; pub use module::{ModuleGlob, ModuleResolver, ModuleResolverError}; pub use package::{Package, PackageResolution, PackageResolutionError, PackageResolver}; pub use source_root::{SourceRootResolver, SourceRootResolverError};
27
292
9
0.98
2026-04-17T19:20:41.691779
true
github_prettier_prettier_200edad1004e91d98fb140327521c5cb2c9c1b58
JavaScript
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/config/find-project-root.js
find-project-root.js
898
// Simple version of `find-project-root` // https://github.com/kirstein/find-project-root/blob/master/index.js import * as path from "node:path"; import { DirectorySearcher } from "search-closest"; const DIRECTORIES = [".git", ".hg"]; /** @type {DirectorySearcher} */ let searcher; /** * Find the directory contains...
95
898
32
0.98
2026-04-23T11:43:50.907226
true
github_eythaann_Seelen-UI_60766f445d6de5bf9f65d8f2965b9575d4d89ce5
Rust
eythaann
Seelen-UI
16,375
502
The Fully Customizable Desktop Environment for Windows 10/11.
[ "app-launcher", "desktop-application", "dock", "finder", "multilanguage", "seelen", "seelen-ui", "taskbar", "tauri", "tauri-app", "tiling-window-manager", "toolbar", "tools", "topbar", "wallpaper", "web", "web-technologies", "windows", "windows-11" ]
AGPL-3.0
src/background/tauri_plugins.rs
tauri_plugins.rs
444
use tauri::{Builder, Wry}; pub fn register_plugins(app_builder: Builder<Wry>) -> Builder<Wry> { app_builder .plugin(tauri_plugin_fs::init()) .plugin(tauri_plugin_shell::init()) .plugin(tauri_plugin_dialog::init()) .plugin(tauri_plugin_process::init()) .plugin(tauri_plugin_up...
19
444
13
0.98
2026-04-17T13:50:01.689793
true
github_keystonejs_keystone-classic_03ee897c50118230b7aae5ea7ec3b7c2ffd9c1ef
JavaScript
keystonejs
keystone-classic
14,530
2,175
Node.js CMS and web app framework
[ "cms", "javascript", "keystonejs", "nodejs" ]
MIT
lib/list/updateItem.js
updateItem.js
7,096
var async = require('async'); var listToArray = require('list-to-array'); var evalDependsOn = require('../../fields/utils/evalDependsOn.js'); var MONGO_INDEX_CONSTRAINT_ERROR_REGEXP = /E11000 duplicate key error index\: [^\$]+\$(\w+) dup key\: \{ \: "([^"]+)" \}/; // Adds a validation message to the errors object in...
942
7,096
221
0.98
2026-04-23T06:55:32.506258
true
github_ethereum_go-ethereum_bc373db94f5be6178c9a75293a93520992e0c550
Go
ethereum
go-ethereum
50,986
21,888
Go implementation of the Ethereum protocol
[ "blockchain", "ethereum", "geth", "go", "p2p" ]
LGPL-3.0
cmd/keeper/getpayload_ziren.go
getpayload_ziren.go
1,196
// Copyright 2025 The go-ethereum Authors // This file is part of the go-ethereum library. // // The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License...
184
1,196
32
0.98
2026-04-17T07:21:32.820736
true
github_tulios_kafkajs_2760df7905073c49329af1b864ff19bd919c2124
JavaScript
tulios
kafkajs
3,994
584
A modern Apache Kafka client for node.js
[ "kafka", "kafka-client", "nodejs", "npm-package" ]
MIT
src/utils/sharedPromiseTo.spec.js
sharedPromiseTo.spec.js
1,704
const sharedPromiseTo = require('./sharedPromiseTo') describe('Utils > sharedPromiseTo', () => { let resolvePromise1, rejectPromise1, sharedPromise1, asyncFunction beforeEach(() => { asyncFunction = jest.fn( () => new Promise((resolve, reject) => { resolvePromise1 = resolve r...
165
1,704
56
0.98
2026-04-23T07:42:29.840008
true
github_bigint_hey_77cd2312fff8ec8ed22d2a177eea3c56d0dffe44
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/getAssetLicense.ts
getAssetLicense.ts
1,146
import { type Maybe, MetadataLicenseType } from "@/indexer/generated"; const getAssetLicense = ( licenseId: Maybe<MetadataLicenseType> | undefined ): { helper: string; label: string; } | null => { if (!licenseId) { return null; } switch (licenseId) { case MetadataLicenseType.Cco: return { ...
139
1,146
38
0.98
2026-04-18T01:23:04.222867
true
github_nodejs_node_5922971b9be68b65b1916deccd5de3007d629b9d
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/async_hooks.js
async_hooks.js
8,546
'use strict'; const { ArrayPrototypeIncludes, ArrayPrototypeIndexOf, ArrayPrototypePush, ArrayPrototypeSplice, ArrayPrototypeUnshift, FunctionPrototypeBind, NumberIsSafeInteger, ObjectDefineProperties, ObjectFreeze, ReflectApply, Symbol, } = primordials; const { ERR_ASYNC_CALLBACK, ERR_ASYNC...
808
8,546
297
0.98
2026-04-23T06:15:37.287400
true
github_stellar-deprecated_kelp_443993ac4da1a4fa71e8e19d26ae5c4fb6506048
Go
stellar-deprecated
kelp
1,121
262
Kelp is a free and open-source trading bot for the Stellar DEX and 100+ centralized exchanges
[ "blockchain", "ccxt-rest", "cryptocurrency", "ethereum", "liquidity", "market-maker", "market-making", "stellar", "stellar-lumens", "stellar-network", "trading", "trading-algorithms", "trading-api", "trading-bot", "trading-platform", "trading-strategies", "xlm" ]
NOASSERTION
cmd/root.go
root.go
4,231
package cmd import ( "fmt" "log" "net/http" "os" "strings" "github.com/spf13/cobra" "github.com/stellar/kelp/gui/backend" "github.com/stellar/kelp/support/networking" "github.com/stellar/kelp/support/sdk" "github.com/stellar/kelp/support/utils" ) // build flags var version string var guiVersion string var...
571
4,231
129
0.98
2026-04-17T16:59:49.443927
true
github_HigherOrderCO_Bend_a4ad06e6132cbb227b75829c224ea7135c15c2fa
Rust
HigherOrderCO
Bend
19,331
477
A massively parallel, high-level programming language
[]
Apache-2.0
src/fun/mod.rs
mod.rs
36,695
use crate::{ diagnostics::{Diagnostics, DiagnosticsConfig, TextSpan}, imports::Import, maybe_grow, multi_iterator, ENTRY_POINT, }; use indexmap::{IndexMap, IndexSet}; use interner::global::{GlobalPool, GlobalString}; use itertools::Itertools; use std::{ borrow::Cow, hash::Hash, ops::{Deref, Range}, }; pub ...
4,592
36,695
1,288
0.98
2026-04-17T13:44:11.229767
true
github_SeaQL_sea-orm_e0b33acd3c73e08cbb0486d7435b6245ea8de465
Rust
SeaQL
sea-orm
9,543
693
🐚 A powerful relational ORM for Rust
[ "database", "hacktoberfest", "loco", "mariadb", "mysql", "orm", "postgres", "rust", "sql", "sqlite", "sqlx", "tokio" ]
Apache-2.0
src/tests_cfg/post_tag.rs
post_tag.rs
576
use crate as sea_orm; use sea_orm::entity::prelude::*; #[sea_orm::model] #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)] #[sea_orm(table_name = "post_tag")] pub struct Model { #[sea_orm(primary_key, auto_increment = false)] pub post_id: i32, #[sea_orm(primary_key, auto_increment = false)] pub...
59
576
19
0.98
2026-04-17T14:27:41.875738
true
github_NVIDIA_k8s-device-plugin_1d442acc1135e44b2277623c2d02dff218bcc245
Go
NVIDIA
k8s-device-plugin
3,723
806
NVIDIA device plugin for Kubernetes
[ "kubernetes" ]
Apache-2.0
internal/rm/wsl_devices.go
wsl_devices.go
1,510
/* * Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
227
1,510
47
0.98
2026-04-17T22:28:03.995570
true
github_farion1231_cc-switch_4b70ee1d2447c39de4b7005862edb3c402021301
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/usageRange.ts
usageRange.ts
2,177
import type { UsageRangePreset, UsageRangeSelection } from "@/types/usage"; const DAY_SECONDS = 24 * 60 * 60; const DAY_MS = DAY_SECONDS * 1000; export interface ResolvedUsageRange { startDate: number; endDate: number; } function getStartOfLocalDayDate(nowMs: number): Date { const date = new Date(nowMs); ret...
241
2,165
80
0.98
2026-04-17T13:18:58.325219
true
github_rust-lang_rustlings_8bbdc5851801516c47c7a5dbc10b43c453908270
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/state.rs
state.rs
9,468
use anyhow::{Context, Result}; use crossterm::{ QueueableCommand, style::{ Attribute, Attributes, Color, ResetColor, SetAttribute, SetAttributes, SetForegroundColor, }, terminal, }; use std::{ io::{self, Read, StdoutLock, Write}, sync::mpsc::{Sender, SyncSender, sync_channel}, thread...
643
9,461
304
0.98
2026-04-17T13:16:18.222793
true
github_hashicorp_vault_3a686f987cd0cce7b0e9fee5c35e3f63ee70da4a
Go
hashicorp
vault
35,429
4,637
A tool for secrets management, encryption as a service, and privileged access management
[ "go", "secrets", "vault" ]
NOASSERTION
main_test.go
main_test.go
225
// Copyright IBM Corp. 2016, 2025 // SPDX-License-Identifier: BUSL-1.1 package main // import "github.com/hashicorp/vault" // This file is intentionally empty to force early versions of Go // to test compilation for tests.
32
225
8
0.98
2026-04-17T07:38:07.380604
true
github_pubkey_rxdb_3f2be3e0ca30a0313d680baefbf6b9cdff5473fd
TypeScript
pubkey
rxdb
23,156
1,161
A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/
[ "angular", "browser-database", "couchdb", "crdt", "database", "firebase", "graphql", "indexeddb", "ionic", "local-first", "localstorage", "nodejs", "nosql", "postgres", "pouchdb", "react-native", "realtime", "realtime-database", "rxdb", "sqlite" ]
Apache-2.0
src/types/query-planner.d.ts
query-planner.d.ts
1,214
export type RxQueryPlanKey = string | number | undefined; export type RxQueryPlanerOpts = { startKey: RxQueryPlanKey; endKey: RxQueryPlanKey; /** * True if the first matching document * must also be included into the result set. */ inclusiveStart: boolean; /** * True if the last...
167
1,214
48
0.98
2026-04-23T08:22:12.092819
true
github_harvester_harvester_3c8b596367f10e1cdfd04540f69d7d93b5da09ec
Go
harvester
harvester
4,992
425
Open source hyperconverged infrastructure (HCI) software
[ "harvester", "kubernetes", "virtualization" ]
Apache-2.0
pkg/server/types.go
types.go
8,553
package server import ( "context" "crypto/tls" "fmt" "net/http" "strings" "time" "github.com/rancher/apiserver/pkg/parse" "github.com/rancher/apiserver/pkg/store/apiroot" "github.com/rancher/apiserver/pkg/types" "github.com/rancher/apiserver/pkg/urlbuilder" "github.com/rancher/dynamiclistener" "github.com...
753
8,553
313
0.98
2026-04-17T21:41:06.605631
true
github_jdh-algo_JoyVASA_4a81a44eb22989f4334684471c08d8abddee58c1
Python
jdh-algo
JoyVASA
864
85
Diffusion-based Portrait and Animal Animation
[ "audio-driven-talking-face", "generative-ai", "image-animation", "lip-sync", "portrait-anination", "talking-head" ]
MIT
src/motion_extractor.py
motion_extractor.py
7,144
# coding: utf-8 import torch torch.backends.cudnn.benchmark = True # disable CUDNN_BACKEND_EXECUTION_PLAN_DESCRIPTOR warning import cv2; cv2.setNumThreads(0); cv2.ocl.setUseOpenCL(False) import numpy as np import os import os.path as osp import tyro import subprocess from rich.progress import track from .config.argum...
501
7,137
165
0.98
2026-04-22T22:00:29.015556
true
github_ultraworkers_claw-code_78588c3b37a7d3f9ebf24474698e72b686bd9aae
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/dialogLaunchers.py
dialogLaunchers.py
312
from __future__ import annotations from dataclasses import dataclass @dataclass(frozen=True) class DialogLauncher: name: str description: str DEFAULT_DIALOGS = ( DialogLauncher('summary', 'Launch the Markdown summary view'), DialogLauncher('parity_audit', 'Launch the parity audit view'), )
31
312
16
0.98
2026-04-17T13:13:10.254752
true
github_bootandy_dust_cfb47b0b90cf759b1f042bf2d707c9d181fbfc77
Rust
bootandy
dust
11,588
266
A more intuitive version of du in rust
[]
Apache-2.0
src/progress.rs
progress.rs
5,116
use std::{ collections::HashSet, io::Write, path::Path, sync::{ Arc, RwLock, atomic::{AtomicU8, AtomicUsize, Ordering}, mpsc::{self, RecvTimeoutError, Sender}, }, thread::JoinHandle, time::Duration, }; #[cfg(not(target_has_atomic = "64"))] use portable_atomic::Atomic...
456
5,116
162
0.98
2026-04-17T14:20:58.039260
true
github_recommenders-team_recommenders_cdc57ca2efc737bcdb4dee8a3ba0a347fc098058
Python
recommenders-team
recommenders
21,635
3,314
Best Practices on Recommendation Systems
[ "ai", "artificial-intelligence", "data-science", "deep-learning", "jupyter-notebook", "kubernetes", "machine-learning", "operationalization", "python", "ranking", "rating", "recommendation", "recommendation-algorithm", "recommendation-engine", "recommendation-system", "recommender", ...
MIT
setup.py
setup.py
4,738
# Copyright (c) Recommenders contributors. # Licensed under the MIT License. from os import environ from pathlib import Path from setuptools import setup, find_packages import site import sys import time # Workaround for enabling editable user pip installs site.ENABLE_USER_SITE = "--user" in sys.argv[1:] # Version h...
426
4,738
126
0.98
2026-04-17T06:45:07.964606
true
github_react-dates_react-dates_e0d43f376c580150cf14f87aa7a7eb06af580a77
JavaScript
react-dates
react-dates
12,203
1,683
An easily internationalizable, mobile-friendly datepicker library for the web
[ "calendar", "datepicker", "dates", "react", "react-component", "react-dates" ]
MIT
src/utils/isDayVisible.js
isDayVisible.js
1,704
import moment from 'moment'; import isBeforeDay from './isBeforeDay'; import isAfterDay from './isAfterDay'; import toISOMonthString from './toISOMonthString'; const startCacheOutsideDays = new Map(); const endCacheOutsideDays = new Map(); const startCacheInsideDays = new Map(); const endCacheInsideDays = new Map();...
138
1,704
58
0.98
2026-04-23T05:38:04.797370
true
github_hapijs_hapi_2acd8320ad02c27a387d4cc80f4b210f7fe0c947
JavaScript
hapijs
hapi
14,783
1,344
The Simple, Secure Framework Developers Trust
[ "application", "framework", "hapi", "http", "nodejs" ]
NOASSERTION
lib/response.js
response.js
18,984
'use strict'; const Stream = require('stream'); const Boom = require('@hapi/boom'); const Bounce = require('@hapi/bounce'); const Hoek = require('@hapi/hoek'); const Podium = require('@hapi/podium'); const Streams = require('./streams'); const internals = { events: Podium.validate(['finish', { name: 'peek', sp...
1,660
18,984
752
0.98
2026-04-23T06:53:47.681112
true
github_DATA-DOG_go-sqlmock_852b8f3b0a62d184980c5ccc01fb971decb31eac
Go
DATA-DOG
go-sqlmock
6,542
406
Sql mock driver for golang to test database interactions
[ "database", "go", "golang", "mock", "sql", "sql-driver", "tdd", "testing" ]
NOASSERTION
statement.go
statement.go
244
package sqlmock type statement struct { conn *sqlmock ex *ExpectedPrepare query string } func (stmt *statement) Close() error { stmt.ex.wasClosed = true return stmt.ex.closeErr } func (stmt *statement) NumInput() int { return -1 }
34
244
17
0.98
2026-04-17T18:15:48.997030
true
github_kalil0321_reverse-api-engineer_d061525dffd32bb1ddfb237fc2ffff3a8c94e638
Python
kalil0321
reverse-api-engineer
606
55
Claude engineer that captures traffic, writes documentation and automatically generates API clients. Reverse engineer APIs!
[ "ai", "ai-agents", "api-client", "automation", "claude-code", "har", "llm", "playwright", "reverse-engineering", "scraping" ]
MIT
src/reverse_api/collector.py
collector.py
11,266
import csv import json import logging from datetime import datetime from pathlib import Path from typing import Any from claude_agent_sdk import ( AssistantMessage, ClaudeAgentOptions, ClaudeSDKClient, ResultMessage, TextBlock, ToolResultBlock, ToolUseBlock, ) from .collector_ui import Col...
841
11,266
302
0.98
2026-04-23T04:01:00.457339
true
github_RemoteDebug_remotedebug-ios-webkit-adapter_fa53c056c641f780e583eba0d5057708486fdbe2
TypeScript
RemoteDebug
remotedebug-ios-webkit-adapter
2,738
223
Debug Safari and WebViews on iOS from tools like VS Code and Chrome DevTools
[ "chrome-devtools", "debugger", "devtools", "ios", "protocol-adapter", "remotedebug", "safari" ]
UNKNOWN
src/adapters/adapter.ts
adapter.ts
7,150
// // Copyright (C) Microsoft. All rights reserved. // import * as request from 'request'; import * as http from 'http'; import * as WebSocket from 'ws'; import { EventEmitter } from 'events'; import { spawn, ChildProcess } from 'child_process'; import { ITarget, IAdapterOptions } from './adapterInterfaces'; import { ...
555
7,150
207
0.98
2026-04-18T00:26:20.602709
true