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_Chalarangelo_30-seconds-of-code_13bb585fef750ab71e875df0555b7afdbfb83896 | 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/serializers/serializers.js | serializers.js | 538 | import CollectionContextSerializer from '#src/serializers/collectionContextSerializer.js';
import PageSerializer from '#src/serializers/pageSerializer.js';
import PreviewSerializer from '#src/serializers/previewSerializer.js';
import SearchResultSerializer from '#src/serializers/searchResultSerializer.js';
import Snipp... | 29 | 538 | 14 | 0.98 | 2026-04-23T06:15:03.473152 | true |
github_starship_starship_1a0d3cc02b1c1ad1408f788bd1b85c016371413a | 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/php.rs | php.rs | 909 | use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct PhpConfig<'a> {
pub format: &'a str,
pub version_format: &'a str,
pub symbol: &'a str,... | 86 | 906 | 35 | 0.98 | 2026-04-17T13:17:57.054074 | true |
github_IceWhaleTech_CasaOS_c1d1584cd2ae94484e6f5638028f1574c94f4c7b | Go | IceWhaleTech | CasaOS | 33,658 | 1,890 | CasaOS - A simple, easy-to-use, elegant open-source Personal Cloud system. | [
"casaos",
"docker",
"golang",
"home-automation",
"home-cloud",
"home-server",
"iot",
"raspberry",
"self-hosted",
"vuejs"
] | Apache-2.0 | pkg/utils/slice.go | slice.go | 885 | package utils
// SliceEqual check if two slices are equal
func SliceEqual[T comparable](a, b []T) bool {
if len(a) != len(b) {
return false
}
for i, v := range a {
if v != b[i] {
return false
}
}
return true
}
// SliceContains check if slice contains element
func SliceContains[T comparable](arr []T, v T... | 163 | 885 | 47 | 0.98 | 2026-04-17T07:42:38.820374 | true |
github_projectdiscovery_subfinder_afc65b1cf1d593ff4d56116ebb690f3460666b70 | Go | projectdiscovery | subfinder | 13,438 | 1,532 | Fast passive subdomain enumeration tool. | [
"bugbounty",
"hacking",
"hacktoberfest",
"osint",
"reconnaissance",
"subdomain-enumeration",
"subdomains"
] | MIT | pkg/runner/initialize.go | initialize.go | 1,344 | package runner
import (
"net"
"strings"
"github.com/projectdiscovery/dnsx/libs/dnsx"
"github.com/projectdiscovery/subfinder/v2/pkg/passive"
"github.com/projectdiscovery/subfinder/v2/pkg/resolve"
)
// initializePassiveEngine creates the passive engine and loads sources etc
func (r *Runner) initializePassiveEngin... | 151 | 1,344 | 52 | 0.98 | 2026-04-17T11:22:19.778605 | true |
github_rayon-rs_rayon_4664d3d5f3cd03c5646ece56e5064050592c6c81 | Rust | rayon-rs | rayon | 12,878 | 584 | Rayon: A data parallelism library for Rust | [] | Apache-2.0 | src/iter/once.rs | once.rs | 1,679 | use crate::iter::plumbing::*;
use crate::iter::*;
/// Creates a parallel iterator that produces an element exactly once.
///
/// This admits no parallelism on its own, but it could be chained to existing
/// parallel iterators to extend their contents, or otherwise used for any code
/// that deals with generic paralle... | 200 | 1,679 | 71 | 0.98 | 2026-04-17T14:16:52.990376 | true |
github_existence-master_Sentient_c4c02a9509a1fcd9f899419559063021265341be | JavaScript | existence-master | Sentient | 680 | 98 | A personal AI assistant for everyone | [
"agents",
"artificial-general-intelligence",
"artificial-intelligence",
"automation",
"context",
"mcp",
"memory",
"open-source",
"personalization",
"proactive-ai"
] | NOASSERTION | src/client/tailwind.config.js | tailwind.config.js | 3,316 | /** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{ts,tsx}"
],
darkMode: "class",
theme: {
extend: {
animation: {
shimmer: "shimmer 2s linear infinite",... | 349 | 3,316 | 136 | 0.98 | 2026-04-23T03:57:12.703969 | true |
github_qax-os_excelize_8bbbabfd7791ba872afc7a813481425ce8222b56 | Go | qax-os | excelize | 20,478 | 1,890 | Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets | [
"agent",
"ai",
"analytics",
"chart",
"ecma-376",
"excel",
"excelize",
"formula",
"go",
"mcp",
"microsoft",
"office",
"ooxml",
"spreadsheet",
"statistics",
"table",
"vba",
"visualization",
"xlsx",
"xml"
] | BSD-3-Clause | xmlDecodeDrawing.go | xmlDecodeDrawing.go | 12,850 | // Copyright 2016 - 2026 The excelize Authors. All rights reserved. Use of
// this source code is governed by a BSD-style license that can be found in
// the LICENSE file.
//
// Package excelize providing a set of functions that allow you to write to and
// read from XLAM / XLSM / XLSX / XLTM / XLTX files. Supports rea... | 1,502 | 12,848 | 294 | 0.98 | 2026-04-17T09:28:04.082807 | true |
github_klothoplatform_klotho_4b2a09ffd3659b0136f7a43aa9b7ebbc03637e7d | Go | klothoplatform | klotho | 1,142 | 39 | Klotho - write AWS applications at lightning speed | [
"architecture",
"aws",
"aws-lambda",
"azure",
"fargate",
"gcp",
"kubernetes",
"microservices",
"pulumi",
"serverless",
"terraform"
] | Apache-2.0 | pkg/knowledgebase/graph.go | graph.go | 11,669 | package knowledgebase
import (
"errors"
"fmt"
"reflect"
"github.com/dominikbraun/graph"
construct "github.com/klothoplatform/klotho/pkg/construct"
"github.com/klothoplatform/klotho/pkg/graph_addons"
"github.com/klothoplatform/klotho/pkg/set"
)
type (
// DependencyLayer represents how far away a resource to r... | 1,416 | 11,669 | 387 | 0.98 | 2026-04-18T01:19:33.940198 | true |
github_salimi-my_shadcn-ui-sidebar_d52143a9ef42a67f977d92fd64d568156dfbf6e0 | TypeScript | salimi-my | shadcn-ui-sidebar | 1,788 | 217 | A stunning, functional and responsive retractable sidebar for Next.js built on top of shadcn/ui. | [
"admin-panel",
"dashboard",
"nextjs",
"shadcn-ui",
"sidebar",
"tailwind"
] | MIT | src/lib/menu-list.ts | menu-list.ts | 1,463 | import {
Tag,
Users,
Settings,
Bookmark,
SquarePen,
LayoutGrid,
LucideIcon
} from "lucide-react";
type Submenu = {
href: string;
label: string;
active?: boolean;
};
type Menu = {
href: string;
label: string;
active?: boolean;
icon: LucideIcon;
submenus?: Submenu[];
};
type Group = {
g... | 145 | 1,463 | 90 | 0.98 | 2026-04-23T11:02:55.047791 | true |
github_Ottrlang_otterlang_4e2a3a4cdf85758bc8956c6578ceaa2d429de7d3 | Rust | Ottrlang | otterlang | 671 | 21 | Otterlang programming language 🦦 | [
"compiler",
"general-purpose",
"language",
"llvm",
"otter",
"otterlang",
"programming-language",
"pythonic",
"rust",
"scripting-language"
] | BSD-3-Clause | src/test/discovery.rs | discovery.rs | 3,340 | #![expect(
clippy::print_stderr,
reason = "Printing to stderr is acceptable in tests"
)]
use anyhow::{Context, Result};
use glob::glob;
use std::path::{Path, PathBuf};
use otterc_ast::nodes::{Function, Statement};
use otterc_lexer::tokenize;
use otterc_parser::parse;
#[derive(Debug, Clone)]
pub struct TestCa... | 287 | 3,340 | 123 | 0.98 | 2026-04-17T17:09:28.578980 | true |
github_sharkdp_bat_29247bd7d8145180ceffcb36036bd1ce74a9bd7d | Rust | sharkdp | bat | 58,255 | 1,524 | A cat(1) clone with wings. | [
"cli",
"command-line",
"git",
"hacktoberfest",
"rust",
"syntax-highlighting",
"terminal",
"tool"
] | Apache-2.0 | src/assets.rs | assets.rs | 29,067 | use std::ffi::OsStr;
use std::fs;
use std::path::Path;
use once_cell::unsync::OnceCell;
use syntect::highlighting::Theme;
use syntect::parsing::{SyntaxReference, SyntaxSet};
use path_abs::PathAbs;
use crate::error::*;
use crate::input::{InputReader, OpenedInput};
use crate::syntax_mapping::ignored_suffixes::Ignored... | 2,150 | 29,067 | 818 | 0.98 | 2026-04-17T13:16:47.365733 | true |
github_Pythagora-io_gpt-pilot_d36cd0cc48f7de19f3e5179771bda0848e1e1ad0 | 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/agents/convo.py | convo.py | 4,646 | import json
import sys
from copy import deepcopy
from typing import TYPE_CHECKING, Optional
import jsonref
from pydantic import BaseModel
from core.config import get_config
from core.llm.convo import Convo
from core.llm.prompt import JinjaFileTemplate
from core.log import get_logger
if TYPE_CHECKING:
from core.a... | 432 | 4,646 | 136 | 0.98 | 2026-04-22T17:05:55.890077 | true |
github_dtolnay_cxx_69614f806a58b62822e59d76b2c97cf27ded1843 | Rust | dtolnay | cxx | 6,706 | 404 | Safe interop between Rust and C++ | [] | Apache-2.0 | src/fmt.rs | fmt.rs | 373 | use core::fmt::{self, Display};
pub(crate) fn display(fmt: impl Fn(&mut fmt::Formatter) -> fmt::Result) -> impl Display {
DisplayInvoke(fmt)
}
struct DisplayInvoke<T>(T);
impl<T> Display for DisplayInvoke<T>
where
T: Fn(&mut fmt::Formatter) -> fmt::Result,
{
fn fmt(&self, formatter: &mut fmt::Formatter) ... | 41 | 373 | 17 | 0.98 | 2026-04-17T14:44:49.151829 | true |
github_sharkdp_bat_89a9854e756836518d6389f7b0b70f402a16c9ac | Rust | sharkdp | bat | 58,128 | 1,512 | A cat(1) clone with wings. | [
"cli",
"command-line",
"git",
"hacktoberfest",
"rust",
"syntax-highlighting",
"terminal",
"tool"
] | Apache-2.0 | src/pretty_printer.rs | pretty_printer.rs | 12,754 | use std::io::Read;
use std::path::Path;
use console::Term;
use crate::{
assets::HighlightingAssets,
config::{Config, VisibleLines},
controller::Controller,
error::Result,
input,
line_range::{HighlightedLineRanges, LineRange, LineRanges},
output::OutputHandle,
style::StyleComponent,
... | 1,414 | 12,754 | 406 | 0.95 | 2026-04-13T14:05:34.489426 | true |
github_bigint_hey_6f935534c3587b5f393193218b2697ea8f0c3ea5 | TypeScript | bigint | hey | 29,463 | 1,807 | Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿 | [
"blockchain",
"crypto",
"dapp",
"graphql",
"hacktoberfest",
"lens-protocol",
"nextjs",
"react",
"social-media",
"tailwindcss",
"turborepo",
"typescript",
"vitest",
"wagmi",
"web3"
] | GPL-3.0 | src/types/remark-linkify-regex.d.ts | remark-linkify-regex.d.ts | 257 | declare module "remark-linkify-regex" {
import type { Plugin } from "unified";
interface LinkifyRegexOptions {
[key: string]: unknown;
}
export default function linkifyRegex(
regex: RegExp,
options?: LinkifyRegexOptions
): Plugin;
}
| 29 | 257 | 13 | 0.98 | 2026-04-18T01:23:22.984079 | true |
github_airaria_TextBrewer_e55071ee2334732426fdada77e1cd0493ce55ae7 | Python | airaria | TextBrewer | 1,697 | 245 | A PyTorch-based knowledge distillation toolkit for natural language processing | [
"bert",
"distillation",
"knowledge",
"nlp",
"pytorch"
] | Apache-2.0 | src/textbrewer/compatibility.py | compatibility.py | 267 | import torch
if torch.__version__ < '1.2':
mask_dtype = torch.uint8
else:
mask_dtype = torch.bool
def is_apex_available():
try:
from apex import amp
_has_apex = True
except ImportError:
_has_apex = False
return _has_apex | 30 | 267 | 14 | 0.98 | 2026-04-22T19:50:52.984914 | true |
github_apache_casbin_78cef5571252ce4d01b26af5777c4f0e68b50b5d | Go | apache | casbin | 20,008 | 1,726 | Apache Casbin: an authorization library that supports access control models like ACL, RBAC, ABAC. | [
"abac",
"access-control",
"acl",
"apache",
"auth",
"authentication",
"authn",
"authorization",
"authz",
"cas",
"casbin",
"iam",
"oauth",
"oidc",
"permission",
"rbac",
"saml",
"sso"
] | Apache-2.0 | ai_api.go | ai_api.go | 6,299 | // Copyright 2026 The casbin 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 a... | 821 | 6,299 | 222 | 0.98 | 2026-04-17T09:31:03.943054 | true |
github_fofr_cog-face-to-sticker_8ea1c7b1cc0d9ba1a350971fd51ddb4d54058a2a | Python | fofr | cog-face-to-sticker | 649 | 65 | face-to-sticker | [
"ai",
"comfyui",
"generative-ai",
"replicate",
"text-to-image"
] | NOASSERTION | weights_downloader.py | weights_downloader.py | 2,482 | import subprocess
import time
import os
from weights_manifest import WeightsManifest
BASE_URL = "https://weights.replicate.delivery/default/comfy-ui"
class WeightsDownloader:
def __init__(self):
self.weights_manifest = WeightsManifest()
self.weights_map = self.weights_manifest.weights_map
d... | 156 | 2,468 | 64 | 0.98 | 2026-04-22T22:04:22.930624 | true |
github_ultraworkers_claw-code_e710d13147a93b3b3043b4b7c07ec9e43297ee0e | 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/bootstrap/__init__.py | __init__.py | 533 | """Python package placeholder for the archived `bootstrap` subsystem."""
from __future__ import annotations
from src._archive_helper import load_archive_metadata
_SNAPSHOT = load_archive_metadata("bootstrap")
ARCHIVE_NAME = _SNAPSHOT["archive_name"]
MODULE_COUNT = _SNAPSHOT["module_count"]
SAMPLE_FILES = tuple(_SNA... | 46 | 533 | 15 | 0.98 | 2026-04-17T13:13:05.247134 | true |
github_drprojects_superpoint_transformer_bd301a81bde105bc342e21327b4f5a1d5501f3ae | Python | drprojects | superpoint_transformer | 987 | 132 | Official PyTorch implementation of Superpoint Transformer [ICCV'23], SuperCluster [3DV'24 Oral], and EZ-SP [ICRA'26] | [
"3d",
"3dv2024",
"deep-learning",
"efficient",
"fast",
"graph-clustering",
"hierarchical",
"iccv2023",
"lightweight",
"panoptic-segmentation",
"partition",
"partitioning",
"point-cloud",
"pytorch",
"semantic-segmentation",
"superpoint",
"transformer"
] | MIT | src/models/panoptic.py | panoptic.py | 68,147 | import torch
import logging
from typing import Any, List, Tuple, Dict
from torchmetrics import MaxMetric, MeanMetric
from torchmetrics.classification import BinaryAccuracy, BinaryF1Score
from torch_geometric.nn.pool.consecutive import consecutive_cluster
from src.utils import init_weights, PanopticSegmentationOutput, ... | 5,846 | 68,147 | 1,526 | 0.98 | 2026-04-22T21:13:03.358082 | true |
github_adam-mcdaniel_sage_f5c9f33b10db4faf62070b57ab10f439f1de6b91 | 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/asm/location.rs | location.rs | 38,356 | //! # Assembly Memory Location
//!
//! This module contains the `Location` type, which represents a memory
//! location on the virtual machine's tape in the assembly language.
//!
//! ## What should I know first?
//!
//! You should ***NOT*** use pointers as if they are integers.
//! Think about pointers and integers as... | 3,951 | 38,356 | 1,124 | 0.98 | 2026-04-17T17:10:48.536998 | true |
github_pubkey_rxdb_222cdde3437d548dcd1e855fb94b97f5ae490c7d | 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/util.d.ts | util.d.ts | 5,194 | import type { RxStorage } from './rx-storage.interface';
export type MaybePromise<T> = Promise<T> | T;
export type PlainJsonValue =
string |
number |
boolean |
PlainSimpleJsonObject |
PlainSimpleJsonObject[] |
PlainJsonValue[] |
{ [key: string]: PlainJsonValue; }
;
export type PlainSi... | 761 | 5,194 | 181 | 0.98 | 2026-04-23T08:22:17.691178 | true |
github_gildas-lormeau_SingleFileZ_1fe070ef9e41f38fcea59af95f151bd299cfc5a1 | JavaScript | gildas-lormeau | SingleFileZ | 1,927 | 141 | Web Extension to save a faithful copy of an entire web page in a self-extracting ZIP file | [
"archive",
"cli",
"docker",
"firefox",
"html",
"maff",
"nodejs",
"puppeteer",
"save",
"selenium",
"self-extracting",
"singlefile",
"web-extensions",
"webpage",
"zip"
] | AGPL-3.0 | lib/single-file-hooks-frames.js | single-file-hooks-frames.js | 9,538 | !function(){"use strict";(e=>{const t="single-file-lazy-load",n="single-file-load-image",i="single-file-image-loaded",r="single-file-request-get-adopted-stylesheets",o="single-file-unregister-request-get-adopted-stylesheets",l="single-file-response-get-adopted-stylesheets",s={family:"font-family",style:"font-style",wei... | 134 | 9,538 | 2 | 0.98 | 2026-04-23T12:52:32.603163 | true |
github_matplotlib_matplotlib_610d7c40935b0999fe7de38515f316ce816023f7 | Python | matplotlib | matplotlib | 22,729 | 8,325 | matplotlib: plotting with Python | [
"data-science",
"data-visualization",
"gtk",
"matplotlib",
"plotting",
"python",
"qt",
"tk",
"wx"
] | UNKNOWN | lib/matplotlib/_cm_multivar.py | _cm_multivar.py | 6,630 | # auto-generated by https://github.com/trygvrad/multivariate_colormaps
# date: 2024-05-28
from .colors import LinearSegmentedColormap, MultivarColormap
import matplotlib as mpl
_LUTSIZE = mpl.rcParams['image.lut']
_2VarAddA0_data = [[0.000, 0.000, 0.000],
[0.020, 0.026, 0.031],
[... | 487 | 6,630 | 167 | 0.98 | 2026-04-22T18:13:26.634830 | true |
github_rust-lang_rustlings_7c72a6b700d84b3bceb23df66d237fe6fd9ffd96 | 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/dev/new.rs | new.rs | 4,908 | use anyhow::{Context, Result, bail};
use std::{
env::set_current_dir,
fs::{self, create_dir},
path::Path,
process::Command,
};
use crate::{CURRENT_FORMAT_VERSION, init::RUST_ANALYZER_TOML};
// Create a directory relative to the current directory and print its path.
fn create_rel_dir(dir_name: &str, cu... | 579 | 4,895 | 149 | 0.98 | 2026-04-17T13:16:11.108815 | true |
github_k0sproject_k0s_154e7c832287178d230352815c2831b945b90fe2 | Go | k0sproject | k0s | 5,874 | 492 | k0s - The Zero Friction Kubernetes | [
"kubernetes"
] | NOASSERTION | cmd/worker/worker_windows.go | worker_windows.go | 1,468 | // SPDX-FileCopyrightText: 2025 k0s authors
// SPDX-License-Identifier: Apache-2.0
package worker
import (
"context"
"errors"
"fmt"
"os"
"time"
"github.com/k0sproject/k0s/internal/pkg/dir"
"github.com/k0sproject/k0s/internal/pkg/log"
"github.com/k0sproject/k0s/pkg/component/manager"
"github.com/k0sproject/k... | 135 | 1,468 | 52 | 0.98 | 2026-04-17T21:18:38.864207 | true |
github_GitoxideLabs_gitoxide_af8a5f97d305a92949eae8107e9392dee37bc1a2 | Rust | GitoxideLabs | gitoxide | 11,179 | 452 | An idiomatic, lean, fast & safe pure Rust implementation of Git | [
"blazingly-fast",
"built-with-rust",
"cli",
"git",
"version-control"
] | Apache-2.0 | src/uni.rs | uni.rs | 939 | //! An experiment to see how a multi-call binary could look like.
//! For CI this would mean longer compile times though as it rebuilds `gix`
//! with varying compile flags, which also means that it recompiles all source or `ein`.
//!
//! However, doing this could be interesting for distribution if the files are hard-l... | 119 | 939 | 26 | 0.98 | 2026-04-17T14:21:50.920033 | true |
github_jfecher_ante_e04304dd50a9228224e5364b8e1396e6b1f34636 | Rust | jfecher | ante | 2,215 | 107 | A safe, easy systems language | [
"ante",
"compiler",
"language",
"llvm",
"refinement-types",
"systems-language"
] | MIT | src/error/mod.rs | mod.rs | 26,179 | //! error/mod.rs - Defines the error, warning, and note macros
//! used to issue compiler errors. There is also an ErrorMessage type
//! for storing messages that may be issued later. Note that all issuing
//! an error does is print it to stderr and update the global ERROR_COUNT.
//!
//! Compiler passes are expected to... | 2,368 | 26,179 | 590 | 0.98 | 2026-04-17T17:03:56.166517 | true |
github_nodejs_undici_5a7fcbff3adc27549c87a68b88adb0d596f208bb | JavaScript | nodejs | undici | 7,525 | 756 | An HTTP/1.1 client, written from scratch for Node.js | [
"client",
"http",
"nodejs"
] | MIT | lib/core/errors.js | errors.js | 12,802 | 'use strict'
const kUndiciError = Symbol.for('undici.error.UND_ERR')
class UndiciError extends Error {
constructor (message, options) {
super(message, options)
this.name = 'UndiciError'
this.code = 'UND_ERR'
}
static [Symbol.hasInstance] (instance) {
return instance && instance[kUndiciError] ===... | 1,227 | 12,802 | 478 | 0.98 | 2026-04-23T07:14:43.049709 | true |
github_ChatGPTNextWeb_NextChat_30a7eb40001e3c3672b78dd98b7f6e6f1bc1a10e | 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/config/client.ts | client.ts | 615 | import { BuildConfig, getBuildConfig } from "./build";
export function getClientConfig() {
if (typeof document !== "undefined") {
// client side
return JSON.parse(queryMeta("config") || "{}") as BuildConfig;
}
if (typeof process !== "undefined") {
// server side
return getBuildConfig();
}
}
f... | 78 | 615 | 28 | 0.98 | 2026-04-23T08:58:07.366825 | true |
github_rust-unofficial_awesome-rust_7cc47a7515bf899c9e7e5236099310da27981ac0 | Rust | rust-unofficial | awesome-rust | 56,779 | 3,295 | A curated list of Rust code and resources. | [
"awesome",
"rust"
] | CC0-1.0 | src/main.rs | main.rs | 35,398 | #![deny(warnings)]
use anyhow::{format_err, Result};
use chrono::{DateTime, Duration, Local};
use diffy::create_patch;
use futures::future::{select_all, BoxFuture, FutureExt};
use lazy_static::lazy_static;
use log::{debug, info, warn};
use pulldown_cmark::{Event, Parser, Tag};
use regex::Regex;
use reqwest::{header, r... | 2,732 | 35,394 | 785 | 0.98 | 2026-04-17T13:17:12.223040 | true |
github_starship_starship_ff15c94e2733a3901b13cf455056f8bfc3cee1bf | 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/elm.rs | elm.rs | 936 | use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct ElmConfig<'a> {
pub format: &'a str,
pub version_format: &'a str,
pub symbol: &'a str,... | 87 | 933 | 35 | 0.98 | 2026-04-17T13:17:36.963411 | true |
github_brianlovin_briOS_8a633be8668136a8a752393023bac0ebb09dc92e | TypeScript | brianlovin | briOS | 2,252 | 252 | My personal website. | [
"apollo",
"graphql",
"javascript",
"nextjs",
"planetscale",
"prisma",
"react",
"styled-components"
] | UNKNOWN | src/lib/hn-cli-telemetry-redis.ts | hn-cli-telemetry-redis.ts | 3,465 | import { Redis } from "@upstash/redis";
// Telemetry event structure from CLI
export interface TelemetryEvent {
event: string;
timestamp: number;
properties?: Record<string, unknown>;
}
let redis: Redis | null = null;
function getTelemetryRedis(): Redis | null {
if (redis) return redis;
if (
!process.... | 404 | 3,465 | 145 | 0.98 | 2026-04-23T08:40:52.595414 | true |
github_kubernetes-sigs_external-dns_f65d18c852db0c078aae59761348a2e7da34e946 | 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 | internal/testutils/metrics.go | metrics.go | 5,876 | /*
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... | 727 | 5,876 | 184 | 0.98 | 2026-04-17T20:16:40.467159 | true |
github_micro-editor_micro_555a21b8036951e467d08fe3b694f7bbeb14c152 | 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/bindings.go | bindings.go | 13,374 | package action
import (
"encoding/json"
"errors"
"fmt"
"io/fs"
"os"
"path/filepath"
"regexp"
"strings"
"unicode"
"github.com/micro-editor/json5"
"github.com/micro-editor/micro/v2/internal/config"
"github.com/micro-editor/micro/v2/internal/screen"
"github.com/micro-editor/micro/v2/internal/util"
"github.... | 1,500 | 13,374 | 523 | 0.98 | 2026-04-17T08:23:11.586941 | true |
github_hql287_Manta_f4f80a34d273479e0a1539dbb51794dfe862ebca | JavaScript | hql287 | Manta | 5,437 | 481 | 🎉 Flexible invoicing desktop app with beautiful & customizable templates. | [
"customizable-templates",
"electron",
"electron-app",
"electron-react",
"electronjs",
"freelancer",
"freelancing",
"invoice",
"invoice-generator",
"invoice-pdf",
"invoice-template",
"invoicing-application",
"invoicing-software",
"react",
"react-app",
"react-redux",
"reactjs",
"rece... | LGPL-3.0 | app/renderers/startup.js | startup.js | 221 | // Prevent window to open dropped file
require('../../libs/dragNdrop.js');
// Custom Sounds
import sounds from '../../libs/sounds';
function initialize() {
sounds.preload();
sounds.play('STARTUP');
}
initialize();
| 22 | 221 | 13 | 0.98 | 2026-04-23T06:09:10.241836 | true |
github_nalgeon_redka_fbffa3f6899163584bdaeedbd1d37bd9942da5f4 | Go | nalgeon | redka | 4,542 | 131 | Redis re-implemented with SQL | [
"database",
"key-value",
"postgres",
"redis",
"sqlite"
] | BSD-3-Clause | internal/rzset/scanner.go | scanner.go | 1,407 | package rzset
// Scanner is the iterator for set items.
// Stops when there are no more items or an error occurs.
type Scanner struct {
tx *Tx
key string
cursor int
pattern string
pageSize int
index int
cur SetItem
items []SetItem
err error
}
func newScanner(tx *Tx, key string, ... | 228 | 1,407 | 65 | 0.98 | 2026-04-17T18:18:55.903224 | true |
github_Splode_pomotroid_7250677e90ef452dc377ca12f09d44355c3b7f81 | JavaScript | Splode | pomotroid | 5,117 | 440 | :tomato: Simple and visually-pleasing Pomodoro timer | [
"pomodoro",
"pomodoro-technique",
"pomodoro-timer",
"productivity",
"rust",
"svelte",
"tauri",
"time-management"
] | MIT | vite.config.js | vite.config.js | 1,034 | import { defineConfig } from 'vite';
import { sveltekit } from '@sveltejs/kit/vite';
import { paraglideVitePlugin } from '@inlang/paraglide-js';
const host = process.env.TAURI_DEV_HOST;
// https://vite.dev/config/
export default defineConfig(async () => ({
plugins: [
paraglideVitePlugin({
project: './proj... | 123 | 1,034 | 41 | 0.98 | 2026-04-17T15:17:41.251435 | true |
github_CSTR-Edinburgh_merlin_a832383d9151a79e0f65dca3c1841e5ec5428ab8 | Python | CSTR-Edinburgh | merlin | 1,322 | 431 | This is now the official location of the Merlin project. | [
"deep-learning",
"keras",
"merlin",
"python",
"speech-synthesis",
"tensorflow",
"text-to-speech",
"theano",
"voice-conversion"
] | Apache-2.0 | src/configuration/label_config_001.py | label_config_001.py | 16,517 | ################################################################################
# The Neural Network (NN) based Speech Synthesis System
# https://svn.ecdf.ed.ac.uk/repo/inf/dnn_tts/
#
# Centre for Speech Technology Research
# University of Edinburgh, UK
# ... | 1,491 | 16,517 | 419 | 0.98 | 2026-04-23T00:27:06.889396 | true |
github_crazy-max_diun_fa816fb8597526441008b47d5d01b9b481138cc3 | Go | crazy-max | diun | 4,582 | 148 | Receive notifications when an image is updated on a Docker registry | [
"automation",
"discord",
"docker",
"golang",
"gotify",
"kubernetes",
"manifest",
"nomad",
"notifications",
"pushover",
"registry",
"rocketchat",
"slack",
"swarm",
"telegram",
"update",
"update-checker",
"watch"
] | MIT | pkg/utl/http.go | http.go | 512 | package utl
import (
"crypto/tls"
"crypto/x509"
"os"
)
func LoadTLSConfig(insecureSkipVerify bool, caCertFiles []string) (*tls.Config, error) {
tlsConfig := &tls.Config{
InsecureSkipVerify: insecureSkipVerify,
}
if len(caCertFiles) > 0 {
certPool := x509.NewCertPool()
for _, caCertFile := range caCertFile... | 60 | 512 | 26 | 0.98 | 2026-04-17T21:46:42.983363 | true |
github_BrainJS_brain.js_b15f0846f9215ce48601c15fc86e19b33c524fbb | TypeScript | BrainJS | brain.js | 14,860 | 1,078 | 🤖 GPU accelerated Neural networks in JavaScript for Browsers and Node.js | [
"api",
"brain",
"browser",
"convolutional-neural-networks",
"easy-to-use",
"hacktoberfest",
"neural-network",
"node",
"nodejs",
"recurrent-neural-networks",
"stream",
"web"
] | MIT | src/layer/regression.ts | regression.ts | 1,001 | import { IKernelFunctionThis, KernelOutput } from 'gpu.js';
import { BaseLayer, ILayer, ILayerSettings } from './base-layer';
import { clone, release } from '../utilities/kernel';
export class Regression extends BaseLayer {
inputLayer: ILayer;
constructor(settings: ILayerSettings, inputLayer: ILayer) {
super(... | 111 | 1,001 | 40 | 0.98 | 2026-04-17T17:56:10.476544 | true |
github_sdv-dev_Copulas_353b07336fe4fa3c9cc83efc80d539b1065767ca | Python | sdv-dev | Copulas | 642 | 119 | A library to model multivariate data using copulas. | [
"copulas",
"data-generation",
"generative-ai",
"generative-model",
"machine-learning",
"synthetic-data",
"synthetic-data-generation",
"tabular-data"
] | NOASSERTION | tasks.py | tasks.py | 4,840 | import glob
import inspect
import operator
import os
import platform
import re
import shutil
import stat
import sys
from pathlib import Path
import tomli
from invoke import task
from packaging.requirements import Requirement
from packaging.version import Version
COMPARISONS = {
'>=': operator.ge,
'>': operato... | 401 | 4,840 | 176 | 0.98 | 2026-04-22T22:04:59.819339 | true |
github_supabase_cli_b59f4d1f0ae7ff4c8757c859cdff653c44902d0b | Go | supabase | cli | 2,128 | 433 | Supabase CLI. Manage postgres migrations, run Supabase locally, deploy edge functions. Postgres backups. Generating types from your database schema. | [
"cli",
"database",
"database-management",
"dbms",
"environment",
"local",
"postgres",
"postgresql",
"supabase"
] | MIT | internal/unlink/unlink.go | unlink.go | 1,286 | package unlink
import (
"context"
"fmt"
"os"
"github.com/go-errors/errors"
"github.com/spf13/afero"
"github.com/supabase/cli/internal/utils"
"github.com/supabase/cli/internal/utils/credentials"
"github.com/zalando/go-keyring"
)
func Run(ctx context.Context, fsys afero.Fs) error {
if projectRef, err := afero... | 133 | 1,286 | 43 | 0.98 | 2026-04-17T18:33:08.914266 | true |
github_GopeedLab_gopeed_89e48fb749b975357ec6ab83559bcbf42cd76b70 | 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 | cmd/web/flags_test.go | flags_test.go | 39,395 | package main
import (
"fmt"
"os"
"path/filepath"
"reflect"
"testing"
"github.com/GopeedLab/gopeed/pkg/base"
)
func TestSetDefaults(t *testing.T) {
// Create mock CLI configuration with command line default values
cliDefaults := &args{
Address: stringPtr("127.0.0.1"),
Port: intPtr(9999),
Userna... | 4,181 | 39,395 | 1,315 | 0.98 | 2026-04-17T09:11:07.780002 | true |
github_zincsearch_zincsearch_1e3aa01534bdc921214f2f27fa3d21b50f60e8e0 | 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/meta/json.go | json.go | 741 | /* 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 ag... | 112 | 741 | 22 | 0.98 | 2026-04-17T10:11:35.565490 | true |
github_directus_directus_d9efbef6d4a4e7ebe6704d571965004fc9610281 | TypeScript | directus | directus | 34,882 | 4,723 | The flexible backend for all your projects 🐰 Turn your DB into a headless CMS, admin panels, or apps with a custom UI, instant APIs, auth & more. | [
"api",
"app",
"cms",
"composable",
"data-visualization",
"database",
"directus",
"graphql",
"headless-cms",
"javascript",
"mariadb",
"mssql",
"mysql",
"no-code",
"node",
"postgresql",
"sql",
"sqlite",
"typescript",
"vue"
] | NOASSERTION | app/src/idle.test.ts | idle.test.ts | 2,895 | import { mount } from '@vue/test-utils';
import { afterEach, beforeEach, describe, expect, type MockInstance, test, vi } from 'vitest';
import { DefineComponent, defineComponent, h, onMounted, onUnmounted } from 'vue';
import { Events } from './events';
import { time as timeoutDuration } from './idle';
vi.mock('lodash... | 282 | 2,895 | 97 | 0.98 | 2026-04-23T07:58:06.436691 | true |
github_AutoX-AI-Labs_AutoR_261b6fde9d181baaf723dd8e658e30f6bc5e0240 | JavaScript | AutoX-AI-Labs | AutoR | 542 | 16 | AI handles execution, humans own the direction, and every run becomes an inspectable research artifact on disk. | [
"agent",
"ai",
"ai-scientist",
"auto-research",
"claude",
"claude-code",
"cli",
"harness",
"llm",
"openai",
"paper",
"science"
] | UNKNOWN | src/frontend/session_viewer.js | session_viewer.js | 3,517 | /**
* Session Viewer — ES module served from src/frontend/session_viewer.js
* under the /studio/ext/ route.
*
* Renders a Claude-Code-style event timeline for a single stage session.
* Host page supplies the container element and the events list; this module
* owns the DOM structure and styling class names.
*
*... | 384 | 3,493 | 98 | 0.98 | 2026-04-23T01:21:45.615804 | true |
github_fofr_cog-face-to-many_b8fb0ecaa85b876e7b294548b2c8e888c94528da | Python | fofr | cog-face-to-many | 1,369 | 206 | Turn any face into a video game character, pixel art, claymation, 3D or toy | [
"ai",
"cog",
"comfyui",
"generative-ai",
"replicate",
"text-to-image"
] | NOASSERTION | weights_manifest.py | weights_manifest.py | 3,913 | import subprocess
import time
import os
import json
from helpers.ComfyUI_Controlnet_Aux import ComfyUI_Controlnet_Aux
from helpers.ComfyUI_BRIA_AI_RMBG import ComfyUI_BRIA_AI_RMBG
UPDATED_WEIGHTS_MANIFEST_URL = f"https://weights.replicate.delivery/default/comfy-ui/weights.json?cache_bypass={int(time.time())}"
UPDATED... | 209 | 3,913 | 114 | 0.98 | 2026-04-17T16:23:27.110224 | true |
github_pubkey_rxdb_ba42833bac9c214c031ecd89e89fc62090313625 | 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-query.d.ts | rx-query.d.ts | 5,628 | import type {
RxQueryBase
} from '../rx-query.d.ts';
import type { Paths, StringKeys } from './util.d.ts';
/**
* Typed Mango Query Selector
* @link https://github.com/mongodb/node-mongodb-native/blob/26bce4a8debb65df5a42dc8599e886c9c83de10d/src/mongo_types.ts
* @link https://stackoverflow.com/a/58436959/3443137... | 602 | 5,628 | 145 | 0.98 | 2026-04-23T08:22:16.415011 | true |
github_adapter-hub_adapters_425836fcb22f68f9aa013d3a22aacada7d4cedde | Python | adapter-hub | adapters | 2,810 | 372 | A Unified Library for Parameter-Efficient and Modular Transfer Learning | [
"adapters",
"bert",
"lora",
"natural-language-processing",
"nlp",
"parameter-efficient-learning",
"parameter-efficient-tuning",
"pytorch",
"transformers"
] | Apache-2.0 | conftest.py | conftest.py | 3,616 | # Copyright 2020 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... | 417 | 3,616 | 94 | 0.98 | 2026-04-22T19:40:59.344973 | true |
github_mindspore-lab_mindnlp_174e9b125795cb4e649c1de457c7dabda4a9e7b5 | Python | mindspore-lab | mindnlp | 918 | 272 | MindSpore + 🤗Huggingface: Run any Transformers/Diffusers model on MindSpore with seamless compatibility and acceleration. | [
"deep-learning",
"diffusion-models",
"huggingface",
"large-language-models",
"llm",
"mindspore",
"natural-language-processing",
"nlp",
"nlp-library",
"python",
"vlm"
] | Apache-2.0 | src/mindtorch/__future__.py | __future__.py | 3,184 | _overwrite_module_params_on_conversion: bool = False
_swap_module_params_on_conversion: bool = False
def set_overwrite_module_params_on_conversion(value: bool) -> None:
"""
Sets whether to assign new tensors to the parameters instead of changing the
existing parameters in-place when converting an ``nn.Mod... | 307 | 3,184 | 75 | 0.98 | 2026-04-23T00:40:26.239407 | true |
github_rustdesk_rustdesk_c1bc38232714f8b24bd85e74642d18cecc25f092 | Rust | rustdesk | rustdesk | 111,484 | 16,696 | An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer. | [
"android",
"anydesk",
"dart",
"flatpak",
"flutter",
"flutter-apps",
"ios",
"linux",
"macos",
"p2p",
"rdp",
"remote-control",
"remote-desktop",
"rust",
"rust-lang",
"teamviewer",
"vnc",
"wayland",
"windows"
] | AGPL-3.0 | src/platform/mod.rs | mod.rs | 7,770 | #[cfg(target_os = "linux")]
pub use linux::*;
#[cfg(target_os = "macos")]
pub use macos::*;
#[cfg(windows)]
pub use windows::*;
#[cfg(windows)]
pub mod windows;
#[cfg(windows)]
pub mod win_device;
#[cfg(target_os = "macos")]
pub mod macos;
#[cfg(target_os = "macos")]
pub mod delegate;
#[cfg(target_os = "linux")]
p... | 793 | 7,770 | 249 | 0.98 | 2026-04-17T13:14:50.094156 | true |
github_rustdesk_rustdesk_aef6b7c66598944a29361cece5139e13a2faa696 | Rust | rustdesk | rustdesk | 111,484 | 16,696 | An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer. | [
"android",
"anydesk",
"dart",
"flatpak",
"flutter",
"flutter-apps",
"ios",
"linux",
"macos",
"p2p",
"rdp",
"remote-control",
"remote-desktop",
"rust",
"rust-lang",
"teamviewer",
"vnc",
"wayland",
"windows"
] | AGPL-3.0 | src/lang/sl.rs | sl.rs | 44,521 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "Stanje"),
("Your Desktop", "Vaše namizje"),
("desk_tip", "S spodnjim IDjem in geslom omogočite oddaljeni nadzor vašega računalnika"),
("Password", "Geslo"),
("R... | 4,295 | 44,040 | 748 | 0.98 | 2026-04-17T13:14:41.308122 | true |
github_howtographql_howtographql_762399a9c56a89c7717f21dbbe7ff94343acd462 | JavaScript | howtographql | howtographql | 8,728 | 1,137 | The Fullstack Tutorial for GraphQL | [
"apollographql",
"graphql",
"prisma",
"tutorial"
] | MIT | gatsby-config.js | gatsby-config.js | 1,126 | module.exports = {
siteMetadata: {
title: `My Sweet Gatsby Site!`,
siteUrl: `https://www.howtographql.com`,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/content/`,
},
},
{
resolve: `gatsby-transformer... | 80 | 1,126 | 50 | 0.98 | 2026-04-18T01:29:18.517816 | true |
github_GradientHQ_parallax_87aee74d70b94b431e4886207f1a1b2a564e6627 | TypeScript | GradientHQ | parallax | 1,246 | 127 | 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/frontend/vite.config.ts | vite.config.ts | 870 | import { dirname, resolve } from 'node:path';
import { fileURLToPath } from 'node:url';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
const __dirname = dirname(fileURLToPath(import.meta.url));
// https://vite.dev/config/
export default defineConfig({
build: {
rollupOptions:... | 79 | 870 | 34 | 0.98 | 2026-04-17T23:54:18.614831 | true |
github_gravitational_teleport_eb3f90c111b8bc035d83b63b0349224bdf5b7459 | 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/metadata/metadata.go | metadata.go | 5,567 | /*
Copyright 2021 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... | 655 | 5,567 | 154 | 0.98 | 2026-04-17T09:30:01.716819 | true |
github_lindb_lindb_ae2abf59287200c51e436145ef125abaea034117 | Go | lindb | lindb | 3,061 | 281 | LinDB is a scalable, high performance, high availability distributed time series database. | [
"cross-datacenter-native",
"database",
"distributed-database",
"go",
"high-performance",
"metrics",
"monitoring",
"timeseries"
] | Apache-2.0 | internal/api/explore_handle.go | explore_handle.go | 2,304 | // Licensed to LinDB under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. LinDB licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compli... | 285 | 2,304 | 80 | 0.98 | 2026-04-17T18:25:25.634805 | true |
github_BrainJS_brain.js_4bd3c8e5b0012406c0faeb95d7861c9c6dd9a9d7 | TypeScript | BrainJS | brain.js | 14,860 | 1,078 | 🤖 GPU accelerated Neural networks in JavaScript for Browsers and Node.js | [
"api",
"brain",
"browser",
"convolutional-neural-networks",
"easy-to-use",
"hacktoberfest",
"neural-network",
"node",
"nodejs",
"recurrent-neural-networks",
"stream",
"web"
] | MIT | src/activation/index.test.ts | index.test.ts | 506 | import * as activation from '../activation';
import * as leakyRelu from '../activation/leaky-relu';
import * as relu from '../activation/relu';
import * as sigmoid from '../activation/sigmoid';
import * as tanh from '../activation/tanh';
describe('activation', () => {
test('it has all expected activations', () => {
... | 48 | 506 | 15 | 0.98 | 2026-04-17T17:55:45.429311 | true |
github_middleapi_orpc_a686230d971086435987c3c0f9bd47012c5e4082 | JavaScript | middleapi | orpc | 5,122 | 142 | Typesafe APIs Made Simple 🪄 | [
"api",
"bunjs",
"cloudflare-worker",
"contract-first",
"denojs",
"next-js",
"nodejs",
"openapi",
"pinia-vuejs",
"react",
"rpc-api",
"solidjs",
"svelte",
"tanstack",
"typesafe",
"typescript",
"vue"
] | MIT | eslint.config.js | eslint.config.js | 2,905 | import antfu from '@antfu/eslint-config'
import pluginBan from 'eslint-plugin-ban'
export default antfu({
formatters: true,
ignores: ['packages/hey-api/tests/client/**'],
rules: {
'pnpm/yaml-enforce-settings': 'off',
'yaml/sort-keys': 'off',
},
}, {
plugins: { ban: pluginBan },
rules: {
'ts/con... | 218 | 2,905 | 110 | 0.98 | 2026-04-17T18:01:41.733036 | true |
github_knadh_listmonk_800180a0941e925d3b8eb29cb07195b95461a5ce | Go | knadh | listmonk | 19,550 | 1,998 | High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app. | [
"campaign",
"campaign-management",
"email-marketing",
"email-subscription",
"listmonk",
"mailing-list",
"newsletter",
"newsletter-management",
"newsletter-software",
"self-hosted",
"sms-gateway",
"smtp",
"transactional-emails"
] | AGPL-3.0 | internal/core/users.go | users.go | 7,490 | package core
import (
"database/sql"
"encoding/json"
"net/http"
"strconv"
"github.com/knadh/listmonk/internal/auth"
"github.com/knadh/listmonk/internal/utils"
"github.com/labstack/echo/v4"
"github.com/lib/pq"
"gopkg.in/volatiletech/null.v6"
)
func (c *Core) GetUsers() ([]auth.User, error) {
out := []auth.U... | 848 | 7,490 | 234 | 0.98 | 2026-04-17T09:35:10.315770 | true |
github_playcanvas_engine_f4914387a49363cfcbb4c5fa2bf0728abb66502e | 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/scene/shader-pass.js | shader-pass.js | 4,970 | import { Debug } from '../core/debug.js';
import { DeviceCache } from '../platform/graphics/device-cache.js';
import {
SHADER_FORWARD, SHADER_PICK, SHADER_SHADOW, SHADER_PREPASS, SHADER_DEPTH_PICK
} from './constants.js';
/**
* @import { GraphicsDevice } from '../platform/graphics/graphics-device.js'
*/
// devi... | 595 | 4,970 | 163 | 0.98 | 2026-04-23T06:54:46.308801 | true |
github_triggerdotdev_jsonhero-web_9fcd76b467f2723b25ad0edf10f7cd9c2cbe1d06 | TypeScript | triggerdotdev | jsonhero-web | 10,697 | 663 | JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed. 🚀. Built with 💜 by the Trigger.dev team. | [
"developer-tools",
"devtools",
"hacktoberfest",
"json",
"json-viewer",
"react",
"tools",
"typescript",
"viewer"
] | Apache-2.0 | app/entry.worker.ts | entry.worker.ts | 1,723 | /// <reference lib="WebWorker" />
import { JSONHeroSearch } from "@jsonhero/fuzzy-json-search";
import { inferType } from "@jsonhero/json-infer-types";
import { formatValue } from "./utilities/formatter";
type SearchWorker = {
searcher?: JSONHeroSearch;
};
export type {};
declare let self: DedicatedWorkerGlobalScop... | 183 | 1,723 | 77 | 0.98 | 2026-04-18T00:22:19.189274 | true |
github_rayon-rs_rayon_f97c8708d1a2bb58edcdddd9f3e801898271bb4e | Rust | rayon-rs | rayon | 12,878 | 584 | Rayon: A data parallelism library for Rust | [] | Apache-2.0 | src/iter/filter.rs | filter.rs | 3,374 | use super::plumbing::*;
use super::*;
use std::fmt::{self, Debug};
/// `Filter` takes a predicate `filter_op` and filters out elements that match.
/// This struct is created by the [`filter()`] method on [`ParallelIterator`]
///
/// [`filter()`]: ParallelIterator::filter()
#[must_use = "iterator adaptors are lazy and... | 399 | 3,374 | 138 | 0.98 | 2026-04-17T14:16:43.828288 | true |
github_rustdesk_rustdesk_92fb1f4b452b9f43873a43b547ffc3e9a5d25e90 | 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 | build.rs | build.rs | 3,064 | #[cfg(windows)]
fn build_windows() {
let file = "src/platform/windows.cc";
let file2 = "src/platform/windows_delete_test_cert.cc";
cc::Build::new().file(file).file(file2).compile("windows");
println!("cargo:rustc-link-lib=WtsApi32");
println!("cargo:rerun-if-changed={}", file);
println!("cargo:r... | 218 | 3,064 | 95 | 0.98 | 2026-04-17T13:14:10.086567 | true |
github_Canop_broot_c04bd69bfdffb2cbd9432a369ee5f03928c555ff | 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/mod.rs | mod.rs | 5,038 | mod detect_support;
mod image_renderer;
mod terminal_esc;
pub use image_renderer::*;
use crate::display::cell_size_in_pixels;
use {
crate::{
app::AppContext,
display::W,
errors::ProgramError,
image::SourceImage,
kitty::detect_support::is_tmux,
},
crokey::crossterm:... | 445 | 5,038 | 172 | 0.98 | 2026-04-17T14:18:22.311603 | true |
github_hagopj13_node-express-boilerplate_e844272c04e18a9a9c1ddc17502d7788c91254d3 | JavaScript | hagopj13 | node-express-boilerplate | 7,625 | 2,263 | A boilerplate for building production-ready RESTful APIs using Node.js, Express, and Mongoose | [
"boilerplate",
"es2018",
"es6",
"express",
"express-boilerplate",
"jest",
"mongodb",
"mongoose",
"node-boilerplate",
"nodejs",
"rest-api",
"starter"
] | MIT | jest.config.js | jest.config.js | 268 | module.exports = {
testEnvironment: 'node',
testEnvironmentOptions: {
NODE_ENV: 'test',
},
restoreMocks: true,
coveragePathIgnorePatterns: ['node_modules', 'src/config', 'src/app.js', 'tests'],
coverageReporters: ['text', 'lcov', 'clover', 'html'],
};
| 23 | 268 | 10 | 0.98 | 2026-04-23T07:13:58.438586 | true |
github_starship_starship_bfcc6d5fb93a34768b147b3d071a148ff84f9dc0 | 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/meson.rs | meson.rs | 726 | use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct MesonConfig<'a> {
pub truncation_length: u32,
pub truncation_symbol: &'a str,
pub form... | 72 | 722 | 31 | 0.98 | 2026-04-17T13:17:50.242495 | true |
github_Chalarangelo_30-seconds-of-code_7d524a2fba28b9270a1c578054bbbd0110caf58a | 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/models/collectionSnippet.js | collectionSnippet.js | 993 | import Model from '#src/core/model.js';
import Snippet from '#src/models/snippet.js';
import Collection from '#src/models/collection.js';
export default class CollectionSnippet extends Model {
static {
Model.prepare(this, []);
}
constructor(data) {
super(data);
this.collectionId = data.collectionId;... | 107 | 993 | 43 | 0.98 | 2026-04-23T06:14:58.214949 | true |
github_meijieru_crnn.pytorch_31f04b299cbb0c22e0a371aaf828e26e47058dd3 | Python | meijieru | crnn.pytorch | 2,491 | 661 | Convolutional recurrent network in pytorch | [
"neural-network",
"recognition",
"scene-texts"
] | MIT | utils.py | utils.py | 4,529 | #!/usr/bin/python
# encoding: utf-8
import torch
import torch.nn as nn
from torch.autograd import Variable
import collections
class strLabelConverter(object):
"""Convert between str and label.
NOTE:
Insert `blank` to the alphabet for CTC.
Args:
alphabet (str): set of the possible charac... | 480 | 4,529 | 150 | 0.98 | 2026-04-18T00:19:16.376590 | true |
github_SocketCluster_socketcluster_cfeadc257b545c18439378fca36aad255b256d5f | JavaScript | SocketCluster | socketcluster | 6,198 | 323 | Highly scalable realtime pub/sub and RPC framework | [
"docker",
"framework",
"javascript",
"kubernetes",
"nodejs",
"pubsub",
"realtime",
"scalable",
"socketcluster",
"websocket",
"websockets"
] | MIT | app/public/index.js | index.js | 352 | import { create } from '/socketcluster-client.min.js';
// Initiate the connection to the server
let socket = create();
(async () => {
for await (let { error } of socket.listener('error')) {
console.error(error);
}
})();
(async () => {
for await (let event of socket.listener('connect')) {
console.log('S... | 49 | 352 | 17 | 0.98 | 2026-04-23T07:22:07.747441 | true |
github_vibrantlabsai_ragas_4ac65995fea61372808b82128f5d4fe3b7b57071 | Python | vibrantlabsai | ragas | 13,438 | 1,360 | Supercharge Your LLM Application Evaluations 🚀 | [
"evaluation",
"llm",
"llmops"
] | Apache-2.0 | src/ragas/exceptions.py | exceptions.py | 2,667 | from __future__ import annotations
class RagasException(Exception):
"""
Base exception class for ragas.
"""
def __init__(self, message: str):
self.message = message
super().__init__(message)
class ExceptionInRunner(RagasException):
"""
Exception raised when an exception is r... | 270 | 2,667 | 115 | 0.98 | 2026-04-17T22:51:50.496635 | true |
github_MervinPraison_PraisonAI_9e3f3e5687091bcbb470291b55d372b51325a62b | Python | MervinPraison | PraisonAI | 6,951 | 1,061 | PraisonAI 🦞 — Hire a 24/7 AI Workforce. Stop writing boilerplate and start shipping autonomous agents that research, plan, code, and execute tasks. Deployed in 5 lines of code with built-in memory, RAG, and support for 100+ LLMs. | [
"agents",
"ai",
"ai-agent-framework",
"ai-agent-sdk",
"ai-agents",
"ai-agents-framework",
"ai-agents-sdk",
"ai-framwork",
"aiagent",
"aiagentframework",
"aiagents",
"aiagentsframework",
"claw",
"framework",
"multi-agent",
"multi-agent-system",
"multi-agent-systems",
"multi-agents",... | MIT | src/praisonai-agents/gemini_self_reflection.py | gemini_self_reflection.py | 852 | #!/usr/bin/env python3
"""Test script to verify the Gemini JSON parsing fix."""
from praisonaiagents import Agent
# Test with minimal configuration to isolate the issue
llm_config = {
"model": "gemini/gemini-1.5-flash-latest",
"temperature": 0.7,
"max_tokens": 500,
}
# Create agent with self-reflection e... | 97 | 852 | 31 | 0.98 | 2026-04-17T15:41:13.072723 | true |
github_django-cms_django-filer_c75f40226da0b999b61135267950f3eefa41156b | JavaScript | django-cms | django-filer | 1,849 | 593 | File and Image Management Application for django | [
"addon",
"cms",
"django",
"django-cms",
"python"
] | NOASSERTION | eslint.config.js | eslint.config.js | 3,264 | export default [
{
ignores: [
'**/dist/**',
'**/node_modules/**',
'**/*.min.js',
'**/filer/static/filer/js/dist/**'
]
},
{
files: ['**/*.js'],
languageOptions: {
ecmaVersion: 2020,
sourceType: 'module',
... | 228 | 3,264 | 100 | 0.98 | 2026-04-23T01:50:30.357305 | true |
github_firefox-devtools_profiler_29cd6ea6a5c24f19f730727cf66f8cc4dbd79f30 | TypeScript | firefox-devtools | profiler | 1,481 | 465 | Firefox Profiler — Web app for Firefox performance analysis | [
"devtools",
"firefox",
"gecko-profiler",
"javascript",
"performance",
"profiler",
"react",
"redux"
] | MPL-2.0 | src/test/setup.ts | setup.ts | 2,512 | /* 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/. */
// Importing this here makes it work everywhere.
import '@testing-library/jest-dom';
// Importing this inside a s... | 327 | 2,512 | 83 | 0.98 | 2026-04-18T00:30:02.227543 | true |
github_alibaba_sentinel-golang_799e634a74cda4ebfc91d6d336c70fe14c40f1af | 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/base/result.go | result.go | 5,718 | // 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 ... | 574 | 5,718 | 214 | 0.98 | 2026-04-18T00:57:59.377190 | true |
github_Billionmail_BillionMail_95bcc5b3fc3623fb3d2bfe0caca63911555eacf9 | JavaScript | Billionmail | BillionMail | 13,979 | 1,469 | BillionMail gives you open-source MailServer, NewsLetter, Email Marketing — fully self-hosted, dev-friendly, and free from monthly fees. Join the discord: https://discord.gg/asfXzBUhZr | [
"dovecot",
"email",
"email-marketing",
"mail",
"mailserver",
"newsletter",
"newsletters",
"postfix",
"rspamd",
"server",
"smtp"
] | AGPL-3.0 | core/frontend/git-pull.js | git-pull.js | 498 | import { execSync } from 'child_process'
import chalk from 'chalk'
import ora from 'ora'
async function getPull() {
try {
// 在当前目录执行git pull命令,并同步输出结果
const spinner = ora(chalk.cyan('正在拉取git...')).start()
execSync('git pull', { stdio: 'inherit', cwd: process.cwd() })
spinner.succeed(chalk.green('git pull 执行成功... | 52 | 440 | 19 | 0.98 | 2026-04-17T11:12:32.321622 | true |
github_clintonwoo_hackernews-react-graphql_6105a70d65e7dd42c46a881bf334234260742f86 | TypeScript | clintonwoo | hackernews-react-graphql | 4,484 | 552 | Hacker News clone rewritten with universal JavaScript, using React and GraphQL. | [
"apollo",
"express",
"graphql",
"hacker-news",
"hn",
"javascript",
"js",
"nextjs",
"node",
"react"
] | MIT | src/data/sample-data.ts | sample-data.ts | 24,459 | // Interface: Commentable (Object can be commented on) comments, commentCount, commenter
// Interface: Voteable (Object can be voted on) upvotes, upvoteCount, hidden, hiddenCount,
// Data Type: Comment, can be on a news item or another comment
// Every time an upvote/downvote/comment is made, update the count
import {... | 2,207 | 24,423 | 758 | 0.98 | 2026-04-18T01:34:55.330506 | true |
github_DATA-DOG_go-sqlmock_9644958bab7b03ffcb0b2bf7a39bc6018a4aee19 | Go | DATA-DOG | go-sqlmock | 6,542 | 406 | Sql mock driver for golang to test database interactions | [
"database",
"go",
"golang",
"mock",
"sql",
"sql-driver",
"tdd",
"testing"
] | NOASSERTION | sqlmock_go18.go | sqlmock_go18.go | 8,766 | //go:build go1.8
// +build go1.8
package sqlmock
import (
"context"
"database/sql/driver"
"errors"
"fmt"
"log"
"time"
)
// Sqlmock interface for Go 1.8+
type Sqlmock interface {
// Embed common methods
SqlmockCommon
// NewRowsWithColumnDefinition allows Rows to be created from a
// sql driver.Value slice ... | 1,198 | 8,766 | 358 | 0.98 | 2026-04-17T18:15:46.731542 | true |
github_iperov_DeepFaceLab_aa5d73c4ff7271def3d3e875d83f842f7eb2b707 | 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/cv2ex.py | cv2ex.py | 1,155 | import cv2
import numpy as np
from pathlib import Path
from core.interact import interact as io
from core import imagelib
import traceback
def cv2_imread(filename, flags=cv2.IMREAD_UNCHANGED, loader_func=None, verbose=True):
"""
allows to open non-english characters path
"""
try:
if loader_fun... | 115 | 1,155 | 40 | 0.98 | 2026-04-17T06:45:43.604329 | true |
github_ahmetb_kubectx_469a4e71a46d9674b3f0770bdfe18bbd44a92c19 | Go | ahmetb | kubectx | 19,651 | 1,368 | Faster way to switch between clusters and namespaces in kubectl | [
"kubectl",
"kubectl-plugins",
"kubernetes",
"kubernetes-clusters"
] | Apache-2.0 | internal/kubeconfig/contextmodify.go | contextmodify.go | 1,618 | // 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in ... | 210 | 1,618 | 59 | 0.98 | 2026-04-17T09:33:15.184756 | true |
github_babel_babel_6ab60516ce7fd2e231435e51fe17151549d65a26 | TypeScript | babel | babel | 43,892 | 5,813 | 🐠 Babel is a compiler for writing next generation JavaScript. | [
"ast",
"babel",
"compiler",
"es2015",
"es6",
"flavortown",
"javascript"
] | MIT | lib/kexec.d.ts | kexec.d.ts | 103 | declare module "kexec" {
function execvp(cmd: string, args?: string[]): string;
export = execvp;
}
| 14 | 103 | 5 | 0.98 | 2026-04-23T13:04:30.917275 | true |
github_facebook_react_02ffb447b3719370f97a5fbba79def7a5b4752e4 | JavaScript | facebook | react | 244,610 | 50,966 | The library for web and native user interfaces. | [
"declarative",
"frontend",
"javascript",
"library",
"react",
"ui"
] | MIT | babel.config-ts.js | babel.config-ts.js | 519 | /**
* This file is purely being used for local jest runs, and doesn't participate in the build process.
*/
'use strict';
module.exports = {
plugins: [
'@babel/plugin-syntax-jsx',
'@babel/plugin-transform-flow-strip-types',
['@babel/plugin-transform-class-properties', {loose: true}],
['@babel/plugin... | 46 | 519 | 19 | 0.98 | 2026-04-23T04:44:38.345973 | true |
github_coredns_coredns_cee92cc573ae857875e42dedf930f6f64ea7cb2c | Go | coredns | coredns | 13,991 | 2,428 | CoreDNS is a DNS server that chains plugins | [
"cncf",
"coredns",
"dns-server",
"go",
"plugin",
"service-discovery"
] | Apache-2.0 | core/dnsserver/log_test.go | log_test.go | 107 | package dnsserver
import clog "github.com/coredns/coredns/plugin/pkg/log"
func init() { clog.Discard() }
| 10 | 107 | 6 | 0.98 | 2026-04-17T11:12:10.939773 | true |
github_caiyuanhao1998_SAX-NeRF_6ee1a2e9c7f81549ea05e8cc5a46621880499773 | Python | caiyuanhao1998 | SAX-NeRF | 788 | 41 | "Structure-Aware Sparse-View X-ray 3D Reconstruction" (CVPR 2024) - A Toolbox for CT reconstruction and X-ray Novel View Synthesis | [
"3d-graphics",
"3d-reconstruction",
"3d-vision",
"ct-reconstruction",
"cvpr",
"instant-ngp",
"medical-imaging",
"nerf",
"neural-radiance-fields",
"novel-view-synthesis",
"transformer",
"x-ray-images"
] | MIT | train.py | train.py | 6,427 | import os
import os.path as osp
import torch
import imageio.v2 as iio
import numpy as np
from tqdm import tqdm
import argparse
def config_parser():
parser = argparse.ArgumentParser()
# parser.add_argument("--config", default=f"./config/nerf/chest_50.yaml", help="configs file path")
parser.add_argument("--... | 470 | 6,273 | 162 | 0.98 | 2026-04-22T21:28:08.037835 | true |
github_fish-shell_fish-shell_86cc4b86155afabfd0a17c1dc58c7feafaff14d0 | Rust | fish-shell | fish-shell | 33,184 | 2,275 | The user-friendly command line shell. | [
"fish",
"rust",
"shell",
"terminal"
] | NOASSERTION | src/builtins/block.rs | block.rs | 4,018 | use std::sync::atomic::Ordering;
use crate::err_str;
// Implementation of the block builtin.
use super::prelude::*;
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
enum Scope {
#[default]
Unset,
Global,
Local,
}
#[derive(Debug, Clone, Copy, Default)]
struct Options {
scope: Scope,
eras... | 364 | 4,018 | 143 | 0.98 | 2026-04-17T13:22:10.970678 | true |
github_aden-hive_hive_566c69da36c6d81814d3182c52465f3308ea5d22 | Python | aden-hive | hive | 10,120 | 5,618 | Multi-Agent Harness for Production AI | [
"agent",
"agent-framework",
"agent-skills",
"anthropic",
"automation",
"autonomous-agents",
"claude",
"harness",
"harness-engineering",
"human-in-the-loop",
"openai",
"python",
"self-hosted",
"self-improving"
] | Apache-2.0 | core/tests/test_skill_installer.py | test_skill_installer.py | 9,429 | """Tests for skill install, remove, and fork operations."""
from __future__ import annotations
from pathlib import Path
from unittest.mock import patch
import pytest
from framework.skills.installer import (
fork_skill,
install_from_git,
maybe_show_install_notice,
remove_skill,
)
from framework.skill... | 643 | 9,427 | 249 | 0.98 | 2026-04-23T00:57:12.555966 | true |
github_huggingface_transformers_46886e6fc0396cff06719e2613358df984a9f565 | 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/convert_slow_tokenizers_checkpoints_to_fast.py | convert_slow_tokenizers_checkpoints_to_fast.py | 5,790 | # Copyright 2018 The HuggingFace Inc. team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed ... | 480 | 5,790 | 150 | 0.98 | 2026-04-22T13:17:49.890272 | true |
github_rustdesk_rustdesk_ce1855bdb8bf5a3b03ebb715356ad113dbec8a40 | Rust | rustdesk | rustdesk | 111,120 | 16,633 | 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/service.rs | service.rs | 226 | use librustdesk::*;
#[cfg(not(target_os = "macos"))]
fn main() {}
#[cfg(target_os = "macos")]
fn main() {
crate::common::load_custom_client();
hbb_common::init_log(false, "service");
crate::start_os_service();
}
| 19 | 226 | 12 | 0.95 | 2026-04-13T14:04:49.175328 | true |
github_ChromeDevTools_chrome-devtools-mcp_b84b58b2b3212f8752068adc375f4f99665bdd77 | 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/types.ts | types.ts | 413 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export type DaemonMessage =
| {
method: 'stop';
}
| {
method: 'status';
}
| {
method: 'invoke_tool';
tool: string;
args?: Record<string, unknown>;
};
export interface DaemonResponse ... | 50 | 413 | 26 | 0.98 | 2026-04-23T08:42:34.849727 | true |
github_Pythagora-io_pythagora_2d9658236de3183ba1479edc8ae63e3e76154ae9 | JavaScript | Pythagora-io | pythagora | 1,818 | 114 | Generate automated tests for your Node.js app via LLMs without developers having to write a single line of code. | [
"api-testing",
"api-testing-framework",
"automated-testing",
"database-testing",
"developer-tools",
"integration-testing",
"nodejs",
"test-coverage",
"testing"
] | Apache-2.0 | src/Pythagora.js | Pythagora.js | 11,166 | const MODES = require('./const/modes.json');
const RedisInterceptor = require('./helpers/redis.js');
const { cleanupDb } = require('./helpers/mongodb.js');
const { makeTestRequest } = require('./helpers/testing.js');
const { getPythagoraVersion, setUpPythagoraDirs } = require("./helpers/starting.js");
const { logCaptur... | 806 | 11,166 | 283 | 0.98 | 2026-04-23T12:28:15.396831 | true |
github_dagger_dagger_2f76b4da6267b88108c9122c420138c0ff79a49f | Go | dagger | dagger | 15,670 | 856 | Automation engine to build, test and ship any codebase. Runs locally, in CI, or directly in the cloud | [
"agents",
"ai",
"caching",
"ci-cd",
"containers",
"continuous-deployment",
"continuous-integration",
"dag",
"dagger",
"devops",
"docker",
"graphql",
"workflows"
] | Apache-2.0 | cmd/dagger/version.go | version.go | 4,654 | package main
import (
"context"
"encoding/json"
"fmt"
"io"
"maps"
"os"
"github.com/containerd/platforms"
"github.com/dagger/dagger/dagql/idtui"
"github.com/dagger/dagger/engine/distconsts"
enginetel "github.com/dagger/dagger/engine/telemetry"
"github.com/google/go-containerregistry/pkg/authn"
"github.com/... | 452 | 4,652 | 176 | 0.98 | 2026-04-17T10:31:11.071830 | true |
github_marcelo-earth_generative-manim_b786462ed0076b266e1a72710d2ae9006b08c539 | Python | marcelo-earth | generative-manim | 824 | 119 | 🎨 GPT for video generation ⚡️ | [
"2d",
"animation",
"gpt",
"gpt-4",
"gpt3",
"gpt3-turbo",
"manim",
"openai",
"prompt2manim",
"python-3",
"rendering",
"streamlit",
"text2manim",
"video"
] | Apache-2.0 | main.py | main.py | 858 | import os
import streamlit as st
from PIL import Image
st.set_page_config(
page_title="Generative Manim",
)
styl = f"""
<style>
textarea[aria-label="Code generated: "] {{
font-family: 'Consolas', monospace !important;
}}
}}
</style>
"""
st.markdown(styl, unsafe_allow_html=True)
st.title(":art: Generati... | 72 | 858 | 26 | 0.98 | 2026-04-23T01:11:29.079150 | true |
github_iotexproject_iotex-core_01430ac527255e4a800d96b16f440beffa36e6ca | Go | iotexproject | iotex-core | 1,611 | 368 | Official implementation of IoTeX blockchain protocol in Go. An ultra-efficient EVM blockchain offering 1000 TPS with instant 1-block finality. Perfect for DeFi, DePIN tokenomics, Identities, and any trusted logic requiring Web3 composability | [
"blockchain",
"crypto",
"cryptography",
"depin",
"distributed-systems",
"internet-of-everything",
"internet-of-things",
"machinefi"
] | Apache-2.0 | pkg/routine/options.go | options.go | 762 | // Copyright (c) 2018 IoTeX
// This source code is provided 'as is' and no warranties are given as to title or non-infringement, merchantability
// or fitness for purpose and, to the extent permitted by law, all liability for your use of the code is disclaimed.
// This source code is governed by Apache License 2.0 that... | 116 | 762 | 29 | 0.98 | 2026-04-17T16:55:49.227070 | true |
github_actionhero_actionhero_bf0da1f40e04e21a6510a203fdb65d29845b9684 | TypeScript | actionhero | actionhero | 2,418 | 259 | Actionhero is a realtime multi-transport nodejs API Server with integrated cluster capabilities and delayed tasks | [
"actionhero",
"api",
"api-server",
"async-await",
"cluster",
"delayed-jobs",
"delayed-tasks",
"framework",
"frameworks",
"http",
"https",
"javascript",
"nodejs",
"server",
"socket-client",
"tcp",
"ts",
"typescript",
"websocket"
] | Apache-2.0 | src/config/web.ts | web.ts | 5,961 | import * as os from "os";
import { ActionheroConfigInterface } from "..";
import type { Options as FormParserOptions } from "formidable";
const namespace = "web";
declare module ".." {
export interface ActionheroConfigInterface {
[namespace]: ReturnType<(typeof DEFAULT)[typeof namespace]>;
}
}
export const ... | 744 | 5,961 | 138 | 0.98 | 2026-04-23T08:16:53.476128 | true |
github_libp2p_rust-libp2p_de6ec279468da17a50bf0460d833f1e63a880e8c | Rust | libp2p | rust-libp2p | 5,477 | 1,197 | The Rust Implementation of the libp2p networking stack. | [
"decentralization",
"libp2p",
"networking",
"peer-to-peer",
"rust"
] | MIT | core/src/transport.rs | transport.rs | 20,519 | // Copyright 2017-2018 Parity Technologies (UK) Ltd.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify... | 2,312 | 20,519 | 569 | 0.98 | 2026-04-17T14:59:43.145577 | true |
github_dandavison_delta_cbe5b383ef1385c11eacec1635f2bf29e2bdf4c1 | Rust | dandavison | delta | 30,170 | 519 | A syntax-highlighting pager for git, diff, grep, rg --json, and blame output | [
"color-themes",
"delta",
"diff",
"git",
"git-delta",
"pager",
"rust",
"syntax-highlighter"
] | MIT | src/options/option_value.rs | option_value.rs | 2,343 | use crate::config::delta_unreachable;
/// A value associated with a Delta command-line option name.
pub enum OptionValue {
Boolean(bool),
Float(f64),
OptionString(Option<String>),
String(String),
Int(usize),
}
/// An OptionValue, tagged according to its provenance/semantics.
pub enum ProvenancedOp... | 256 | 2,343 | 98 | 0.98 | 2026-04-17T13:27:44.214951 | true |
github_mravanelli_pytorch-kaldi_2cbe19886e759f3dbe72b96fdf7d24c760c7b75a | Python | mravanelli | pytorch-kaldi | 2,398 | 445 | pytorch-kaldi is a project for developing state-of-the-art DNN/RNN hybrid speech recognition systems. The DNN part is managed by pytorch, while feature extraction, label computation, and decoding are performed with the kaldi toolkit. | [
"asr",
"deep-learning",
"deep-neural-networks",
"dnn",
"dnn-hmm",
"gru",
"kaldi",
"lstm",
"lstm-neural-networks",
"multilayer-perceptron-network",
"pytorch",
"recurrent-neural-networks",
"rnn",
"rnn-model",
"speech",
"speech-recognition",
"timit"
] | UNKNOWN | plot_acc_and_loss.py | plot_acc_and_loss.py | 1,203 | ##########################################################
# pytorch-kaldi v.0.1
# Mirco Ravanelli, Titouan Parcollet
# Mila, University of Montreal
# October 2018
##########################################################
import sys
import configparser
import os
from utils import create_curves
# Checking arguments
i... | 129 | 1,203 | 38 | 0.98 | 2026-04-22T23:14:12.028194 | true |
github_spacedriveapp_spacedrive_d6b134e6b0ddb01bac428ab7b52ffe6a15841650 | Rust | spacedriveapp | spacedrive | 37,794 | 1,263 | Spacedrive is an open source cross-platform file explorer, powered by a virtual distributed filesystem written in Rust. | [
"cross-platform",
"distributed-systems",
"encryption",
"file-manager",
"open-source",
"rust",
"storage",
"typescript"
] | NOASSERTION | core/tests/analyze_events.rs | analyze_events.rs | 16,203 | //! Event Log Analyzer for Sync Tests
//!
//! Parse events.log and sync_events.log (JSON lines) and generate condensed timeline
use serde_json::Value;
use std::collections::HashMap;
use std::io::{BufRead, BufReader};
use std::path::Path;
#[derive(Debug)]
pub struct EventTimeline {
pub resource_changed: HashMap<Strin... | 1,461 | 16,203 | 592 | 0.98 | 2026-04-17T13:20:20.198446 | true |
github_strnad_CrewAI-Studio_0b00ded595feb286ed2b7a1f2600257d432cd914 | Python | strnad | CrewAI-Studio | 1,236 | 301 | A user-friendly, multi-platform GUI for managing and running CrewAI agents and tasks. Supports Conda and virtual environments, no coding needed. | [
"agents",
"ai",
"crewai",
"crewaigui",
"crewaiui",
"gui",
"no-code",
"streamlit"
] | MIT | app/my_agent.py | my_agent.py | 9,766 | from crewai import Agent
import streamlit as st
from utils import rnd_id, fix_columns_width
from streamlit import session_state as ss
from db_utils import save_agent, delete_agent
from llms import llm_providers_and_models, create_llm
from datetime import datetime
from i18n import t
class MyAgent:
def __init__(self... | 645 | 9,764 | 178 | 0.98 | 2026-04-17T16:27:15.329684 | true |
github_pathwaycom_pathway_4f6fee6d9aeeae23452b3aafd5cb6d14428d75b1 | 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/py_object_wrapper.rs | py_object_wrapper.rs | 3,939 | // Copyright © 2026 Pathway
use pyo3::prelude::*;
use std::fmt::{self, Display};
use pyo3::intern;
use pyo3::sync::GILOnceCell;
use pyo3::types::{PyBytes, PyModule};
use serde::{ser::Error, Deserialize, Serialize};
use super::error::DynResult;
static PICKLE: GILOnceCell<Py<PyModule>> = GILOnceCell::new();
fn get_... | 314 | 3,938 | 131 | 0.98 | 2026-04-23T04:40:39.805145 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.