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_hapijs_hapi_de87761140f5dc1f967385159f60112b8b14afe9
JavaScript
hapijs
hapi
14,783
1,344
The Simple, Secure Framework Developers Trust
[ "application", "framework", "hapi", "http", "nodejs" ]
NOASSERTION
lib/security.js
security.js
2,419
'use strict'; const internals = {}; exports.route = function (settings) { if (!settings) { return null; } const security = settings; if (security.hsts) { if (security.hsts === true) { security._hsts = 'max-age=15768000'; } else if (typeof security.hsts ==...
223
2,419
87
0.98
2026-04-23T06:53:48.276599
true
github_howtographql_howtographql_d354973e545090f6aa158ae7688db679b08f7c70
TypeScript
howtographql
howtographql
8,728
1,137
The Fullstack Tutorial for GraphQL
[ "apollographql", "graphql", "prisma", "tutorial" ]
MIT
src/utils/getStackName.ts
getStackName.ts
327
import data from '../data/stacks' const localMap = { advanced: 'Advanced', basics: 'Basics', } export function getStackName(group: string): string | null { if (localMap[group]) { return localMap[group] } const stack = data.find(s => s.key === group) if (stack) { return stack.title } return ...
44
327
21
0.98
2026-04-18T01:29:26.126687
true
github_avajs_ava_a1524f2cca29de7785af191405bd7e60b31d4166
TypeScript
avajs
ava
20,850
1,406
Node.js test runner that lets you develop with confidence 🚀
[ "assert", "async", "async-functions", "ava", "cli", "cli-app", "concurrency", "javascript", "node", "nodejs", "performance", "tap", "tdd", "test-framework", "test-runner", "testing", "unicorns", "unit-testing" ]
MIT
plugin.d.ts
plugin.d.ts
110
// For compatibility with resolution algorithms other than Node16. export * from './entrypoints/plugin.cjs';
13
110
4
0.98
2026-04-23T06:48:18.716424
true
github_iperov_DeepFaceLab_1a4c3d29e724da56a3e151d22c2bbb95b421ce90
Python
iperov
DeepFaceLab
19,159
860
DeepFaceLab is the leading software for creating deepfakes.
[ "arxiv", "creating-deepfakes", "deep-face-swap", "deep-learning", "deep-neural-networks", "deepface", "deepfacelab", "deepfakes", "deeplearning", "face-swap", "faceswap", "fakeapp", "machine-learning", "neural-nets", "neural-networks" ]
GPL-3.0
core/imagelib/SegIEPolys.py
SegIEPolys.py
4,426
import numpy as np import cv2 from enum import IntEnum class SegIEPolyType(IntEnum): EXCLUDE = 0 INCLUDE = 1 class SegIEPoly(): def __init__(self, type=None, pts=None, **kwargs): self.type = type if pts is None: pts = np.empty( (0,2), dtype=np.float32 ) ...
414
4,426
158
0.98
2026-04-22T13:38:19.664236
true
github_starship_starship_f3857557e083970b36d08048e697bff405a392f0
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/cpp.rs
cpp.rs
1,012
use crate::configs::cc::CcConfig; use serde::{Deserialize, Serialize}; #[derive(Default, Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] pub struct CppConfigMarker; pub type CppConfig<'a> = CcConfig<'a, CppConfigMarker>;...
79
1,012
35
0.98
2026-04-17T13:17:32.324007
true
github_matryer_xbar_f3943af8c4bd55c6b85659886565471fbfb7ba82
JavaScript
matryer
xbar
18,017
651
Put the output from any script or program into your macOS Menu Bar (the BitBar reboot)
[ "bitbar", "mac", "macos-menu", "macosx", "menubar", "scripting", "xbar" ]
MIT
app/frontend/rollup.config.js
rollup.config.js
2,512
import svelte from 'rollup-plugin-svelte' import resolve from '@rollup/plugin-node-resolve' import commonjs from '@rollup/plugin-commonjs' import livereload from 'rollup-plugin-livereload' import { terser } from 'rollup-plugin-terser' import postcss from 'rollup-plugin-postcss' import autoPreprocess from 'svelte-prepro...
299
2,512
113
0.98
2026-04-17T09:43:52.148828
true
github_ssbc_patchwork_97866b667571726fafcaa848a0c4bdf88aecc198
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/many.js
many.js
875
module.exports = function many (ids, fn, intl) { ids = Array.from(ids) const featuredIds = ids.slice(0, 4) if (ids.length) { if (ids.length > 4) { return [ fn(featuredIds[0]), ', ', fn(featuredIds[1]), ', ', fn(featuredIds[2]), intl(' and '), ids.length - 3, intl(' other...
104
875
36
0.98
2026-04-23T07:48:56.343131
true
github_rust-lang_miri_220233f8ff5f0b5a4fccca4f57bb85c4f77ab8a6
Rust
rust-lang
miri
6,036
467
An interpreter for Rust's mid-level intermediate representation
[]
Apache-2.0
src/data_structures/mono_hash_map.rs
mono_hash_map.rs
4,764
//! This is a "monotonic `FxHashMap`": A `FxHashMap` that, when shared, can be pushed to but not //! otherwise mutated. We also box items in the map. This means we can safely provide //! shared references into existing items in the `FxHashMap`, because they will not be dropped //! (from being removed) or moved (because...
667
4,764
119
0.98
2026-04-17T14:53:21.625916
true
github_codenotary_immudb_724d9cf4c8003c5b5f1fd44a9415a4cb39f8f79b
Go
codenotary
immudb
8,958
362
immudb - immutable database based on zero trust, SQL/Key-Value/Document model, tamperproof, data change history
[ "auditable", "compliance", "cryptographic", "database", "gdpr", "go", "immutable", "immutable-database", "key-value", "merkle-tree", "pci-dss", "performance", "sql", "tamper-evident", "tamperproof", "timetravel", "verification", "verify", "zero-trust" ]
NOASSERTION
pkg/database/db_manager.go
db_manager.go
8,678
/* Copyright 2025 Codenotary Inc. All rights reserved. SPDX-License-Identifier: BUSL-1.1 you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mariadb.com/bsl11/ Unless required by applicable law or agreed to in writing, software distributed under the Licen...
1,178
8,678
482
0.98
2026-04-17T18:11:17.733586
true
github_microsoft_qlib_0a4c1ac2ec0487695fb3aca863a01cde80ca9425
JavaScript
microsoft
qlib
40,835
6,425
Qlib is an AI-oriented Quant investment platform that aims to use AI tech to empower Quant Research, from exploring ideas to implementing productions. Qlib supports diverse ML modeling paradigms, including supervised learning, market dynamics modeling, and RL, and is now equipped with https://github.com/microsoft/RD-Ag...
[ "algorithmic-trading", "auto-quant", "deep-learning", "finance", "fintech", "investment", "machine-learning", "paper", "platform", "python", "quant", "quant-dataset", "quant-models", "quantitative-finance", "quantitative-trading", "research", "research-paper", "stock-data" ]
MIT
.commitlintrc.js
.commitlintrc.js
928
module.exports = { extends: ["@commitlint/config-conventional"], rules: { // Configuration Format: [level, applicability, value] // level: Error level, usually expressed as a number: // 0 - disable rule // 1 - Warning (does not prevent commits) // 2 - Error (w...
109
920
22
0.98
2026-04-17T06:43:31.419207
true
github_babel_babel_b56ac48d86503c483a6984601197293627b1e861
TypeScript
babel
babel
43,892
5,813
🐠 Babel is a compiler for writing next generation JavaScript.
[ "ast", "babel", "compiler", "es2015", "es6", "flavortown", "javascript" ]
MIT
Gulpfile.ts
Gulpfile.ts
38,755
import path from "node:path"; import fs from "node:fs"; import { cpus } from "node:os"; import { createRequire } from "node:module"; import { fileURLToPath } from "node:url"; import { Transform as TransformStream } from "node:stream"; import { callbackify } from "node:util"; import { styleText } from "node:util"; // @t...
2,968
38,753
1,196
0.98
2026-04-23T13:04:26.746642
true
github_asciimoo_wuzz_2fa9590eec4c3a870c92b9f692629eff734bd357
Go
asciimoo
wuzz
10,715
410
Interactive cli tool for HTTP inspection
[ "cli", "curl", "go", "golang", "http", "http-inspection", "inspector" ]
AGPL-3.0
request-headers.go
request-headers.go
533
package main var REQUEST_HEADERS = []string{ "Accept", "Accept-Charset", "Accept-Encoding", "Accept-Language", "Accept-Datetime", "Authorization", "Cache-Control", "Connection", "Cookie", "Content-Length", "Content-MD5", "Content-Type", "Date", "Expect", "Forwarded", "From", "Host", "If-Match", "If-...
40
533
38
0.98
2026-04-17T12:32:11.047381
true
github_tangly1024_NotionNext_0996448748662ae8d2daf953b0bcb7d4856607cb
JavaScript
tangly1024
NotionNext
11,344
14,587
使用 NextJS + Notion API 实现的,支持多种部署方案的静态博客,无需服务器、零门槛搭建网站,为Notion和所有创作者设计。 (A static blog built with NextJS and Notion API, supporting multiple deployment options. No server required, zero threshold to set up a website. Designed for Notion and all creators.)
[ "blog", "nextjs", "notion", "react", "tailwindcss", "vercel", "zeabur" ]
MIT
lib/build/staticPaths.js
staticPaths.js
1,360
// lib/build/staticPaths.js import { fetchGlobalAllData } from '@/lib/db/notion' import { prefetchAllBlockMaps } from '@/lib/build/prefetch' import { isExport } from '../utils/buildMode' let _prefetchDone = false // 模块级标记,同一构建进程只预热一次 export async function getStaticPathsBase(filterFn) { if (!isExport()) { retur...
137
1,198
43
0.98
2026-04-23T05:40:48.819488
true
github_devspace-sh_devspace_eae2727a682492985bb2b361e635ad9f95d8147c
Go
devspace-sh
devspace
4,958
408
DevSpace - The Fastest Developer Tool for Kubernetes ⚡ Automate your deployment workflow with DevSpace and develop software directly inside Kubernetes.
[ "cli", "cloud-native", "container", "containerization", "dev", "developer-tool", "developer-tools", "development", "development-tools", "devops", "devops-tools", "devspace", "devtool", "docker", "golang", "helm", "kaniko", "kubernetes", "microservice", "minikube" ]
Apache-2.0
cmd/build.go
build.go
1,272
package cmd import ( "github.com/loft-sh/devspace/cmd/flags" "github.com/loft-sh/devspace/pkg/devspace/config/versions/latest" "github.com/loft-sh/devspace/pkg/util/factory" "github.com/spf13/cobra" ) // NewBuildCmd creates a new devspace build command func NewBuildCmd(f factory.Factory, globalFlags *flags.Global...
107
1,272
39
0.98
2026-04-17T21:41:39.430342
true
github_adam-mcdaniel_sage_6e3cc1f81f04efbbffef70d7c7f2038ad433395a
Rust
adam-mcdaniel
sage
537
17
A programming language that's wise beyond its bytes!🌱🌿🪴
[ "algebraic-data-types", "c", "compiler", "frontend", "mobile", "pattern-matching", "polymorphism", "portable", "rust", "structural-typing", "turing-tarpit", "wasm", "web", "x86-64" ]
MIT
src/lir/mod.rs
mod.rs
4,508
//! # LIR (Low Intermediate Representation) Module //! //! This module contains a decently sized typechecked intermediate representation for the virtual machine. //! The LIR, unlike the VM and the assembly language, is *not* split into two variants: there is only one variant. //! The LIR compiler will generate core ass...
739
4,508
94
0.98
2026-04-17T17:14:54.009172
true
github_open-webui_open-webui_f59b884c51ed3c31fc0738fd38d0d75b580df5e4
TypeScript
open-webui
open-webui
133,328
18,916
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
[ "ai", "llm", "llm-ui", "llm-webui", "llms", "mcp", "ollama", "ollama-webui", "open-webui", "openai", "openapi", "rag", "self-hosted", "ui", "webui" ]
NOASSERTION
src/app.d.ts
app.d.ts
241
// See https://kit.svelte.dev/docs/types#app // for information about these interfaces declare global { namespace App { // interface Error {} // interface Locals {} // interface PageData {} // interface Platform {} } } export {};
35
241
13
0.98
2026-04-22T14:51:23.092287
true
github_welldone-software_why-did-you-render_150d9820b550f77f8123e55009884a412b9e7e5a
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
jsx-dev-runtime.js
jsx-dev-runtime.js
1,198
/* eslint-disable*/ var jsxDevRuntime = require('react/jsx-dev-runtime') var WDYR = require('@welldone-software/why-did-you-render') var origJsxDev = jsxDevRuntime.jsxDEV var wdyrStore = WDYR.wdyrStore module.exports = { ...jsxDevRuntime, jsxDEV(...args) { if (wdyrStore.React && wdyrStore.React.__IS_WDYR__) {...
95
1,198
40
0.98
2026-04-23T04:57:41.236128
true
github_olric-data_olric_4b8a974702d4b05bf41b57cc12392df2bffd517e
Go
olric-data
olric
3,439
142
Distributed, in-memory key/value store and cache. It can be used as an embedded Go library and a language-independent service.
[ "cache", "database", "distributed-cache", "distributed-database", "distributed-hash-table", "distributed-systems", "in-memory-database", "key-value", "key-value-store", "nosql", "redis" ]
Apache-2.0
internal/protocol/pubsub_test.go
pubsub_test.go
2,785
package protocol import ( "context" "testing" "github.com/stretchr/testify/require" ) func TestProtocol_ParsePublishCommand(t *testing.T) { publishCmd := NewPublish("my-pubsub", "my-message") cmd := stringToCommand(publishCmd.Command(context.Background()).String()) parsed, err := ParsePublishCommand(cmd) req...
190
2,785
92
0.98
2026-04-17T18:23:15.951426
true
github_Permify_permify_0a06cc7e590dd335780d24241238f021588fa34b
Go
Permify
permify
5,847
303
An open-source authorization as a service inspired by Google Zanzibar, designed to build and manage fine-grained and scalable authorization systems for any application. — Permify is now part of FusionAuth 🎉
[ "abac", "access-control", "acl", "authorization", "ciam", "cloud-native", "distributed", "fga", "fine-grained-access-control", "golang", "grpc", "kubernetes", "least-privilege", "permission", "permissions", "rbac", "rebac", "security", "zanzibar" ]
AGPL-3.0
pkg/balancer/balancer.go
balancer.go
8,018
package balancer import ( "errors" "fmt" "log/slog" "google.golang.org/grpc/balancer" "google.golang.org/grpc/balancer/base" "google.golang.org/grpc/connectivity" "google.golang.org/grpc/resolver" "github.com/Permify/permify/pkg/consistent" ) type Balancer struct { // Current overall connectivity state of ...
767
8,018
264
0.98
2026-04-17T21:20:25.528849
true
github_Chalarangelo_30-seconds-of-code_14b9fb085ebf8cc4a143bb64806baeadf875c61c
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/stringUtils.js
stringUtils.js
1,740
import settings from '#src/config/settings.js'; export default class StringUtils { static capitalize([first, ...rest], lowerRest = false) { return ( first.toUpperCase() + (lowerRest ? rest.join('').toLowerCase() : rest.join('')) ); } static toKebabCase(str) { return ( str && ...
146
1,740
79
0.98
2026-04-23T06:14:56.846341
true
github_Chalarangelo_30-seconds-of-code_8b37dc8b6f7eb1057f872387404cfc2da25c76e9
TypeScript
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
consts.ts
consts.ts
261
// Place any global data in this file. // You can import this data from anywhere in your site by using the `import` keyword. export const SITE_TITLE = '30 seconds of code'; export const SITE_DESCRIPTION = 'Coding articles to level up your development skills';
44
261
6
0.98
2026-04-23T06:14:49.802379
true
github_bigint_hey_b434552ea8aecf0e24c167ec5dac077e9120203f
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/data/regex.ts
regex.ts
1,422
import regexLookbehindAvailable from "./utils/regexLookbehindAvailable"; const RESTRICTED_SYMBOLS = "☑️✓✔✅"; // We only want to match a mention when the `@` character is at the start of the // line or immediately after whitespace. const MATCH_BEHIND = regexLookbehindAvailable ? "(?<=^|\\s)" : ""; const MENTION_NAMES...
128
1,412
34
0.98
2026-04-18T01:22:56.245304
true
github_micro-editor_micro_6844cf4a58492bbaa92ae86dede4e72afc007497
Go
micro-editor
micro
28,429
1,304
A modern and intuitive terminal-based text editor
[ "command-line", "cross-platform", "editor", "go", "golang", "micro", "terminal", "text-editor" ]
MIT
internal/action/actions_posix.go
actions_posix.go
618
//go:build linux || darwin || dragonfly || solaris || openbsd || netbsd || freebsd package action import ( "syscall" "github.com/micro-editor/micro/v2/internal/screen" ) // Suspend sends micro to the background. This is the same as pressing CtrlZ in most unix programs. // This only works on linux and has no defau...
89
618
27
0.98
2026-04-17T08:23:11.217493
true
github_huggingface_transformers_82856de433c66bbe7dcb90552a1bb34fac33eefc
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/tokenization_utils_sentencepiece.py
tokenization_utils_sentencepiece.py
13,649
# Copyright 2020 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,314
13,643
316
0.98
2026-04-22T13:18:08.132785
true
github_moby_moby_496f5475d969af962ca6f81701013c2e1b802130
Go
moby
moby
71,503
18,918
The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems
[ "containers", "docker", "go", "golang" ]
Apache-2.0
pkg/process/process_test.go
process_test.go
839
package process import ( "fmt" "os" "os/exec" "runtime" "testing" ) func TestAlive(t *testing.T) { for _, pid := range []int{0, -1, -123} { t.Run(fmt.Sprintf("invalid process (%d)", pid), func(t *testing.T) { if Alive(pid) { t.Errorf("PID %d should not be alive", pid) } }) } t.Run("current proce...
119
839
41
0.98
2026-04-17T07:12:59.291970
true
github_apollographql_apollo-client_624db75f8ed87481de607334d03ffc5ef20b1d16
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/utilities/isNetworkRequestInFlight.ts
isNetworkRequestInFlight.ts
380
import type { NetworkStatus } from "@apollo/client"; import { isNetworkRequestSettled } from "./isNetworkRequestSettled.js"; /** * Returns true if there is currently a network request in flight according to a given network * status. */ export function isNetworkRequestInFlight( networkStatus?: NetworkStatus ): bo...
45
380
14
0.98
2026-04-18T01:25:57.924807
true
github_muicss_mui_87ebb0806f681d0a4767db8d8c3df1c1f7833abb
JavaScript
muicss
mui
4,489
416
Lightweight CSS framework
[ "css-framework", "google-material", "javascript", "lightweight-css-framework", "material", "meteor", "mui", "nodejs" ]
NOASSERTION
src/js/tabs.js
tabs.js
4,257
/** * MUI CSS/JS tabs module * @module tabs */ 'use strict'; var jqLite = require('./lib/jqLite'), util = require('./lib/util'), animationHelpers = require('./lib/animationHelpers'), attrKey = 'data-mui-toggle', attrSelector = '[' + attrKey + '="tab"]', controlsAttrKey = 'data-mui-controls', ...
464
4,257
164
0.98
2026-04-23T07:33:43.829159
true
github_mtkennerly_ludusavi_708d22fa25b0257e10ebaef340f8a8a31ad5524e
Rust
mtkennerly
ludusavi
5,306
109
Backup tool for PC game saves
[ "backup", "cli", "cross-platform", "games", "gui", "saves", "steam", "steam-deck", "steam-proton", "steamdeck", "videogames" ]
MIT
src/gui/game_list.rs
game_list.rs
37,441
use std::collections::{BTreeSet, HashSet}; use iced::{ alignment::Horizontal as HorizontalAlignment, keyboard::Modifiers, padding, widget::tooltip, Alignment, Length, }; use crate::{ gui::{ badge::Badge, button, common::{ BackupPhase, GameAction, GameSelection, Message, Ope...
1,862
37,441
935
0.98
2026-04-17T15:14:25.560428
true
github_tektoncd_pipeline_651e7c1c36d6a9aa4ed7d010d21fc8262a372b57
Go
tektoncd
pipeline
8,938
1,912
A cloud-native Pipeline resource.
[ "cdf", "hacktoberfest", "kubernetes", "pipeline", "tekton" ]
Apache-2.0
cmd/sidecarlogresults/main.go
main.go
3,350
/* Copyright 2019 The Tekton 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, softw...
420
3,350
97
0.98
2026-04-17T20:15:44.840489
true
github_starship_starship_30c44d55440181c68e5ed4b7ca576878cfaeb5b8
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/conda.rs
conda.rs
811
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct CondaConfig<'a> { pub truncation_length: usize, pub format: &'a str, pub symbol: &'a s...
77
808
33
0.98
2026-04-17T13:17:31.739451
true
github_StepfenShawn_Cantonese_ec49abfb7a4d6425fba7ca8f469df3265075a942
Rust
StepfenShawn
Cantonese
1,200
46
粤语編程語言.The Cantonese programming language.
[ "cantonese", "cantonese-language", "compiler", "programming-language", "python3", "rust-lang" ]
MIT
src/diagnostics/reporter.rs
reporter.rs
2,167
// 粤语编程語言嘅錯誤報告器 use crate::ast::Span; use crate::parser::ast_builder::ParseError; use std::io; /// 診斷錯誤報告器 pub struct DiagnosticReporter { source_code: String, file_name: String, } impl DiagnosticReporter { /// 創建一個新嘅診斷報告器 pub fn new(source_code: String, file_name: String) -> Self { Self { ...
179
1,957
76
0.98
2026-04-17T17:07:30.937217
true
github_atopile_atopile_91d90662541d3ebe748d5a2350c3222686e7cb90
JavaScript
atopile
atopile
3,179
175
Design circuit boards with code! ✨ Get software-like design reuse 🚀, validation, version control and collaboration in hardware; starting with electronics ⚡️
[ "agent", "ai", "cad", "eda", "electronics" ]
MIT
src/vscode-atopile/webpack.config.js
webpack.config.js
2,228
//@ts-check 'use strict'; const path = require('path'); //@ts-check /** @typedef {import('webpack').Configuration} WebpackConfig **/ /** @type WebpackConfig */ const extensionConfig = { target: 'node', // vscode extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/ mode: 'none...
220
2,213
62
0.98
2026-04-22T17:40:48.914726
true
github_ChatGPTNextWeb_NextChat_1acfc1289de6f3b823d2c2e8af6a3f2f905404a7
TypeScript
ChatGPTNextWeb
NextChat
87,769
59,807
✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows
[ "calclaude", "chatgpt", "claude", "cross-platform", "desktop", "fe", "gemini", "gemini-pro", "gemini-server", "gemini-ultra", "gpt-4o", "groq", "nextjs", "ollama", "react", "tauri", "tauri-app", "vercel", "webui" ]
MIT
app/utils/sync.ts
sync.ts
4,781
import { ChatSession, useAccessStore, useAppConfig, useChatStore, } from "../store"; import { useMaskStore } from "../store/mask"; import { usePromptStore } from "../store/prompt"; import { StoreKey } from "../constant"; import { merge } from "./merge"; type NonFunctionKeys<T> = { [K in keyof T]: T[K] extend...
493
4,781
166
0.98
2026-04-23T08:58:36.206125
true
github_graphql_graphql-js_1bd5cf0825e8c77989cbb8d4dcbe005bfec665cd
TypeScript
graphql
graphql-js
20,323
2,056
A reference implementation of GraphQL for JavaScript
[ "graphql", "graphql-js" ]
MIT
src/utilities/typedQueryDocumentNode.ts
typedQueryDocumentNode.ts
862
import type { DocumentNode, ExecutableDefinitionNode } from '../language/ast'; /** * Wrapper type that contains DocumentNode and types that can be deduced from it. */ export interface TypedQueryDocumentNode< TResponseData = { [key: string]: any }, TRequestVariables = { [key: string]: any }, > extends DocumentNode...
122
862
20
0.98
2026-04-18T01:25:12.870576
true
github_syncthing_syncthing_924e6a4abd74e0cf3f4250aa4849ff2beb3bde3d
Go
syncthing
syncthing
81,798
4,996
Open Source Continuous File Synchronization
[ "go", "p2p", "peer-to-peer", "synchronization" ]
MPL-2.0
lib/config/compression_test.go
compression_test.go
966
// Copyright (C) 2015 The Protocol Authors. package config import "testing" func TestCompressionMarshal(t *testing.T) { uTestcases := []struct { s string c Compression }{ {"true", CompressionMetadata}, {"false", CompressionNever}, {"never", CompressionNever}, {"metadata", CompressionMetadata}, {"alwa...
127
966
50
0.98
2026-04-17T07:10:09.169474
true
github_kubernetes_kubernetes_21d0b0fa312e0e7fc864b80eb583ce91533bc700
Go
kubernetes
kubernetes
121,742
42,878
Production-Grade Container Scheduling and Management
[ "cncf", "containers", "go", "kubernetes" ]
Apache-2.0
cmd/prune-junit-xml/prunexml.go
prunexml.go
6,761
/* Copyright 2022 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, ...
845
6,761
211
0.98
2026-04-17T06:52:43.353983
true
github_react-dates_react-dates_9b6d340445db087d310ddcf956a74291ddf72488
JavaScript
react-dates
react-dates
12,203
1,683
An easily internationalizable, mobile-friendly datepicker library for the web
[ "calendar", "datepicker", "dates", "react", "react-component", "react-dates" ]
MIT
src/utils/getCalendarMonthWidth.js
getCalendarMonthWidth.js
142
export default function getCalendarMonthWidth(daySize, calendarMonthPadding = 0) { return (7 * daySize) + (2 * calendarMonthPadding) + 1; }
19
142
4
0.98
2026-04-23T05:34:59.227348
true
github_authelia_authelia_4809a111343b2a465c23cf3d51cb4f3a302a0261
Go
authelia
authelia
27,525
1,374
The Single Sign-On Multi-Factor portal for web apps, now OpenID Certified™
[ "2fa", "authentication", "docker", "golang", "kubernetes", "ldap", "mfa", "multifactor", "oauth2", "openid-connect", "passkeys", "push-notifications", "security", "sso", "sso-authentication", "totp", "two-factor", "two-factor-authentication", "webauthn", "yubikey" ]
Apache-2.0
cmd/authelia-gen/openid_conformance.go
openid_conformance.go
7,477
package main import ( "fmt" "net/url" "strings" "github.com/go-crypt/crypt/algorithm" "github.com/go-crypt/crypt/algorithm/pbkdf2" "github.com/authelia/authelia/v4/internal/configuration/schema" "github.com/authelia/authelia/v4/internal/oidc" "github.com/authelia/authelia/v4/internal/random" ) type OpenIDCo...
458
7,477
202
0.98
2026-04-17T08:30:12.511487
true
github_MichalLytek_type-graphql_4ba4168af0ef7d8754a74ef6418784acf526bd44
TypeScript
MichalLytek
type-graphql
8,087
674
Create GraphQL schema and resolvers with TypeScript, using classes and decorators!
[ "api", "controllers", "decorators", "gql", "graphql", "graphql-js", "graphql-schema", "hacktoberfest", "resolvers", "schema", "typescript" ]
MIT
src/errors/ReflectMetadataMissingError.ts
ReflectMetadataMissingError.ts
308
export class ReflectMetadataMissingError extends Error { constructor() { super( "Looks like you've forgot to provide experimental metadata API polyfill. " + "Please read the installation instruction for more details.", ); Object.setPrototypeOf(this, new.target.prototype); } }
34
308
11
0.98
2026-04-17T17:57:52.782582
true
github_huggingface_transformers_400268de8180530ad963327c13047633f1bb1cf2
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/trainer_utils.py
trainer_utils.py
49,862
# Copyright 2020-present 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...
4,686
49,862
1,255
0.98
2026-04-22T13:18:12.843528
true
github_rayon-rs_rayon_3870e457f6f50ab01e8056cb667f05b9b9abd499
Rust
rayon-rs
rayon
12,878
584
Rayon: A data parallelism library for Rust
[]
Apache-2.0
src/iter/inspect.rs
inspect.rs
5,963
use super::plumbing::*; use super::*; use std::fmt::{self, Debug}; use std::iter; /// `Inspect` is an iterator that calls a function with a reference to each /// element before yielding it. /// /// This struct is created by the [`inspect()`] method on [`ParallelIterator`] /// /// [`inspect()`]: ParallelIterator::insp...
610
5,963
254
0.98
2026-04-17T14:16:48.575791
true
github_deeppavlov_DeepPavlov_875335e9926f5091929e82533faa1dd885d99db6
Python
deeppavlov
DeepPavlov
6,975
1,172
An open source library for deep learning end-to-end dialog systems and chatbots.
[ "ai", "artificial-intelligence", "bot", "chatbot", "chitchat", "deep-learning", "deep-neural-networks", "dialogue-agents", "dialogue-manager", "dialogue-systems", "entity-extraction", "intent-classification", "intent-detection", "machine-learning", "named-entity-recognition", "nlp", ...
Apache-2.0
setup.py
setup.py
3,477
# Copyright 2017 Neural Networks and Deep Learning lab, MIPT # 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...
245
3,477
94
0.98
2026-04-22T14:09:31.352435
true
github_Canop_broot_a7be797dc60fdfd16a3ae8e8ad34592a4f3abc82
Rust
Canop
broot
12,607
285
A new way to see and navigate directory trees : https://dystroy.org/broot
[ "balanced-bfs-descent", "command-line", "command-line-tool", "fuzzy-search", "hacktoberfest", "linux", "rust", "tree" ]
MIT
src/kitty/terminal_esc.rs
terminal_esc.rs
590
pub fn get_esc_seq(tmux_nest_count: u32) -> String { "\u{1b}".repeat(2usize.pow(tmux_nest_count)) } pub fn get_tmux_header(tmux_nest_count: u32) -> String { let mut header: String = String::new(); for i in 0..tmux_nest_count { header.push_str(&"\u{1b}".repeat(2usize.pow(i))); header.push_st...
55
590
22
0.98
2026-04-17T14:18:22.637934
true
github_ChromeDevTools_chrome-devtools-mcp_fdaa4ed96b6243b6b3434576d9f7f7e1f2c3426f
TypeScript
ChromeDevTools
chrome-devtools-mcp
35,846
2,192
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/telemetry/flagUtils.ts
flagUtils.ts
3,503
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type {cliOptions} from '../bin/chrome-devtools-mcp-cli-options.js'; import {toSnakeCase} from '../utils/string.js'; import type {FlagUsage} from './types.js'; type CliOptions = typeof cliOptions; /** * For enums, log the...
449
3,503
118
0.98
2026-04-18T00:21:06.553468
true
github_niri-wm_niri_ef9d0a50db6293d9228d1512654683d8ec0f7fce
Rust
niri-wm
niri
22,641
820
A scrollable-tiling Wayland compositor.
[ "rust", "smithay", "tiling-window-manager", "wayland", "wayland-compositor" ]
GPL-3.0
src/protocols/foreign_toplevel.rs
foreign_toplevel.rs
16,716
use std::collections::hash_map::Entry; use std::collections::HashMap; use arrayvec::ArrayVec; use smithay::output::Output; use smithay::reexports::wayland_protocols::xdg::shell::server::xdg_toplevel; use smithay::reexports::wayland_protocols_wlr; use smithay::reexports::wayland_server::backend::ClientId; use smithay::...
1,264
16,716
468
0.98
2026-04-17T13:35:42.172000
true
github_golang_go_d71af9e97e8ca961f816f753afcf3738a50fd6a2
JavaScript
golang
go
133,493
18,928
The Go programming language
[ "go", "golang", "language", "programming-language" ]
BSD-3-Clause
lib/wasm/wasm_exec.js
wasm_exec.js
16,992
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. "use strict"; (() => { const enosys = () => { const err = new Error("not implemented"); err.code = "ENOSYS"; return err; }; if (!globalThis.fs) { l...
2,076
16,992
576
0.98
2026-04-17T06:51:25.461859
true
github_nats-io_nats.go_7b216b59831d66a57dd6e9143846696fd68911e6
Go
nats-io
nats.go
6,554
797
Golang client for NATS, the cloud native messaging system.
[ "cloud-native", "cloud-native-architectures", "cloud-native-microservices", "go", "golang", "microservices", "microservices-architecture", "nats", "pub-sub" ]
Apache-2.0
timer_test.go
timer_test.go
985
// Copyright 2017-2022 The NATS 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 ...
150
985
43
0.98
2026-04-18T00:55:23.196564
true
github_ChenRocks_fast_abs_rl_3102135ccc40bafe9e955b8696e9116f0adffd59
Python
ChenRocks
fast_abs_rl
624
185
Code for ACL 2018 paper: "Fast Abstractive Summarization with Reinforce-Selected Sentence Rewriting. Chen and Bansal"
[ "abstractive-summarization", "deep-learning", "natural-language-processing", "pytorch", "reinforcement-learning" ]
MIT
eval_acl.py
eval_acl.py
1,397
""" Evaluate the output files to get the numbers reported in ACL18""" import argparse from os.path import join, abspath, dirname, exists from evaluate import eval_meteor, eval_rouge _REF_DIR = join(abspath(dirname(__file__)), 'acl18_results') def main(args): dec_dir = args.decode_dir ref_dir = join(_REF_DI...
119
1,397
44
0.98
2026-04-22T20:43:32.970698
true
github_pubkey_rxdb_0992a18a19803ed5bb0b355d34a39f7506427f81
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-storage.interface.d.ts
rx-storage.interface.d.ts
10,818
import type { BulkWriteRow, EventBulk, RxDocumentData, RxStorageBulkWriteResponse, RxStorageChangeEvent, RxStorageCountResult, RxStorageInstanceCreationParams, RxStorageQueryResult } from './rx-storage.ts'; import type { MangoQuerySelector, MangoQuerySortPart, RxJsonSchema, ...
1,487
10,818
316
0.98
2026-04-23T08:22:17.385927
true
github_illuspas_Node-Media-Server_626cfdefd80d9e25be3255f79e52372f4a80ba14
JavaScript
illuspas
Node-Media-Server
6,233
1,552
A Node.js implementation of RTMP/HTTP-FLV Media Server
[ "av1", "flv", "h264", "hevc", "livestream", "media-server", "nodejs", "rtmp", "vp9" ]
Apache-2.0
src/core/logger.js
logger.js
1,206
// @ts-check // // Created by Chen Mingliang on 23/12/01. // [REDACTED_EMAIL] // Copyright (c) 2023 NodeMedia. All rights reserved. // class Logger { constructor(level = "info") { this.levels = ["trace", "debug", "info", "warn", "error"]; this.level = this.levels.includes(level) ? level : "info"; } l...
136
1,206
65
0.98
2026-04-23T07:21:16.336945
true
github_nearai_ironclaw_596655f0f5ddc58425ca9c3d8063be85714a6d28
Rust
nearai
ironclaw
11,845
1,350
IronClaw is OpenClaw inspired implementation in Rust focused on privacy and security
[]
Apache-2.0
src/config/skills.rs
skills.rs
3,016
use std::path::PathBuf; use crate::bootstrap::ironclaw_base_dir; use crate::config::helpers::{ db_first_bool, db_first_or_default, optional_env, parse_optional_env, }; use crate::error::ConfigError; use crate::settings::Settings; /// Skills system configuration. #[derive(Debug, Clone)] pub struct SkillsConfig { ...
248
3,016
81
0.98
2026-04-17T14:20:00.905817
true
github_infiniflow_ragflow_af4720218fc5564e67335b9476de3a838043908a
Python
infiniflow
ragflow
78,360
8,839
RAGFlow is a leading open-source Retrieval-Augmented Generation (RAG) engine that fuses cutting-edge RAG with Agent capabilities to create a superior context layer for LLMs
[ "agent", "agentic", "agentic-ai", "agentic-workflow", "ai", "context-engineering", "context-retrieval", "deep-research", "deepseek", "deepseek-r1", "document-understanding", "graphrag", "harness", "llm", "mcp", "ollama", "openai", "openclaw", "rag", "retrieval-augmented-generat...
Apache-2.0
api/ragflow_server.py
ragflow_server.py
5,058
# # Copyright 2024 The InfiniFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by...
431
5,058
154
0.98
2026-04-17T15:23:14.919495
true
github_Manavarya09_design-extract_7c958fd027530c4f1e0faf62b6c4e4a410ebbcce
JavaScript
Manavarya09
design-extract
1,408
126
Extract any website's complete design system with one command. DTCG tokens, semantic+primitive+composite, MCP server for Claude Code/Cursor/Windsurf, multi-platform emitters (iOS SwiftUI, Android Compose, Flutter, WordPress), Tailwind v4, Figma variables, shadcn/ui, CSS health audit, WCAG remediation, Chrome extension....
[ "accessibility", "agent-skill", "ai", "chrome-extension", "claude-code-plugin", "cli", "css", "cursor", "design-system", "design-to-code", "design-tokens", "dtcg", "figma", "mcp-server", "npx", "playwright", "shadcn-ui", "skills-sh", "tailwind", "web-scraping" ]
MIT
src/mcp/resources.js
resources.js
1,980
// MCP resources builder. Pure/testable — returns { list, read } over the // loaded design + tokens. No transport concerns here. const URIS = { 'designlang://tokens/primitive': { name: 'Primitive tokens', description: 'DTCG primitive tier (raw colors, spacing, fonts, etc.)', }, 'designlang://tokens/seman...
204
1,978
65
0.98
2026-04-23T12:58:22.670657
true
github_huggingface_transformers_3a0dcf345280fcb13dd9cb73b4493aec0cc2e0b6
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/modeling_rope_utils.py
modeling_rope_utils.py
58,030
# Copyright 2024 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
5,737
58,028
1,044
0.98
2026-04-22T13:18:02.114163
true
github_react-dropzone_react-dropzone_44736d70fc48d058a87477eb7a34917172200fc2
JavaScript
react-dropzone
react-dropzone
10,979
797
Simple HTML5 drag-drop zone with React.js.
[ "drag-and-drop", "file", "file-upload", "react" ]
MIT
src/index.js
index.js
34,112
/* eslint prefer-template: 0 */ import React, { forwardRef, Fragment, useCallback, useEffect, useImperativeHandle, useMemo, useReducer, useRef, } from "react"; import PropTypes from "prop-types"; import { fromEvent } from "file-selector"; import { acceptPropAsAcceptAttr, allFilesAccepted, composeE...
3,819
34,112
1,104
0.98
2026-04-23T05:41:34.971742
true
github_projectdiscovery_nuclei_b19e99faf13c1419cead61889d72a348b10307d6
Go
projectdiscovery
nuclei
27,950
3,357
Nuclei is a fast, customizable vulnerability scanner powered by the global security community and built on a simple YAML-based DSL, enabling collaboration to tackle trending vulnerabilities on the internet. It helps you find vulnerabilities in your applications, APIs, networks, DNS, and cloud configurations.
[ "attack-surface", "cve-scanner", "dast", "hacktoberfest", "nuclei-engine", "security", "security-scanner", "subdomain-takeover", "vulnerability-assessment", "vulnerability-detection", "vulnerability-scanner" ]
MIT
lib/config.go
config.go
19,567
package nuclei import ( "context" "errors" "os" "time" "github.com/projectdiscovery/goflags" "github.com/projectdiscovery/gologger" "github.com/projectdiscovery/nuclei/v3/pkg/utils" "github.com/projectdiscovery/utils/errkit" "github.com/projectdiscovery/nuclei/v3/pkg/authprovider" "github.com/projectdiscov...
2,196
19,567
573
0.98
2026-04-17T08:29:17.347868
true
github_ultraworkers_claw-code_37b134c6365ec0b0fef15641652c65f44e2cce6b
Python
ultraworkers
claw-code
185,575
108,568
The repo is finally unlocked. enjoy the party! The fastest repo in history to surpass 100K stars ⭐. Join Discord: https://discord.gg/5TUQKqFWd Built in Rust using oh-my-codex.
[]
UNKNOWN
src/parity_audit.py
parity_audit.py
5,268
from __future__ import annotations import json from dataclasses import dataclass from pathlib import Path ARCHIVE_ROOT = Path(__file__).resolve().parent.parent / 'archive' / 'claude_code_ts_snapshot' / 'src' CURRENT_ROOT = Path(__file__).resolve().parent REFERENCE_SURFACE_PATH = CURRENT_ROOT / 'reference_data' / 'arc...
369
5,268
139
0.98
2026-04-17T13:13:17.119222
true
github_dalance_procs_7607408e23070d98649d24bd7e5907189c2d17a2
Rust
dalance
procs
6,018
142
A modern replacement for ps written in Rust
[ "cli", "process", "rust" ]
MIT
src/columns/maj_flt.rs
maj_flt.rs
2,131
use crate::process::ProcessInfo; use crate::{column_default, Column}; use std::cmp; use std::collections::HashMap; pub struct MajFlt { header: String, unit: String, fmt_contents: HashMap<i32, String>, raw_contents: HashMap<i32, u64>, width: usize, } impl MajFlt { pub fn new(header: Option<Stri...
185
2,131
79
0.98
2026-04-17T14:53:55.544341
true
github_Chalarangelo_30-seconds-of-code_5f8eff200fe2f54579f7cdb5573573d4a3279953
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/contentComponents.js
contentComponents.js
1,257
import { globSync } from 'glob'; import fs from 'fs-extra'; import * as sass from 'sass'; import settings from '#src/config/settings.js'; export default class ContentComponents { static prepare() { // 1. Copy scripts this.copyScripts(); // 2. Process styles this.processStyles(); } static copySc...
124
1,257
42
0.98
2026-04-23T06:14:54.305621
true
github_nodejs_node_9f1c33b0ccfe750624ce5f98871f04df3084c537
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/vm.js
vm.js
8,860
'use strict'; const { FunctionPrototypeCall, Symbol, } = primordials; const { ContextifyScript, compileFunction, } = internalBinding('contextify'); const { runInContext, } = ContextifyScript.prototype; const { vm_dynamic_import_default_internal, vm_dynamic_import_main_context_default, vm_dynamic_impor...
949
8,860
238
0.98
2026-04-23T06:16:06.039774
true
github_WhitestormJS_whs.js_f62ef15c1722991bd34ee58966916d324d5b4a6a
JavaScript
WhitestormJS
whs.js
6,336
415
:rocket: 🌪 Super-fast 3D framework for Web Applications 🥇 & Games 🎮. Based on Three.js
[ "component-driven", "framework", "high-performance", "modular", "physics", "react", "scene-graph", "web-development", "webpack" ]
MIT
rollup.config.js
rollup.config.js
1,531
import path from 'path'; import resolve from 'rollup-plugin-node-resolve'; import commonjs from 'rollup-plugin-commonjs'; import json from 'rollup-plugin-json'; import babel from 'rollup-plugin-babel'; import replace from 'rollup-plugin-replace'; // Temporary fix. const babelFix = babelPlugin => { const oldTransform...
146
1,531
65
0.98
2026-04-23T06:03:19.326616
true
github_learnapollo_learnapollo_d6c6cdd21409441f5a608bfd6cc56a5de9b20f36
JavaScript
learnapollo
learnapollo
5,166
64
👩🏻‍🏫 Learn Apollo - A hands-on tutorial for Apollo GraphQL Client (created by Graphcool)
[ "angular-2", "apollo", "apollo-ios", "apollographql", "exponent", "graphcool", "graphql", "ios", "react", "react-native", "tutorial", "vue" ]
MIT
webpack.config.js
webpack.config.js
2,039
const webpack = require('webpack') const HtmlWebpackPlugin = require('html-webpack-plugin') module.exports = { devtool: 'cheap-module-eval-source-map', entry: { app: ['whatwg-fetch', './src'], css: 'tachyons', }, output: { filename: '[name].[hash].js', publicPath: '/', }, module: { rule...
158
2,039
81
0.98
2026-04-18T01:34:33.258778
true
github_kubeedge_kubeedge_4cf470d5173bcb4e236c3d758949aee029b49164
Go
kubeedge
kubeedge
7,423
1,880
Kubernetes Native Edge Computing Framework (project under CNCF)
[ "cloud-native", "cncf", "container", "device-management", "docker", "edge-computing", "golang", "iot", "kubernetes", "mosquitto", "mqtt" ]
Apache-2.0
pkg/image/image_runtime_test.go
image_runtime_test.go
5,642
/* Copyright 2025 The KubeEdge 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, so...
465
5,642
185
0.98
2026-04-17T20:27:35.963800
true
github_GoogleCloudPlatform_kubectl-ai_915bdc23a987d4748891ca958e06f072519b0988
Go
GoogleCloudPlatform
kubectl-ai
7,415
692
AI powered Kubernetes Assistant
[ "ai", "assistant", "cli", "kubernetes" ]
Apache-2.0
pkg/tools/custom_tool_test.go
custom_tool_test.go
4,782
// 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 // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in w...
537
4,782
179
0.98
2026-04-17T20:28:19.302748
true
github_goodwithtech_dockle_af3b989154e39e484a26f422f57657915155b015
Go
goodwithtech
dockle
3,242
160
Container Image Linter for Security, Helping build the Best-Practice Docker Image, Easy to start
[ "containers", "docker", "go", "golang", "kubernetes", "linter", "security", "security-audit", "security-tools", "vulnerability" ]
Apache-2.0
cmd/dockle/main.go
main.go
266
package main import ( "github.com/goodwithtech/dockle/pkg" "github.com/goodwithtech/dockle/pkg/log" l "log" "os" ) func main() { app := pkg.NewApp() err := app.Run(os.Args) if err != nil { if log.Logger != nil { log.Fatal(err) } l.Fatal(err) } }
34
266
21
0.98
2026-04-17T22:38:26.699046
true
github_1Panel-dev_MaxKB_a3458e0a04c9c3a7af54877d5e64b56087750695
Python
1Panel-dev
MaxKB
20,756
2,780
🔥 MaxKB is an open-source platform for building enterprise-grade agents. 强大易用的开源企业级智能体平台。
[ "agent", "agentic-ai", "chatbot", "deepseek-r1", "knowledgebase", "langchain", "llama3", "llm", "maxkb", "mcp-server", "ollama", "pgvector", "qwen3", "rag" ]
GPL-3.0
main.py
main.py
4,969
import argparse import logging import os import sys import time import django from django.core import management BASE_DIR = os.path.dirname(os.path.abspath(__file__)) APP_DIR = os.path.join(BASE_DIR, 'apps') os.chdir(BASE_DIR) sys.path.insert(0, APP_DIR) os.environ.setdefault("DJANGO_SETTINGS_MODULE", "maxkb.setting...
358
4,749
148
0.98
2026-04-17T22:49:21.512233
true
github_fishaudio_Bert-VITS2_389ecccec3db10f256418e576b9e888c2c6ba872
Python
fishaudio
Bert-VITS2
8,729
1,276
vits2 backbone with multilingual-bert
[ "agent", "bert", "bert-vits", "bert-vits2", "fish", "fish-speech", "llm", "tts", "vits", "vits2", "vocoder" ]
AGPL-3.0
onnx_infer.py
onnx_infer.py
1,320
from onnx_modules.V220_OnnxInference import OnnxInferenceSession import numpy as np Session = OnnxInferenceSession( { "enc": "onnx/BertVits2.2PT/BertVits2.2PT_enc_p.onnx", "emb_g": "onnx/BertVits2.2PT/BertVits2.2PT_emb.onnx", "dp": "onnx/BertVits2.2PT/BertVits2.2PT_dp.onnx", "sdp":...
100
1,254
61
0.98
2026-04-22T15:10:04.808032
true
github_lbjlaq_Antigravity-Manager_c8793496bfaabe971d57ba9d7fa595eecf8e340d
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
vite.config.ts
vite.config.ts
925
import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; // @ts-expect-error process is a nodejs global const host = process.env.TAURI_DEV_HOST; // https://vite.dev/config/ export default defineConfig(async () => ({ plugins: [react()], // Vite options tailored for Tauri development and only...
119
925
39
0.98
2026-04-17T13:28:51.586458
true
github_keenthemes_reui_7a49bf6aa931c291867d6066cc9f039820c7b232
TypeScript
keenthemes
reui
2,838
123
Design-forward shadcn kit for interfaces that stand out. 1000+ free patterns!
[ "base-ui", "component-library", "data-grid", "data-table", "nextjs", "radix-ui", "react", "react-components", "shadcn", "shadcn-registry", "shadcn-ui", "tailwind-css", "tailwindcss-v4", "tanstack", "typescript", "ui-blocks", "ui-components" ]
MIT
lib/source.ts
source.ts
191
import { loader } from "fumadocs-core/source" import { docs } from "fumadocs-mdx:collections/server" export const source = loader({ baseUrl: "/docs", source: docs.toFumadocsSource(), })
22
191
8
0.98
2026-04-23T10:42:44.776241
true
github_final-form_react-final-form_77b2883c7bd046967d05c165916ee94b50b564cf
TypeScript
final-form
react-final-form
7,437
496
🏁 High performance subscription-based form state management for React
[ "asynchronous", "form", "form-validation", "forms", "react", "state-management", "subscription", "validation" ]
MIT
src/useConstant.ts
useConstant.ts
580
import React from "react"; /** * A simple hook to create a constant value that lives for * the lifetime of the component. * * Plagiarized from https://github.com/Andarist/use-constant * * Do NOT reuse this code unless you know what you're doing. * Use Andarist's hook; it's more fault tolerant to things like * ...
92
580
22
0.98
2026-04-23T05:57:58.598835
true
github_milvus-io_milvus_efdc0c908a82ddf8092536aad0d5893c8633c3e7
Go
milvus-io
milvus
43,838
3,961
Milvus is a high-performance, cloud-native vector database built for scalable vector ANN search
[ "anns", "cloud-native", "diskann", "distributed", "embedding-database", "embedding-similarity", "embedding-store", "faiss", "golang", "hnsw", "image-search", "llm", "nearest-neighbor-search", "rag", "vector-database", "vector-search", "vector-similarity", "vector-store" ]
Apache-2.0
internal/allocator/interface.go
interface.go
1,238
// Licensed to the LF AI & Data foundation under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use th...
186
1,238
34
0.98
2026-04-17T07:28:53.509212
true
github_matplotlib_matplotlib_cdd03bcd7e89418e67ce3cc04f65e22c48c40ae1
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/patches.py
patches.py
171,468
r""" Patches are `.Artist`\s with a face color and an edge color. """ import functools import inspect import math from numbers import Number, Real import textwrap from types import SimpleNamespace from collections import namedtuple from matplotlib.transforms import Affine2D import numpy as np import matplotlib as mp...
17,776
171,458
4,907
0.98
2026-04-17T16:37:21.143677
true
github_aydinnyunus_ai-captcha-bypass_4a614c5cbe878f0c8e01120103f6e7acc1c66d5e
Python
aydinnyunus
ai-captcha-bypass
1,076
110
AI Captcha Bypass
[ "ai", "ai-security", "captcha", "python", "security" ]
NOASSERTION
puzzle_solver.py
puzzle_solver.py
16,485
import os import time import random import math from datetime import datetime from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from PIL import Image, ImageDraw, ImageFont fr...
1,190
16,477
359
0.98
2026-04-17T16:32:30.136730
true
github_streamlit_streamlit_79be4009b85dbe58af73559754154bac9c32902d
Python
streamlit
streamlit
44,247
4,197
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/tests/testutil.py
testutil.py
6,447
# 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...
666
6,447
181
0.98
2026-04-17T06:43:09.631120
true
github_Pythagora-io_gpt-pilot_796766dd1e010e45f7cae64a72a016f5278976a8
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/llm/anthropic_client.py
anthropic_client.py
5,649
import asyncio import datetime import zoneinfo from typing import Optional, Tuple from anthropic import AsyncAnthropic, RateLimitError from httpx import Timeout from core.config import LLMProvider from core.llm.convo import Convo from core.log import get_logger from .base import BaseLLMClient log = get_logger(__nam...
437
5,649
155
0.98
2026-04-17T15:26:47.106473
true
github_gravitational_teleport_f0a00d3249286b9fb8dc2c39158250afb89b683a
Go
gravitational
teleport
20,148
2,044
The easiest, and most secure way to access and protect all of your infrastructure.
[ "audit", "bastion", "certificate", "cluster", "database-access", "firewall", "firewalls", "go", "golang", "jumpserver", "kubernetes", "kubernetes-access", "pam", "postgres", "rbac", "rdp", "security", "ssh", "teleport", "teleport-binaries" ]
AGPL-3.0
api/client/mock_server_test.go
mock_server_test.go
3,257
/* Copyright 2023 Gravitational, 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 writing, soft...
290
3,257
110
0.98
2026-04-17T09:29:57.133800
true
github_nodejs_node_be0bd44bbc36fe0bba40f60488b7560ee7960de9
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/cli_table.js
cli_table.js
2,887
'use strict'; const { ArrayPrototypeJoin, ArrayPrototypeMap, MathCeil, MathMax, MathMaxApply, ObjectPrototypeHasOwnProperty, StringPrototypeRepeat, } = primordials; const { getStringWidth } = require('internal/util/inspect'); // The use of Unicode characters below is the only non-comment use of non-ASC...
339
2,861
95
0.98
2026-04-23T06:15:50.397011
true
github_coderamp-labs_gitingest_3eaf0e59dbba0a708b95d60a51d104110ddb6ef3
Python
coderamp-labs
gitingest
14,354
1,050
Replace 'hub' with 'ingest' in any GitHub URL to get a prompt-friendly extract of a codebase
[ "ai", "code", "developer-tool", "ingestion" ]
MIT
src/server/routers_utils.py
routers_utils.py
2,257
"""Utility functions for the ingest endpoints.""" from __future__ import annotations from typing import Any from fastapi import status from fastapi.responses import JSONResponse from server.models import IngestErrorResponse, IngestSuccessResponse, PatternType from server.query_processor import process_query COMMON...
185
2,257
58
0.98
2026-04-17T15:32:50.121093
true
github_rust-lang_rust_750ce27ea7962e62320533a78eb43be1b6e2a144
Rust
rust-lang
rust
112,076
14,769
Empowering everyone to build reliable and efficient software.
[ "compiler", "language", "rust" ]
Apache-2.0
src/librustdoc/lib.rs
lib.rs
36,007
// tidy-alphabetical-start #![doc( html_root_url = "https://doc.rust-lang.org/nightly/", html_playground_url = "https://play.rust-lang.org/" )] #![feature(ascii_char)] #![feature(ascii_char_variants)] #![feature(box_patterns)] #![feature(file_buffered)] #![feature(formatting_options)] #![feature(iter_interspers...
3,311
36,007
1,004
0.98
2026-04-17T13:13:50.900441
true
github_wasm-bindgen_wasm-pack_9720ee4c9a314baff45534da2cb4a1f52f686c60
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/manifest/mod.rs
mod.rs
29,481
//! Reading and writing Cargo.toml and package.json manifests. #![allow( clippy::new_ret_no_self, clippy::needless_pass_by_value, clippy::redundant_closure )] use anyhow::{anyhow, bail, Context, Result}; mod npm; use std::path::Path; use std::{collections::HashMap, fs}; use self::npm::{ repository::...
2,275
29,481
876
0.98
2026-04-17T14:41:11.201869
true
github_huggingface_transformers_aebe6fb76f8ecfdb9321895d115fcc347dee7449
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/conversion_mapping.py
conversion_mapping.py
35,238
# Copyright (C) 2025 the HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by ...
1,610
35,238
688
0.98
2026-04-22T13:17:48.697035
true
github_axios_axios_b68d08e1bbea3f9eda0c49adf778a8e81da16cbb
JavaScript
axios
axios
109,012
11,651
Promise based HTTP client for the browser and node.js
[ "hacktoberfest", "http-client", "javascript", "nodejs", "promise" ]
MIT
lib/helpers/HttpStatusCode.js
HttpStatusCode.js
1,760
const HttpStatusCode = { Continue: 100, SwitchingProtocols: 101, Processing: 102, EarlyHints: 103, Ok: 200, Created: 201, Accepted: 202, NonAuthoritativeInformation: 203, NoContent: 204, ResetContent: 205, PartialContent: 206, MultiStatus: 207, AlreadyReported: 208, ImUsed: 226, MultipleCh...
154
1,760
78
0.98
2026-04-23T06:16:50.392973
true
github_containers_podman_e9b5db31d4d0fe58398034d090aca24e6dc0e875
Go
containers
podman
31,424
3,061
Podman: A tool for managing OCI containers and pods.
[ "containers", "docker", "kubernetes", "linux", "oci" ]
Apache-2.0
cmd/podman/compose_machine.go
compose_machine.go
507
//go:build amd64 || arm64 package main import ( "net/url" "github.com/containers/podman/v6/internal/localapi" ) func getMachineConn(connectionURI string, parsedConnection *url.URL) (string, error) { mc, machineProvider, err := localapi.FindMachineByPort(connectionURI, parsedConnection) if err != nil { return ...
52
507
23
0.98
2026-04-17T08:16:45.814149
true
github_projectdiscovery_nuclei_ea1bba7cedf641890fb27a9d82a2d5e366324ba0
Go
projectdiscovery
nuclei
27,950
3,357
Nuclei is a fast, customizable vulnerability scanner powered by the global security community and built on a simple YAML-based DSL, enabling collaboration to tackle trending vulnerabilities on the internet. It helps you find vulnerabilities in your applications, APIs, networks, DNS, and cloud configurations.
[ "attack-surface", "cve-scanner", "dast", "hacktoberfest", "nuclei-engine", "security", "security-scanner", "subdomain-takeover", "vulnerability-assessment", "vulnerability-detection", "vulnerability-scanner" ]
MIT
pkg/authprovider/interface.go
interface.go
1,988
package authprovider import ( "fmt" "net/url" "github.com/projectdiscovery/nuclei/v3/pkg/authprovider/authx" urlutil "github.com/projectdiscovery/utils/url" ) var ( ErrNoSecrets = fmt.Errorf("no secrets in given provider") ) var ( _ AuthProvider = &FileAuthProvider{} ) // AuthProvider is an interface for aut...
253
1,988
60
0.98
2026-04-17T08:29:21.508358
true
github_nodejs_node_110b045a0634600f28ce30efbca970baf808f7b6
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/validators.js
validators.js
19,094
/* eslint jsdoc/require-jsdoc: "error" */ 'use strict'; const { ArrayIsArray, ArrayPrototypeIncludes, ArrayPrototypeJoin, ArrayPrototypeMap, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberMAX_SAFE_INTEGER, NumberMIN_SAFE_INTEGER, NumberParseInt, ObjectPrototypeHasOwnProperty, RegExpProtot...
2,361
19,094
689
0.98
2026-04-23T06:16:05.701812
true
github_pubkey_rxdb_4ab1d7e9c7739f7b8b7b3d482fd75bae6933baf1
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/plugin-helpers.ts
plugin-helpers.ts
13,264
import { filter, mergeMap, tap } from 'rxjs/operators'; import { getPrimaryFieldOfPrimaryKey } from './rx-schema-helper.ts'; import { WrappedRxStorageInstance } from './rx-storage-helper.ts'; import type { BulkWriteRow, EventBulk, RxChangeEvent, RxDocumentData, RxDocumentWriteData, RxJsonSchema,...
951
13,264
330
0.98
2026-04-23T08:21:58.506859
true
github_dani-garcia_vaultwarden_431843695333e09523be41089ba0aab47d5b55c8
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/auth.rs
auth.rs
42,856
use std::{ env, net::IpAddr, sync::{LazyLock, OnceLock}, }; use chrono::{DateTime, TimeDelta, Utc}; use jsonwebtoken::{errors::ErrorKind, Algorithm, DecodingKey, EncodingKey, Header}; use num_traits::FromPrimitive; use openssl::rsa::Rsa; use serde::de::DeserializeOwned; use serde::ser::Serialize; use crat...
3,999
42,856
1,309
0.98
2026-04-17T13:16:32.425558
true
github_sourcegraph_sourcegraph-public-snapshot_d74bb674f8b9139e9fb8aa276f41263861d6033b
JavaScript
sourcegraph
sourcegraph-public-snapshot
10,270
1,367
Code AI platform with Code Search & Cody
[ "code-intelligence", "code-search", "cody", "repo-type-main", "sourcegraph" ]
NOASSERTION
eslint-relative-formatter.js
eslint-relative-formatter.js
2,700
// The default ESLint formatter with relative paths. // Forked from https://github.com/eslint/eslint/blob/main/lib/cli-engine/formatters/stylish.js const path = require('path') const chalk = require('chalk') const stripAnsi = require('strip-ansi') const table = require('text-table') function pluralize(word, count) { ...
270
2,700
104
0.98
2026-04-17T12:41:21.804249
true
github_0no-co_gql.tada_e46b58f9953284e955c19c7816d66e94ed511c82
TypeScript
0no-co
gql.tada
2,925
57
🪄 Magical GraphQL query engine for TypeScript
[ "graphql", "typescript" ]
MIT
src/__tests__/parser.test-d.ts
parser.test-d.ts
24,071
import { describe, it, expectTypeOf } from 'vitest'; import type { Kind, OperationTypeNode, DocumentNode } from '@0no-co/graphql.web'; import type { Token, tokenize } from '../tokenizer'; import type { _match, parseDocument, takeValue, takeType, takeVarDefinition, takeVarDefinitions, takeSelectionSet, ...
1,734
24,071
930
0.98
2026-04-18T01:38:17.353311
true
github_neo4j_neo4j-graphrag-python_59ba033d9b09c965cc754e650330822c299864be
Python
neo4j
neo4j-graphrag-python
1,128
197
Neo4j GraphRAG for Python
[ "ai", "cypher", "genai", "graph-database", "graphrag", "neo4j", "python", "python3", "rag" ]
NOASSERTION
src/neo4j_graphrag/message_history.py
message_history.py
7,777
# Copyright (c) "Neo4j" # Neo4j Sweden AB [https://neo4j.com] # # # 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 re...
676
7,777
241
0.98
2026-04-17T16:30:44.968675
true
github_siderolabs_talos_84b0baa457c36c4272add71eecd175e7eb92eb6f
Go
siderolabs
talos
10,255
810
Talos Linux is a modern Linux distribution built for Kubernetes.
[ "cloud-native", "containerd", "go", "grpc", "kubernetes", "kubernetes-distribution", "linux", "linux-distribution", "musl" ]
MPL-2.0
pkg/imager/embed_test.go
embed_test.go
939
// This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. package imager_test import ( "archive/tar" "io" "testing" "github.com/stretchr/testify/assert" "github.com/str...
97
939
49
0.98
2026-04-17T12:42:32.510860
true
github_adambielski_siamese-triplet_a5eed66137e629b4760584af016c28acca60bfd1
Python
adambielski
siamese-triplet
3,169
633
Siamese and triplet networks with online pair/triplet mining in PyTorch
[ "contrastive-loss", "deep-learning", "embedding", "learning-embeddings", "machine-learning", "pytorch", "siamese-network", "triplet-loss", "triplet-network" ]
BSD-3-Clause
metrics.py
metrics.py
1,386
import numpy as np class Metric: def __init__(self): pass def __call__(self, outputs, target, loss): raise NotImplementedError def reset(self): raise NotImplementedError def value(self): raise NotImplementedError def name(self): raise NotImplementedError...
122
1,386
67
0.98
2026-04-17T17:49:35.754869
true
github_modelscope_modelscope_70fb26735eb06fb1d1834a316523776a5a94c2a3
Python
modelscope
modelscope
8,860
929
ModelScope: bring the notion of Model-as-a-Service to life.
[ "cv", "deep-learning", "machine-learning", "multi-modal", "nlp", "python", "science", "speech" ]
Apache-2.0
setup.py
setup.py
113
# Copyright (c) Alibaba, Inc. and its affiliates. # -*- coding: utf-8 -*- from setuptools import setup setup()
18
113
7
0.98
2026-04-17T17:23:36.360548
true
github_Ido-Levi_Hephaestus_8b5bdf4b23c628e4d244752ba0cdc39a20e4d4f4
Python
Ido-Levi
Hephaestus
1,143
122
Semi-Structured Agentic Framework. Workflows build themselves as agents discover what needs to be done, not what you predicted upfront.
[ "ai-agents", "autonomous-agents", "claude-code", "llm" ]
NOASSERTION
src/validation/__init__.py
__init__.py
406
"""Validation system for Hephaestus.""" from .validator_agent import spawn_validator_agent, build_validator_prompt from .prompt_builder import ValidationPromptBuilder from .check_executors import ValidationCheckType, execute_validation_check __all__ = [ "spawn_validator_agent", "build_validator_prompt", "...
27
406
13
0.98
2026-04-17T23:58:01.027166
true
github_google_comprehensive-rust_2046fc3fd3b3622d123eeb4f776e363e2979a19f
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/borrowing/exercise.rs
exercise.rs
4,066
// Copyright 2026 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...
447
4,066
143
0.98
2026-04-17T13:23:59.788754
true
github_ChatGPTNextWeb_NextChat_51417e9f3d937be487dc025ee42c1557e36d2975
TypeScript
ChatGPTNextWeb
NextChat
87,769
59,807
✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows
[ "calclaude", "chatgpt", "claude", "cross-platform", "desktop", "fe", "gemini", "gemini-pro", "gemini-server", "gemini-ultra", "gpt-4o", "groq", "nextjs", "ollama", "react", "tauri", "tauri-app", "vercel", "webui" ]
MIT
app/utils/indexedDB-storage.ts
indexedDB-storage.ts
1,161
import { StateStorage } from "zustand/middleware"; import { get, set, del, clear } from "idb-keyval"; import { safeLocalStorage } from "@/app/utils"; const localStorage = safeLocalStorage(); class IndexedDBStorage implements StateStorage { public async getItem(name: string): Promise<string | null> { try { ...
130
1,161
48
0.98
2026-04-23T08:58:33.621732
true
github_loft-sh_devpod_a90fb35816066b2b4b8ad305e84d5bb99296c322
Go
loft-sh
devpod
14,839
539
Codespaces but open-source, client-only and unopinionated: Works with any IDE and lets you use any cloud, kubernetes or just localhost docker.
[ "cloud", "devcontainer", "devcontainers", "developer-tools", "development", "docker", "ide", "kubernetes", "remote-development", "remote-development-environment", "vscode" ]
MPL-2.0
cmd/version.go
version.go
572
package cmd import ( "fmt" "github.com/loft-sh/devpod/pkg/version" "github.com/spf13/cobra" ) // VersionCmd holds the ws-tunnel cmd flags type VersionCmd struct { } // NewVersionCmd creates a new ws-tunnel command func NewVersionCmd() *cobra.Command { cmd := &VersionCmd{} versionCmd := &cobra.Command{ Use: ...
70
572
32
0.98
2026-04-17T10:39:38.873474
true
github_playcanvas_engine_649977a52f0fee375476b9d2599a835763430e9b
JavaScript
playcanvas
engine
14,770
1,766
Powerful web graphics runtime built on WebGL, WebGPU, WebXR and glTF
[ "3d-gaussian-splatting", "game-development", "game-engine", "gamedev", "gaussian-splatting", "gltf", "hacktoberfest", "javascript", "nodejs", "playcanvas", "typescript", "virtual-reality", "webgl", "webgl2", "webgpu", "webxr" ]
MIT
src/framework/scene-registry-item.js
scene-registry-item.js
1,028
/** * Item to be stored in the {@link SceneRegistry}. * * @category Graphics */ class SceneRegistryItem { /** * The name of the scene. * * @type {string} */ name; /** * The url of the scene file. * * @type {string} */ url; /** @ignore */ data = null;...
152
1,028
61
0.98
2026-04-23T06:54:36.667504
true
github_pathwaycom_pathway_5fc6be2dab2523330da9039fee2e0fbdd24fda54
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/external_index_wrappers.rs
external_index_wrappers.rs
418
// Copyright © 2026 Pathway use crate::engine::ColumnPath; use crate::engine::TableHandle; pub struct ExternalIndexData { pub table: TableHandle, pub data_column: ColumnPath, pub filter_data_column: Option<ColumnPath>, } pub struct ExternalIndexQuery { pub table: TableHandle, pub query_column: Co...
40
417
18
0.98
2026-04-23T04:40:36.394124
true
github_v2ray_v2ray-core_f83afcea8eabfb587ee5cb6074e41c33d3a29109
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/proxyman/proxyman.go
proxyman.go
666
// Package proxyman defines applications for managing inbound and outbound proxies. package proxyman import ( "context" "v2ray.com/core/common/session" ) // ContextWithSniffingConfig is a wrapper of session.ContextWithContent. // Deprecated. Use session.ContextWithContent directly. func ContextWithSniffingConfig(c...
62
666
22
0.98
2026-04-17T07:25:50.550341
true