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_nodejs_node_7d4747abc23bb9e33c6a48b19d2f5056bc7ba102
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/internal/encoding.js
encoding.js
18,041
'use strict'; // An implementation of the WHATWG Encoding Standard // https://encoding.spec.whatwg.org const { Boolean, ObjectDefineProperties, ObjectGetOwnPropertyDescriptors, ObjectSetPrototypeOf, ObjectValues, SafeMap, StringPrototypeSlice, Symbol, SymbolToStringTag, } = primordials; const { Fas...
1,688
18,041
622
0.98
2026-04-23T06:15:52.094443
true
github_prettier_prettier_dd28dc7daaa304b13c72aa0195267af20c74025d
JavaScript
prettier
prettier
51,817
4,704
Prettier is an opinionated code formatter.
[ "angular", "ast", "css", "flow", "formatter", "graphql", "html", "javascript", "json", "jsx", "less", "markdown", "prettier", "printer", "scss", "typescript", "vue", "yaml" ]
MIT
src/language-js/printers.js
printers.js
1,216
import canAttachComment from "./comments/can-attach-comment.js"; import handleComments from "./comments/handle-comments.js"; import isGap from "./comments/is-gap.js"; import willPrintOwnComments from "./comments/will-print-own-comments.js"; import embed from "./embed/index.js"; import { locEndWithFullText, locStart } f...
109
1,216
42
0.98
2026-04-23T11:44:13.773252
true
github_rust-lang_rustlings_857ccfde51c406fc716988719cf1c7f7a5124df3
Rust
rust-lang
rustlings
62,528
11,177
:crab: Small exercises to get you used to reading and writing Rust code!
[ "beginner-friendly", "exercises", "rust", "rustlings" ]
MIT
src/watch.rs
watch.rs
6,427
use anyhow::{Error, Result}; use notify::{Config, RecommendedWatcher, RecursiveMode, Watcher}; use std::{ io::{self, Write}, path::Path, sync::{ atomic::{AtomicBool, Ordering::Relaxed}, mpsc::channel, }, time::Duration, }; use crate::{ app_state::{AppState, ExercisesProgress}, ...
555
6,427
187
0.98
2026-04-17T13:16:17.487403
true
github_charmbracelet_crush_5cff191c3abe2030cdf9a0faef0b001a3648df1d
Go
charmbracelet
crush
23,121
1,528
Glamourous agentic coding for all 💘
[ "agentic-ai", "ai", "llms", "ravishing" ]
NOASSERTION
internal/db/connect.go
connect.go
1,315
package db import ( "context" "database/sql" "embed" "fmt" "log/slog" "path/filepath" "testing" "github.com/pressly/goose/v3" ) var pragmas = map[string]string{ "foreign_keys": "ON", "journal_mode": "WAL", "page_size": "4096", "cache_size": "-8000", "synchronous": "NORMAL", "secure_delete": ...
164
1,315
65
0.98
2026-04-17T09:14:55.947028
true
github_terrastruct_d2_3438054aff7b1431a10230c21999514f8dfacaf9
Go
terrastruct
d2
23,459
629
D2 is a modern diagram scripting language that turns text to diagrams.
[ "developer-tools", "diagramming", "diagrams", "go", "golang", "software-architecture", "text-to-diagram" ]
MPL-2.0
lib/shape/shape_queue.go
shape_queue.go
2,560
package shape import ( "math" "oss.terrastruct.com/d2/lib/geo" "oss.terrastruct.com/d2/lib/svg" "oss.terrastruct.com/util-go/go2" ) type shapeQueue struct { *baseShape } func NewQueue(box *geo.Box) Shape { shape := shapeQueue{ baseShape: &baseShape{ Type: QUEUE_TYPE, Box: box, }, } shape.FullShap...
263
2,560
90
0.98
2026-04-17T09:12:08.451146
true
github_botaoye_OSTrack_1bff3396180417a337d8b22a09bb187e206d2452
Python
botaoye
OSTrack
624
86
[ECCV 2022] Joint Feature Learning and Relation Modeling for Tracking: A One-Stream Framework
[ "tracking", "transformer" ]
MIT
lib/utils/box_ops.py
box_ops.py
2,547
import torch from torchvision.ops.boxes import box_area import numpy as np def box_cxcywh_to_xyxy(x): x_c, y_c, w, h = x.unbind(-1) b = [(x_c - 0.5 * w), (y_c - 0.5 * h), (x_c + 0.5 * w), (y_c + 0.5 * h)] return torch.stack(b, dim=-1) def box_xywh_to_xyxy(x): x1, y1, w, h = x.unbind(-1) ...
389
2,547
107
0.98
2026-04-22T21:46:34.628065
true
github_payloadcms_payload_2e6cd580d006e3743f847ab0615191cada88219e
TypeScript
payloadcms
payload
41,881
3,599
Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.
[ "cms", "content-management", "content-management-system", "express", "graphql", "headless", "headless-cms", "jamstack", "javascript", "mit-license", "mongodb", "nextjs", "nodejs", "open-source", "payload", "payloadcms", "postgres", "react", "typescript" ]
MIT
sentry.client.config.ts
sentry.client.config.ts
771
import * as Sentry from '@sentry/nextjs' const dsn = process.env.NEXT_PUBLIC_SENTRY_DSN Sentry.init({ dsn, // Replay may only be enabled for the client-side integrations: [Sentry.replayIntegration()], // Set tracesSampleRate to 1.0 to capture 100% // of transactions for tracing. // We recommend adjusting...
109
771
27
0.98
2026-04-18T01:22:15.370209
true
github_zeroclaw-labs_zeroclaw_c39ca50a5d162813f161b358f9683c1b7d58a634
Rust
zeroclaw-labs
zeroclaw
30,264
4,379
Fast, small, and fully autonomous AI personal assistant infrastructure, ANY OS, ANY PLATFORM — deploy anywhere, swap anything 🦀
[ "agent", "agentic", "ai", "infra", "ml", "openclaw", "os", "zeroclaw" ]
Apache-2.0
src/service/mod.rs
mod.rs
819
pub use zeroclaw_runtime::service::*; use crate::config::Config; use anyhow::Result; #[allow(dead_code)] pub fn handle_command( command: &crate::ServiceCommands, config: &Config, init_system: InitSystem, ) -> Result<()> { match command { crate::ServiceCommands::Install => install(config, init_...
62
819
24
0.98
2026-04-17T13:26:36.687954
true
github_GoogleChromeLabs_ndb_d944be3fdb0ba20117571bf80d0c40d5383cf900
JavaScript
GoogleChromeLabs
ndb
10,901
258
ndb is an improved debugging experience for Node.js, enabled by Chrome DevTools
[ "debugging", "devtools", "nodejs" ]
Apache-2.0
.eslintrc.js
.eslintrc.js
3,174
module.exports = { "root": true, "env": { "node": true, "es6": true }, "parserOptions": { "ecmaVersion": 9 }, /** * ESLint rules * * All available rules: http://eslint.org/docs/rules/ * * Rules take the following form: * "rule-name", [se...
273
3,174
112
0.98
2026-04-23T06:59:34.804265
true
github_gin-gonic_gin_f937cf7f0256cf1ab697d4f12dbe42578a024158
Go
gin-gonic
gin
88,327
8,572
Gin is a high-performance HTTP web framework written in Go. It provides a Martini-like API but with significantly better performance—up to 40 times faster—thanks to httprouter. Gin is designed for building REST APIs, web applications, and microservices.
[ "framework", "gin", "go", "middleware", "performance", "router", "server" ]
MIT
internal/fs/fs_test.go
fs_test.go
894
package fs import ( "errors" "net/http" "os" "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) type mockFileSystem struct { open func(name string) (http.File, error) } func (m *mockFileSystem) Open(name string) (http.File, error) { return m.open(name) } func TestFileSys...
100
894
50
0.98
2026-04-17T06:53:53.485515
true
github_infracost_infracost_4af29f8d9907aeeae51ac5df6d57af283ad3366a
Go
infracost
infracost
12,271
667
Cloud cost estimates for Terraform in pull requests💰📉 Shift FinOps Left!
[ "aws", "azure", "cloud", "cloud-cost-estimates", "cost-estimation", "cost-management", "cost-optimization", "devops", "finops", "gcp", "google", "infrastructure-as-code", "monthly-costs", "terraform", "terraform-cost-estimation" ]
Apache-2.0
internal/config/config_test.go
config_test.go
4,434
package config import ( "errors" "fmt" "os" "path/filepath" "testing" "github.com/spf13/cobra" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestConfigLoadFromConfigFile(t *testing.T) { tmp := t.TempDir() tests := []struct { name string contents []byte expected...
458
4,430
173
0.98
2026-04-17T11:38:58.902166
true
github_ChatGPTNextWeb_NextChat_1ded6a90295665bc6e9694c85f13c180d8e32330
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/masks/typing.ts
typing.ts
207
import { ModelConfig } from "../store"; import { type Mask } from "../store/mask"; export type BuiltinMask = Omit<Mask, "id" | "modelConfig"> & { builtin: Boolean; modelConfig: Partial<ModelConfig>; };
28
207
8
0.98
2026-04-23T08:58:21.718713
true
github_axios_axios_57cf16d114aa417faac47c2a7f22ac62f0933bd4
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/AxiosURLSearchParams.js
AxiosURLSearchParams.js
1,448
'use strict'; import toFormData from './toFormData.js'; /** * It encodes a string by replacing all characters that are not in the unreserved set with * their percent-encoded equivalents * * @param {string} str - The string to encode. * * @returns {string} The encoded string. */ function encode(str) { const c...
188
1,448
62
0.98
2026-04-23T06:16:50.108962
true
github_segmentio_evergreen_28b779f9bcfe3416d994073f440d8f2e06ec8482
JavaScript
segmentio
evergreen
12,428
813
🌲 Evergreen React UI Framework by Segment
[ "component-library", "design-systems", "evergreen", "react", "segment", "ui", "ui-components" ]
MIT
src/autocomplete/index.js
index.js
130
export { default as Autocomplete } from './src/Autocomplete' export { default as AutocompleteItem } from './src/AutocompleteItem'
16
130
3
0.98
2026-04-23T04:58:31.029035
true
github_rustdesk_rustdesk_38c31adf925933983df3f4aeaaf37f6172555e26
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/lan.rs
lan.rs
12,647
#[cfg(not(target_os = "ios"))] use hbb_common::whoami; use hbb_common::{ allow_err, anyhow::bail, config::Config, config::{self, RENDEZVOUS_PORT}, log, protobuf::Message as _, rendezvous_proto::*, tokio::{ self, sync::mpsc::{unbounded_channel, UnboundedReceiver, Unbounded...
989
12,647
345
0.98
2026-04-17T13:14:21.337537
true
github_rtk-ai_rtk_8a126530a69c64719447c0566bfbb9d6cdd2cb8c
Rust
rtk-ai
rtk
28,400
1,665
CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies
[ "agentic-coding", "ai-coding", "anthropic", "claude-code", "cli", "command-line-tool", "cost-reduction", "developer-tools", "llm", "open-source", "productivity", "rust", "token-optimization" ]
Apache-2.0
src/discover/lexer.rs
lexer.rs
30,529
#[derive(Debug, Clone, PartialEq, Eq)] pub enum TokenKind { Arg, Operator, Pipe, Redirect, Shellism, } #[derive(Debug, Clone, PartialEq, Eq)] pub struct ParsedToken { pub kind: TokenKind, pub value: String, pub offset: usize, } pub fn tokenize(input: &str) -> Vec<ParsedToken> { let...
2,608
30,520
1,033
0.98
2026-04-17T13:28:22.765217
true
github_Ottrlang_otterlang_0beeadf3c1cfc492999cf0e83315d80d884276bd
Rust
Ottrlang
otterlang
671
21
Otterlang programming language 🦦
[ "compiler", "general-purpose", "language", "llvm", "otter", "otterlang", "programming-language", "pythonic", "rust", "scripting-language" ]
BSD-3-Clause
build.rs
build.rs
1,240
use std::env; use std::fs::copy; use std::path::PathBuf; use std::process::Command; fn main() { // Build the otterc_runtime static library and pull it into the target directory // so it's available with the otter binary. The otter compiler will use this static // lib when compiling Otter programs. let ...
123
1,240
40
0.98
2026-04-17T17:09:25.762924
true
github_ChatGPTNextWeb_NextChat_a4f0c949cb0c041a875a276b61a4735d8734120b
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/ru.ts
ru.ts
26,781
import { SubmitKey } from "../store/config"; import { PartialLocaleType } from "../locales/index"; import { getClientConfig } from "../config/client"; import { SAAS_CHAT_UTM_URL } from "@/app/constant"; const isApp = !!getClientConfig()?.isApp; const ru: PartialLocaleType = { WIP: "Скоро...", Error: { Unauthor...
1,943
19,232
610
0.98
2026-04-23T08:58:17.275298
true
github_wenzhixin_bootstrap-table_484d74991869a766447e5355010711a3c87b157a
JavaScript
wenzhixin
bootstrap-table
11,817
4,369
An extended table for integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation, Vue.js)
[ "bootstrap", "bootstrap-table", "bulma", "checkbox", "css", "css-framework", "datatables", "foundation", "hacktoberfest", "material", "material-design", "materialize", "pagination", "radio", "semantic", "semantic-ui", "table", "vue" ]
MIT
src/locale/bootstrap-table-nl-BE.js
bootstrap-table-nl-BE.js
3,403
/** * Bootstrap Table Dutch (België) translation * Author: Nevets82 <[REDACTED_EMAIL]> */ $.fn.bootstrapTable.locales['nl-BE'] = { formatAddLevel () { return 'Niveau toevoegen' }, formatAdvancedCloseButton () { return 'Sluiten' }, formatAdvancedSearch () { return 'Geavanceerd zoeken' }, ...
385
3,402
192
0.98
2026-04-23T11:50:40.488152
true
github_redux-form_redux-form_eae52493d9e260c9b361a1fba92c938509c6172f
JavaScript
redux-form
redux-form
12,500
1,621
A Higher Order Component using react-redux to keep form state in a Redux store
[ "form", "form-validation", "forms", "react", "redux", "redux-form", "validation" ]
MIT
src/defaultShouldWarn.js
defaultShouldWarn.js
749
// @flow import type { Structure, Values } from './types' import type { Props } from './createReduxForm' export type Params = { values: Values, nextProps: ?Props, props: Props, initialRender: boolean, lastFieldValidatorKeys: string[], fieldValidatorKeys: string[], structure: Structure<any, any> } const ...
81
749
34
0.98
2026-04-23T04:57:04.768711
true
github_h2oai_h2ogpt_9eeb7109dd9f6a639aedf8de2292c9fa8435cd99
Python
h2oai
h2ogpt
11,986
1,318
Private chat with local GPT with document, images, video, etc. 100% private, Apache 2.0. Supports oLLaMa, Mixtral, llama.cpp, and more. Demo: https://gpt.h2o.ai/ https://gpt-docs.h2o.ai/
[ "ai", "chatgpt", "embeddings", "fedramp", "generative", "gpt", "gpt4all", "llama2", "llm", "mixtral", "pdf", "private", "privategpt", "vectorstore" ]
Apache-2.0
src/function_client.py
function_client.py
3,335
import os import pickle import requests import json def execute_function_on_server(host: str, port: int, function_name: str, args: tuple, kwargs: dict, use_disk: bool, use_pickle: bool, function_api_key: str): url = f"http://{host}:{port}/execute_function/" payload = { ...
236
3,335
90
0.98
2026-04-22T15:06:59.306862
true
github_ShizukuIchi_winXP_266f026aabb4c788cccc87e5d92be779e6c5b69d
JavaScript
ShizukuIchi
winXP
5,805
457
🏁 Web based Windows XP desktop recreation.
[ "hooks", "javascript", "react", "reimplementation", "web-desktop", "windows-xp" ]
MIT
src/components/index.js
index.js
258
export { default as WindowDropDowns } from './WindowDropDowns'; export { default as Balloon } from './Balloon'; export { default as SubMenu } from './SubMenu'; export { default as Google } from './Google'; export { default as DashedBox } from './DashedBox';
40
258
6
0.98
2026-04-23T06:06:39.407428
true
github_deepfakes_faceswap_79fe19415f0059e3b5d0247df2a32da183f150e3
Python
deepfakes
faceswap
55,192
13,405
Deepfakes Software For All
[ "deep-face-swap", "deep-learning", "deep-neural-networks", "deepface", "deepfakes", "deeplearning", "face-swap", "faceswap", "fakeapp", "machine-learning", "myfakeapp", "neural-nets", "neural-networks", "openfaceswap" ]
GPL-3.0
update_deps.py
update_deps.py
1,005
#!/usr/bin/env python3 """ Installs any required third party libs for faceswap.py Checks for installed Conda / Pip packages and updates accordingly """ import logging import os import sys from lib.logger import log_setup from lib.utils import get_module_objects from setup import Environment, Install logger = log...
104
1,005
39
0.98
2026-04-22T13:31:54.575831
true
github_atlassian_react-beautiful-dnd_c1b5bea643478c31f5b3f86fe5fd345bc27b8b4d
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
src/animation.js
animation.js
2,016
// @flow import type { Position } from 'css-box-model'; import { isEqual, origin } from './state/position'; export const curves = { outOfTheWay: 'cubic-bezier(0.2, 0, 0, 1)', drop: 'cubic-bezier(.2,1,.1,1)', }; export const combine = { opacity: { // while dropping: fade out totally drop: 0, // while...
268
2,016
76
0.98
2026-04-23T04:48:31.589337
true
github_pubkey_rxdb_4a94d90a007a6ce15bf0747ca027318a802d5781
TypeScript
pubkey
rxdb
23,146
1,160
A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/
[ "angular", "browser-database", "couchdb", "crdt", "database", "firebase", "graphql", "indexeddb", "ionic", "local-first", "localstorage", "nodejs", "nosql", "postgres", "pouchdb", "react-native", "realtime", "realtime-database", "rxdb", "sqlite" ]
Apache-2.0
src/replication-protocol/helper.ts
helper.ts
2,699
import type { BulkWriteRow, RxDocumentData, RxDocumentWriteData, RxStorageInstance, RxStorageInstanceReplicationState, RxStorageReplicationMeta, WithDeletedAndAttachments } from '../types/index.d.ts'; import { clone, createRevision, flatClone, getDefaultRevision, now } fr...
210
2,699
97
0.98
2026-04-18T01:24:01.739861
true
github_bigint_hey_9d08cfa8651e72af081e33b85382ab5f6c2d902f
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/sanitizeDStorageUrl.ts
sanitizeDStorageUrl.ts
567
import { IPFS_GATEWAY, STORAGE_NODE_URL } from "@/data/constants"; const sanitizeDStorageUrl = (url?: string): string => { if (!url) { return ""; } const ipfsGateway = `${IPFS_GATEWAY}/`; if (/^Qm[1-9A-Za-z]{44}/.test(url)) { return `${ipfsGateway}${url}`; } return url .replace("https://ipfs...
47
567
23
0.98
2026-04-18T01:23:14.081773
true
github_asciinema_asciinema_60fa6c2fcb2d78096519eec3420caf0ad3fb8daa
Rust
asciinema
asciinema
17,176
1,015
Terminal session recorder, streamer and player 📹
[ "asciicast", "asciinema", "cli", "recording", "rustlang", "streaming", "terminal" ]
GPL-3.0
src/tty/default.rs
default.rs
1,872
use std::fs::File; use std::io::{Read, Write}; use std::os::fd::{AsFd, AsRawFd}; use std::os::unix::fs::OpenOptionsExt; use async_trait::async_trait; use nix::libc; use nix::pty::Winsize; use nix::sys::termios::{self, SetArg, Termios}; use tokio::io::unix::AsyncFd; use tokio::io::{self, Interest}; use super::{RawTty,...
177
1,872
76
0.98
2026-04-17T13:48:05.646409
true
github_starship_starship_c6fc03a492a80b869bb5b570db9a174ee6af0b06
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/dotnet.rs
dotnet.rs
1,167
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct DotnetConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub symbol: &'a s...
100
1,164
43
0.98
2026-04-17T13:17:35.924257
true
github_basicmachines-co_basic-memory_d23626daef83d1018e2fffbcff37f51e02b367d9
Python
basicmachines-co
basic-memory
2,904
187
AI conversations that actually remember. Never re-explain your project to your AI again. Join our Discord: https://discord.gg/tyvKNccgqN
[ "ai", "claude", "knowledge-management", "knowlege-graph", "llm", "local-first", "markdown", "mcp", "obsidian", "obsidian-md", "open-source", "privacy-first", "privacy-first-ai", "productivity", "python" ]
AGPL-3.0
src/basic_memory/file_utils.py
file_utils.py
15,251
"""Utilities for file operations.""" import asyncio import hashlib import shlex from dataclasses import dataclass from datetime import datetime from pathlib import Path import re from typing import TYPE_CHECKING, Any, Dict, Optional, Union import aiofiles import yaml import frontmatter from loguru import logger from...
1,629
15,249
497
0.98
2026-04-22T15:33:37.978801
true
github_SagerNet_sing-box_e83e6d8054329a3677d3b45e0bf3b9df09842b7d
Go
SagerNet
sing-box
32,733
3,852
The universal proxy platform
[]
NOASSERTION
cmd/sing-box/cmd_generate_vapid.go
cmd_generate_vapid.go
860
//go:build go1.20 package main import ( "crypto/ecdh" "crypto/rand" "encoding/base64" "os" "github.com/sagernet/sing-box/log" "github.com/spf13/cobra" ) var commandGenerateVAPIDKeyPair = &cobra.Command{ Use: "vapid-keypair", Short: "Generate VAPID key pair", Run: func(cmd *cobra.Command, args []string) ...
81
860
41
0.98
2026-04-17T08:13:04.484402
true
github_grpc_grpc-go_94a08d6875a950adde38924549a465ec737671ab
Go
grpc
grpc-go
22,908
4,657
The Go language implementation of gRPC. HTTP/2 based RPC
[ "dogs-over-cats", "giant-robots", "go", "golang", "grpc", "hacktoberfest", "microservices", "not-nanoservices", "proto", "rpc" ]
Apache-2.0
internal/balancerload/load.go
load.go
1,242
/* * Copyright 2019 gRPC 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 t...
196
1,242
47
0.98
2026-04-17T09:15:41.077435
true
github_Manavarya09_design-extract_461e5bfb6ad00b7598276b856e092317fa44b740
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/formatters/ios-swiftui.js
ios-swiftui.js
5,824
// iOS SwiftUI emitter — consumes a DTCG token object and produces a single // Swift file exposing semantic Colors, primitive spacing/radius as CGFloat, and // primitive palette colors. import { resolveRef } from './_token-ref.js'; const HEADER_VERSION = '7.0.0'; // Convert a dotted DTCG path to camelCase identifier...
688
5,806
162
0.98
2026-04-23T12:58:15.832110
true
github_grafana_loki_1b20064245d6c6740cbaea2bc391051227183262
Go
grafana
loki
28,006
3,976
Like Prometheus, but for logs.
[ "cloudnative", "grafana", "hacktoberfest", "logging", "loki", "prometheus" ]
AGPL-3.0
pkg/compactor/worker.go
worker.go
1,464
package compactor import ( "github.com/grafana/dskit/services" "github.com/prometheus/client_golang/prometheus" "github.com/grafana/loki/v3/pkg/compactor/client/grpc" "github.com/grafana/loki/v3/pkg/compactor/deletion" "github.com/grafana/loki/v3/pkg/compactor/jobqueue" "github.com/grafana/loki/v3/pkg/storage/c...
100
1,464
49
0.98
2026-04-17T08:28:39.570778
true
github_paperless-ngx_paperless-ngx_e60ca37ffdc4c7e63e5a40096d29822a92c371d7
Python
paperless-ngx
paperless-ngx
38,143
2,431
A community-supported supercharged document management system: scan, index and archive all your documents
[ "angular", "archiving", "django", "dms", "document-management", "document-management-system", "hacktoberfest", "machine-learning", "ocr", "optical-character-recognition", "pdf" ]
GPL-3.0
src/paperless_ai/ai_classifier.py
ai_classifier.py
2,870
import logging from django.contrib.auth.models import User from documents.models import Document from documents.permissions import get_objects_for_user_owner_aware from paperless.config import AIConfig from paperless_ai.client import AIClient from paperless_ai.indexing import query_similar_documents from paperless_ai...
267
2,870
103
0.98
2026-04-17T06:44:02.864924
true
github_keploy_keploy_ccfaa4c46bf7b811a0ebb3a6e563fba49ac39d85
Go
keploy
keploy
17,097
2,215
Open-source platform for creating safe, isolated production sandboxes for API, integration, and E2E testing.
[ "agentic-ai", "ai-testing-tool", "api-testing", "code-quality", "mock", "mock-data-generator", "mock-framework", "test-automation", "test-automation-framework", "test-generation", "testing", "testing-library", "testing-tool", "testing-tools" ]
Apache-2.0
pkg/models/mock_Secret.go
mock_Secret.go
783
// Code generated by mockery v2.53.2. DO NOT EDIT. package models import mock "github.com/stretchr/testify/mock" // MockSecret is an autogenerated mock type for the Secret type type MockSecret struct { mock.Mock } // SetSecrets provides a mock function with given fields: secrets func (_m *MockSecret) SetSecrets(se...
104
783
30
0.98
2026-04-17T10:16:10.579508
true
github_tree-sitter_tree-sitter_1f690ebd3a8d35c25e7087177aef0cb16f2d5dae
Python
tree-sitter
tree-sitter
24,792
2,582
An incremental parsing system for programming tools
[ "c", "incremental", "parser", "parsing", "rust", "tree-sitter", "wasm" ]
MIT
lib/lldb_pretty_printers/ts_tree.py
ts_tree.py
2,870
from lldb import SBType, SBValue # struct TSTree { # Subtree root; # const TSLanguage *language; # TSRange *included_ranges; # unsigned included_range_count; # }; # TODO: Ideally, we'd display the elements of `included_ranges` as # children of `included_ranges` rather than separate items, i.e.: # (TSTree) { ...
289
2,870
102
0.98
2026-04-17T13:33:45.698705
true
github_h2oai_h2ogpt_4c5a2b8cb7503b8cfa1c6c4d4fdd24da09996470
Python
h2oai
h2ogpt
11,981
1,318
Private chat with local GPT with document, images, video, etc. 100% private, Apache 2.0. Supports oLLaMa, Mixtral, llama.cpp, and more. Demo: https://gpt.h2o.ai/ https://gpt-docs.h2o.ai/
[ "ai", "chatgpt", "embeddings", "fedramp", "generative", "gpt", "gpt4all", "llama2", "llm", "mixtral", "pdf", "private", "privategpt", "vectorstore" ]
Apache-2.0
src/utils.py
utils.py
108,357
import ast import asyncio import selectors import contextlib import functools import gc import hashlib import inspect import io import json import os import pathlib import pickle import platform import random import shutil import subprocess import sys import threading import time import traceback import zipfile import ...
9,692
108,357
3,138
0.98
2026-04-17T15:34:26.159510
true
github_jhspetersson_fselect_1a2f9b2f46084c4fd172daa7b7f4b6e3a27cfe70
Rust
jhspetersson
fselect
4,418
90
Find files with SQL-like queries
[ "cli", "command-line", "files", "filesystem", "find", "hacktoberfest", "query", "rust", "sql", "sql-like", "tool", "utility" ]
Apache-2.0
src/util/error.rs
error.rs
2,617
use std::fmt; use std::io; use std::path::Path; use std::sync::Mutex; use nu_ansi_term::Color::Yellow; #[derive(Debug, Clone, PartialEq)] pub enum ErrorLevel { Normal, Fatal, } #[derive(Debug, Clone)] pub struct SearchError { pub source: String, pub description: String, pub error_level: ErrorLeve...
277
2,617
108
0.98
2026-04-17T18:34:52.706318
true
github_vercel_pkg_a201662930d3a6567e1e1c59060a42aff5d3176c
TypeScript
vercel
pkg
24,392
1,065
Package your Node.js project into an executable
[ "binaries", "cli", "compiler", "nodejs" ]
MIT
lib/chmod.ts
chmod.ts
277
import { chmod, stat } from 'fs-extra'; export async function plusx(file: string) { const s = await stat(file); const newMode = s.mode | 64 | 8 | 1; if (s.mode === newMode) { return; } const base8 = newMode.toString(8).slice(-3); await chmod(file, base8); }
43
277
14
0.98
2026-04-23T06:43:00.928596
true
github_yeungchenwa_FontDiffuser_7c9578541d2d09cd83e267006883120c3a6460d3
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/model.py
model.py
3,665
import math import torch import torch.nn as nn from diffusers import ModelMixin from diffusers.configuration_utils import (ConfigMixin, register_to_config) class FontDiffuserModel(ModelMixin, ConfigMixin): """Forward function for FontDiffuer with content encoder \ ...
236
3,665
111
0.98
2026-04-22T22:42:34.308627
true
github_rust-lang_rust_928a7496cb70ef2a6caf8e890fb09f12883a26e3
Rust
rust-lang
rust
111,984
14,746
Empowering everyone to build reliable and efficient software.
[ "compiler", "language", "rust" ]
Apache-2.0
x.py
x.py
2,007
#!/usr/bin/env python3 # Some systems don't have `python3` in their PATH. This isn't supported by x.py directly; # they should use `x` or `x.ps1` instead. # This file is only a "symlink" to bootstrap.py, all logic should go there. # Parts of `bootstrap.py` use the `multiprocessing` module, so this entry point # must ...
254
2,007
54
0.95
2026-04-13T14:04:35.524870
true
github_pydio_cells_4b65f196b0c050084372c0960cd592e3b53f6862
Go
pydio
cells
2,189
221
Future-proof content collaboration platform
[ "filesharing", "golang-application", "microservices" ]
AGPL-3.0
cmd/admin-config-db-list.go
admin-config-db-list.go
3,977
/* * Copyright (c) 2019-2021. Abstrium SAS <team (at) pydio.com> * This file is part of Pydio Cells. * * Pydio Cells 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...
501
3,977
171
0.98
2026-04-18T01:01:35.541012
true
github_alibaba_sentinel-golang_3369b0150c7f27fdb3ed2ee83d40c4a4aac6a444
Go
alibaba
sentinel-golang
2,950
453
Sentinel Go enables reliability and resiliency for Go microservices
[ "cloud-native", "go", "golang", "microservice", "microservices", "middleware", "rate-limiting", "resiliency" ]
Apache-2.0
core/hotspot/traffic_shaping_test.go
traffic_shaping_test.go
11,250
// Copyright 1999-2020 Alibaba Group Holding Ltd. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable ...
964
11,250
377
0.98
2026-04-18T00:58:18.522102
true
github_rust-lang_rust_6ec4aaf28223881f73f75860be8ace6e03f8f5d3
Rust
rust-lang
rust
112,076
14,769
Empowering everyone to build reliable and efficient software.
[ "compiler", "language", "rust" ]
Apache-2.0
src/librustdoc/doctest.rs
doctest.rs
46,856
mod extracted; mod make; mod markdown; mod runner; mod rust; use std::fs::File; use std::hash::{Hash, Hasher}; use std::io::{self, Write}; use std::path::{Path, PathBuf}; use std::process::{self, Command, Stdio}; use std::str::FromStr; use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::{Arc, Mutex}; use st...
3,867
46,856
1,238
0.98
2026-04-17T13:13:49.683517
true
github_MorvanZhou_NLP-Tutorials_fae512333d97a96c83d59c608e48bd6821ebcf05
Python
MorvanZhou
NLP-Tutorials
953
315
Simple implementations of NLP models. Tutorials are written in Chinese on my website https://mofanpy.com
[ "attention", "bert", "elmo", "gpt", "nlp", "seq2seq", "transformer", "tutorial", "w2v" ]
MIT
ELMo.py
ELMo.py
4,300
# [Deep contextualized word representations](https://arxiv.org/pdf/1802.05365.pdf) from tensorflow import keras import tensorflow as tf import utils # this refers to utils.py in my [repo](https://github.com/MorvanZhou/NLP-Tutorials/) import time import os class ELMo(keras.Model): def __init__(self, v_dim, emb_...
395
4,300
111
0.98
2026-04-22T21:15:26.820669
true
github_sqlc-dev_sqlc_57211d674c743ce892d7503eaa29727c89735693
Go
sqlc-dev
sqlc
17,354
1,027
Generate type-safe code from SQL
[ "code-generator", "go", "kotlin", "mysql", "orm", "postgresql", "python", "sql", "sqlite" ]
MIT
internal/config/config_test.go
config_test.go
1,468
package config import ( "strings" "testing" "github.com/google/go-cmp/cmp" ) const missingVersion = `{ }` const missingPackages = `{ "version": "1" }` const unknownVersion = `{ "version": "foo" }` const unknownFields = `{ "version": "1", "foo": "bar" }` func TestBadConfigs(t *testing.T) { for _, test...
185
1,468
92
0.98
2026-04-17T10:13:26.010184
true
github_ReFirmLabs_binwalk_934b3869da75f7b8441e706ddc0ee1ea74ee6675
Rust
ReFirmLabs
binwalk
13,850
1,782
Firmware Analysis Tool
[]
MIT
src/extractors/common.rs
common.rs
46,226
use crate::signatures::common::SignatureResult; use log::{debug, error, info, warn}; use serde::{Deserialize, Serialize}; use std::fs; use std::io::Write; use std::path; use std::process; use walkdir::WalkDir; #[cfg(windows)] use std::os::windows; #[cfg(unix)] use std::os::unix; #[cfg(unix)] use std::os::unix::fs::Pe...
4,348
46,226
1,231
0.98
2026-04-17T14:14:17.343830
true
github_greensock_GSAP_93cd9477c22d4d35a34366a76648a109f50a8e57
JavaScript
greensock
GSAP
24,471
1,966
GSAP (GreenSock Animation Platform), a JavaScript animation library for the modern web
[ "animation", "gsap", "javascript", "javascript-library", "scroll" ]
UNKNOWN
src/Draggable.js
Draggable.js
90,405
/*! * Draggable 3.15.0 * https://gsap.com * * @license Copyright 2008-2026, GreenSock. All rights reserved. * Subject to the terms at https://gsap.com/standard-license * @author: Jack Doyle, [REDACTED_EMAIL] */ /* eslint-disable */ import { getGlobalMatrix, Matrix2D } from "./utils/matrix.js"; let gsap, _win, ...
11,423
90,405
1,951
0.98
2026-04-23T13:50:04.229918
true
github_NodeBB_NodeBB_bc1e4283c35a345d823ab6151163b6c4f464660c
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/composer.js
composer.js
2,280
'use strict'; const nconf = require('nconf'); const user = require('../user'); const plugins = require('../plugins'); const topics = require('../topics'); const posts = require('../posts'); const helpers = require('./helpers'); exports.get = async function (req, res, callback) { res.locals.metaTags = { ...res.loc...
246
2,280
98
0.98
2026-04-23T06:53:10.880259
true
github_alibaba_gym-starcraft_ab8f61f5cfba8c7d3e2074452d08a8517fcb3145
Python
alibaba
gym-starcraft
528
138
StarCraft environment for OpenAI Gym, based on Facebook's TorchCraft. (In progress)
[ "artificial-intelligence", "deep-learning", "gym-starcraft", "openai-gym", "reinforcement-learning", "starcraft" ]
UNKNOWN
setup.py
setup.py
245
from setuptools import setup setup(name='gym_starcraft', version='0.0.1', description='StarCraft environment for OpenAI Gym', license='MIT License', install_requires=['gym>=0.2.3', 'keras_rl>=0.2.0rc1', 'keras>=1.2.0'])
16
245
8
0.98
2026-04-22T20:51:41.513523
true
github_huggingface_transformers_8089b3ec3ac68241e0f99159e4366372f26d9ad8
Python
huggingface
transformers
159,498
32,898
🤗 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/safetensors_conversion.py
safetensors_conversion.py
4,541
from typing import Optional import httpx from huggingface_hub import Discussion, HfApi, get_repo_discussions from .utils import cached_file, http_user_agent, logging logger = logging.get_logger(__name__) def previous_pr(api: HfApi, model_id: str, pr_title: str, token: str) -> Optional["Discussion"]: main_comm...
399
4,541
118
0.98
2026-04-17T06:41:16.638852
true
github_iperov_DeepFaceLab_6b6957630bf478a39e0467d734a5fe1ec90ad5ed
Python
iperov
DeepFaceLab
19,141
859
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/filters.py
filters.py
9,221
import numpy as np from .blursharpen import LinearMotionBlur, blursharpen import cv2 def apply_random_rgb_levels(img, mask=None, rnd_state=None): if rnd_state is None: rnd_state = np.random np_rnd = rnd_state.rand inBlack = np.array([np_rnd()*0.25 , np_rnd()*0.25 , np_rnd()*0.25], dtype=np....
956
9,221
245
0.98
2026-04-17T06:45:46.813919
true
github_notiz-dev_nestjs-prisma-starter_641629a0b0b81959ebfc46a9e2339b4b5e889f63
TypeScript
notiz-dev
nestjs-prisma-starter
2,539
365
Starter template for NestJS 😻 includes GraphQL with Prisma Client, Passport-JWT authentication, Swagger Api and Docker
[ "bcrypt", "code-first", "graphql", "nestjs", "passport-jwt", "passportjs", "prisma" ]
MIT
src/app.service.ts
app.service.ts
215
import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { getHello(): string { return 'Hello World!'; } getHelloName(name: string): string { return `Hello ${name}!`; } }
27
215
13
0.98
2026-04-18T01:39:00.055235
true
github_amir20_dozzle_5411687125468f56a5d7ed0654035788b30f7b2e
Go
amir20
dozzle
12,398
530
Realtime log viewer for containers. Supports Docker, Swarm and K8s.
[ "docker", "docker-container", "golang", "k8s", "log", "logging", "logging-server", "real-time", "sever-events", "swarm", "vuejs" ]
MIT
internal/migration/cloud_config.go
cloud_config.go
3,654
// Package migration contains one-time data migrations that run at startup. // Delete this package once all users have migrated. package migration import ( "os" "time" "github.com/rs/zerolog/log" "go.yaml.in/yaml/v3" ) type notificationConfig struct { Subscriptions []subscription `yaml:"subscriptions"` Dispatc...
391
3,654
125
0.98
2026-04-17T11:37:20.039563
true
github_micro-editor_micro_38caa6fb507af08684c2a10481beca771cce40ee
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/buffer/stack.go
stack.go
849
package buffer // TEStack is a simple implementation of a LIFO stack for text events type TEStack struct { Top *Element Size int } // An Element which is stored in the Stack type Element struct { Value *TextEvent Next *Element } // Len returns the stack's length func (s *TEStack) Len() int { return s.Size } ...
150
849
44
0.98
2026-04-17T08:23:25.390704
true
github_ultraworkers_claw-code_c75a94de24ff7d605e6de908470f466d09e1ad1d
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/replLauncher.py
replLauncher.py
169
from __future__ import annotations def build_repl_banner() -> str: return 'Python porting REPL is not interactive yet; use `python3 -m src.main summary` instead.'
22
169
6
0.98
2026-04-17T13:13:21.393419
true
github_google_zx_df1ea719f078bd1d5b6d6b0055c71c5af1c2abc5
TypeScript
google
zx
45,409
1,253
A tool for writing better scripts
[ "bash", "child-process", "cli", "exec", "javascript", "nodejs", "pipe", "shell", "spawn" ]
Apache-2.0
src/cli.ts
cli.ts
8,403
#!/usr/bin/env node // Copyright 2021 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
986
8,403
299
0.98
2026-04-23T06:18:06.046468
true
github_ChromeDevTools_chrome-devtools-mcp_55e834f41652c02da500115df54cb44013453f28
TypeScript
ChromeDevTools
chrome-devtools-mcp
36,793
2,272
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/telemetry/metricUtils.ts
metricUtils.ts
382
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ const LATENCY_BUCKETS = [50, 100, 250, 500, 1000, 2500, 5000, 10000]; export function bucketizeLatency(latencyMs: number): number { for (const bucket of LATENCY_BUCKETS) { if (latencyMs <= bucket) { return bucket; ...
49
382
17
0.98
2026-04-23T08:42:41.265102
true
github_starship_starship_ace054b7a2da4c83ab096c81b2f6becaf02a3d01
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/perl.rs
perl.rs
1,119
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct PerlConfig<'a> { pub format: &'a str, pub version_format: &'a str, pub symbol: &'a str...
95
1,116
43
0.98
2026-04-17T13:17:56.244028
true
github_rust-lang_rust_adb761ed9faa8cb2cdbb554c232e1957395980b4
Rust
rust-lang
rust
112,076
14,769
Empowering everyone to build reliable and efficient software.
[ "compiler", "language", "rust" ]
Apache-2.0
src/librustdoc/display.rs
display.rs
3,703
//! Various utilities for working with [`fmt::Display`] implementations. use std::fmt::{self, Display, Formatter, FormattingOptions}; pub(crate) trait Joined: IntoIterator { /// Takes an iterator over elements that implement [`Display`], and format them into `f`, separated by `sep`. /// /// This is simila...
441
3,703
133
0.98
2026-04-17T13:13:48.478591
true
github_diegohaz_generact_a4565d76eabd503f6d1d694813e9ac3d446a9ef2
JavaScript
diegohaz
generact
1,475
46
Generate React components by replicating your own
[ "cli", "create-react-app", "generator", "react", "react-boilerplate", "react-starter-kit" ]
MIT
src/utils.js
utils.js
3,666
// @flow import { basename, dirname, isAbsolute, join, relative } from 'path' import { camelCase, upperFirst } from 'lodash' import { gray } from 'chalk' import glob from 'glob' import listReactFiles from 'list-react-files' import { copy, move, readFileSync, writeFileSync } from 'fs-extra' import type { InquirerFile } ...
368
3,666
110
0.98
2026-04-23T12:55:20.914273
true
github_GradientHQ_parallax_7332f9c076203448140503226cc3001b040b0768
Python
GradientHQ
parallax
1,256
132
Parallax is a distributed model serving framework that lets you build your own AI cluster anywhere
[ "blackwell", "chatbot", "decentralized-inference", "deepseek", "distributed-systems", "glm", "kimi", "large-language-models", "llama", "llm", "llm-serving", "minimax", "oss-gpt", "python", "pytorch", "qwen", "transformer" ]
Apache-2.0
src/scheduling/node.py
node.py
15,801
""" Scheduling primitives for distributed LLM inference. - `NodeHardwareInfo`: static hardware properties - `RequestSignal`: minimal request envelope (id, received timestamp) - `RooflinePerformanceModel`: compute/IO roofline estimator with configurable sequence/batch shape - `Node`: worker serving state; manages lay...
1,440
15,801
435
0.98
2026-04-22T16:45:12.295084
true
github_aqlaboratory_openfold_48b409f13af97d25c7088965dfbe488b5461342d
Python
aqlaboratory
openfold
3,342
670
Trainable, memory-efficient, and GPU-friendly PyTorch reproduction of AlphaFold 2
[ "alphafold2", "protein-structure", "pytorch" ]
Apache-2.0
thread_sequence.py
thread_sequence.py
6,011
import argparse import os import logging import random import numpy import torch from openfold.config import model_config from openfold.data import feature_pipeline from openfold.data.data_pipeline import make_sequence_features_with_custom_template from openfold.np import protein from openfold.utils.script_utils impor...
498
6,011
173
0.98
2026-04-22T22:58:47.757843
true
github_run-llama_semtools_998225c4603b19e250b51f037eb72e79d7dee619
Rust
run-llama
semtools
1,771
126
Semantic search and document parsing tools for the command line
[ "cli", "embeddings", "parser", "rust", "search", "semantic", "semantic-search", "static-embedding" ]
MIT
src/cmds/ask.rs
ask.rs
5,670
use anyhow::Result; use async_openai::Client; use async_openai::config::OpenAIConfig; use model2vec_rs::model::StaticModel; use std::io::{self, BufRead, IsTerminal}; use crate::SemtoolsConfig; use crate::ask::chat_agent::{ask_agent, ask_agent_with_stdin}; use crate::ask::responses_agent::{ask_agent_responses, ask_agen...
507
5,670
172
0.98
2026-04-17T19:26:23.610389
true
github_bigint_hey_5cae5f50d7be3759784fe7b12dcc716925fd765c
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/compressImage.ts
compressImage.ts
281
import imageCompression, { type Options } from "browser-image-compression"; const compressImage = (file: File, opts: Options): Promise<File> => { return imageCompression(file, { exifOrientation: 1, useWebWorker: true, ...opts }); }; export default compressImage;
31
281
12
0.98
2026-04-18T01:23:00.051916
true
github_GopeedLab_gopeed_83b33545370af78a8dc53bd752620fbb1e649608
Go
GopeedLab
gopeed
23,946
1,617
A fast, modern download manager for HTTP, BitTorrent, Magnet, and ed2k. Cross-platform, built with Golang and Flutter.
[ "android", "bittorrent", "cross-platform", "debian", "downloader", "flutter", "golang", "http", "https", "ios", "macos", "magnet", "torrent", "ubuntu", "windows" ]
GPL-3.0
pkg/util/json_test.go
json_test.go
861
package util import ( "reflect" "testing" ) func TestDeepClone(t *testing.T) { type user struct { Name string `json:"name"` Age int `json:"age"` v int } type args[T any] struct { v *T } type testCase[T any] struct { name string args args[T] want *T } tests := []testCase[user]{ { name...
123
861
61
0.98
2026-04-17T09:11:26.333118
true
github_influxdata_telegraf_5c178fa73173080902cb0acc2b040f5e201899fa
Go
influxdata
telegraf
16,832
5,773
Agent for collecting, processing, aggregating, and writing metrics, logs, and other arbitrary data.
[ "golang", "hacktoberfest", "influxdb", "json", "kafka", "logs", "metrics", "modbus", "monitoring", "mqtt", "opcua", "t", "telegraf", "telemetry-collection", "time-series", "windows-eventlog", "xpath" ]
MIT
internal/choice/choice.go
choice.go
840
// Package choice provides basic functions for working with // plugin options that must be one of several values. package choice import "fmt" // Contains return true if the choice in the list of choices. func Contains(choice string, choices []string) bool { for _, item := range choices { if item == choice { ret...
141
840
37
0.98
2026-04-17T10:19:19.413149
true
github_kubernetes-sigs_external-dns_17383bef40c4541668994bd5a128e22689946307
Go
kubernetes-sigs
external-dns
8,903
2,853
Configure external DNS servers dynamically from Kubernetes resources
[ "aws", "clouddns", "dns", "dns-controller", "dns-providers", "dns-record", "dns-servers", "external-dns", "gcp", "ingress", "k8s-sig-network", "kubernetes", "route53" ]
Apache-2.0
source/annotations/annotations.go
annotations.go
5,268
/* Copyright 2025 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, sof...
592
5,268
113
0.98
2026-04-17T20:16:51.448242
true
github_wooorm_markdown-rs_87254f7bbdc5882f5069159b87606e992f258940
Rust
wooorm
markdown-rs
1,496
87
CommonMark compliant markdown parser in Rust with ASTs and extensions
[ "commonmark", "compiler", "gfm", "markdown", "parse", "render", "rust", "tokenize" ]
MIT
src/event.rs
event.rs
90,846
//! Semantic labels of things happening. use crate::unist; use crate::util::constant::TAB_SIZE; /// Semantic label of a span. #[derive(Clone, Debug, Eq, Hash, PartialEq)] pub enum Name { /// Attention sequence. /// /// > 👉 **Note**: this is used while parsing but compiled away. AttentionSequence, ...
8,853
90,807
3,571
0.98
2026-04-17T17:05:58.602396
true
github_denisidoro_navi_a738c015c4468c79e37b8883aa437607626d77f4
Rust
denisidoro
navi
17,025
547
An interactive cheatsheet tool for the command-line
[ "bash", "cheatsheets", "cli", "command-line", "rust", "shell", "snippet", "snippets", "terminal" ]
Apache-2.0
src/deser/raycast.rs
raycast.rs
1,333
use super::*; use crate::structures::item::Item; const FIELD_SEP_ESCAPE_CHAR: char = '\x16'; pub fn write(item: &Item) -> String { format!( "{hash}{delimiter}{tags}{delimiter}{comment}{delimiter}{icon}{delimiter}{snippet}\n", hash = item.hash(), tags = item.tags, comment = item.com...
121
1,333
52
0.98
2026-04-17T13:48:29.268878
true
github_Pythagora-io_gpt-pilot_db02d67043ac90410c61524002280ae20e12c7f9
Python
Pythagora-io
gpt-pilot
33,775
3,498
The first real AI developer
[ "ai", "codegen", "coding-assistant", "developer-tools", "gpt-4", "research-project" ]
NOASSERTION
core/db/v0importer.py
v0importer.py
10,476
from json import loads from os.path import exists from pathlib import Path from uuid import UUID, uuid4 import aiosqlite from core.db.models import Branch, Project, ProjectState from core.db.models.project_state import TaskStatus from core.db.session import SessionManager from core.disk.vfs import MemoryVFS from core...
876
10,476
275
0.98
2026-04-22T17:06:09.886143
true
github_nodejs_node_cd510f7a37b4ed2a39828e21fdb55eeb2b66a144
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/constants.js
constants.js
1,713
// 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...
244
1,713
42
0.98
2026-04-23T06:15:39.612159
true
github_google_zx_8326174c0c78f96678e975012c70b38c4dc8a44e
TypeScript
google
zx
45,409
1,253
A tool for writing better scripts
[ "bash", "child-process", "cli", "exec", "javascript", "nodejs", "pipe", "shell", "spawn" ]
Apache-2.0
src/util.ts
util.ts
4,168
// Copyright 2022 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
564
4,168
163
0.98
2026-04-23T06:18:10.813095
true
github_pathwaycom_pathway_2725a81bcc25554727a78ef43b80177a04f862cc
Rust
pathwaycom
pathway
63,434
1,631
Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG.
[ "batch-processing", "data-analytics", "data-pipelines", "data-processing", "dataflow", "etl", "etl-framework", "iot-analytics", "kafka", "machine-learning-algorithms", "pathway", "python", "real-time", "rust", "stream-processing", "streaming", "time-series-analysis" ]
NOASSERTION
src/external_integration/qdrant_integration.rs
qdrant_integration.rs
8,477
// Copyright © 2026 Pathway use std::collections::HashMap; use std::sync::Arc; use crate::async_runtime::create_async_tokio_runtime; use crate::engine::error::DynResult; use crate::engine::{Error, Key}; use log::warn; use qdrant_client::qdrant::point_id::PointIdOptions; use qdrant_client::qdrant::{CreateCollectionBui...
564
8,476
273
0.98
2026-04-23T04:40:44.357124
true
github_bensadeh_tailspin_c7f69ac4d9f6537874f950ae67f24372ada74a4b
Rust
bensadeh
tailspin
7,784
135
🌀 A log file highlighter
[ "ccze", "colorizer", "colors", "file", "follow", "grc", "highlighter", "less", "log", "log-file", "logfile", "syntax-highlighting", "tail" ]
MIT
src/core/mod.rs
mod.rs
164
pub mod highlighter; pub mod style; pub mod config; pub(crate) mod span_pipeline; mod utils; #[cfg(test)] mod tests { pub(crate) mod escape_code_converter; }
22
164
12
0.98
2026-04-17T14:34:55.607255
true
github_jetify-com_devbox_d714b8b564633d378fa48a66be13685aa2b3b48c
Go
jetify-com
devbox
11,474
310
Instant, easy, and predictable development environments
[ "build-system", "build-tool", "buildpack", "containers", "dev-environment", "devbox", "development-environment", "nix", "venv", "virtual-environment", "virtualization" ]
Apache-2.0
internal/nix/install.go
install.go
2,605
// Copyright 2024 Jetify Inc. and contributors. All rights reserved. // Use of this source code is governed by the license in the LICENSE file. package nix import ( "context" _ "embed" "fmt" "io" "os" "time" "github.com/briandowns/spinner" "github.com/fatih/color" "github.com/mattn/go-isatty" "go.jetify.c...
333
2,605
111
0.98
2026-04-17T12:17:54.014296
true
github_apollographql_apollo-client_c439827f22a89ad7282aeaef7b73a7c7b6271a8a
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/dev/symbol.ts
symbol.ts
494
import type { ErrorCodes } from "../invariantErrorCodes.js"; import { version } from "../version.js"; // This is duplicated between `@apollo/client/dev` and `@apollo/client/utilities/invariant` to prevent circular references. export const ApolloErrorMessageHandler = Symbol.for( "ApolloErrorMessageHandler_" + version...
56
494
15
0.98
2026-04-18T01:25:46.161423
true
github_mpatacchiola_dissecting-reinforcement-learning_8863d9e58eb2792dfab0ce89cdbc0f04f9fbc819
Python
mpatacchiola
dissecting-reinforcement-learning
624
179
Python code, PDFs and resources for the series of posts on Reinforcement Learning which I published on my personal blog
[ "actor-critic", "deep-reinforcement-learning", "dissecting-reinforcement-learning", "drone-landing", "genetic-algorithm", "inverted-pendulum", "markov-chain", "mountain-car", "multi-armed-bandit", "neural-networks", "q-learning", "reinforcement-learning", "sarsa", "temporal-differencing-le...
MIT
src/3/temporal_differencing_prediction_trace.py
temporal_differencing_prediction_trace.py
5,027
#!/usr/bin/env python #MIT License #Copyright (c) 2017 Massimiliano Patacchiola # #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 #t...
580
5,027
136
0.98
2026-04-22T20:43:09.988155
true
github_zincsearch_zincsearch_1ad26422580da0a8be0ba2fee5166ecfc0830223
Go
zincsearch
zincsearch
17,818
772
ZincSearch . A lightweight alternative to elasticsearch that requires minimal resources, written in Go.
[ "elasticsearch", "go", "golang", "modern", "opensearch", "search", "searchengine", "vuejs" ]
NOASSERTION
pkg/core/index_shards_wal_test.go
index_shards_wal_test.go
2,412
/* Copyright 2022 Zinc Labs Inc. and Contributors * * 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 a...
245
2,412
89
0.98
2026-04-17T10:11:23.060990
true
github_apollographql_apollo-client_31b63f916efbaf2b6d19eb12632804e77f4c4cc0
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/core/deprecated.ts
deprecated.ts
2,941
import type { ApolloCache } from "@apollo/client/cache"; import type { ApolloClient } from "./ApolloClient.js"; import type { ObservableQuery } from "./ObservableQuery.js"; import type { DataState, OperationVariables } from "./types.js"; /** @deprecated Use `ApolloClient.Options` instead */ export type ApolloClientOp...
257
2,941
76
0.98
2026-04-18T01:25:42.320177
true
github_pranz24_pytorch-soft-actor-critic_fcf53e6f7ee1b1ac3899f5750f51acf3107a5733
Python
pranz24
pytorch-soft-actor-critic
941
189
PyTorch implementation of soft actor critic
[ "deep-reinforcement-learning", "pytorch", "pytorch-implmention", "reinforcement-learning", "soft-actor-critic" ]
MIT
model.py
model.py
5,124
import torch import torch.nn as nn import torch.nn.functional as F from torch.distributions import Normal LOG_SIG_MAX = 2 LOG_SIG_MIN = -20 epsilon = 1e-6 # Initialize Policy weights def weights_init_(m): if isinstance(m, nn.Linear): torch.nn.init.xavier_uniform_(m.weight, gain=1) torch.nn.init.co...
416
5,124
153
0.98
2026-04-22T20:24:08.920139
true
github_getmaxun_maxun_d07913323ef6325cfa2161cba3017da516097707
TypeScript
getmaxun
maxun
15,478
1,270
🔥 The open-source no-code platform for web scraping, crawling, search and AI data extraction • Turn websites into structured APIs in minutes 🔥
[ "agents", "api", "automation", "browser-automation", "crawler", "crawling", "data-extraction", "no-code", "nocode", "playwright", "robotic-process-automation", "rpa", "scraper", "self-hosted", "web-scraper", "web-scraping", "web-search", "webscraping" ]
AGPL-3.0
src/api/storage.ts
storage.ts
11,678
import { default as axios } from "axios"; import { WorkflowFile } from "maxun-core"; import { RunSettings } from "../components/run/RunSettings"; import { ScheduleSettings } from "../components/robot/pages/ScheduleSettingsPage"; import { CreateRunResponse, ScheduleRunResponse } from "../pages/MainPage"; import { apiUrl...
1,344
11,678
438
0.98
2026-04-17T17:55:14.420205
true
github_bigint_hey_e281186463b0d3fd15d3868ce6bee526350bfce5
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/getRpc.ts
getRpc.ts
311
import type { FallbackTransport } from "viem"; import { fallback, http } from "viem"; import { RPCS } from "@/data/rpcs"; const BATCH_SIZE = 10; const getRpc = (): FallbackTransport => { return fallback( RPCS.map((rpc) => http(rpc, { batch: { batchSize: BATCH_SIZE } })) ); }; export default getRpc;
48
311
14
0.98
2026-04-18T01:23:07.677927
true
github_ChromeDevTools_chrome-devtools-mcp_83f69d2655ccb6b15e381391e1cf821c2fcf34f6
TypeScript
ChromeDevTools
chrome-devtools-mcp
36,793
2,272
Chrome DevTools for coding agents
[ "browser", "chrome", "chrome-devtools", "debugging", "devtools", "mcp", "mcp-server", "puppeteer" ]
Apache-2.0
src/daemon/utils.ts
utils.ts
3,835
/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import fs from 'node:fs'; import os from 'node:os'; import path from 'node:path'; import process from 'node:process'; import {logger} from '../logger.js'; import type {YargsOptions} from '../third_party/index.js'; export const DA...
450
3,835
137
0.98
2026-04-23T08:42:35.149060
true
github_berachain_polaris_8eb3409f275152f812080adb36f30becfc0ba2b9
Go
berachain
polaris
1,077
359
Polaris is a modular implementation of the Ethereum Virtual Machine (EVM). It can be easily integrated into any consensus engine or application, including the Cosmos-SDK.
[ "blockchain", "cosmos", "defi", "ethereum", "evm", "go", "golang", "mev", "web3" ]
NOASSERTION
lib/ds/ds_test.go
ds_test.go
1,350
// SPDX-License-Identifier: Apache-2.0 // // Copyright (c) 2023 Berachain Foundation // // 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...
211
1,350
39
0.98
2026-04-17T17:01:21.813166
true
github_bee-san_RustScan_455d024fb45a1da06d68e951b7409a2531522071
Rust
bee-san
RustScan
19,623
1,305
🤖 The Modern Port Scanner 🤖
[ "docker", "hacking", "hacktoberfest", "networking", "nmap", "pentesting", "port", "rust", "scanning", "security", "security-tools" ]
GPL-3.0
src/scripts/mod.rs
mod.rs
18,302
//! Scripting Engine to run scripts based on tags. //! //! This module serves to filter and run the scripts selected by the user. //! //! A new commandline and configuration file option was added. //! //! ## `--scripts` //! //! ### `default` //! //! This is the default behavior, like as it was from the beginning of Rus...
1,713
18,302
568
0.98
2026-04-17T13:43:57.156422
true
github_pathwaycom_pathway_d3d5a9bc29df5adc8499ce514aaa8fbedc17d5e9
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/persistence/config.rs
config.rs
21,077
// Copyright © 2026 Pathway #![allow(clippy::module_name_repetitions)] use differential_dataflow::difference::Semigroup; use differential_dataflow::ExchangeData; use log::{error, info, warn}; use std::collections::HashMap; use std::io::Error as IoError; use std::path::{Path, PathBuf}; use std::sync::{mpsc, Arc, Mutex...
1,367
21,076
577
0.98
2026-04-23T04:40:47.047229
true
github_starship_starship_92303269695ecd9d649ca412553fd045db8c39ae
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/git_state.rs
git_state.rs
976
use serde::{Deserialize, Serialize}; #[derive(Clone, Deserialize, Serialize)] #[cfg_attr( feature = "config-schema", derive(schemars::JsonSchema), schemars(deny_unknown_fields) )] #[serde(default)] pub struct GitStateConfig<'a> { pub rebase: &'a str, pub merge: &'a str, pub revert: &'a str, ...
96
976
39
0.98
2026-04-17T13:17:41.681474
true
github_atlassian_react-beautiful-dnd_d4dab331c48afa340248e26152956bcc8405ad29
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
src/state/dimension-structures.js
dimension-structures.js
972
// @flow import memoizeOne from 'memoize-one'; import { values } from '../native-with-fallback'; import type { DroppableDimension, DroppableDimensionMap, DraggableDimension, DraggableDimensionMap, } from '../types'; export const toDroppableMap = memoizeOne( (droppables: DroppableDimension[]): DroppableDimens...
86
972
36
0.98
2026-04-23T04:48:37.193657
true
github_jj-vcs_jj_3988775ef2bde950c7c1cf9973d329f9377c0899
Rust
jj-vcs
jj
28,085
1,009
A Git-compatible VCS that is both simple and powerful
[]
Apache-2.0
lib/src/operation.rs
operation.rs
4,504
// Copyright 2020 The Jujutsu 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed t...
496
4,504
158
0.98
2026-04-17T13:29:25.150482
true
github_bheisler_criterion.rs_c89e406ff170d41b266f29a0a163706cc5115ce1
Rust
bheisler
criterion.rs
5,450
354
Statistics-driven benchmarking library for Rust
[ "benchmark", "criterion", "gnuplot", "rust", "statistics" ]
Apache-2.0
src/routine.rs
routine.rs
9,368
use crate::benchmark::BenchmarkConfig; use crate::connection::OutgoingMessage; use crate::measurement::Measurement; use crate::report::{BenchmarkId, Report, ReportContext}; use crate::{ActualSamplingMode, Bencher, Criterion}; use std::hint::black_box; use std::marker::PhantomData; use std::time::Duration; /// PRIVATE ...
915
9,368
285
0.98
2026-04-17T15:01:52.714647
true
github_cri-o_cri-o_dd1204f7e478b29d5dad8261ed4b221e66b836c2
Go
cri-o
cri-o
5,601
1,161
Open Container Initiative-based implementation of Kubernetes Container Runtime Interface
[ "container-runtime-interface", "crun", "hacktoberfest", "k8s-sig-node", "kata-containers", "kubernetes", "oci", "oci-runtime", "runc" ]
Apache-2.0
internal/criocli/completion.go
completion.go
2,879
package criocli import ( "errors" "fmt" "strings" "github.com/urfave/cli/v2" ) func completion() *cli.Command { return &cli.Command{ Name: "complete", Aliases: []string{"completion"}, Usage: "Generate bash, fish or zsh completions.", ArgsUsage: "SHELL", Description: "Output shell co...
333
2,879
144
0.98
2026-04-17T21:23:15.836283
true
github_slint-ui_slint_d8cd9f477b1105a06cfee747268e1487cfee1081
Rust
slint-ui
slint
22,265
863
Slint is an open-source declarative GUI toolkit to build native user interfaces for Rust, C++, JavaScript, or Python apps.
[ "cpp", "declarative-ui", "desktop", "embedded-devices", "gui", "javascript", "language", "lsp-server", "native", "rust", "rust-lang", "toolkit", "ui", "user-interface", "wasm", "webassembly", "widgets" ]
NOASSERTION
internal/core-macros/lib.rs
lib.rs
9,182
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 // Copyright © SixtyFPS GmbH <[REDACTED_EMAIL]> // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 // Copyright © SixtyFPS GmbH <[REDACTED_EMAIL]> ...
833
9,180
235
0.98
2026-04-17T13:36:31.169865
true
github_bluenviron_mediamtx_6c7d5f853f447b8a3e72ff3772a92bbbdfffe8d9
Go
bluenviron
mediamtx
18,495
2,184
Ready-to-use SRT / WebRTC / RTSP / RTMP / LL-HLS / MPEG-TS / RTP media server and media proxy that allows to read, publish, proxy, record and playback video and audio streams.
[ "go", "golang", "hls", "media-server", "obs-studio", "rtcp", "rtmp", "rtmp-proxy", "rtmp-server", "rtp", "rtsp", "rtsp-proxy", "rtsp-relay", "rtsp-server", "srt", "streaming", "webrtc", "webrtc-proxy" ]
MIT
internal/api/api.go
api.go
7,743
// Package api contains the API server. package api //nolint:revive import ( "fmt" "net" "net/http" "reflect" "sort" "sync" "time" "github.com/gin-gonic/gin" "github.com/bluenviron/mediamtx/internal/auth" "github.com/bluenviron/mediamtx/internal/conf" "github.com/bluenviron/mediamtx/internal/defs" "githu...
591
7,743
281
0.98
2026-04-17T09:40:06.499359
true
github_golang-migrate_migrate_9d077a754cd01724ca6072f3e4affbfe0ff5ce22
Go
golang-migrate
migrate
18,369
1,567
Database migrations. CLI and Golang library.
[ "aws-s3", "cassandra", "database", "databases", "go", "golang", "google-cloud-spanner", "google-cloud-storage", "hacktoberfest", "mariadb", "migration", "migrations", "mongodb", "mysql", "neo4j", "postgres", "spanner", "sql", "sqlite" ]
NOASSERTION
internal/cli/build_sqlite.go
build_sqlite.go
101
//go:build sqlite package cli import ( _ "github.com/golang-migrate/migrate/v4/database/sqlite" )
9
101
8
0.98
2026-04-17T09:41:12.202432
true
github_Ido-Levi_Hephaestus_e44833a0c57b0ffae71da20862c1fa35b3f41f75
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/check_executors.py
check_executors.py
8,401
"""Validation check type executors.""" from enum import Enum from typing import Dict, Any, List, Optional import os import subprocess from pathlib import Path class ValidationCheckType(Enum): """Types of validation checks.""" FILE_EXISTS = "file_exists" FILE_CONTAINS = "file_contains" COMMAND_SUCCESS...
759
8,401
295
0.98
2026-04-17T23:58:01.299995
true
github_claudiajs_claudia_2d8b57f55cf6b848b041939d85aa6abf8ec09720
JavaScript
claudiajs
claudia
3,893
277
Deploy Node.js projects to AWS Lambda and API Gateway easily
[ "api-gateway", "aws", "aws-lambda", "claudia", "javascript", "nodejs", "serverless" ]
MIT
src/tasks/wait-until-not-pending.js
wait-until-not-pending.js
677
const retry = require('oh-no-i-insist'); module.exports = function waitUntilNotPending(lambda, functionName, timeout, retries) { 'use strict'; return retry( () => { return lambda.getFunctionConfiguration({FunctionName: functionName}).promise() .then(result => { if (result.state === 'Failed') { thr...
73
677
28
0.98
2026-04-23T07:43:57.545222
true
github_rancher_rancher_49822a449afa702b95f4fe073a2b39ee152b0527
Go
rancher
rancher
25,503
3,179
Complete container management platform
[ "cattle", "containers", "docker", "kubernetes", "orchestration", "rancher" ]
Apache-2.0
pkg/kontainerdrivermetadata/handler.go
handler.go
5,102
package kontainerdrivermetadata import ( "context" "encoding/json" "fmt" "github.com/blang/semver" v3 "github.com/rancher/rancher/pkg/apis/management.cattle.io/v3" "github.com/rancher/rancher/pkg/channelserver" mgmtcontrollers "github.com/rancher/rancher/pkg/generated/controllers/management.cattle.io/v3" "git...
546
5,102
146
0.98
2026-04-17T08:38:32.196181
true
github_nodejs_node_c6fc170d590aead88faf623877943f2decf719a9
JavaScript
nodejs
node
116,870
35,414
Node.js JavaScript runtime ✨🐢🚀✨
[ "javascript", "js", "linux", "macos", "mit", "node", "nodejs", "runtime", "windows" ]
NOASSERTION
lib/events.js
events.js
36,129
// 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...
3,961
36,129
1,246
0.98
2026-04-23T06:15:42.452636
true
github_react-boilerplate_react-boilerplate_08eedba2a8f3f90815514116cf844a7d619f9bd5
JavaScript
react-boilerplate
react-boilerplate
29,513
6,045
🔥 A highly scalable, offline-first foundation with the best developer experience and a focus on performance and best practices.
[ "i18n", "immer", "offline-first", "react", "react-boilerplate", "redux", "redux-saga", "scaffolding", "styled-components", "webpack4" ]
MIT
app/utils/loadable.js
loadable.js
308
import React, { lazy, Suspense } from 'react'; const loadable = (importFunc, { fallback = null } = { fallback: null }) => { const LazyComponent = lazy(importFunc); return props => ( <Suspense fallback={fallback}> <LazyComponent {...props} /> </Suspense> ); }; export default loadable;
43
308
14
0.98
2026-04-23T04:49:42.693543
true