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_streamlit_streamlit_6d28a09ed97c52f6be783db4959f4242a19bcec2
Python
streamlit
streamlit
44,313
4,212
Streamlit — A faster way to build and share data apps.
[ "data-analysis", "data-science", "data-visualization", "deep-learning", "developer-tools", "machine-learning", "python", "streamlit" ]
Apache-2.0
lib/streamlit/user_info.py
user_info.py
26,061
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026) # # 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...
2,703
26,061
701
0.98
2026-04-22T13:32:26.052376
true
github_sharkdp_pastel_d84517df74b4ca83b7610ca54ebf87faaae22fa5
Rust
sharkdp
pastel
6,327
124
A command-line tool to generate, analyze, convert and manipulate colors
[ "cli", "color-converter", "color-space", "colors", "command-line", "rust", "terminal", "tool" ]
Apache-2.0
src/cli/config.rs
config.rs
259
use pastel::ansi::Brush; #[derive(Debug, Clone)] pub struct Config<'p> { pub padding: usize, pub colorpicker_width: usize, pub colorcheck_width: usize, pub colorpicker: Option<&'p str>, pub interactive_mode: bool, pub brush: Brush, }
28
259
12
0.98
2026-04-17T14:50:13.882422
true
github_bigint_hey_d687da4c5a48430b835814b78699a91e5dc1ad3e
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/vite-env.d.ts
vite-env.d.ts
131
/// <reference types="vite/client" /> declare const umami: { track: (event: string, data?: Record<string, unknown>) => void; };
17
131
6
0.98
2026-04-18T01:23:23.550802
true
github_bigint_hey_c4e9b99a787b18891979a626752f39a5cf067a1b
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/escapeHtml.ts
escapeHtml.ts
287
const escapeHtml = (str?: string | null): string => { if (str == null) { return ""; } return String(str) .replace(/&/g, "&amp;") .replace(/</g, "&lt;") .replace(/>/g, "&gt;") .replace(/"/g, "&quot;") .replace(/'/g, "&#39;"); }; export default escapeHtml;
34
287
15
0.98
2026-04-18T01:23:01.644734
true
github_vectordotdev_vector_2fc20b95848d1fd0d29ac82894797eb2cbdce4d5
Rust
vectordotdev
vector
21,666
2,093
A high-performance observability data pipeline.
[ "agent", "cloud-native", "data-transformation", "datadog", "etl", "events", "forwarder", "hacktoberfest", "high-performance", "logs", "metrics", "monitoring", "observability", "pipelines", "rust-lang", "stream-processing", "telemetry", "traces" ]
MPL-2.0
src/internal_events/dnstap.rs
dnstap.rs
742
use metrics::counter; use vector_lib::NamedInternalEvent; use vector_lib::internal_event::{InternalEvent, error_stage, error_type}; #[derive(Debug, NamedInternalEvent)] pub(crate) struct DnstapParseError<E> { pub error: E, } impl<E: std::fmt::Display> InternalEvent for DnstapParseError<E> { fn emit(self) { ...
58
742
26
0.98
2026-04-17T13:39:18.763119
true
github_iced-rs_iced_4a25b7e780120b388cc238f2a7f1575947eaa6c3
Rust
iced-rs
iced
30,227
1,560
A cross-platform GUI library for Rust, inspired by Elm
[ "elm", "graphics", "gui", "interface", "renderer-agnostic", "rust", "toolkit", "user-interface", "widget", "widgets" ]
MIT
core/src/svg.rs
svg.rs
4,185
//! Load and draw vector graphics. use crate::{Color, Radians, Rectangle, Size}; use rustc_hash::FxHasher; use std::borrow::Cow; use std::hash::{Hash, Hasher as _}; use std::path::PathBuf; use std::sync::Arc; /// A raster image that can be drawn. #[derive(Debug, Clone, PartialEq)] pub struct Svg<H = Handle> { ///...
554
4,183
160
0.98
2026-04-17T13:27:03.088002
true
github_bigint_hey_1f10a16b7f302fa1416123715eefbe91aae187d2
TypeScript
bigint
hey
29,463
1,807
Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿
[ "blockchain", "crypto", "dapp", "graphql", "hacktoberfest", "lens-protocol", "nextjs", "react", "social-media", "tailwindcss", "turborepo", "typescript", "vitest", "wagmi", "web3" ]
GPL-3.0
src/types/errors.d.ts
errors.d.ts
276
import type { ApolloError } from "@apollo/client"; import type { ServerParseError } from "@apollo/client/link/http"; import type { ServerError } from "@apollo/client/link/utils"; export type ApolloClientError = | ApolloError | ServerError | ServerParseError | Error;
33
276
10
0.98
2026-04-18T01:23:21.058362
true
github_dani-garcia_vaultwarden_5000869d99c7e0313c2852df62ba29a0f5cb9c0f
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/push.rs
push.rs
11,907
use std::{ sync::LazyLock, time::{Duration, Instant}, }; use reqwest::{ header::{ACCEPT, AUTHORIZATION, CONTENT_TYPE}, Method, }; use serde_json::Value; use tokio::sync::RwLock; use crate::{ api::{ApiResult, EmptyResult, UpdateType}, db::{ models::{AuthRequestId, Cipher, Device, Folder...
1,054
11,907
337
0.98
2026-04-17T13:16:31.812710
true
github_graphql_graphql-js_a249b51c34cb2e39d43af5c3ac440b7f9863a694
TypeScript
graphql
graphql-js
20,323
2,056
A reference implementation of GraphQL for JavaScript
[ "graphql", "graphql-js" ]
MIT
src/jsutils/identityFunc.ts
identityFunc.ts
108
/** * Returns the first argument it receives. */ export function identityFunc<T>(x: T): T { return x; }
18
108
7
0.98
2026-04-18T01:24:46.462733
true
github_denisidoro_navi_8d9e722479d3f6ce22ae39ba7dba8cb563aabfa1
Rust
denisidoro
navi
17,025
547
An interactive cheatsheet tool for the command-line
[ "bash", "cheatsheets", "cli", "command-line", "rust", "shell", "snippet", "snippets", "terminal" ]
Apache-2.0
src/welcome.rs
welcome.rs
603
use crate::parser::Parser; use crate::prelude::*; use crate::structures::fetcher; pub fn populate_cheatsheet(parser: &mut Parser) -> Result<()> { let cheatsheet = include_str!("../docs/examples/cheatsheet/navi.cheat"); let lines = cheatsheet.split('\n').map(|s| Ok(s.to_string())); parser.read_lines(lines,...
62
603
28
0.98
2026-04-17T13:48:34.938341
true
github_spencerwooo_onedrive-vercel-index_439b39f948047d5c00caf7a9b7e5bb6af5c9b01f
JavaScript
spencerwooo
onedrive-vercel-index
3,118
3,443
OneDrive public directory listing, powered by Vercel and Next.js
[ "nextjs", "onedrive", "react", "redis", "tailwindcss", "upstash", "vercel" ]
MIT
i18next-parser.config.js
i18next-parser.config.js
528
const path = require('path') const { i18n, localePath } = require('./next-i18next.config') module.exports = { createOldCatalogs: false, defaultNamespace: 'common', defaultValue: (lng, _ns, key) => (lng === i18n.defaultLocale ? key : ''), keySeparator: false, namespaceSeparator: false, pluralSeparator: '——...
51
520
19
0.98
2026-04-23T10:18:33.407089
true
github_boltdb_bolt_98fafdb47d86b3b9dfe0b865ee8396be2fc53b62
Go
boltdb
bolt
14,629
1,544
An embedded key/value database for Go.
[ "database", "go", "key-value" ]
MIT
bolt_amd64.go
bolt_amd64.go
298
package bolt // maxMapSize represents the largest mmap size supported by Bolt. const maxMapSize = 0xFFFFFFFFFFFF // 256TB // maxAllocSize is the size used when creating array pointers. const maxAllocSize = 0x7FFFFFFF // Are unaligned load/stores broken on this arch? var brokenUnaligned = false
44
298
11
0.98
2026-04-17T10:40:23.317612
true
github_ChromeDevTools_chrome-devtools-mcp_adc5a56968a3f27bb09c9835baa45cf449c9e824
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/version.ts
version.ts
221
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ // If moved update release-please config // x-release-please-start-version export const VERSION = '0.23.0'; // x-release-please-end
27
221
11
0.98
2026-04-23T08:42:56.097581
true
github_kubernetes-sigs_external-dns_0c54e9ec314f3fbdb9b47d8e6167f294ceec5f68
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
source/istio_gateway.go
istio_gateway.go
10,369
/* Copyright 2017 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, ...
913
10,369
287
0.98
2026-04-17T20:17:14.171979
true
github_xo_usql_b8951e86011436f10a044cdc37786748f0a2f026
Go
xo
usql
9,921
386
Universal command-line interface for SQL databases
[ "command-line", "database", "go", "golang", "mariadb", "microsoft-sql-server", "mysql", "oracle", "oracle-database", "postgres", "postgresql", "sql", "sqlite", "sqlite3" ]
MIT
internal/snowflake.go
snowflake.go
190
//go:build (all || most || snowflake) && !no_snowflake package internal // Code generated by gen.go. DO NOT EDIT. import ( _ "github.com/xo/usql/drivers/snowflake" // Snowflake driver )
26
190
10
0.98
2026-04-17T18:09:18.237366
true
github_pathwaycom_pathway_d4bbb6e070a11bb6d226beb47729ceb308bd95c7
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/workload_tracker.rs
workload_tracker.rs
3,403
// Copyright © 2026 Pathway use std::collections::VecDeque; use std::time::{Duration, Instant}; const DOWNSCALE_LOAD_SHARE_THRESHOLD: f64 = 0.25; /// The progress in the computation is done with the repeated `step_or_park` calls. /// Each `Event` contains information about a single call. /// It has three principal d...
307
3,402
107
0.98
2026-04-23T04:40:42.586762
true
github_Chalarangelo_30-seconds-of-code_15d60e58b2b242edd8e35b54770dea0630d41672
JavaScript
Chalarangelo
30-seconds-of-code
127,546
12,477
Coding articles to level up your development skills
[ "astro", "awesome-list", "css", "education", "es6-javascript", "git", "html", "javascript", "learn-to-code", "learning-resources", "nodejs", "programming", "snippets" ]
CC-BY-4.0
src/lib/sitemap.js
sitemap.js
1,326
import fs from 'fs'; import Snippet from '#src/models/snippet.js'; import Collection from '#src/models/collection.js'; import settings from '#src/config/settings.js'; export default class Sitemap { static generate() { const data = `\ <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps...
83
1,326
45
0.98
2026-04-23T06:14:56.528180
true
github_cube-js_cube_67cbeca6bbd32d968fbca438cb8a4c1ba1c78e86
JavaScript
cube-js
cube
19,813
1,995
📊 Cube Core is open-source semantic layer for AI, BI and embedded analytics
[ "agentic-analytics", "agents", "ai", "analytics", "bi", "bigquery", "business-intelligence", "businessintelligence", "conversational-analytics", "cube", "databricks", "embedded-analytics", "headless-bi", "mysql", "postgresql", "rust", "semantic-layer", "snowflake", "sql" ]
NOASSERTION
rollup.config.js
rollup.config.js
4,647
import babel from '@rollup/plugin-babel'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import alias from '@rollup/plugin-alias'; import tsconfigPaths from 'rollup-plugin-tsconfig-paths'; import peerDepsExternal from 'rollup-plugin-peer-deps-external'; import json fr...
347
4,647
193
0.98
2026-04-17T13:43:42.896267
true
github_graphql-nexus_nexus_cc9e5069ee7c7dff0a21b3aa2369e60af94cabc3
TypeScript
graphql-nexus
nexus
3,427
278
Code-First, Type-Safe, GraphQL Schema Construction
[ "graphql", "graphql-nexus", "graphql-schema", "nexus", "typescript" ]
MIT
src/definitions/extendInputType.ts
extendInputType.ts
1,095
import { assertValidName } from 'graphql' import type { GetGen } from '../typegenTypeHelpers' import type { InputDefinitionBlock } from './definitionBlocks' import { NexusTypes, withNexusSymbol } from './_types' export interface NexusExtendInputTypeConfig<TypeName extends string> { type: TypeName definition(t: Inp...
113
1,095
36
0.98
2026-04-18T01:37:09.578191
true
github_lhoyer_DAFormer_e6021f6b041c43f98d5ec4318807354565e4eebc
Python
lhoyer
DAFormer
564
98
[CVPR22] Official Implementation of DAFormer: Improving Network Architectures and Training Strategies for Domain-Adaptive Semantic Segmentation
[ "cvpr2022", "semantic-segmentation", "transformer", "unsupervised-domain-adaptation" ]
NOASSERTION
experiments.py
experiments.py
18,125
# --------------------------------------------------------------- # Copyright (c) 2021-2022 ETH Zurich, Lukas Hoyer. All rights reserved. # Licensed under the Apache License, Version 2.0 # --------------------------------------------------------------- import itertools import logging import math def get_model_base(a...
1,448
18,125
463
0.98
2026-04-22T21:50:57.824291
true
github_boltdb_bolt_1be9f35e3ef85470af3b8d6a3de0587335ca9620
Go
boltdb
bolt
14,629
1,544
An embedded key/value database for Go.
[ "database", "go", "key-value" ]
MIT
cursor.go
cursor.go
11,359
package bolt import ( "bytes" "fmt" "sort" ) // Cursor represents an iterator that can traverse over all key/value pairs in a bucket in sorted order. // Cursors see nested buckets with value == nil. // Cursors can be obtained from a transaction and are valid as long as the transaction is open. // // Keys and value...
1,892
11,359
401
0.98
2026-04-17T10:40:30.536898
true
github_gusye1234_nano-graphrag_70cfde5d715c31e31678f7f898d614fb93e881bb
Python
gusye1234
nano-graphrag
3,799
407
A simple, easy-to-hack GraphRAG implementation
[ "gpt", "gpt-4o", "graphrag", "learning-by-doing", "llm", "rag" ]
MIT
setup.py
setup.py
1,261
import setuptools from setuptools import find_packages with open("readme.md", "r", encoding="utf-8") as fh: long_description = fh.read() vars2find = ["__author__", "__version__", "__url__"] vars2readme = {} with open("./nano_graphrag/__init__.py", encoding="utf-8") as f: for line in f.readlines(): fo...
101
1,261
41
0.98
2026-04-17T23:27:54.396480
true
github_antonioru_beautiful-react-hooks_20d701bcb850a8e9312a8978a90e4db8f02a95c2
TypeScript
antonioru
beautiful-react-hooks
8,364
586
🔥 A collection of beautiful and (hopefully) useful React hooks to speed-up your components and hooks development 🔥
[ "custom-hooks", "front-end", "hooks", "react", "react-components", "react-hooks" ]
MIT
src/useMutableState.ts
useMutableState.ts
706
import { useMemo, useState } from 'react' /** * Returns a reactive value that can be used as a state. */ const useMutableState = <TValue, TProxied extends Record<string | symbol, TValue>>(initialState: TProxied) => { if (typeof initialState !== 'object' || initialState === null) throw new Error('The initial state ...
98
706
23
0.98
2026-04-23T05:53:31.639160
true
github_kgateway-dev_kgateway_62166407ec7ef6b0d1e53033ef36f1a0b88820cb
Go
kgateway-dev
kgateway
5,451
736
The Cloud-Native API Gateway and AI Gateway
[ "api-gateway", "api-management", "cloud-native", "envoy", "envoy-proxy", "grpc", "hybrid-apps", "kubernetes", "kubernetes-ingress-controller", "legacy-apps", "microservices", "serverless" ]
Apache-2.0
pkg/reports/reporter_test.go
reporter_test.go
34,498
package reports_test import ( "context" "fmt" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/utils/ptr" "sigs.k8s.io/controller-runtime/pkg/client" gwv1 "sigs.k8s.io/gateway-api/apis/v1" gwv1a2 "sigs.k8s.io/gateway-api/apis/v1alpha2" . "github.com/onsi/ginkgo/v2" ....
2,450
34,498
1,013
0.98
2026-04-17T21:26:54.777924
true
github_fram-x_FluidTransitions_8942f6ec19d3c9267aef862c12b85c32153bf309
JavaScript
fram-x
FluidTransitions
2,924
190
Fluid Transitions for React Navigation
[ "animation", "react-native", "react-navigation", "shared-element-transition", "transition" ]
MIT
lib/Interpolators/InterpolatorTypes.js
InterpolatorTypes.js
1,190
import { getPositionInterpolator } from './getPositionInterpolator'; import { getScaleInterpolator } from './getScaleInterpolator'; import { getRotationInterpolator } from './getRotationInterpolator'; import { getBorderInterpolator } from './getBorderInterpolator'; import { getBackgroundInterpolator } from './getBackgr...
95
1,190
31
0.98
2026-04-23T14:01:21.038085
true
github_vita-epfl_CrowdNav_041e52b49a10729ab621339b8afb7ab1cc913b54
Python
vita-epfl
CrowdNav
710
184
[ICRA] Crowd-aware Robot Navigation
[ "collision-avoidance", "crowd-navigation", "reinforcement-learning" ]
MIT
setup.py
setup.py
584
from setuptools import setup setup( name='crowdnav', version='0.0.1', packages=[ 'crowd_nav', 'crowd_nav.configs', 'crowd_nav.policy', 'crowd_nav.utils', 'crowd_sim', 'crowd_sim.envs', 'crowd_sim.envs.policy', 'crowd_sim.envs.utils', ], ...
34
584
33
0.98
2026-04-22T20:37:25.132187
true
github_ChatGPTNextWeb_NextChat_6ec3606f34642d35a33167e75d5ff4dfca0e654f
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/bn.ts
bn.ts
33,146
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 bn: PartialLocaleType = { WIP: "শীঘ্রই আসছে...", Error: { Unauth...
2,142
18,946
602
0.98
2026-04-23T08:58:09.870176
true
github_lindb_lindb_7c064e49f9e7b3a706b6a563773af0bbde0854ee
Go
lindb
lindb
3,061
281
LinDB is a scalable, high performance, high availability distributed time series database.
[ "cross-datacenter-native", "database", "distributed-database", "go", "high-performance", "metrics", "monitoring", "timeseries" ]
Apache-2.0
internal/linmetric/gather.go
gather.go
2,577
// Licensed to LinDB under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. LinDB licenses this file to you under // the Apache License, Version 2.0 (the "License"); you may // not use this file except in compli...
320
2,577
108
0.98
2026-04-17T18:25:39.591767
true
github_nerfstudio-project_nerfstudio_3b519289bb6fe834b8ed9a6589ab098a399eb37b
JavaScript
nerfstudio-project
nerfstudio
11,476
1,609
A collaboration friendly studio for NeRFs
[ "3d", "3d-graphics", "3d-reconstruction", "computer-vision", "deep-learning", "gaussian-splatting", "machine-learning", "nerf", "photogrammetry", "pytorch" ]
Apache-2.0
.prettierrc.js
.prettierrc.js
126
module.exports = { trailingComma: 'all', arrowParens: 'always', singleQuote: true, jsxSingleQuote: false, };
12
126
6
0.98
2026-04-22T13:48:52.702667
true
github_baoyachi_shadow-rs_7714c0fe318905da7438ab072de7cda0d4d376e2
Rust
baoyachi
shadow-rs
679
51
A build-time information stored in your rust project.(binary,lib,cdylib,dylib,wasm)
[ "build", "cargo", "cargo-build", "cargo-env", "cargo-lock", "cargo-plugin", "cargo-toml", "cargolock", "compile", "compiled", "compiler", "env", "metadata", "reproducible-build", "reproducible-builds", "rust", "rust-build", "rust-crate", "shadow", "shadow-rs" ]
MIT
src/env.rs
env.rs
18,772
use crate::build::*; use crate::date_time::now_date_time; use crate::env::dep_source_replace::filter_cargo_tree; use crate::err::SdResult; use crate::{Format, Shadow}; use is_debug::build_channel; use std::collections::BTreeMap; use std::env; use std::env as std_env; use std::process::Command; #[derive(Default, Debug)...
1,803
18,735
506
0.98
2026-04-17T17:08:55.610088
true
github_k8sgpt-ai_k8sgpt_2be912b4762eb8ce13f646927f14cac754a9ead9
Go
k8sgpt-ai
k8sgpt
7,675
979
Giving Kubernetes Superpowers to everyone
[ "ai", "devops", "kubernetes", "llama", "openai", "sre", "tooling" ]
Apache-2.0
cmd/filters/add.go
add.go
2,790
/* Copyright 2023 The K8sGPT 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...
334
2,790
93
0.98
2026-04-17T20:24:03.503740
true
github_benrugg_AI-Render_70492dc31ecc10618ce067c4a6b79cb3b0a40e7f
Python
benrugg
AI-Render
1,205
93
Stable Diffusion in Blender
[ "ai", "blender-addon", "stable-diffusion" ]
MIT
addon_updater.py
addon_updater.py
64,081
# ##### BEGIN GPL LICENSE BLOCK ##### # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distrib...
5,453
64,081
1,745
0.98
2026-04-17T16:28:28.863450
true
github_huggingface_speech-to-speech_8f5e7eef06d1c88dc6992026c1c1c536da4d5c48
Python
huggingface
speech-to-speech
4,677
549
Build local voice agents with open-source models
[ "ai", "assistant", "language-model", "machine-learning", "python", "speech", "speech-synthesis", "speech-to-text", "speech-translation" ]
Apache-2.0
cancel_scope.py
cancel_scope.py
1,969
class CancelScope: """Unified cancellation signal for the speech-to-speech pipeline. Uses a generation counter so pipeline threads (LLM, TTS) can detect cancellation without brief-pulse timing games, and an internal ``discarding`` flag so the async send loop can drop stale output. Thread safety: o...
237
1,969
54
0.98
2026-04-22T17:35:16.870834
true
github_garmeeh_next-seo_ab1312ce5bf82cd73a64fab482f40b28628958fb
TypeScript
garmeeh
next-seo
8,371
436
Next SEO is a plug in that makes managing your SEO easier in Next.js projects.
[ "hacktoberfest", "hacktoberfest-accepted", "json-ld", "nextjs", "react", "seo", "typescript" ]
MIT
src/types/common.types.ts
common.types.ts
11,734
// Base Schema.org types (e.g., Thing, Person) // This file will contain common TypeScript definitions based on Schema.org. export interface Thing { name?: string; description?: string; url?: string; image?: string; } export interface ImageObject { "@type": "ImageObject"; url: string; width?: number; ...
1,018
11,734
451
0.98
2026-04-23T09:51:37.188924
true
github_samchon_nestia_84049e59e160f4d15f8d810d243047a8c5e4d592
JavaScript
samchon
nestia
2,142
124
NestJS Helper + AI Chatbot Development
[ "agent", "ai", "api", "class-validator", "decorator", "hacktoberfest", "large-language-model", "llm", "llm-function-calling", "nestjs", "rag", "retrieval-augmented-generation", "sdk", "swagger", "trpc", "typescript", "typia", "validator" ]
MIT
prettier.config.js
prettier.config.js
502
module.exports = { // DEFAULT CONFIGURATIONS parser: "typescript", printWidth: 80, semi: true, tabWidth: 2, trailingComma: "all", // PLUG-IN CONFIGURATIONS plugins: [ require.resolve("@trivago/prettier-plugin-sort-imports"), require.resolve("prettier-plugin-jsdoc"), ], importOrder: ["<THIRD...
37
502
19
0.98
2026-04-17T18:08:16.775427
true
github_gwen001_pentest-tools_39d4ce01be039f9cb2980081a7c0f134337231b6
JavaScript
gwen001
pentest-tools
3,288
795
A collection of custom security tools for quick needs.
[ "audit", "bash", "bugbounty", "bugbountytips", "enumeration", "hacking", "nmap", "pentesting", "php", "python", "recon", "sectools", "security", "security-tools" ]
UNKNOWN
node-uuid.js
node-uuid.js
346
const UuidEncoder = require('uuid-encoder'); // Create Base 36 encoder const encoder = new UuidEncoder('base36'); // Encode an UUID //const encodedUuid = encoder.encode('38b9823d-fa1a-48e7-91fc-ee16ad091cf2'); //console.log(encodedUuid); // Decode an encoded UUID //const decodedUuid = encoder.decode(encodedUuid); //...
33
346
13
0.98
2026-04-18T00:45:45.186266
true
github_kwhitley_itty-router_a090567ab6ff6253c2631ed911fb8373f376d377
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/types/ErrorFormatter.ts
ErrorFormatter.ts
231
interface ErrorLike extends Error { status?: number [any: string]: any } type ErrorBody = string | object export interface ErrorFormatter { (statusCode?: number, body?: ErrorBody): Response (error: ErrorLike): Response }
30
231
12
0.98
2026-04-17T18:08:37.980151
true
github_mongodb_mongo-go-driver_a6272fa332487135a82cb4ba666899f74f6c111b
Go
mongodb
mongo-go-driver
8,518
923
The Official Golang driver for MongoDB
[ "database", "driver", "go", "golang", "golang-library", "mongodb" ]
Apache-2.0
internal/errutil/join_test.go
join_test.go
6,834
// Copyright (C) MongoDB, Inc. 2023-present. // // 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 package errutil import ( "context" "errors" "f...
820
6,834
244
0.98
2026-04-17T18:12:17.165281
true
github_parse-community_parse-server_97604039c5a2f1693154766fe4475d49923ef50a
TypeScript
parse-community
parse-server
21,382
4,819
Parse Server for Node.js / Express
[ "baas", "backend", "file-storage", "graphql", "graphql-api", "graphql-relay", "graphql-server", "hacktoberfest", "mbaas", "mongodb", "nodejs", "notifications", "object-storage", "parse-platform", "parse-server", "postgres", "relay", "rest-api" ]
Apache-2.0
src/logger.ts
logger.ts
899
'use strict'; import defaults from './defaults'; import { WinstonLoggerAdapter } from './Adapters/Logger/WinstonLoggerAdapter'; import { LoggerController } from './Controllers/LoggerController'; // Used for Separate Live Query Server function defaultLogger() { const options = { logsFolder: defaults.logsFolder, ...
97
899
37
0.98
2026-04-23T06:47:41.361236
true
github_yvann-ba_Robby-chatbot_19edbcc7b0ccbd8584da3ce2967d436cb4e541b1
Python
yvann-ba
Robby-chatbot
813
289
AI chatbot 🤖 for chat with CSV, PDF, TXT files 📄 and YTB videos 🎥 | using Langchain🦜 | OpenAI | Streamlit ⚡
[ "ai", "chatbot", "gpt-4", "langchain", "nlp", "openai", "streamlit" ]
Apache-2.0
src/modules/chatbot.py
chatbot.py
2,099
import streamlit as st from langchain_openai import ChatOpenAI from langchain_classic.chains import ConversationalRetrievalChain from langchain_core.prompts import PromptTemplate from langchain_community.callbacks import get_openai_callback class Chatbot: def __init__(self, model_name, temperature, vectors): ...
201
2,099
56
0.98
2026-04-23T00:46:36.540055
true
github_mikefarah_yq_71a289ca4a1a47fe6daa7098b6e211009c27d76f
Go
mikefarah
yq
15,239
759
yq is a portable command-line YAML, JSON, XML, CSV, TOML, HCL and properties processor
[ "bash", "cli", "csv", "devops-tools", "golang", "hcl", "json", "portable", "properties", "splat", "terraform", "toml", "xml", "yaml", "yaml-processor" ]
MIT
cmd/unwrap_flag.go
unwrap_flag.go
743
package cmd import ( "strconv" "github.com/spf13/pflag" ) type boolFlag interface { pflag.Value IsExplicitlySet() bool IsSet() bool } type unwrapScalarFlagStrc struct { explicitlySet bool value bool } func newUnwrapFlag() boolFlag { return &unwrapScalarFlagStrc{value: true} } func (f *unwrapScalar...
89
743
47
0.98
2026-04-17T10:35:07.226069
true
github_pathwaycom_pathway_e62ae4ece8dafb2c6228a186d9e26a7eac468a0d
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/postgres.rs
postgres.rs
100,052
use itertools::Itertools; use log::{error, info, warn}; use serde_json::Value as JsonValue; use std::collections::HashMap; use std::collections::HashSet; use std::sync::Arc; use std::time::Duration; use native_tls::Error as NativeTlsError; use native_tls::{Certificate, TlsConnector}; use ndarray::ArrayD; use ordered_f...
7,586
100,032
2,663
0.98
2026-04-23T04:40:33.235798
true
github_adam-mcdaniel_sage_da7964925027ac6cfa9b521f15a1e5368dec0e1b
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/vm/std.rs
std.rs
15,870
//! The standard instructions of the virtual machine are defined here. //! //! ## Purpose of the Standard Instructions //! //! Standard instructions are instructions that *should* be implemented for //! every target possible. Standard instructions should only not be implemented //! for targets like physical hardware, w...
1,856
15,870
401
0.98
2026-04-17T17:14:59.297039
true
github_PrismarineJS_mineflayer_b6a159c430dc5219749c5a4af416c8a08d872212
JavaScript
PrismarineJS
mineflayer
6,928
1,258
Create Minecraft bots with a powerful, stable, and high level JavaScript API.
[ "bot", "minecraft", "minecraft-api", "minecraft-bot", "network", "nodejs" ]
MIT
lib/plugins/team.js
team.js
2,307
module.exports = inject // TODO: apply this to all versions and rename scoreboard_team -> teams in minecraft-data const TEAM_MODES = ['add', 'remove', 'change', 'join', 'leave'] function inject (bot) { const Team = require('../team')(bot.registry) const teams = {} function teamHandler (packet) { const { te...
199
2,307
91
0.98
2026-04-23T07:17:08.967152
true
github_seratch_ChatGPT-in-Slack_42190d45af504f3cd19f4d3667d419a420463ee2
Python
seratch
ChatGPT-in-Slack
510
186
Swift demonstration of how to build a Slack app that enables end-users to interact with a ChatGPT bot
[ "ai", "aws", "chatbot", "chatbots", "chatgpt", "lambda-functions", "openai", "productivity", "productivity-tools", "python", "python3", "serverless", "slack" ]
MIT
app/openai_constants.py
openai_constants.py
7,373
MAX_TOKENS = 1024 GPT_3_5_TURBO_MODEL = "gpt-3.5-turbo" GPT_3_5_TURBO_0301_MODEL = "gpt-3.5-turbo-0301" GPT_3_5_TURBO_0613_MODEL = "gpt-3.5-turbo-0613" GPT_3_5_TURBO_1106_MODEL = "gpt-3.5-turbo-1106" GPT_3_5_TURBO_0125_MODEL = "gpt-3.5-turbo-0125" GPT_3_5_TURBO_16K_MODEL = "gpt-3.5-turbo-16k" GPT_3_5_TURBO_16K_0613_MOD...
563
7,373
199
0.98
2026-04-23T01:22:45.814383
true
github_quantumsheep_sshs_4ab64d1d25bdbf31a07936e4438aa29561380382
Rust
quantumsheep
sshs
1,490
55
Terminal user interface for SSH
[ "cli", "command-line-tool", "ssh", "tui" ]
MIT
src/ssh_config/host_entry.rs
host_entry.rs
2,362
use strum_macros; /// List from <https://man7.org/linux/man-pages/man5/ssh_config.5.html> #[derive(Debug, strum_macros::Display, strum_macros::EnumString, Eq, PartialEq, Hash, Clone)] #[strum(ascii_case_insensitive)] pub enum EntryType { Unknown(String), Host, Match, AddKeysToAgent, AddressFamily, ...
121
2,362
110
0.98
2026-04-17T19:29:55.622484
true
github_baoyachi_shadow-rs_14700c19eade8409ba85d1f18a9315ca388b580e
Rust
baoyachi
shadow-rs
679
51
A build-time information stored in your rust project.(binary,lib,cdylib,dylib,wasm)
[ "build", "cargo", "cargo-build", "cargo-env", "cargo-lock", "cargo-plugin", "cargo-toml", "cargolock", "compile", "compiled", "compiler", "env", "metadata", "reproducible-build", "reproducible-builds", "rust", "rust-build", "rust-crate", "shadow", "shadow-rs" ]
MIT
src/lib.rs
lib.rs
8,850
#![doc(html_logo_url = "https://raw.githubusercontent.com/baoyachi/shadow-rs/master/shadow-rs.png")] //! `shadow-rs`: Build-time information stored in your Rust project (binary, lib, cdylib, dylib). //! //! `shadow-rs` allows you to access properties of the build process and environment at runtime, including: //! //! *...
1,057
8,734
225
0.98
2026-04-17T17:08:57.741717
true
github_rustdesk_rustdesk_75d16ff925265f7d98822f8ae6aac7f4f2703610
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/cn.rs
cn.rs
44,561
lazy_static::lazy_static! { pub static ref T: std::collections::HashMap<&'static str, &'static str> = [ ("Status", "状态"), ("Your Desktop", "你的桌面"), ("desk_tip", "你的桌面可以通过下面的 ID 和密码访问。"), ("Password", "密码"), ("Ready", "就绪"), ("Established", "已建立"), ("connecting...
2,680
33,241
748
0.98
2026-04-17T13:14:24.370147
true
github_roboflow_rf-detr_bfad5c24b1fd0b3a1ec9c9cf3dae4ad92c447094
Python
roboflow
rf-detr
6,456
782
[ICLR 2026] RF-DETR is a real-time object detection and segmentation model architecture developed by Roboflow, SOTA on COCO, designed for fine-tuning.
[ "computer-vision", "detr", "instance-segmentation", "machine-learning", "object-detection", "rf-detr", "sota" ]
Apache-2.0
src/rfdetr/inference.py
inference.py
4,810
# ------------------------------------------------------------------------ # RF-DETR # Copyright (c) 2025 Roboflow. All Rights Reserved. # Licensed under the Apache License, Version 2.0 [see LICENSE for details] # ------------------------------------------------------------------------ """ModelContext and model-context...
461
4,810
123
0.98
2026-04-22T18:21:58.765996
true
github_reactstrap_reactstrap_2dfd0834821e924751a757ef0ce8e8c5620ea676
JavaScript
reactstrap
reactstrap
10,527
1,288
Simple React Bootstrap 5 components
[ "bootstrap", "components", "hacktoberfest", "javascript", "react", "reactstrap", "ui" ]
MIT
src/ToastHeader.js
ToastHeader.js
2,014
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules, tagPropType } from './utils'; const propTypes = { tag: tagPropType, icon: PropTypes.oneOfType([PropTypes.string, PropTypes.node]), wrapTag: tagPropType, toggle: PropTypes.func, classN...
175
2,014
90
0.98
2026-04-23T05:44:28.092603
true
github_bigint_hey_85ab1638e231aa2323535dea6a573e8b965ab2c4
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/getFileFromDataURL.ts
getFileFromDataURL.ts
676
const getFileFromDataURL = ( dataUrl: string, fileName: string, callback: (file: File) => void ) => { const img = new Image(); img.crossOrigin = "Anonymous"; img.src = dataUrl; img.onload = () => { const canvas = document.createElement("canvas"); const ctx = canvas.getContext("2d"); canvas.wi...
84
676
30
0.98
2026-04-18T01:23:06.358275
true
github_blueedgetechno_win11React_e3b6480971300b3d0da2063b18b0e9cd5bdc8dfb
JavaScript
blueedgetechno
win11React
9,663
1,207
Windows 11 in React 💻🌈⚡
[ "css", "hacktoberfest", "hacktoberfest2022", "javascript", "react", "reactjs", "redux", "website", "windows", "windows-11" ]
CC0-1.0
src/reducers/menu.js
menu.js
5,397
const defState = { hide: true, top: 80, left: 360, opts: "desk", attr: null, dataset: null, data: { desk: { width: "310px", secwid: "200px", }, task: { width: "220px", secwid: "120px", ispace: false, // show the space for icons in menu }, app: { widt...
511
5,397
273
0.98
2026-04-23T05:47:27.327959
true
github_mswjs_msw_651b7e54c87a7af61f8f48e946900093120b6f6e
JavaScript
mswjs
msw
17,848
615
Industry standard API mocking for JavaScript.
[ "api", "api-mocking", "devtools", "mock", "mock-service-worker", "mocking", "mocking-framework", "mocking-library", "msw", "mswjs", "service-worker" ]
MIT
commitlint.config.js
commitlint.config.js
183
module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'body-max-line-length': [0, 'always', Infinity], 'footer-max-line-length': [1, 'always'], }, }
16
183
8
0.98
2026-04-17T17:54:31.455835
true
github_directus_directus_37089b6a434a285ad1130c8e22e1ab1644a70ac3
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/mailer.test.ts
mailer.test.ts
1,909
import { afterEach, beforeEach, describe, expect, test, vi } from 'vitest'; import getMailer from './mailer.js'; // Mock the dependencies vi.mock('@directus/env'); vi.mock('./utils/get-config-from-env.js'); // Mock useEnv const mockUseEnv = vi.fn(); vi.mocked(await import('@directus/env')).useEnv = mockUseEnv; // Mo...
177
1,909
86
0.98
2026-04-23T07:57:59.533235
true
github_google_zx_08953088b3925db58990336e1e7bdcba7a36afdb
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/globals-jsr.ts
globals-jsr.ts
650
// 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 ...
103
650
17
0.98
2026-04-23T06:18:07.444109
true
github_alibaba_sentinel-golang_6803d23f5f5effadd42efee993e6f54401ed510d
Go
alibaba
sentinel-golang
2,950
453
Sentinel Go enables reliability and resiliency for Go microservices
[ "cloud-native", "go", "golang", "microservice", "microservices", "middleware", "rate-limiting", "resiliency" ]
Apache-2.0
core/flow/rule.go
rule.go
6,608
// Copyright 1999-2020 Alibaba Group Holding Ltd. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable ...
727
6,608
172
0.98
2026-04-18T00:58:08.906223
true
github_vectordotdev_vector_6d6bb408edc5f3f7886bb23e70e87f817e1b9523
Rust
vectordotdev
vector
21,666
2,093
A high-performance observability data pipeline.
[ "agent", "cloud-native", "data-transformation", "datadog", "etl", "events", "forwarder", "hacktoberfest", "high-performance", "logs", "metrics", "monitoring", "observability", "pipelines", "rust-lang", "stream-processing", "telemetry", "traces" ]
MPL-2.0
src/internal_events/fluent.rs
fluent.rs
1,141
use metrics::counter; use vector_lib::NamedInternalEvent; use vector_lib::internal_event::{InternalEvent, error_stage, error_type}; use crate::sources::fluent::DecodeError; #[derive(Debug, NamedInternalEvent)] pub struct FluentMessageReceived { pub byte_size: u64, } impl InternalEvent for FluentMessageReceived {...
92
1,141
41
0.98
2026-04-17T13:39:22.924339
true
github_jdx_mise_f57cb33fdeb4c30adbea2e164d2992c43f346cd9
Rust
jdx
mise
26,796
1,060
dev tools, env vars, task runner
[]
MIT
src/build_time.rs
build_time.rs
333
use chrono::{DateTime, FixedOffset}; use std::sync::LazyLock as Lazy; pub mod built_info { include!(concat!(env!("OUT_DIR"), "/built.rs")); } pub static BUILD_TIME: Lazy<DateTime<FixedOffset>> = Lazy::new(|| DateTime::parse_from_rfc2822(built_info::BUILT_TIME_UTC).unwrap()); pub static TARGET: &str = built_i...
27
333
12
0.98
2026-04-17T13:30:42.504034
true
github_pubkey_rxdb_2183d2f87b549b4a4632e4c765fc40ca9ee22f2f
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/couchdb.d.ts
couchdb.d.ts
6,524
import type { MangoQuery, MangoQuerySelector, MangoQuerySortPart } from './rx-query.d.ts'; import type { BulkWriteRow } from './rx-storage.d.ts'; /** * This file contains types that are CouchDB specific */ export interface CouchReplicationOptions { live?: boolean; retry?: boolean; filter?: F...
733
6,524
294
0.98
2026-04-23T08:22:10.952025
true
github_huggingface_transformers_ebe1a2cbd3c2819276a0cd0d6105caa5a6397f0d
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/time_series_utils.py
time_series_utils.py
7,480
# Copyright 2023 The HuggingFace Inc. team. # Copyright 2018 Amazon.com, Inc. or its affiliates. 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...
760
7,480
226
0.98
2026-04-22T13:18:06.446103
true
github_trpc_trpc_fda2bb7369cc2a9eb21be6f42a01f06d8a6fae3e
TypeScript
trpc
trpc
40,071
1,590
🧙‍♀️ Move Fast and Break Nothing. End-to-end typesafe APIs made easy.
[ "api", "next", "nextjs", "prisma", "react", "typescript" ]
MIT
vitest.config.ts
vitest.config.ts
2,083
/* eslint-disable @typescript-eslint/no-unsafe-argument */ /* eslint-disable @typescript-eslint/no-unsafe-member-access */ /* eslint-disable @typescript-eslint/no-unsafe-assignment */ import { existsSync, readdirSync, readFileSync } from 'node:fs'; import path, { join } from 'node:path'; import { fileURLToPath } from '...
196
2,083
73
0.98
2026-04-23T07:57:37.155606
true
github_rust-lang_rust_37dd226b73ce818da9be5883f421e8fc3c5276b5
Rust
rust-lang
rust
112,076
14,769
Empowering everyone to build reliable and efficient software.
[ "compiler", "language", "rust" ]
Apache-2.0
src/rustdoc-json-types/lib.rs
lib.rs
71,760
//! Rustdoc's JSON output interface //! //! These types are the public API exposed through the `--output-format json` flag. The [`Crate`] //! struct is the root of the JSON blob and all other items are contained within. //! //! # Feature Flags //! //! ## `rustc-hash` //! //! We expose a `rustc-hash` feature, disabled b...
8,804
71,748
1,759
0.98
2026-04-17T13:13:54.413334
true
github_ZHangZHengEric_Sage_ced3e33bb08d2b653db38e316f617a4df0bd1164
JavaScript
ZHangZHengEric
Sage
1,218
93
Multi-Agent System Framework For Complex Tasks
[ "agents", "ai", "llm", "manus", "muilt-agents", "workflow" ]
MIT
app/chrome-extension/service-worker.js
service-worker.js
44,781
const DEFAULT_CANDIDATE_BASES = [ "http://127.0.0.1:18080", "http://localhost:18080", "http://127.0.0.1:18081", "http://localhost:18081", "http://127.0.0.1:18082", "http://localhost:18082", "http://127.0.0.1:8080", "http://localhost:8080", "http://127.0.0.1:8000", "http://localhost:8000", "http://...
4,528
44,749
1,248
0.98
2026-04-17T16:27:58.886894
true
github_pubkey_rxdb_289215efdf5b6bcdf72289d93f5986879910cb88
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/overwritable.ts
overwritable.ts
1,483
/** * functions that can or should be overwritten by plugins * IMPORTANT: Do not import any big stuff from RxDB here! * An 'overwritable' can be used inside WebWorkers for RxStorage only, * and we do not want to have the full RxDB lib bundled in them. */ import type { DeepReadonly } from './types/util.d.ts'; exp...
205
1,483
42
0.98
2026-04-23T08:21:58.095958
true
github_welldone-software_why-did-you-render_ba6204c5852c39d5c8586e9855ca838dcc0eb255
JavaScript
welldone-software
why-did-you-render
12,457
224
why-did-you-render by Welldone Software monkey patches React to notify you about potentially avoidable re-renders. (Works with React Native as well.)
[ "component", "hooks-tracking", "performance", "pure", "purecomponent", "react", "react-native", "render", "tool", "update" ]
MIT
rollup.config.js
rollup.config.js
1,056
import fs from 'fs'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; import license from 'rollup-plugin-license'; const loadJSON = (path) => JSON.parse(fs.readFileSync(new URL(path, import.meta.url))); const pkg = loadJSON('....
104
1,056
49
0.98
2026-04-23T04:57:42.097407
true
github_OpenMind_OM1_72c49fd6239fc406dc96bcf05adf7f322e28d7c3
Python
OpenMind
OM1
2,764
971
Modular AI runtime for robots
[ "llm", "multiagent", "robotics", "ros2", "zenoh" ]
MIT
src/backgrounds/orchestrator.py
orchestrator.py
3,560
import asyncio import logging import threading from concurrent.futures import ThreadPoolExecutor from backgrounds.base import Background from runtime.config import RuntimeConfig class BackgroundOrchestrator: """ Manages and coordinates background tasks for the application. Handles concurrent execution o...
293
3,560
108
0.98
2026-04-22T15:35:30.230645
true
github_rust-lang_rustlings_b969c69ad24da1f0fe565e0d45b06b40f7b511f0
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/exercise.rs
exercise.rs
6,982
use anyhow::Result; use crossterm::{ QueueableCommand, style::{Attribute, Color, ResetColor, SetAttribute, SetForegroundColor}, }; use std::io::{self, StdoutLock, Write}; use crate::{ cmd::CmdRunner, term::{self, CountedWrite, file_path, terminal_file_link, write_ansi}, }; /// The initial capacity of ...
696
6,975
219
0.98
2026-04-17T13:16:13.265272
true
github_farion1231_cc-switch_6ae480f5e79a411b080eb3a92baf222d5f16b39f
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/useGlobalProxy.ts
useGlobalProxy.ts
2,579
/** * 全局出站代理 React Hooks * * 提供获取、设置和测试全局代理的 React Query hooks。 */ import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query"; import { toast } from "sonner"; import { useTranslation } from "react-i18next"; import { getGlobalProxyUrl, setGlobalProxyUrl, testProxyUrl, getUpstreamProxyStat...
247
2,437
110
0.98
2026-04-17T13:18:50.162192
true
github_apecloud_kubeblocks_ae9f9a8ac2702301ef1907504d98bb83b13de102
Go
apecloud
kubeblocks
3,013
264
KubeBlocks is a Kubernetes Operator designed to manage a variety of databases and streaming systems, including MySQL, PostgreSQL, MongoDB, Redis, RabbitMQ, RocketMQ, and more, within Kubernetes environments.
[ "databases", "elasticsearch", "elasticsearch-operator", "helm", "k8s", "kubernetes", "mongodb", "mongodb-operator", "mysql", "mysql-operator", "operator", "postgresql", "postgresql-operator", "rabbitmq", "rabbitmq-operator", "redis", "redis-operator", "rocketmq", "rocketmq-operat...
AGPL-3.0
pkg/operations/restore.go
restore.go
11,365
/* Copyright (C) 2022-2025 ApeCloud Co., Ltd This file is part of KubeBlocks project This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any l...
1,096
11,365
305
0.98
2026-04-17T22:45:01.597304
true
github_wasm-bindgen_wasm-pack_b5ef6401be6f605e9207594e0fda16e06be7d060
Rust
wasm-bindgen
wasm-pack
7,144
478
📦✨ your favorite rust -> wasm workflow tool!
[ "cli", "npm", "package", "registry", "rust", "rust-wasm", "wasm" ]
Apache-2.0
src/install/os.rs
os.rs
903
use anyhow::{bail, Result}; use std::fmt; use crate::target; /// An enum representing supported operating systems #[derive(Clone, PartialEq, Eq)] pub enum Os { /// Linux operating system Linux, /// Macos operating system MacOS, /// Windows operating system Windows, } impl Os { /// Get the...
110
903
42
0.98
2026-04-17T14:41:07.830638
true
github_farion1231_cc-switch_c595c1cf72b41ae61fdb0ec3065b7345e20649de
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/types/usage.ts
usage.ts
2,911
// 使用统计相关类型定义 export interface TokenUsage { inputTokens: number; outputTokens: number; cacheReadTokens: number; cacheCreationTokens: number; } export interface RequestLog { requestId: string; providerId: string; providerName?: string; appType: string; model: string; requestModel?: string; costMu...
280
2,891
139
0.98
2026-04-17T13:19:01.194161
true
github_intuitem_ciso-assistant-community_1321a4834eaec5d169e586546380fa7695e16bff
JavaScript
intuitem
ciso-assistant-community
3,963
691
CISO Assistant is a one-stop-shop GRC platform for Risk Management, AppSec, Compliance & Audit, TPRM, Privacy, and Reporting. It supports 130+ global frameworks with automatic control mapping, including ISO 27001, NIST CSF, SOC 2, CIS, PCI DSS, NIS2, DORA, GDPR, HIPAA, CMMC, and more.
[ "audit", "automation", "bsi", "cis", "compliance", "cybersecurity", "dora", "ebios-rm", "gdpr", "grc", "isms", "iso27001", "llm", "mcp", "nis2", "nist", "quantification", "risk-management", "security", "soc2" ]
NOASSERTION
.eslintrc.js
.eslintrc.js
380
{ "rules": { "@typescript-eslint/no-unused-vars": [ "error", { "args": "all", "argsIgnorePattern": "^_", "caughtErrors": "all", "caughtErrorsIgnorePattern": "^_", "destructuredArrayIgnorePattern": "^_", "varsIgnorePattern": "^_", ...
25
380
16
0.98
2026-04-17T23:27:43.690642
true
github_vi_websocat_4a0966e5829af558e6befbdd1a07191e0a94ccfb
Rust
vi
websocat
8,460
324
Command-line client for WebSockets, like netcat (or curl) for ws:// with advanced socat-like functions
[ "cli", "command-line", "command-line-tool", "curl", "netcat", "proxy", "rfc-6455", "socat", "websocket-client", "websocket-server", "websockets" ]
MIT
src/ws_client_peer.rs
ws_client_peer.rs
8,327
extern crate hyper; extern crate websocket; use self::websocket::client::r#async::ClientNew; use self::websocket::stream::r#async::Stream as WsStream; use self::websocket::ClientBuilder; use futures::future::Future; use std::net::SocketAddr; use std::rc::Rc; use self::websocket::client::Url; use super::{box_up_err,...
722
8,327
251
0.98
2026-04-17T14:31:30.811870
true
github_axios_axios_714b6644d1b646c64322d0bf7c637fc905ac46d2
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/defaults/transitional.js
transitional.js
160
'use strict'; export default { silentJSONParsing: true, forcedJSONParsing: true, clarifyTimeoutError: false, legacyInterceptorReqResOrdering: true, };
14
160
9
0.98
2026-04-23T06:16:48.747013
true
github_AliyunContainerService_pouch_893164701efc977391dc5e0dee0ab0fe4e8222b1
Go
AliyunContainerService
pouch
4,655
940
An Efficient Enterprise-class Container Engine
[ "cloud-native", "containers", "efficiency", "go", "isolation", "kubernetes", "oci", "package", "security" ]
Apache-2.0
pkg/netutils/interface.go
interface.go
11,728
package netutils import ( "bufio" "encoding/hex" "fmt" "io" "net" "os" "strings" "github.com/alibaba/pouch/pkg/exec" "github.com/golang/glog" "github.com/pkg/errors" ) // AddressFamily is the ip address type. type AddressFamily uint const ( familyIPv4 AddressFamily = 4 familyIPv6 AddressFamily = 6 ) c...
1,622
11,728
414
0.98
2026-04-17T21:44:51.625414
true
github_kimono-koans_httm_50258d3d9e28c01f56f598ab11f8dad54c902c61
Rust
kimono-koans
httm
1,628
34
Interactive, file-level Time Machine-like tool for ZFS/btrfs/nilfs2 (and even Time Machine and Restic backups!)
[ "btrfs", "btrfs-snapshots", "cli", "command-line", "command-line-tool", "freebsd", "homelab", "linux", "nilfs", "restic", "rust", "shell", "terminal", "unix", "unix-command", "unix-shell", "zfs", "zfs-snapshots", "zfsonroot", "zsh" ]
MPL-2.0
src/lookup/deleted.rs
deleted.rs
5,645
// ___ ___ ___ ___ // /\__\ /\ \ /\ \ /\__\ // /:/ / \:\ \ \:\ \ /::| | // /:/__/ \:\ \ \:\ \ /:|:| | // /::\ \ ___ /::\ \ /::\ \ /:/|:|__|__ // /:/\:\ /\__\ /:/\:\__\ ...
558
5,645
166
0.98
2026-04-17T19:27:39.120984
true
github_vercel_swr_dfe9a814853468f0596c79f7d9b9d76a84cc7536
TypeScript
vercel
swr
32,352
1,332
React Hooks for Data Fetching
[ "cache", "data", "data-fetching", "fetch", "hook", "hooks", "nextjs", "react", "react-native", "stale-while-revalidate", "suspense", "swr", "vercel" ]
MIT
src/_internal/index.ts
index.ts
1,157
import SWRConfig from './utils/config-context' import * as revalidateEvents from './events' import { INFINITE_PREFIX } from './constants' export { SWRConfig, revalidateEvents, INFINITE_PREFIX } export { initCache } from './utils/cache' export { defaultConfig, cache, mutate, compare } from './utils/config' import { se...
139
1,157
30
0.98
2026-04-23T09:00:02.708308
true
github_pathwaycom_pathway_d20e5067a9dbbf5404d9c80bc02bfe9b785187fd
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/timestamp.rs
timestamp.rs
434
// Copyright © 2026 Pathway use std::time::{SystemTime, UNIX_EPOCH}; pub fn current_unix_timestamp_ms() -> u128 { SystemTime::now() .duration_since(UNIX_EPOCH) .expect("Failed to get the current timestamp") .as_millis() } pub fn current_unix_timestamp_secs() -> u64 { SystemTime::now()...
40
433
18
0.98
2026-04-23T04:40:52.767363
true
github_farion1231_cc-switch_822025237cddf219581a1ebe7c93395ed8da877f
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/useBackupManager.ts
useBackupManager.ts
1,597
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query"; import { backupsApi } from "@/lib/api"; export function useBackupManager() { const queryClient = useQueryClient(); const { data: backups = [], isLoading, refetch, } = useQuery({ queryKey: ["db-backups"], queryFn: ...
146
1,597
60
0.98
2026-04-17T13:18:48.426972
true
github_SuperTails_langcraft_1ac07bce1a7d12e2c678bd83217237c8763424b1
Rust
SuperTails
langcraft
561
7
Compiler from LLVM IR to Minecraft datapacks.
[ "compiler", "llvm", "minecraft" ]
Apache-2.0
src/cir/raw_text.rs
raw_text.rs
8,051
use super::{ merge_use, merge_uses, BlockPos, HolderUse, NbtPath, Objective, ScoreHolder, Selector, StorageId, StringNbt, }; use serde::{Deserialize, Serialize}; use serde_with::skip_serializing_none; use std::collections::HashMap; #[derive(Default)] pub struct TextBuilder { inner: Option<Vec<TextComponent...
781
8,051
308
0.98
2026-04-17T17:10:13.636827
true
github_vdaas_vald_85d049f573ff3ff05b6b915810861ae3a562eab9
Go
vdaas
vald
1,698
92
Vald. A Highly Scalable Distributed Vector Search Engine
[ "anng", "approximate-nearest-neighbor-search", "cloud", "cloud-native", "distributed-systems", "golang", "hacktoberfest", "high-dimensional-data", "high-performance", "image-search", "image-search-engine", "kubernetes", "microservices", "nearest-neighbor-search", "ngt", "similarity-sea...
Apache-2.0
internal/compress/zstd_option.go
zstd_option.go
1,431
// // Copyright (C) 2019-2026 vdaas.org vald team <[REDACTED_EMAIL]> // // 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 requ...
195
1,431
48
0.98
2026-04-18T01:04:44.509658
true
github_cloudwego_kitex_3d0c58d2dec45e17b7938225ddc9ee9bb53ab21f
Go
cloudwego
kitex
7,926
898
Go RPC framework with high-performance and strong-extensibility for building micro-services.
[ "framework", "go", "grpc", "microservices", "protobuf", "rpc", "streaming", "thrift" ]
Apache-2.0
pkg/generic/thriftidl_provider_option.go
thriftidl_provider_option.go
2,247
/* * Copyright 2024 CloudWeGo Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
266
2,247
76
0.98
2026-04-18T00:53:29.145295
true
github_avwo_whistle_a6658df3b74f419207c75df137b957b5cded22a5
JavaScript
avwo
whistle
15,478
1,155
HTTP, HTTP2, HTTPS, Websocket debugging proxy
[ "charles", "debug", "fiddler", "hosts", "node", "nodejs", "proxy", "web", "weinre" ]
MIT
lib/https/ca.js
ca.js
21,584
var forge = require('node-forge'); var fs = require('fs'); var net = require('net'); var path = require('path'); var crypto = require('crypto'); var LRU = require('lru-cache'); var hagent = require('hagent'); var extend = require('extend'); var h2 = require('./h2'); var createSecureContext = require('tls').createSecu...
2,311
21,460
845
0.98
2026-04-23T06:51:05.224068
true
github_ssbc_patchwork_7787cd2c87f3f6129ad8f43cf1658b03de5acf74
JavaScript
ssbc
patchwork
3,571
333
A decentralized messaging and sharing app built on top of Secure Scuttlebutt (SSB).
[ "decentralized", "decentralized-messaging", "electron", "javascript", "linux", "macos", "nodejs", "off-grid", "offline", "p2p", "scuttlebutt", "server", "social", "social-network", "ssb", "windows" ]
AGPL-3.0
lib/expander-hook.js
expander-hook.js
741
module.exports = ExpanderHook function ExpanderHook (needsExpand) { return expander.bind(null, needsExpand) } function expander (needsExpand, element) { const handler = { handleEvent, needsExpand, element } handleEvent.call(handler) if (element.querySelector('img')) { // just in case images are still loa...
73
741
27
0.98
2026-04-23T07:48:52.216477
true
github_google_comprehensive-rust_68f992b8e1c62114316ea7128e63de897485db6a
Rust
google
comprehensive-rust
32,858
1,995
This is the Rust course used by the Android team at Google. It provides you the material to quickly teach Rust.
[ "android", "classroom", "course", "google", "guide", "rust", "training", "training-materials" ]
Apache-2.0
src/types-and-values/exercise.rs
exercise.rs
983
// Copyright 2023 Google LLC // SPDX-License-Identifier: Apache-2.0 // // 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 requ...
158
983
35
0.98
2026-04-17T13:24:06.679440
true
github_win4r_GraphRAG4OpenWebUI_69ed1f080e9560bb22d622e193c402c88311f888
Python
win4r
GraphRAG4OpenWebUI
594
122
GraphRAG4OpenWebUI integrates Microsoft's GraphRAG technology into Open WebUI, providing a versatile information retrieval API. It combines local, global, and web searches for advanced Q&A systems and search engines. This tool simplifies graph-based retrieval integration in open web environments.
[ "aiagents", "graphrag", "llms", "ollama", "openai", "openwebui", "rag" ]
Apache-2.0
main-cn.py
main-cn.py
18,120
import os import asyncio import time import uuid import json import re import pandas as pd import tiktoken import logging from fastapi import FastAPI, HTTPException, Request from fastapi.responses import JSONResponse, StreamingResponse from pydantic import BaseModel, Field from typing import List, Optional, Dict, Any, ...
1,097
17,086
504
0.98
2026-04-23T01:18:22.326279
true
github_rustdesk_rustdesk_2000de2c89fcc442100eda766f12ec533e24aedf
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/pl.rs
pl.rs
50,395
lazy_static::lazy_static! { pub static ref T: std::collections::HashMap<&'static str, &'static str> = [ ("Status", "Status"), ("Your Desktop", "Twój pulpit"), ("desk_tip", "Aby połączyć się z tym urządzeniem, użyj poniższego ID i hasła"), ("Password", "Hasło"), ("Ready", "Got...
4,703
49,022
748
0.98
2026-04-17T13:14:37.596352
true
github_npm_cli_38fb383834e66f1e5074a0948fafd13aab574a2d
JavaScript
npm
cli
9,697
4,289
the package manager for JavaScript
[ "javascript", "nodejs", "npm", "npm-cli", "package-manager", "tools" ]
NOASSERTION
lib/commands/sbom.js
sbom.js
4,569
const localeCompare = require('@isaacs/string-locale-compare')('en') const BaseCommand = require('../base-cmd.js') const { log, output, META } = require('proc-log') const { cyclonedxOutput } = require('../utils/sbom-cyclonedx.js') const { spdxOutput } = require('../utils/sbom-spdx.js') const SBOM_FORMATS = ['cyclonedx...
515
4,569
131
0.98
2026-04-23T07:03:30.389655
true
github_morethanmin_morethan-log_575a6fe77e28718c31e24bda787667133dd7b756
TypeScript
morethanmin
morethan-log
2,282
1,808
😎 A static blog using notion database
[ "blog", "blog-template", "blog-theme", "morethan-log", "nextjs", "notion", "notion-api", "notion-blog", "notion-client", "notion-database", "resume", "resume-template", "tailwindcss", "vercel" ]
MIT
src/constants/queryKey.ts
queryKey.ts
184
export const queryKey = { scheme: () => ["scheme"], posts: () => ["posts"], tags: () => ["tags"], categories: () => ["categories"], post: (slug: string) => ["post", slug], }
28
184
8
0.98
2026-04-23T10:53:03.147432
true
github_bigint_hey_efd684205a97f8c0d4d9147a20360f323fe79215
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/injectReferrerToUrl.ts
injectReferrerToUrl.ts
732
import { HEY_TREASURY } from "@/data/constants"; interface DomainParamConfig { name: string; value: string; } const DOMAIN_PARAM_MAP: Record<string, DomainParamConfig> = { "highlight.xyz": { name: "referrer", value: HEY_TREASURY }, "zora.co": { name: "referrer", value: HEY_TREASURY } }; const injectReferrerT...
82
732
36
0.98
2026-04-18T01:23:10.226557
true
github_knadh_listmonk_3ff32fa404035a499cb3c269dd93712c24927c70
Go
knadh
listmonk
19,550
1,998
High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app.
[ "campaign", "campaign-management", "email-marketing", "email-subscription", "listmonk", "mailing-list", "newsletter", "newsletter-management", "newsletter-software", "self-hosted", "sms-gateway", "smtp", "transactional-emails" ]
AGPL-3.0
internal/manager/manager.go
manager.go
18,957
package manager import ( "errors" "fmt" "html/template" "log" "net/textproto" "strings" "sync" "time" "maps" "github.com/Masterminds/sprig/v3" "github.com/knadh/listmonk/internal/i18n" "github.com/knadh/listmonk/internal/notifs" "github.com/knadh/listmonk/models" "golang.org/x/text/cases" "golang.org/...
2,434
18,957
699
0.98
2026-04-17T09:35:11.766018
true
github_ChromeDevTools_chrome-devtools-mcp_bce93f73b5b7561513d35f1d0e3701de3684d05d
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/input.ts
input.ts
13,463
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {logger} from '../logger.js'; import type {McpContext} from '../McpContext.js'; import {zod} from '../third_party/index.js'; import type {ElementHandle, KeyInput} from '../third_party/index.js'; import type {TextSnapshotNode...
1,393
13,463
440
0.98
2026-04-23T08:42:47.129521
true
github_OpenMind_OM1_6765d6afb5033a161acb26b6e63252ad4a0dfd8e
Python
OpenMind
OM1
2,759
969
Modular AI runtime for robots
[ "llm", "multiagent", "robotics", "ros2", "zenoh" ]
MIT
src/providers/fabric_map_provider.py
fabric_map_provider.py
8,231
import json import logging import os import time from concurrent.futures import ThreadPoolExecutor from dataclasses import dataclass from typing import List, Optional import requests from .singleton import singleton @dataclass class RFData: """ Data class to represent RF scan results. Parameters --...
745
8,231
291
0.98
2026-04-17T23:33:37.587865
true
github_rust-lang_rustup_e1f2f98dcf1e7b89b9d460eef67a4224f4ce49b1
Rust
rust-lang
rustup
6,844
1,031
The Rust toolchain installer
[ "hacktoberfest", "rust", "rustlang", "toolchain" ]
Apache-2.0
src/test/dist.rs
dist.rs
33,228
//! Tools for building and working with the filesystem of a mock Rust //! distribution server, with v1 and v2 manifests. use std::collections::{BTreeMap, HashMap}; use std::fs::{self, File}; use std::io::{self, Read, Write}; use std::path::{Path, PathBuf}; use std::sync::{Arc, LazyLock, Mutex}; use url::Url; use sup...
2,420
33,228
949
0.98
2026-04-17T14:42:34.646620
true
github_hashicorp_terraform-provider-aws_0555c4dbfa71a754d23daf71ce493ae76df69169
Go
hashicorp
terraform-provider-aws
10,842
10,081
The AWS Provider enables Terraform to manage AWS resources.
[ "aws", "terraform", "terraform-provider" ]
MPL-2.0
internal/dns/reverse.go
reverse.go
320
// Copyright IBM Corp. 2014, 2026 // SPDX-License-Identifier: MPL-2.0 package dns import ( "slices" "strings" ) // Reverse switches a DNS hostname to reverse DNS and vice-versa. func Reverse(hostname string) string { parts := strings.Split(hostname, ".") slices.Reverse(parts) return strings.Join(parts, ".") }
41
320
18
0.98
2026-04-17T12:30:14.438436
true
github_k3d-io_k3d_e660d08603f663fc0c11cf918e0d11f1c15b203c
Go
k3d-io
k3d
6,379
528
Little helper to run CNCF's k3s in Docker
[ "cluster", "docker", "go", "k3d", "k3s", "kubernetes", "rancher" ]
MIT
pkg/config/transform_test.go
transform_test.go
3,826
/* Copyright © 2020-2023 The k3d Author(s) 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, modify, merge, publish, distri...
398
3,825
107
0.98
2026-04-17T20:37:16.329639
true
github_ChatGPTNextWeb_NextChat_8477c1e4ba71f6a0eeadf52acf85d287a13e9b3d
TypeScript
ChatGPTNextWeb
NextChat
87,769
59,807
✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows
[ "calclaude", "chatgpt", "claude", "cross-platform", "desktop", "fe", "gemini", "gemini-pro", "gemini-server", "gemini-ultra", "gpt-4o", "groq", "nextjs", "ollama", "react", "tauri", "tauri-app", "vercel", "webui" ]
MIT
app/store/sync.ts
sync.ts
3,834
import { getClientConfig } from "../config/client"; import { ApiPath, STORAGE_KEY, StoreKey } from "../constant"; import { createPersistStore } from "../utils/store"; import { AppState, getLocalAppState, GetStoreState, mergeAppState, setLocalAppState, } from "../utils/sync"; import { downloadAs, readFromFile ...
364
3,834
151
0.98
2026-04-23T08:58:27.775526
true
github_apollographql_apollo-client_474f4acf5e4591981a4408f1cbdf1e4b17134df4
TypeScript
apollographql
apollo-client
19,717
2,702
The industry-leading GraphQL client for TypeScript, JavaScript, React, Vue, Angular, and more. Apollo Client delivers powerful caching, intuitive APIs, and comprehensive developer tools to accelerate your app development.
[ "apollo-client", "apollographql", "graphql", "graphql-client", "typescript" ]
MIT
src/__tests__/exports.ts
exports.ts
6,290
/** @jest-environment node */ // We run this in a node environment because: // A) JSDOM doesn't yet support the TextEncoder/TextDecoder globals added in node 11, meaning certain imports (e.g. reactSSR) will fail (See https://github.com/jsdom/jsdom/issues/2524) // B) We're just testing imports/exports, so no reason not ...
512
6,290
133
0.98
2026-04-18T01:25:35.990553
true
github_fluxcd_flagger_a14bbd50376e97ce4fc6fbe6a9fb2e605017e93e
Go
fluxcd
flagger
5,310
793
Progressive delivery Kubernetes operator (Canary, A/B Testing and Blue/Green deployments)
[ "ab-testing", "aws-appmesh", "canary", "contour", "gitops", "gloo", "istio", "kubernetes", "linkerd", "nginx", "progressive-delivery" ]
Apache-2.0
pkg/canary/daemonset_ready.go
daemonset_ready.go
4,000
/* Copyright 2020 The Flux authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, softwar...
427
4,000
95
0.98
2026-04-17T21:30:50.272188
true
github_rust-lang_rust_fda03563c79f2537f18831b5f935cd5f89a18605
Rust
rust-lang
rust
112,076
14,769
Empowering everyone to build reliable and efficient software.
[ "compiler", "language", "rust" ]
Apache-2.0
src/librustdoc/visit_ast.rs
visit_ast.rs
25,581
//! The Rust AST Visitor. Extracts useful information and massages it into a form //! usable for `clean`. use std::mem; use rustc_ast::attr::AttributeExt; use rustc_data_structures::fx::{FxHashSet, FxIndexMap}; use rustc_hir as hir; use rustc_hir::attrs::DocInline; use rustc_hir::def::{DefKind, MacroKinds, Res}; use ...
2,458
25,581
652
0.98
2026-04-17T13:13:53.748289
true