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_dani-garcia_vaultwarden_1930f3806ad432f8f56b30d5dfd035cd4ba99e13
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/crypto.rs
crypto.rs
3,461
// // PBKDF2 derivation // use std::num::NonZeroU32; use data_encoding::{Encoding, HEXLOWER}; use ring::{digest, hmac, pbkdf2}; const DIGEST_ALG: pbkdf2::Algorithm = pbkdf2::PBKDF2_HMAC_SHA256; const OUTPUT_LEN: usize = digest::SHA256_OUTPUT_LEN; pub fn hash_password(secret: &[u8], salt: &[u8], iterations: u32) -> V...
379
3,461
116
0.98
2026-04-17T13:16:33.745790
true
github_Windy3f3f3f3f_claude-code-from-scratch_de830c0077b61df3768b8cb51f110ebcc404c9ec
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/memory.ts
memory.ts
14,041
// Memory system — 4-type file-based memory with MEMORY.md index. // Mirrors Claude Code's memory architecture: semantic recall via sideQuery. import { readFileSync, writeFileSync, existsSync, mkdirSync, readdirSync, unlinkSync, statSync, } from "fs"; import { join } from "path"; import { homedir } from "os"; impo...
1,563
13,159
393
0.98
2026-04-22T17:00:41.454190
true
github_rustdesk_rustdesk_98d1239e18e9710d6ab20cdaf9fc52208f2559eb
Rust
rustdesk
rustdesk
111,484
16,696
An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.
[ "android", "anydesk", "dart", "flatpak", "flutter", "flutter-apps", "ios", "linux", "macos", "p2p", "rdp", "remote-control", "remote-desktop", "rust", "rust-lang", "teamviewer", "vnc", "wayland", "windows" ]
AGPL-3.0
src/client/helper.rs
helper.rs
1,017
use hbb_common::{ get_time, message_proto::{Message, VoiceCallRequest, VoiceCallResponse}, }; use scrap::CodecFormat; use std::collections::HashMap; #[derive(Debug, Default)] pub struct QualityStatus { pub speed: Option<String>, pub fps: HashMap<usize, i32>, pub delay: Option<i32>, pub target_b...
96
1,017
38
0.98
2026-04-17T13:14:12.510322
true
github_parse-community_parse-server_65d537ae682dfa97d6b12c9710d94525613a9b98
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/ParseServer.ts
ParseServer.ts
24,242
// ParseServer - open-source compatible API Server for Parse apps var batch = require('./batch'), express = require('express'), middlewares = require('./middlewares'), Parse = require('parse/node').Parse, { parse } = require('graphql'), path = require('path'), fs = require('fs'); import { ParseServerOptio...
2,298
24,242
689
0.98
2026-04-23T06:47:20.333438
true
github_d2l-ai_d2l-en_2eb8e2978120b4a95586724478de824b35ace2b1
Python
d2l-ai
d2l-en
28,613
5,021
Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 500 universities from 70 countries including Stanford, MIT, Harvard, and Cambridge.
[ "book", "computer-vision", "data-science", "deep-learning", "gaussian-processes", "hyperparameter-optimization", "jax", "kaggle", "keras", "machine-learning", "mxnet", "natural-language-processing", "notebook", "python", "pytorch", "recommender-system", "reinforcement-learning", "t...
NOASSERTION
setup.py
setup.py
566
from setuptools import setup, find_packages import d2l requirements = [ 'jupyter==1.0.0', 'numpy==1.23.5', 'matplotlib==3.7.2', 'matplotlib-inline==0.1.6', 'requests==2.31.0', 'pandas==2.0.3', 'scipy==1.10.1' ] setup( name='d2l', version=d2l.__version__, python_requires='>=3.8'...
35
566
27
0.95
2026-04-13T14:07:24.261442
true
github_facebook_react_128d872d46473ab5bd285e15b879cfa3d9ae2992
JavaScript
facebook
react
244,610
50,966
The library for web and native user interfaces.
[ "declarative", "frontend", "javascript", "library", "react", "ui" ]
MIT
.eslintrc.js
.eslintrc.js
20,976
'use strict'; const { es5Paths, esNextPaths, } = require('./scripts/shared/pathsByLanguageVersion'); const restrictedGlobals = require('confusing-browser-globals'); const OFF = 0; const WARNING = 1; const ERROR = 2; module.exports = { extends: ['prettier', 'plugin:jest/recommended'], // Stop ESLint from lo...
1,557
20,976
661
0.98
2026-04-23T04:44:37.204288
true
github_pubkey_rxdb_c0245806958a13266a31932f4eb785149303113b
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/conflict-handling.d.ts
conflict-handling.d.ts
1,491
import type { WithDeleted } from './rx-storage.d.ts'; /** * Notice that the conflict handler input/output * does not work on RxDocumentData<RxDocType>, but only on WithDeleted<RxDocType>. * This is because the _meta attributes are meant for the local storing of document data, they not replicated * and therefore ca...
176
1,491
49
0.98
2026-04-23T08:22:10.632715
true
github_rustdesk_rustdesk_6d48e34eec5e0c03a566ef891effb0adf8267da2
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/ar.rs
ar.rs
55,003
lazy_static::lazy_static! { pub static ref T: std::collections::HashMap<&'static str, &'static str> = [ ("Status", "الحالة"), ("Your Desktop", "سطح مكتبك"), ("desk_tip", "يمكن الوصول لسطح مكتبك بهذا المعرف والرقم السري."), ("Password", "كلمة المرور"), ("Ready", "جاهز"), ...
4,433
41,968
748
0.98
2026-04-17T13:14:22.036610
true
github_tradytics_eiten_d32b3d2df7f9971ac92c315fa4fb1c0e62b9c24c
Python
tradytics
eiten
3,195
368
Statistical and Algorithmic Investing Strategies for Everyone
[ "ai", "algorithmic-trading", "eigenvalues", "free-software", "genetic-algorithm", "hedgefund", "investment-portfolio", "machine-learning", "opensource", "portfolio-optimization", "statistics", "trading-algorithms", "trading-strategies", "tradytics" ]
GPL-3.0
strategy_manager.py
strategy_manager.py
2,718
# Basic libraries import os import warnings from strategies.genetic_algo_strategy import GeneticAlgoStrategy from strategies.maximum_sharpe_ratio_strategy import MaximumSharpeRatioStrategy from strategies.eigen_portfolio_strategy import EigenPortfolioStrategy from strategies.minimum_variance_strategy import Minim...
183
2,718
60
0.98
2026-04-17T15:53:33.378149
true
github_directus_directus_88031adb89ab8f60b699c0fbd784b49f0628725a
JavaScript
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
eslint.config.js
eslint.config.js
5,177
// @ts-check import process from 'node:process'; import eslintJs from '@eslint/js'; import eslintConfigPrettier from 'eslint-config-prettier'; import eslintImportPlugin from 'eslint-plugin-import'; import eslintPluginVue from 'eslint-plugin-vue'; import globals from 'globals'; import typescriptEslint from 'typescript-...
537
5,177
190
0.98
2026-04-23T07:58:09.865618
true
github_rustdesk_rustdesk_7cc0c9067ce292a009594aad94db4d0fa3d28b6b
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/ko.rs
ko.rs
51,560
lazy_static::lazy_static! { pub static ref T: std::collections::HashMap<&'static str, &'static str> = [ ("Status", "상태"), ("Your Desktop", "내 데스크탑"), ("desk_tip", "이 ID와 비밀번호로 데스크탑에 액세스할 수 있습니다."), ("Password", "비밀번호"), ("Ready", "준비 완료"), ("Established", "연결됨"), ...
4,376
36,868
748
0.98
2026-04-17T13:14:34.598053
true
github_ymcui_Chinese-ELECTRA_0b9f7c05c317c6d9fd8e9ad83e2886dffca23bb7
Python
ymcui
Chinese-ELECTRA
1,437
166
Pre-trained Chinese ELECTRA(中文ELECTRA预训练模型)
[ "bert", "chinese", "chinese-electra", "electra", "language-model", "nlp", "pre-trained-model", "pytorch", "tensorflow" ]
Apache-2.0
run_finetuning.py
run_finetuning.py
15,384
# coding=utf-8 # Copyright 2020 The Google Research 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,154
15,384
376
0.98
2026-04-22T19:56:14.936384
true
github_uber_orbit_1ec27356665c5b5dc66921ff38c4a99bed428843
Python
uber
orbit
2,047
147
A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.
[ "arima", "bayesian", "bayesian-methods", "bayesian-statistics", "changepoint", "exponential-smoothing", "forecast", "forecasting", "machine-learning", "orbit", "probabilistic", "probabilistic-programming", "pyro", "pystan", "python", "pytorch", "regression", "regression-models", ...
NOASSERTION
install_stan.py
install_stan.py
1,782
import json import os import platform import shutil from multiprocessing import cpu_count import cmdstanpy with open("orbit/config.json") as f: config = json.load(f) CMDSTAN_VERSION = config["CMDSTAN_VERSION"] IS_WINDOWS = platform.platform().startswith("Win") def remove_older_cmdstan(cmdstan_version): """ ...
149
1,782
63
0.98
2026-04-22T23:23:01.058839
true
github_antonmedv_fx_a999d21f366a970b60bd553fda999f996a5dfdaa
Go
antonmedv
fx
20,412
478
Terminal JSON viewer & processor
[ "cli", "command-line", "json", "tui" ]
MIT
internal/engine/transpile_test.go
transpile_test.go
933
package engine import ( "testing" ) func TestTranspile(t *testing.T) { tests := []struct { code string want string }{ {".", "x"}, {".foo", "x.foo"}, {".[0]", "x[0]"}, {"foo", "foo"}, {"@.baz", "map((x, i) => apply(x.baz, x, i))"}, {"?.foo > 42", "filter((x, i) => apply(x.foo > 42, x, i))"}, {".fo...
136
933
45
0.98
2026-04-17T09:28:27.237120
true
github_iotexproject_iotex-core_8afbba296743adc9fd5c25847afd751235aa9e93
Go
iotexproject
iotex-core
1,611
368
Official implementation of IoTeX blockchain protocol in Go. An ultra-efficient EVM blockchain offering 1000 TPS with instant 1-block finality. Perfect for DeFi, DePIN tokenomics, Identities, and any trusted logic requiring Web3 composability
[ "blockchain", "crypto", "cryptography", "depin", "distributed-systems", "internet-of-everything", "internet-of-things", "machinefi" ]
Apache-2.0
pkg/recovery/recovery.go
recovery.go
4,761
// Copyright (c) 2022 IoTeX // This source code is provided 'as is' and no warranties are given as to title or non-infringement, merchantability // or fitness for purpose and, to the extent permitted by law, all liability for your use of the code is disclaimed. // This source code is governed by Apache License 2.0 that...
612
4,761
194
0.98
2026-04-17T16:55:47.557820
true
github_triggerdotdev_jsonhero-web_da426d8b71586d982156738b05145730ae9d2150
TypeScript
triggerdotdev
jsonhero-web
10,705
668
JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed. 🚀. Built with 💜 by the Trigger.dev team.
[ "developer-tools", "devtools", "hacktoberfest", "json", "json-viewer", "react", "tools", "typescript", "viewer" ]
Apache-2.0
app/utilities/relatedValues.ts
relatedValues.ts
2,592
import { inferType } from "@jsonhero/json-infer-types"; import { JSONHeroPath } from "@jsonhero/path"; import { groupBy, sortBy } from "lodash-es"; export type RelatedValuesGroup = { value: string; paths: Array<string>; }; export function calculateRelatedValuesGroups( path: string, json: unknown ): Array<Rela...
267
2,592
104
0.98
2026-04-23T08:44:15.331808
true
github_parse-community_parse-server_0e0dce141735ba8ce042928e5949c2b4254f31a1
JavaScript
parse-community
parse-server
21,382
4,819
Parse Server for Node.js / Express
[ "baas", "backend", "file-storage", "graphql", "graphql-api", "graphql-relay", "graphql-server", "hacktoberfest", "mbaas", "mongodb", "nodejs", "notifications", "object-storage", "parse-platform", "parse-server", "postgres", "relay", "rest-api" ]
Apache-2.0
src/LiveQuery/ParseCloudCodePublisher.js
ParseCloudCodePublisher.js
1,778
import { ParsePubSub } from './ParsePubSub'; import Parse from 'parse/node'; import logger from '../logger'; class ParseCloudCodePublisher { parsePublisher: Object; // config object of the publisher, right now it only contains the redisURL, // but we may extend it later. constructor(config: any = {}) { th...
171
1,778
60
0.98
2026-04-23T06:47:13.535260
true
github_Huachao_vscode-restclient_dfccc78b2c8b6274d1cbf00489ddd3fcb762dd55
TypeScript
Huachao
vscode-restclient
5,981
516
REST Client Extension for Visual Studio Code
[ "graphql", "http", "http-client", "rest", "rest-api", "rest-client", "typescript", "visual-studio-code", "vscode", "vscode-extension" ]
MIT
src/utils/requestVariableCache.ts
requestVariableCache.ts
1,215
import { Event, EventEmitter, TextDocument } from "vscode"; import { DocumentCache } from '../models/documentCache'; import { HttpResponse } from '../models/httpResponse'; type RequestVariableEvent = { name: string; document: TextDocument; }; export class RequestVariableCache { private static cache = new ...
107
1,215
35
0.98
2026-04-18T01:32:33.600971
true
github_rust-lang_rustc_codegen_cranelift_18a0632a0939d9dee8c40dbba24ee48146386e14
Rust
rust-lang
rustc_codegen_cranelift
2,021
132
Cranelift based backend for rustc
[ "aot", "compiler", "cranelift", "jit", "rust" ]
Apache-2.0
src/debuginfo/types.rs
types.rs
8,217
// Adapted from https://github.com/rust-lang/rust/blob/10a7aa14fed9b528b74b0f098c4899c37c09a9c7/compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs use gimli::write::{AttributeValue, UnitEntryId}; use rustc_codegen_ssa::debuginfo::type_names; use rustc_data_structures::fx::FxHashMap; use rustc_middle::ty::layout::La...
516
8,217
210
0.98
2026-04-17T17:04:52.299922
true
github_facebook_flow_af7c62764169d580f034f3770368594029092404
JavaScript
facebook
flow
22,210
1,886
Adds static typing to JavaScript to improve developer productivity and code quality.
[]
MIT
src/js/caml_thread_cleanup.js
caml_thread_cleanup.js
315
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ //Provides: caml_thread_cleanup const function caml_thread_cleanup() { throw 'caml_thread_cleanup: not implemented' }
46
315
13
0.98
2026-04-17T13:37:14.236673
true
github_agent0ai_agent-zero_45be7a7aa0284740a15b7b9b2a209ba412b9a354
Python
agent0ai
agent-zero
17,046
3,498
Agent Zero AI framework
[ "agent", "ai", "assistant", "autonomous", "linux", "zero" ]
NOASSERTION
api/load_webui_extensions.py
load_webui_extensions.py
738
from helpers.api import ApiHandler, Request, Response from helpers import extension class LoadWebuiExtensions(ApiHandler): """ API endpoint for Welcome Screen banners. Add checks as extension scripts in python/extensions/banners/ or usr/extensions/banners/ """ async def process(self, input: dict,...
65
738
21
0.98
2026-04-17T15:31:44.858779
true
github_junhoyeo_BetterOCR_a9930df51eec9c0270d0040c620fa0485e6034af
JavaScript
junhoyeo
BetterOCR
631
38
🔍 Better text detection by combining multiple OCR engines (EasyOCR, Tesseract, and Pororo) with 🧠 LLM.
[ "ai", "chatgpt", "chatgpt-api", "easyocr", "llm", "ocr", "openai", "openai-api", "tesseract", "tesseract-ocr" ]
MIT
.prettierrc.js
.prettierrc.js
134
module.exports = { bracketSpacing: true, jsxBracketSameLine: false, singleQuote: true, trailingComma: 'all', semi: true, };
14
134
8
0.98
2026-04-23T01:17:17.891727
true
github_avelino_awesome-go_d2f79403c84ce9cf8636b87bf0ebc3b5f62ccf6f
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.go
generator.go
326
package slug import ( "strings" "github.com/avelino/slugify" ) // Generate slugs similar to GitHub's slugs on markdown parsing func Generate(text string) string { // FIXME: this is should be like regexp.Replace(`[^-a-zA-Z\d]+`, ``) s := strings.ReplaceAll(text, "/", "") return slugify.Slugify(strings.TrimSpace(...
39
326
15
0.98
2026-04-17T06:50:02.527615
true
github_ChatGPTNextWeb_NextChat_7f6ed3f6f4e33d6ad251e680429bc29e05b8df5f
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/vi.ts
vi.ts
21,785
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 vi: PartialLocaleType = { WIP: "Sắp ra mắt...", Error: { Unautho...
2,760
18,738
603
0.98
2026-04-23T08:58:19.231842
true
github_AnswerDotAI_ModernBERT_ee81faede2016b41437704e0b6d4b8d2c5c86186
Python
AnswerDotAI
ModernBERT
1,664
145
Bringing BERT into modernity via both architecture changes and scaling
[ "bert", "embeddings", "llm", "nlp" ]
Apache-2.0
src/evals/data.py
data.py
7,117
# Copyright 2022 MosaicML Examples authors # SPDX-License-Identifier: Apache-2.0 """from https://arxiv.org/pdf/1905.00537 For classification tasks with sentence-pair inputs (BoolQ, CB, RTE, WiC), we concatenate the sentences with a [SEP] token, feed the fused input to BERT, and use a logistic regression classifier th...
653
7,115
185
0.98
2026-04-22T15:55:03.651215
true
github_tidwall_tile38_8b55f5193c3cf16ed35f1810555a32c1bbb0337e
Go
tidwall
tile38
9,619
610
Real-time Geospatial and Geofencing
[ "database", "geo", "geofences", "geospatial", "index", "location", "spatial" ]
MIT
internal/bing/ext_test.go
ext_test.go
2,450
package bing import ( "math/rand" "testing" "time" ) func TestIteratorFuzz(t *testing.T) { rand.Seed(time.Now().UnixNano()) for i := 0; i < 10000; i++ { latitude := rand.Float64()*180.0 - 90.0 longitude := rand.Float64()*380.0 - 180.0 levelOfDetail := uint64((rand.Int() % MaxLevelOfDetail) + 1) pixelX, p...
295
2,450
64
0.98
2026-04-17T18:09:45.071175
true
github_avwo_whistle_7ede8495d5efe5dca4d12b8ebe4cd2376cc5e37e
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/index.js
index.js
5,519
var fork = require('pfork').fork; var path = require('path'); var LRU = require('lru-cache'); var rulesUtil = require('../rules/util'); var ca = require('../https/ca'); var pluginMgr = require('../plugins'); var request = require('../util/http-mgr').request; var config = require('../config'); var SCRIPT = path.join(__...
614
5,519
223
0.98
2026-04-23T06:51:20.916992
true
github_ajnart_homarr_a8a6e68233ed78c2e25bbe67f1a406edc35092c3
TypeScript
ajnart
homarr
7,117
297
Customizable browser's home page to interact with your homeserver's Docker containers (e.g. Sonarr/Radarr)
[ "dashboard", "docker", "homepage", "homeserver", "mantine", "nextjs", "radarr", "react", "sonarr" ]
MIT
src/types/shape.ts
shape.ts
240
export interface ShapeType { lg?: SizedShapeType; md?: SizedShapeType; sm?: SizedShapeType; } export interface SizedShapeType { location: { x: number; y: number; }; size: { width: number; height: number; }; }
30
240
17
0.98
2026-04-23T09:54:59.431374
true
github_gastownhall_beads_98563ab27a3862af250117e17b14f47125ac7eb0
Go
gastownhall
beads
20,845
1,396
Beads - A memory upgrade for your coding agent
[ "agents", "claude-code", "coding" ]
MIT
cmd/bd/backup_auto.go
backup_auto.go
2,617
package main import ( "context" "fmt" "os" "time" "github.com/steveyegge/beads/internal/config" "github.com/steveyegge/beads/internal/debug" "github.com/steveyegge/beads/internal/storage" ) // isBackupAutoEnabled returns whether backup should run. // If user explicitly configured backup.enabled, use that. // ...
315
2,613
90
0.98
2026-04-17T09:23:22.263802
true
github_starship_starship_79f67db10bef95eb8d174424321f2ffdff8d85e9
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/claude_cost.rs
claude_cost.rs
1,218
use serde::{Deserialize, Serialize}; use crate::configs::claude_context::ClaudeDisplayConfig; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct ClaudeCostConfig<'a> { pub format: &...
88
1,215
46
0.98
2026-04-17T13:17:29.745988
true
github_bigint_hey_d43742960177d07cecd5739fd72ccf51165fcd6b
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/getMentions.ts
getMentions.ts
581
import { Regex } from "@/data/regex"; import type { AccountMentionFragment, PostMentionFragment } from "@/indexer/generated"; const getMentions = (text: string): PostMentionFragment[] => { if (!text) return []; const mentions = text.match(Regex.accountMention) ?? []; return mentions.map((mention) => { ...
65
581
26
0.98
2026-04-18T01:23:06.638874
true
github_minio_minio_1fa76e090aeb27a3d60024c427569c183613b0a2
Go
minio
minio
60,720
7,394
MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license.
[ "amazon-s3", "cloud", "cloudnative", "cloudstorage", "go", "k8s", "kubernetes", "multi-cloud", "multi-cloud-kubernetes", "objectstorage", "s3", "storage" ]
AGPL-3.0
cmd/bucket-lifecycle-audit.go
bucket-lifecycle-audit.go
2,684
// Copyright (c) 2023 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // 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 yo...
311
2,684
94
0.98
2026-04-17T07:16:00.563343
true
github_nodejs_node_552819405a1a60297f07ff5ced46ea2961e3a8c7
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/blocklist.js
blocklist.js
8,317
'use strict'; const { ArrayIsArray, Boolean, JSONParse, NumberParseInt, ObjectSetPrototypeOf, Symbol, } = primordials; const { BlockList: BlockListHandle, } = internalBinding('block_list'); const { customInspectSymbol: kInspect, } = require('internal/util'); const { SocketAddress, kHandle: kSock...
776
8,317
300
0.98
2026-04-23T06:15:48.767527
true
github_tenable_terrascan_81bbc02d4cf50eabf421053686bdec99b51a3a76
Go
tenable
terrascan
5,210
550
Detect compliance and security violations across Infrastructure as Code to mitigate risk before provisioning cloud native infrastructure.
[ "architecture", "aws", "aws-security", "azure-security", "cloud-security", "cloudsecurity", "devops", "devsecops", "gcp-security", "iac", "infrastructure", "infrastructure-as-code", "kubernetes", "sast", "scans", "security", "security-tools", "security-violations", "terraform", ...
Apache-2.0
pkg/config/types.go
types.go
3,202
/* Copyright (C) 2022 Tenable, 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 wri...
316
3,202
77
0.98
2026-04-17T21:33:43.129432
true
github_howtographql_howtographql_d373fc068c8ec29090fe975869c5c38585d9891d
TypeScript
howtographql
howtographql
8,728
1,137
The Fullstack Tutorial for GraphQL
[ "apollographql", "graphql", "prisma", "tutorial" ]
MIT
src/utils/tutorials.ts
tutorials.ts
618
import { Step } from '../types' import data from '../data/stacks' export function getFrontendTutorials(steps: { [key: string]: Step[] }) { return data.filter(t => t.type === 'frontend' && !t.comingSoon).map(stack => { const tutorialSteps = steps[stack.key] return { ...tutorialSteps[0], title: sta...
72
618
23
0.98
2026-04-18T01:29:28.001630
true
github_parcel-bundler_lightningcss_b4b1b0ab878658a1171e0057236447443162df98
Rust
parcel-bundler
lightningcss
7,510
261
An extremely fast CSS parser, transformer, bundler, and minifier written in Rust.
[ "build-tool", "compiler", "css", "minifier", "parser", "rust" ]
MPL-2.0
src/error.rs
error.rs
19,371
//! Error types. use crate::properties::custom::Token; use crate::rules::Location; use crate::values::string::CowArcStr; use cssparser::{BasicParseErrorKind, ParseError, ParseErrorKind}; use parcel_selectors::parser::SelectorParseErrorKind; #[cfg(any(feature = "serde", feature = "nodejs"))] use serde::Serialize; #[cfg...
1,946
19,371
451
0.98
2026-04-17T14:37:35.732398
true
github_atlassian_react-beautiful-dnd_14fa3c71c6ac2f581d9804c060bc227727852466
JavaScript
atlassian
react-beautiful-dnd
34,020
2,721
Beautiful and accessible drag and drop for lists with React
[ "dnd", "drag", "drag-and-drop", "react", "reordering", "sortable" ]
NOASSERTION
.eslintrc.js
.eslintrc.js
7,244
module.exports = { extends: [ 'prettier', 'airbnb', 'plugin:flowtype/recommended', 'prettier/react', 'prettier/flowtype', 'plugin:jest/recommended', 'plugin:prettier/recommended', ], parser: 'babel-eslint', plugins: [ 'prettier', 'flowtype', 'emotion', 'react', 'r...
741
7,244
240
0.98
2026-04-23T04:48:29.026775
true
github_bfly123_claude_code_bridge_569004b9deb41e6f9ae1219fe0e2885ec991d3e0
Python
bfly123
claude_code_bridge
2,284
214
Real-time multi-AI collaboration: Claude, Codex & Gemini with persistent context, minimal token overhead
[ "ai-collaboration", "ai-tools", "claude-code", "cli", "codex", "cross-platform", "gemini", "llm", "multi-agent-systems", "python", "terminal" ]
NOASSERTION
lib/cli/phase2.py
phase2.py
6,115
from __future__ import annotations import sys from pathlib import Path from typing import Sequence, TextIO from agents.config_loader import ensure_bootstrap_project_config from cli.context import CliContextBuilder from cli.phase2_errors import handle_phase2_exception, parse_phase2_command from cli.phase2_runtime impo...
418
6,115
170
0.98
2026-04-17T23:38:03.353576
true
github_eythaann_Seelen-UI_774febb9701b5d839c168e7989cfcb32a7a0a235
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/service/error.rs
error.rs
4,581
macro_rules! define_app_errors { ($( $variant:ident($error_type:ty); )*) => { $( impl From<$error_type> for ServiceError { fn from(err: $error_type) -> Self { let backtrace = backtrace::Backtrace::new(); ServiceError { msg: form...
415
4,581
149
0.98
2026-04-17T13:50:03.569668
true
github_kgateway-dev_kgateway_6a425d13a283eeebe7487be1ecccc69cdedbeb4e
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/krtcollections/endpoints.go
endpoints.go
9,959
package krtcollections import ( "context" envoycorev3 "github.com/envoyproxy/go-control-plane/envoy/config/core/v3" envoyendpointv3 "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3" "google.golang.org/protobuf/types/known/structpb" "google.golang.org/protobuf/types/known/wrapperspb" "istio.io/is...
932
9,959
303
0.98
2026-04-17T21:26:42.233498
true
github_starship_starship_fd009892a106c9a74254d42bf4f250eb6c33a894
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/nim.rs
nim.rs
908
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct NimConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub symbol: &'a str,...
87
905
35
0.98
2026-04-17T13:17:53.089459
true
github_IBM_mcp-context-forge_0c4d3c7b1e04e071b5f090f343c0b2d96252325d
JavaScript
IBM
mcp-context-forge
3,584
627
An AI Gateway, registry, and proxy that sits in front of any MCP, A2A, or REST/gRPC APIs, exposing a unified endpoint with centralized discovery, guardrails and management. Optimizes Agent & Tool calling, and supports plugins.
[ "agents", "ai", "api-gateway", "asyncio", "authentication-middleware", "devops", "docker", "fastapi", "federation", "gateway", "generative-ai", "jwt", "kubernetes", "llm-agents", "mcp", "model-context-protocol", "observability", "prompt-engineering", "python", "tools" ]
Apache-2.0
vite.config.js
vite.config.js
2,182
import { defineConfig } from 'vite'; import path from 'path'; import fs from 'fs'; // Plugin to clean up old bundle files before building function cleanOldBundles() { return { name: 'clean-old-bundles', buildStart() { const outDir = path.resolve(__dirname, 'mcpgateway/static'); if (fs.existsSync(...
228
2,182
73
0.98
2026-04-17T15:51:15.096291
true
github_codenotary_immudb_d07a1317b6b974c43ae7c270998e5784e340ca22
Go
codenotary
immudb
8,958
362
immudb - immutable database based on zero trust, SQL/Key-Value/Document model, tamperproof, data change history
[ "auditable", "compliance", "cryptographic", "database", "gdpr", "go", "immutable", "immutable-database", "key-value", "merkle-tree", "pci-dss", "performance", "sql", "tamper-evident", "tamperproof", "timetravel", "verification", "verify", "zero-trust" ]
NOASSERTION
cmd/helper/detached_test.go
detached_test.go
1,220
/* Copyright 2025 Codenotary Inc. All rights reserved. SPDX-License-Identifier: BUSL-1.1 you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mariadb.com/bsl11/ Unless required by applicable law or agreed to in writing, software distributed under the Li...
160
1,220
54
0.98
2026-04-17T18:10:45.688695
true
github_Pythagora-io_gpt-pilot_0b7db8019bef464fc13df6e81cacd8f2886dd08e
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/db/session.py
session.py
2,694
from sqlalchemy import event from sqlalchemy.ext.asyncio import AsyncSession, async_sessionmaker, create_async_engine from core.config import DBConfig from core.log import get_logger log = get_logger(__name__) class SessionManager: """ Async-aware context manager for database session. Usage: >>> c...
246
2,694
77
0.98
2026-04-17T15:26:44.437961
true
github_vietnh1009_Tetris-deep-Q-learning-pytorch_55d3c251fbca8cea130a82fe55588249aad96280
Python
vietnh1009
Tetris-deep-Q-learning-pytorch
530
119
Deep Q-learning for playing tetris game
[ "cv2", "deep-q-learning", "deep-q-network", "pytorch", "reinforcement-learning" ]
MIT
src/deep_q_network.py
deep_q_network.py
738
""" @author: Viet Nguyen <[REDACTED_EMAIL]> """ import torch.nn as nn class DeepQNetwork(nn.Module): def __init__(self): super(DeepQNetwork, self).__init__() self.conv1 = nn.Sequential(nn.Linear(4, 64), nn.ReLU(inplace=True)) self.conv2 = nn.Sequential(nn.Linear(64, 64), nn.ReLU(inplace=Tr...
57
738
28
0.98
2026-04-22T20:51:25.768400
true
github_starship_starship_0edf45a567d237e81b5443cc7c31b0a4d7287033
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/pijul_channel.rs
pijul_channel.rs
726
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct PijulConfig<'a> { pub symbol: &'a str, pub style: &'a str, pub format: &'a str, pu...
72
722
31
0.98
2026-04-17T13:17:57.362801
true
github_yeungchenwa_FontDiffuser_cc30d14ce08fbe10cecb38e2d26947d31a5abbe8
Python
yeungchenwa
FontDiffuser
517
54
[AAAI2024] FontDiffuser: One-Shot Font Generation via Denoising Diffusion with Multi-Scale Content Aggregation and Style Contrastive Learning
[ "deep-learning", "diffusers", "diffusion", "font-generation", "image-generation" ]
UNKNOWN
src/__init__.py
__init__.py
507
from .model import (FontDiffuserModel, FontDiffuserModelDPM) from .criterion import ContentPerceptualLoss from .dpm_solver.pipeline_dpm_solver import FontDiffuserDPMPipeline from .modules import (ContentEncoder, StyleEncoder, UNet, SCR) ...
28
507
13
0.98
2026-04-22T22:42:32.080954
true
github_rust-lang_rust_d726c612acf682900f4a698bac965b6c5cc7d8b8
Rust
rust-lang
rust
112,076
14,769
Empowering everyone to build reliable and efficient software.
[ "compiler", "language", "rust" ]
Apache-2.0
src/librustdoc/config.rs
config.rs
46,072
use std::collections::BTreeMap; use std::ffi::OsStr; use std::io::Read; use std::path::{Path, PathBuf}; use std::str::FromStr; use std::{fmt, io}; use rustc_data_structures::fx::FxIndexMap; use rustc_errors::DiagCtxtHandle; use rustc_session::config::{ self, CodegenOptions, CrateType, ErrorOutputType, Externs, Inp...
4,078
46,072
1,104
0.98
2026-04-17T13:13:47.841214
true
github_vercel-labs_dev3000_f78c0813d74d5409765e364d5db36c354c8cc062
TypeScript
vercel-labs
dev3000
1,153
67
Captures your web app's complete development timeline - server logs, browser events, console messages, network requests, and automatic screenshots - in a unified, timestamped feed for AI debugging.
[ "ai", "devtools", "web" ]
MIT
src/utils/timestamp.ts
timestamp.ts
2,289
/** * Format timestamp based on user preference * @param date Date object to format * @param format "local" for local time (default) or "utc" for ISO string * @returns Formatted timestamp string */ export function formatTimestamp(date: Date, format: "local" | "utc" = "local"): string { if (format === "utc") { ...
300
2,289
61
0.98
2026-04-23T08:56:02.917166
true
github_rustdesk_rustdesk_4c09bbe9f3453d301ef4016404596efc0d900078
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/platform/windows.rs
windows.rs
145,654
use super::{CursorData, ResultType}; use crate::{ common::PORTABLE_APPNAME_RUNTIME_ENV_KEY, custom_server::*, ipc, privacy_mode::win_topmost_window::{self, WIN_TOPMOST_INJECTED_PROCESS_EXE}, }; use hbb_common::{ allow_err, anyhow::anyhow, bail, config::{self, Config}, libc::{c_int, w...
13,431
145,654
4,385
0.98
2026-04-17T13:14:51.503484
true
github_graphql_graphiql_f67d727fa67078f52deda91544a412fdb6d7ec7c
JavaScript
graphql
graphiql
16,822
1,825
GraphiQL & the GraphQL LSP Reference Ecosystem for building browser & IDE tools.
[ "codemirror", "graphiql", "graphql", "lsp-mode", "lsp-server", "monaco-editor", "vscode" ]
MIT
jest.config.base.js
jest.config.base.js
1,239
module.exports = dir => { const package = require(`${dir}/package.json`); return { globals: { 'ts-jest': { tsConfig: `${__dirname}/resources/tsconfig.base.esm.json`, }, }, clearMocks: true, collectCoverage: true, coverageDirectory: `${__dirname}/coverage/jest`, moduleName...
78
1,239
42
0.98
2026-04-18T01:26:45.958947
true
github_microsoft_multilspy_b12a8ca25ac1c8fe8ebb202c8da959a10552973c
Python
microsoft
multilspy
568
103
multilspy is a lsp client library in Python intended to be used to build applications around language servers.
[ "ai", "ai4code", "artificial-intelligence", "code-analysis", "code-completion", "code-generation", "codegen", "huggingface-transformers", "language-server-client", "language-server-protocol", "large-language-model", "large-language-models", "llm", "lsp", "lsp-client", "neurips", "neu...
MIT
src/multilspy/multilspy_config.py
multilspy_config.py
1,439
""" Configuration parameters for Multilspy. """ from enum import Enum from dataclasses import dataclass from typing import Optional class Language(str, Enum): """ Possible languages with Multilspy. """ CSHARP = "csharp" PYTHON = "python" RUST = "rust" JAVA = "java" KOTLIN = "kotlin" ...
169
1,439
59
0.98
2026-04-22T21:50:37.604701
true
github_jondot_react-flight_3c9bf27acca1e8c8973fc8bd6c186e37ed3c8bb2
JavaScript
jondot
react-flight
2,805
69
The best way to build animation compositions for React.
[ "animation", "composition", "react" ]
MIT
core/flight.js
flight.js
4,780
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _extends2 = require('babel-runtime/helpers/extends'); var _extends3 = _interopRequireDefault(_extends2); var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of'); var _getPrototypeOf2 = _interopRequireDefault(_...
405
4,780
160
0.98
2026-04-23T14:02:26.254865
true
github_babel_babel_b5eb76d430505ceebec4a63a51f9e211d88725f5
TypeScript
babel
babel
43,892
5,813
🐠 Babel is a compiler for writing next generation JavaScript.
[ "ast", "babel", "compiler", "es2015", "es6", "flavortown", "javascript" ]
MIT
eslint.config.ts
eslint.config.ts
12,753
import babelParser from "@babel/eslint-parser"; import globals from "globals"; import eslintJS from "@eslint/js"; import { defineConfig } from "eslint/config"; import pluginImport from "eslint-plugin-import"; import pluginJest from "eslint-plugin-jest"; import pluginN from "eslint-plugin-n"; import configPrettier from ...
818
12,753
436
0.98
2026-04-23T13:04:28.930182
true
github_chatopera_Synonyms_3d10dd0ba724b180b8926a38c4bca1aa0cdf45d2
Python
chatopera
Synonyms
5,103
892
:herb: 中文近义词:聊天机器人,智能问答工具包
[ "ai", "chatbot", "nlp", "synonyms" ]
NOASSERTION
demo.py
demo.py
5,997
#!/usr/bin/env python # -*- coding: utf-8 -*- #========================================================================= # # Copyright (c) 2017 <> All Rights Reserved # # # File: /Users/hain/ai/Synonyms/demo.py # Author: Hai Liang Wang # Date: 2017-09-28:22:23:34 # #=====================================================...
539
5,081
159
0.98
2026-04-22T17:34:15.069646
true
github_ParisNeo_lollms-webui_3007162e42246065db43b88f88bcbacb16daa5ad
JavaScript
ParisNeo
lollms-webui
4,783
582
Lord of Large Language and Multi modal Systems Web User Interface
[ "ai", "llm", "text-generation" ]
Apache-2.0
tailwind.config.js
tailwind.config.js
233
// tailwind.config.js module.exports = { purge: [], darkMode: 'media', // or 'media' or 'class' theme: { extend: {}, }, content: [ './templates/index.html', './templates/main.html', ] }
25
233
12
0.98
2026-04-17T15:47:18.095294
true
github_npm_cli_41152a8f4a20f5db2f788a9a8f72ce9d12189c04
JavaScript
npm
cli
9,697
4,289
the package manager for JavaScript
[ "javascript", "nodejs", "npm", "npm-cli", "package-manager", "tools" ]
NOASSERTION
lib/utils/explain-eresolve.js
explain-eresolve.js
2,582
// this is called when an ERESOLVE error is caught in the exit-handler, or when there's a log.warn('eresolve', msg, explanation), to turn it into a human-intelligible explanation of what's wrong and how to fix. const { explainEdge, explainNode, printNode } = require('./explain-dep.js') // expl is an explanation object...
358
2,582
65
0.98
2026-04-23T07:03:41.547270
true
github_chalk_chalk_8295d925230236959d57e8d7514c72c0dc5e7a2d
TypeScript
chalk
chalk
23,152
959
🖍 Terminal string styling done right
[ "ansi", "ansi-escape-codes", "chalk", "cli", "color", "commandline", "console", "javascript", "strip-ansi", "terminal", "terminal-emulators" ]
MIT
source/index.d.ts
index.d.ts
6,918
// TODO: Make it this when TS suports that. // import {ModifierName, ForegroundColor, BackgroundColor, ColorName} from '#ansi-styles'; // import {ColorInfo, ColorSupportLevel} from '#supports-color'; import { ModifierName, ForegroundColorName, BackgroundColorName, ColorName, } from './vendor/ansi-styles/index.js'; ...
854
6,918
326
0.98
2026-04-23T12:35:01.866762
true
github_starship_starship_04ace682bb5cef50bf24ce11c2444bb1fe590301
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/os.rs
os.rs
3,550
use indexmap::{IndexMap, indexmap}; use os_info::Type; use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct OSConfig<'a> { pub format: &'a str, ...
344
3,352
102
0.98
2026-04-17T13:17:55.633265
true
github_yeungchenwa_FontDiffuser_028a209f3ad2e90e82064f30c1484bc10746e200
Python
yeungchenwa
FontDiffuser
517
54
[AAAI2024] FontDiffuser: One-Shot Font Generation via Denoising Diffusion with Multi-Scale Content Aggregation and Style Contrastive Learning
[ "deep-learning", "diffusers", "diffusion", "font-generation", "image-generation" ]
UNKNOWN
src/dpm_solver/dpm_solver_pytorch.py
dpm_solver_pytorch.py
70,236
import torch import torch.nn.functional as F import math class NoiseScheduleVP: def __init__( self, schedule='discrete', betas=None, alphas_cumprod=None, continuous_beta_0=0.1, continuous_beta_1=20., dtype=torch.float32, )...
7,726
70,235
1,333
0.98
2026-04-22T22:42:33.723416
true
github_dimforge_rapier_7b489f5fd980af2d87803a1725f824485cd86c33
Rust
dimforge
rapier
5,287
342
2D and 3D physics engines focused on performance.
[]
Apache-2.0
src/geometry/broad_phase_pair_event.rs
broad_phase_pair_event.rs
1,433
use crate::geometry::ColliderHandle; #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] #[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))] /// A pair of collider handles. pub struct ColliderPair { /// The handle of the first collider involved in this pair. pub collider1: ColliderHandle, ...
176
1,433
49
0.98
2026-04-17T15:15:04.769157
true
github_matplotlib_matplotlib_ad0206e0db5cb02c57420a6b5467c4cf8a0c88c6
Python
matplotlib
matplotlib
22,719
8,317
matplotlib: plotting with Python
[ "data-science", "data-visualization", "gtk", "matplotlib", "plotting", "python", "qt", "tk", "wx" ]
UNKNOWN
lib/matplotlib/figure.py
figure.py
144,757
""" `matplotlib.figure` implements the following classes: `Figure` Top level `~matplotlib.artist.Artist`, which holds all plot elements. Many methods are implemented in `FigureBase`. `SubFigure` A logical figure inside a figure, usually added to a figure (or parent `SubFigure`) with `Figure.add_subfig...
14,790
144,757
3,810
0.98
2026-04-17T16:37:14.366705
true
github_livekit_livekit_0140466f2005d93b25060e8360bcea10bb9f4c13
Go
livekit
livekit
18,220
1,897
End-to-end realtime stack for connecting humans and AI
[ "golang", "media-server", "sfu", "video", "voice", "voice-ai", "webrtc" ]
Apache-2.0
pkg/service/ioservice_sip.go
ioservice_sip.go
5,856
// Copyright 2023 LiveKit, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to i...
685
5,856
167
0.98
2026-04-17T09:42:22.914675
true
github_SqueezeAILab_LLMCompiler_2938597aa8776348902381d0071a1f0c8169845e
Python
SqueezeAILab
LLMCompiler
1,840
130
[ICML 2024] LLMCompiler: An LLM Compiler for Parallel Function Calling
[ "efficient-inference", "function-calling", "large-language-models", "llama", "llama2", "llm", "llm-agent", "llm-agents", "llm-framework", "llms", "natural-language-processing", "nlp", "parallel-function-call", "transformer" ]
MIT
src/utils/time_utils.py
time_utils.py
1,498
from __future__ import annotations import time from dataclasses import dataclass, field from functools import update_wrapper from typing import Callable, Dict, List time_contexts: Dict[str, TimeContext] = {} @dataclass class TimeContext: total_time: float = 0.0 num_calls: int = 0 each_time: list[float] ...
127
1,498
51
0.98
2026-04-17T23:43:28.268063
true
github_huggingface_transformers_e833a5a8a2abb0965b8c6cf9129e6e198e9c599d
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/modelcard.py
modelcard.py
22,230
# Copyright 2018 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed ...
1,883
22,230
587
0.98
2026-04-22T13:17:59.021530
true
github_visomaster_VisoMaster_bac1212fc691519adea62977db09987263e6117d
Python
visomaster
VisoMaster
1,815
313
Powerful & Easy-to-Use Video Face Swapping and Editing Software
[ "ai", "computer-vision", "deepfake", "face-editor", "faceswap", "live-portrait", "video-editor" ]
GPL-3.0
app/processors/face_detectors.py
face_detectors.py
45,693
from typing import TYPE_CHECKING import torch from torchvision.transforms import v2 import numpy as np if TYPE_CHECKING: from app.processors.models_processor import ModelsProcessor from app.processors.utils import faceutil class FaceDetectors: def __init__(self, models_processor: 'ModelsProcesso...
3,910
45,693
1,065
0.98
2026-04-22T17:52:03.747124
true
github_alxshelepenok_lumen_fe59be6c31a13ee175fe5384e0ee9291b9620b1d
TypeScript
alxshelepenok
lumen
2,018
644
A constantly evolving and thoughtful architecture for creating static blogs.
[ "architecture", "blog", "bun", "gatsby", "graphql", "infrastructure", "jamstack", "react", "sentry", "static", "typescript" ]
MIT
src/types/frontmatter.ts
frontmatter.ts
233
interface Frontmatter { date: string; title: string; slug?: string; category: string; template: string; description?: string; tags?: Array<string>; socialImage?: { publicURL: string }; } export { type Frontmatter };
28
233
13
0.98
2026-04-23T08:41:33.225817
true
github_keystonejs_keystone-classic_587c9b15e66d018c7ce36b142b80feab0a27503e
JavaScript
keystonejs
keystone-classic
14,530
2,175
Node.js CMS and web app framework
[ "cms", "javascript", "keystonejs", "nodejs" ]
MIT
lib/middleware/api.js
api.js
1,353
/** * Adds shortcut methods for JSON API responses: * * * `res.apiResponse(data)` * * `res.apiError(key, err, msg, code)` * * `res.apiNotFound(err, msg)` * * `res.apiNotAllowed(err, msg)` * * ####Example: * * app.all('/api*', keystone.middleware.api); * * @param {app.request} req * @param {app....
196
1,353
59
0.98
2026-04-23T06:55:32.815995
true
github_drprojects_superpoint_transformer_f3cd458219f1bde518b4378e3ff182bb3f936d07
Python
drprojects
superpoint_transformer
987
132
Official PyTorch implementation of Superpoint Transformer [ICCV'23], SuperCluster [3DV'24 Oral], and EZ-SP [ICRA'26]
[ "3d", "3dv2024", "deep-learning", "efficient", "fast", "graph-clustering", "hierarchical", "iccv2023", "lightweight", "panoptic-segmentation", "partition", "partitioning", "point-cloud", "pytorch", "semantic-segmentation", "superpoint", "transformer" ]
MIT
src/datasets/kitti360_config.py
kitti360_config.py
33,719
import numpy as np import os.path as osp from collections import namedtuple from src.datasets import IGNORE_LABEL as IGNORE ######################################################################## # Download information # ################################################...
2,049
33,719
518
0.98
2026-04-22T21:12:49.143731
true
github_baoyachi_shadow-rs_6cc0984a0fab6b37a57ffae5e7424f2856f3bb64
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/err.rs
err.rs
1,654
use std::error::Error; use std::error::Error as StdError; use std::fmt::{Display, Formatter}; use std::string::FromUtf8Error; /// Results returned by the `shadow-rs` build process. /// For more information see [`ShadowError`]. pub type SdResult<T> = Result<T, ShadowError>; /// `shadow-rs` build process errors. /// Th...
186
1,654
68
0.98
2026-04-17T17:08:55.901688
true
github_nodejs_node_9eac06d1fdf145ecbeeebdf0513899daea89260c
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/child_process.js
child_process.js
31,824
'use strict'; const { ArrayIsArray, ArrayPrototypePush, ArrayPrototypeReduce, ArrayPrototypeSlice, FunctionPrototype, FunctionPrototypeCall, ObjectSetPrototypeOf, ReflectApply, StringPrototypeSlice, Symbol, SymbolDispose, Uint8Array, } = primordials; const { ErrnoException, codes: { ER...
3,458
31,824
1,143
0.98
2026-04-23T06:15:50.126302
true
github_mswjs_msw_6d630ddb4e4ca9abd5c654865840cb1fff0f2bfb
TypeScript
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
src/core/getResponse.ts
getResponse.ts
844
import { createRequestId } from '@mswjs/interceptors' import type { RequestHandler } from './handlers/RequestHandler' import { executeHandlers, type ResponseResolutionContext, } from './utils/executeHandlers' /** * Finds a response for the given request instance * in the array of request handlers. * @param hand...
99
844
30
0.98
2026-04-17T17:54:36.718185
true
github_babel_babel_02229178afa6dab212b02fb5779b832282405503
TypeScript
babel
babel
43,892
5,813
🐠 Babel is a compiler for writing next generation JavaScript.
[ "ast", "babel", "compiler", "es2015", "es6", "flavortown", "javascript" ]
MIT
lib/libdom-minimal.d.ts
libdom-minimal.d.ts
503
// Minimal version of lib.dom.d.ts. @babel/standalone needs these types // to be defined, but we don't want to load the full lib.dom.d.ts in // tsconfig.dts-bundles.json because we don't want other .d.ts files to // accidentally rely on DOM features. // eslint-disable-next-line @typescript-eslint/no-unused-vars, @type...
54
503
10
0.98
2026-04-23T13:04:31.222777
true
github_vietnh1009_Flappy-bird-deep-Q-learning-pytorch_2e911b8a50b75ac3dad0bb1204ed7bccb9a06b63
Python
vietnh1009
Flappy-bird-deep-Q-learning-pytorch
557
136
Deep Q-learning for playing flappy bird game
[ "deep-q-learning", "deep-q-network", "pygame", "pytorch", "reinforcement-learning" ]
MIT
train.py
train.py
5,492
""" @author: Viet Nguyen <[REDACTED_EMAIL]> """ import argparse import os import shutil from random import random, randint, sample import numpy as np import torch import torch.nn as nn from tensorboardX import SummaryWriter from src.deep_q_network import DeepQNetwork from src.flappy_bird import FlappyBird from src.ut...
431
5,492
134
0.98
2026-04-22T20:49:06.009052
true
github_lbjlaq_Antigravity-Manager_dd53ea8926226b2b0f0366fbb885203f3e16f3d6
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/utils/cn.ts
cn.ts
171
import { type ClassValue, clsx } from 'clsx'; import { twMerge } from 'tailwind-merge'; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); }
22
171
7
0.98
2026-04-17T13:28:48.317759
true
github_rusiaaman_wcgw_c101ab164dc5cef2d16ca6b3500ef3bfe5656fa8
Python
rusiaaman
wcgw
659
61
Shell and coding agent on mcp clients
[ "agent", "ai-agent", "ai-coding", "anthropic", "chatgpt", "claude", "claude-desktop", "custom-gpt", "llm", "llm-agent", "llm-code", "mcp", "mcp-server", "openai", "shell", "terminal" ]
Apache-2.0
src/wcgw/__init__.py
__init__.py
127
from .client.mcp_server import main as mcp_server # Export mcp_server as the default entry point for wcgw listen = mcp_server
19
127
5
0.98
2026-04-23T01:16:59.146744
true
github_nodejs_node_0f74626f3f6a329e953b9c727837d64792d4fb82
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/js_stream_socket.js
js_stream_socket.js
8,580
'use strict'; const { Symbol, } = primordials; const { setImmediate } = require('timers'); const assert = require('internal/assert'); const { Socket } = require('net'); const { JSStream } = internalBinding('js_stream'); const uv = internalBinding('uv'); let debug = require('internal/util/debuglog').debuglog( 'str...
1,016
8,580
278
0.98
2026-04-23T06:15:57.210982
true
github_agent0ai_agent-zero_3d64d617c2770cafc8fc456ff2aaa72dd9ec3a5b
Python
agent0ai
agent-zero
17,046
3,498
Agent Zero AI framework
[ "agent", "ai", "assistant", "autonomous", "linux", "zero" ]
NOASSERTION
prepare.py
prepare.py
603
from helpers import dotenv, runtime, settings import string import random from helpers.print_style import PrintStyle PrintStyle.standard("Preparing environment...") try: runtime.initialize() # generate random root password if not set (for SSH) root_pass = dotenv.get_dotenv_value(dotenv.KEY_ROOT_PASSWOR...
52
603
22
0.98
2026-04-17T15:32:06.575509
true
github_aptos-labs_aptos-core_97d577596af78e9d7b00556952b471b57785e286
Rust
aptos-labs
aptos-core
6,438
3,900
Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience.
[ "aptos", "blockchain", "blockchain-network", "move", "smart-contracts" ]
NOASSERTION
api/src/set_failpoints.rs
set_failpoints.rs
1,538
// Copyright (c) Aptos Foundation // Licensed pursuant to the Innovation-Enabling Source Code License, available at https://github.com/aptos-labs/aptos-core/blob/main/LICENSE use crate::context::Context; #[allow(unused_imports)] use anyhow::{format_err, Result}; #[cfg(feature = "failpoints")] use aptos_logger::prelude...
125
1,538
53
0.98
2026-04-17T14:49:09.803248
true
github_pathwaycom_pathway_1c4a5cedbfbabc7b0a2ecb707fceeded936e5dc8
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/time.rs
time.rs
16,637
// Copyright © 2026 Pathway use std::ops::{Add, Div, Mul, Neg, Rem, Sub}; use std::str::FromStr; use chrono::offset::FixedOffset; use chrono::{self, DurationRound, LocalResult, TimeZone}; use chrono::{Datelike, Timelike}; use chrono_tz::Tz; use num_integer::Integer; use serde::{Deserialize, Serialize}; use std::fmt::...
1,637
16,636
597
0.98
2026-04-23T04:40:41.684702
true
github_kedacore_keda_58bcc12a572c2f72f9c7eec16a1bd68cc1359590
Go
kedacore
keda
10,102
1,398
KEDA is a Kubernetes-based Event Driven Autoscaling component. It provides event driven scale for any container running in Kubernetes
[ "autoscaling", "event-driven", "hacktoberfest", "keda", "kubernetes", "serverless" ]
Apache-2.0
pkg/scalers/azure_servicebus_scaler.go
azure_servicebus_scaler.go
11,517
package scalers /* Copyright 2021 The KEDA Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in...
1,113
11,517
362
0.98
2026-04-17T12:46:07.768772
true
github_v2ray_v2ray-core_a1d2628630a5572024e2e9dae8d283a9fb00f3f7
Go
v2ray
v2ray-core
46,868
8,859
A platform for building proxies to bypass network restrictions.
[ "golang", "http-proxy", "proxy", "shadowsocks", "socks", "socks5", "v2ray", "vmess" ]
MIT
app/reverse/reverse.go
reverse.go
1,939
// +build !confonly package reverse //go:generate go run v2ray.com/core/common/errors/errorgen import ( "context" "v2ray.com/core" "v2ray.com/core/common" "v2ray.com/core/common/errors" "v2ray.com/core/common/net" "v2ray.com/core/features/outbound" "v2ray.com/core/features/routing" ) const ( internalDomain...
255
1,939
99
0.98
2026-04-17T07:25:53.193608
true
github_nodejs_node_5c983b5a240108a37c5255007f210715e0bf6b51
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/buffer.js
buffer.js
42,562
// Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modi...
4,915
42,562
1,473
0.98
2026-04-23T06:15:37.697664
true
github_ory_kratos_ee04513088e5a90446e88f10d369faef0d84bf8e
Go
ory
kratos
13,583
1,127
Headless cloud-native authentication and identity management written in Go. Scales to a billion+ users. Replace Homegrown, Auth0, Okta, Firebase with better UX and DX. Passkeys, Social Sign In, OIDC, Magic Link, Multi-Factor Auth, SMS, SAML, TOTP, and more. Runs everywhere, runs best on Ory Network.
[ "hacktoberfest", "identity", "identity-management", "login", "profile-management", "registration", "user", "user-management", "user-profile", "user-profiles", "users" ]
Apache-2.0
pkg/client-go/model_admin_identity_import_credentials_lookup_secret.go
model_admin_identity_import_credentials_lookup_secret.go
5,388
/* Ory Identities API This is the API specification for Ory Identities with features such as registration, login, recovery, account verification, profile settings, password reset, identity management, session management, email and sms delivery, and more. API version: Contact: [REDACTED_EMAIL] */ // Code generated by...
522
5,388
155
0.98
2026-04-17T11:17:49.778980
true
github_pubkey_rxdb_fb3fab026dbfcb5a2fb7bf5538a7149be8d457de
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/rx-attachment.d.ts
rx-attachment.d.ts
979
import type { RxDocument } from './rx-document.d.ts'; declare type Buffer = any; export type RxAttachmentCreator = { id: string; /** * Content type like 'plain/text' */ type: string; /** * The data of the attachment. */ data: Blob; }; export type RxAttachmentCreatorBase64 ...
115
979
47
0.98
2026-04-23T08:22:12.973954
true
github_ChatGPTNextWeb_NextChat_2646ace858e23ec7c2c58c964f7fade96c641bfb
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/api/stability.ts
stability.ts
2,641
import { NextRequest, NextResponse } from "next/server"; import { getServerSideConfig } from "@/app/config/server"; import { ModelProvider, STABILITY_BASE_URL } from "@/app/constant"; import { auth } from "@/app/api/auth"; export async function handle( req: NextRequest, { params }: { params: { path: string[] } }, ...
268
2,641
100
0.98
2026-04-23T08:58:05.059475
true
github_jwadow_kiro-gateway_9f9cb41001bfad8d91539a3aea2afdb5bafcee43
Python
jwadow
kiro-gateway
944
239
Proxy API gateway for Kiro IDE & CLI (Amazon Q Developer / AWS CodeWhisperer). Use free Claude models with any client.
[ "ai", "anthropic", "api-gateway", "aws", "claude", "codewhisperer", "fastapi", "free", "kiro", "kiro-cli", "llm", "openai", "openai-api", "opencode", "opus", "proxy", "python", "sonnet", "sso", "streaming" ]
AGPL-3.0
main.py
main.py
22,399
# -*- coding: utf-8 -*- # Kiro Gateway # https://github.com/jwadow/kiro-gateway # Copyright (C) 2025 Jwadow # # 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 Lice...
2,171
22,385
652
0.98
2026-04-18T00:06:08.002101
true
github_directus_directus_0649610eb6a26f3d7af44fc5736745fd0881abb0
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
app/src/shims.d.ts
shims.d.ts
4,047
declare module '*.md' { import { DefineComponent } from 'vue'; // eslint-disable-next-line @typescript-eslint/no-empty-object-type const component: DefineComponent<{}, {}, any>; export default component; } declare module '*.yaml' { const value: Record<string, any>; export default value; } declare module '*.json...
398
4,047
149
0.98
2026-04-23T07:58:09.253667
true
github_Ottrlang_otterlang_3565dff87f0dff83340831d3a7752b6aa537e31b
Rust
Ottrlang
otterlang
671
21
Otterlang programming language 🦦
[ "compiler", "general-purpose", "language", "llvm", "otter", "otterlang", "programming-language", "pythonic", "rust", "scripting-language" ]
BSD-3-Clause
src/tools/mod.rs
mod.rs
192
//! Developer tools for OtterLang //! //! Includes profiler tools pub mod profiler; // LSP server requires tower-lsp dependency (optional feature) // #[cfg(feature = "lsp")] // pub mod lsp;
29
192
10
0.98
2026-04-17T17:09:30.534830
true
github_vietnh1009_Super-mario-bros-A3C-pytorch_385b52642415a6f5b4aff588fc0cc0722e133014
Python
vietnh1009
Super-mario-bros-A3C-pytorch
1,109
236
Asynchronous Advantage Actor-Critic (A3C) algorithm for Super Mario Bros
[ "a3c", "ai", "deep-learning", "gym", "mario", "python", "pytorch", "reinforcement-learning", "super-mario-bros" ]
MIT
src/optimizer.py
optimizer.py
570
""" @author: Viet Nguyen <[REDACTED_EMAIL]> """ import torch class GlobalAdam(torch.optim.Adam): def __init__(self, params, lr): super(GlobalAdam, self).__init__(params, lr=lr) for group in self.param_groups: for p in group['params']: state = self.state[p] ...
39
570
19
0.98
2026-04-17T16:31:35.864639
true
github_svg_svgo_c06b7bde6dbcf151caa09dbc0e6992a3beb8c523
TypeScript
svg
svgo
22,439
1,442
⚙️ Node.js tool for optimizing SVG files
[ "cli", "javascript", "minification", "nodejs", "optimization", "svg", "svgo" ]
MIT
lib/types.ts
types.ts
9,837
import { AddAttributesToSVGElementParams } from '../plugins/addAttributesToSVGElement.js'; import { AddClassesToSVGElementParams } from '../plugins/addClassesToSVGElement.js'; import { CleanupAttrsParams } from '../plugins/cleanupAttrs.js'; import { CleanupIdsParams } from '../plugins/cleanupIds.js'; import { CleanupLi...
1,019
9,837
360
0.98
2026-04-23T06:46:06.048465
true
github_rustdesk_rustdesk_bd4b21b678efec4f81d5a02d741e2108324fcdbe
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/plugin/mod.rs
mod.rs
4,714
use hbb_common::{bail, libc, log, ResultType}; #[cfg(target_os = "windows")] use std::env; use std::{ ffi::{c_char, c_int, c_void, CStr}, path::PathBuf, ptr::null, }; mod callback_ext; mod callback_msg; mod config; pub mod desc; mod errno; pub mod ipc; mod manager; pub mod native; pub mod native_handlers; ...
476
4,714
189
0.98
2026-04-17T13:14:54.395511
true
github_vercel_swr_41ab8864f3279400ff7d619de03289458c063bcc
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/subscription/index.ts
index.ts
3,576
import type { Key, SWRHook, Middleware, SWRConfiguration, SWRConfig } from '../index' import type { SWRSubscriptionOptions, SWRSubscription, SWRSubscriptionResponse, SWRSubscriptionHook } from './types' import useSWR from '../index' import { withMiddleware, serialize, useIsomorphicLayoutEffect, ...
411
3,576
135
0.98
2026-04-23T09:00:08.860332
true
github_vladkens_macmon_4d00fabfa31d6ada2c6227dc7a8360215fdb2810
Rust
vladkens
macmon
1,463
51
🦀🌡️ Real-time system monitor for Apple Silicon Macs (M1–M5). No sudo. TUI, JSON/Prometheus metrics server, and Rust library.
[ "apple-silicon", "cli", "cpu", "cpu-monitoring", "gpu", "gpu-monitoring", "grafana", "m1", "m2", "m3", "m4", "m5", "macos", "monitoring", "prometheus", "ratatui", "rust", "rust-library", "system-monitor", "tui" ]
MIT
src/metrics.rs
metrics.rs
12,995
use core_foundation::dictionary::CFDictionaryRef; use serde::Serialize; use crate::sources::{ IOHIDSensors, IOReport, SMC, SocInfo, cfio_get_residencies, cfio_watts, libc_ram, libc_swap, }; type WithError<T> = Result<T, Box<dyn std::error::Error>>; // const CPU_FREQ_DICE_SUBG: &str = "CPU Complex Performance State...
1,496
12,985
366
0.98
2026-04-17T19:30:29.609481
true
github_livekit_livekit_ba2931a523477cbb4ffaba8ee00ca03a4dceabd2
Go
livekit
livekit
18,220
1,897
End-to-end realtime stack for connecting humans and AI
[ "golang", "media-server", "sfu", "video", "voice", "voice-ai", "webrtc" ]
Apache-2.0
pkg/service/redisstore_sip.go
redisstore_sip.go
8,100
// Copyright 2023 LiveKit, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to i...
956
8,100
255
0.98
2026-04-17T09:42:24.414283
true
github_NodeBB_NodeBB_c388023840c17289fcb4ed304479ec7dc949347c
JavaScript
NodeBB
NodeBB
15,048
2,942
Node.js based forum software built for the modern web
[ "community", "forum", "javascript", "mongodb", "node", "nodebb", "nodejs", "postgresql", "redis", "socket-io", "websockets" ]
GPL-3.0
src/controllers/authentication.js
authentication.js
16,289
'use strict'; const winston = require('winston'); const passport = require('passport'); const nconf = require('nconf'); const validator = require('validator'); const _ = require('lodash'); const util = require('util'); const db = require('../database'); const meta = require('../meta'); const analytics = require('../a...
1,603
16,289
495
0.98
2026-04-23T06:53:09.391272
true
github_rustdesk_rustdesk_0436a23f2b3882d33b8216841698e495ec0b4d61
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/naming.rs
naming.rs
897
mod custom_server; use hbb_common::{ResultType, base64::{engine::general_purpose::URL_SAFE_NO_PAD, Engine as _}}; use custom_server::*; fn gen_name(lic: &CustomServer) -> ResultType<String> { let tmp = URL_SAFE_NO_PAD.encode(&serde_json::to_vec(lic)?); Ok(tmp.chars().rev().collect()) } fn main() { let arg...
73
897
29
0.98
2026-04-17T13:14:47.172362
true
github_timescale_pg-aiguide_9db75401bb97f8a22d40042d91b7a050be232430
TypeScript
timescale
pg-aiguide
1,697
84
MCP server and Claude plugin for Postgres skills and documentation. Helps AI coding tools generate better PostgreSQL code.
[ "ai", "ai-agents", "ai-coding", "claude-code-plugin", "claude-code-plugins", "claude-code-plugins-marketplace", "claude-marketplace", "claude-plugin", "claude-skills", "docs", "documentation", "mcp", "mcp-server", "postgres", "postgresql", "skills" ]
Apache-2.0
src/util/featureFlags.test.ts
featureFlags.test.ts
3,505
import { afterEach, beforeEach, describe, expect, test } from 'bun:test'; import { parseFeatureFlags } from './featureFlags.js'; describe('parseFeatureFlags', () => { let originalEnv: string | undefined; beforeEach(() => { originalEnv = process.env.DISABLE_MCP_SKILLS; delete process.env.DISABLE_MCP_SKILL...
330
3,505
104
0.98
2026-04-22T17:54:36.462453
true
github_stair-lab_kg-gen_941b52b9849fc1da6fb2dc7a183298f128e74921
Python
stair-lab
kg-gen
1,114
165
[NeurIPS '25] Knowledge Graph Generation from Any Text
[ "benchmark", "knowledge-graph", "llm" ]
UNKNOWN
src/kg_gen/cli.py
cli.py
4,508
#!/usr/bin/env python3 """ Command line interface for kg-gen. """ import argparse import subprocess import sys import os from pathlib import Path import importlib.util def check_and_install_mcp_dependencies(): """Check if MCP dependencies are installed, and install them if not.""" # Check if fastmcp is avail...
416
4,502
148
0.98
2026-04-22T16:52:21.112762
true
github_PyO3_pyo3_d5c054a0111481a2fd5f84757e6c25fa2f1b364b
Rust
PyO3
pyo3
15,582
958
Rust bindings for the Python interpreter
[ "binding", "ffi", "python", "python-c-api", "rust" ]
Apache-2.0
src/err/downcast_error.rs
downcast_error.rs
5,336
#![allow(deprecated)] use std::borrow::Cow; use crate::{ exceptions, types::{PyAnyMethods, PyStringMethods, PyType, PyTypeMethods}, Borrowed, Bound, IntoPyObject, Py, PyAny, PyErr, PyErrArguments, Python, }; /// Error that indicates a failure to convert a PyAny to a more specific Python type. #[derive(De...
537
5,336
184
0.98
2026-04-17T13:52:16.863641
true