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_directus_directus_b63265a2b0d7bb77616209ef1508e1c6d967e0f2 | TypeScript | directus | directus | 34,821 | 4,713 | The flexible backend for all your projects 🐰 Turn your DB into a headless CMS, admin panels, or apps with a custom UI, instant APIs, auth & more. | [
"api",
"app",
"cms",
"composable",
"data-visualization",
"database",
"directus",
"graphql",
"headless-cms",
"javascript",
"mariadb",
"mssql",
"mysql",
"no-code",
"node",
"postgresql",
"sql",
"sqlite",
"typescript",
"vue"
] | NOASSERTION | api/src/emitter.ts | emitter.ts | 3,237 | import type { ActionHandler, EventContext, FilterHandler, InitHandler } from '@directus/types';
import ee2 from 'eventemitter2';
import getDatabase from './database/index.js';
import { useLogger } from './logger/index.js';
export class Emitter {
private filterEmitter;
private actionEmitter;
private initEmitter;
c... | 351 | 3,237 | 121 | 0.98 | 2026-04-17T17:53:52.242627 | true |
github_nadbm_react-datasheet_2b8ab6a8449889258fa2543f5c945d2d989201d2 | JavaScript | nadbm | react-datasheet | 5,446 | 449 | Excel-like data grid (table) component for React | [
"component",
"grid",
"javascript",
"react",
"sheet",
"spreadsheet",
"table",
"tableau"
] | MIT | lib/DataEditor.js | DataEditor.js | 3,493 | 'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("va... | 342 | 3,493 | 87 | 0.98 | 2026-04-23T06:08:39.773272 | true |
github_mongodb_mongo-go-driver_35568e74c89a9d00e2372b8b2e5dde06b06ceafb | Go | mongodb | mongo-go-driver | 8,518 | 923 | The Official Golang driver for MongoDB | [
"database",
"driver",
"go",
"golang",
"golang-library",
"mongodb"
] | Apache-2.0 | internal/assert/assertion_compare_test.go | assertion_compare_test.go | 15,884 | // Copied from https://github.com/stretchr/testify/blob/1333b5d3bda8cf5aedcf3e1aaa95cac28aaab892/assert/assertion_compare_test.go
// Copyright 2020 Mat Ryer, Tyler Bunnell and all contributors. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be found in
// the THIRD-PARTY-N... | 1,938 | 15,884 | 455 | 0.98 | 2026-04-17T18:12:01.512147 | true |
github_welldone-software_why-did-you-render_3f35e22e203faf1fe29624be707110a021d3b00e | JavaScript | welldone-software | why-did-you-render | 12,457 | 224 | why-did-you-render by Welldone Software monkey patches React to notify you about potentially avoidable re-renders. (Works with React Native as well.) | [
"component",
"hooks-tracking",
"performance",
"pure",
"purecomponent",
"react",
"react-native",
"render",
"tool",
"update"
] | MIT | src/patches/patchForwardRefComponent.js | patchForwardRefComponent.js | 1,696 | import {defaults} from 'lodash';
import wdyrStore from '../wdyrStore';
import getDisplayName from '../getDisplayName';
import {isMemoComponent} from '../utils';
import patchFunctionalOrStrComponent from './patchFunctionalOrStrComponent';
export default function patchForwardRefComponent(ForwardRefComponent, {displayN... | 98 | 1,696 | 42 | 0.98 | 2026-04-23T04:57:46.870936 | true |
github_ChromeDevTools_chrome-devtools-mcp_e6cb8bd08f3eef5c2148043e4a5892790de85df5 | 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/daemon.ts | daemon.ts | 5,708 | #!/usr/bin/env node
/**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'node:fs';
import {createServer, type Server} from 'node:net';
import path from 'node:path';
import process from 'node:process';
import {logger} from '../logger.js';
import {
Client,
PipeTra... | 600 | 5,708 | 247 | 0.98 | 2026-04-23T08:42:34.561789 | true |
github_githubharald_SimpleHTR_1ee11d29dc923b7958ed9ed7cbb80a527c74019a | Python | githubharald | SimpleHTR | 2,159 | 918 | Handwritten Text Recognition (HTR) system implemented with TensorFlow. | [
"deep-learning",
"handwritten-text-recognition",
"machine-learning",
"ocr",
"recurrent-neural-networks",
"tensorflow"
] | MIT | src/main.py | main.py | 8,060 | import argparse
import json
from typing import Tuple, List
import cv2
import editdistance
from path import Path
from dataloader_iam import DataLoaderIAM, Batch
from model import Model, DecoderType
from preprocessor import Preprocessor
class FilePaths:
"""Filenames and paths to data."""
fn_char_list = '../mo... | 724 | 8,060 | 210 | 0.98 | 2026-04-23T00:12:25.516419 | true |
github_spegel-org_spegel_349c5a8963357cdd35bf9390b824f708b449f584 | Go | spegel-org | spegel | 3,600 | 143 | Stateless cluster local OCI registry mirror. | [
"cloud",
"containerd",
"docker",
"go",
"golang",
"kubernetes",
"oci",
"p2p",
"registry"
] | MIT | pkg/web/html.go | html.go | 528 | package web
import (
"errors"
"fmt"
"html"
"github.com/spegel-org/spegel/pkg/httpx"
)
var _ httpx.ResponseError = &HTMLResponseError{}
type HTMLResponseError struct {
error
}
func NewHTMLResponseError(err error) *HTMLResponseError {
return &HTMLResponseError{err}
}
func (e *HTMLResponseError) ResponseBody()... | 56 | 528 | 27 | 0.98 | 2026-04-17T22:30:17.960282 | true |
github_decaporg_decap-cms_23dec113db6661aea213ce65cca721b82db48139 | JavaScript | decaporg | decap-cms | 19,010 | 3,117 | A Git-based CMS for Static Site Generators | [
"cms",
"content-management-system",
"decap-cms",
"git-based-cms",
"headless-cms",
"jamstack",
"javascript",
"netlify-cms",
"npm-package",
"react",
"static",
"static-site",
"static-site-generator"
] | MIT | .eslintrc.js | .eslintrc.js | 3,113 | const fs = require('fs');
const packages = fs
.readdirSync(`${__dirname}/packages`, { withFileTypes: true })
.filter(dirent => dirent.isDirectory())
.map(dirent => dirent.name);
module.exports = {
parser: '@babel/eslint-parser',
parserOptions: {
requireConfigFile: false,
babelOptions: {
preset... | 231 | 3,113 | 116 | 0.98 | 2026-04-23T04:52:28.467875 | true |
github_vectordotdev_vector_60bf7dc78e9b2ce4736e41cb800e818c0aa31e3a | Rust | vectordotdev | vector | 21,666 | 2,093 | A high-performance observability data pipeline. | [
"agent",
"cloud-native",
"data-transformation",
"datadog",
"etl",
"events",
"forwarder",
"hacktoberfest",
"high-performance",
"logs",
"metrics",
"monitoring",
"observability",
"pipelines",
"rust-lang",
"stream-processing",
"telemetry",
"traces"
] | MPL-2.0 | src/generate.rs | generate.rs | 23,906 | #![allow(missing_docs)]
use std::{
fs::{File, create_dir_all},
io::Write,
path::{Path, PathBuf},
};
use clap::Parser;
use colored::*;
use indexmap::IndexMap;
use serde::Serialize;
use toml::{Value, map::Map};
use vector_lib::{
buffers::BufferConfig,
config::GlobalOptions,
configurable::componen... | 1,769 | 23,906 | 785 | 0.98 | 2026-04-17T13:39:08.051683 | true |
github_MadeBaruna_paimon-moe_99a098a20d5adc09deadf457436e26f590fb9391 | JavaScript | MadeBaruna | paimon-moe | 1,510 | 282 | Your best Genshin Impact companion! Help you plan what to farm with ascension calculator and database. Also track your progress with todo and wish counter. | [
"genshin",
"genshin-calculator",
"genshin-impact",
"svelte",
"tailwindcss"
] | MIT | src/stores/server.js | server.js | 1,243 | import { writable, get } from 'svelte/store';
import dayjs from 'dayjs';
import utc from 'dayjs/plugin/utc';
import timezone from 'dayjs/plugin/timezone';
dayjs.extend(utc);
dayjs.extend(timezone);
export const server = writable('Asia');
export const ar = writable(50);
export const wl = writable(7);
export const load... | 162 | 1,243 | 54 | 0.98 | 2026-04-23T12:14:17.600026 | true |
github_clintonwoo_hackernews-react-graphql_547e75074bce5a35bdf24fdfd55c4af48b744875 | JavaScript | clintonwoo | hackernews-react-graphql | 4,472 | 553 | Hacker News clone rewritten with universal JavaScript, using React and GraphQL. | [
"apollo",
"express",
"graphql",
"hacker-news",
"hn",
"javascript",
"js",
"nextjs",
"node",
"react"
] | MIT | jest.config.js | jest.config.js | 332 | module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
setupFilesAfterEnv: ['<rootDir>/jest-setup.js'],
transform: { '^.+\\.tsx?$': 'ts-jest' },
testMatch: ['**/__tests__/**/*.ts?(x)', '**/?(*.)+(spec).ts?(x)'],
verbose: true,
globals: {
'ts-jest': {
tsconfig: 'tsconfig-server.json',
... | 28 | 332 | 14 | 0.98 | 2026-04-23T08:34:44.086660 | true |
github_kubernetes-sigs_external-dns_51fc2cb133960373314651b92afd8cdea21cd621 | 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/kong_tcpingress_test.go | kong_tcpingress_test.go | 12,418 | /*
Copyright 2021 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, ... | 795 | 12,418 | 429 | 0.98 | 2026-04-17T20:17:17.931691 | true |
github_glasskube_glasskube_f687fce411bafbfee6c632cd80fb247bf6ecd1f8 | Go | glasskube | glasskube | 3,487 | 194 | 🧊 The next generation Package Manager for Kubernetes 📦 Featuring a GUI and a CLI. Glasskube packages are dependency aware, GitOps ready and can get automatic updates via a central public package repository. | [
"cloud-native",
"cncf",
"cobra",
"cobra-cli",
"containers",
"devops",
"devops-tools",
"docusaurus",
"giscuss",
"glasskube",
"go",
"golang",
"htmx",
"kubebuilder",
"kubernetes",
"kubernetes-operator",
"package",
"package-manager"
] | Apache-2.0 | internal/util/error.go | error.go | 185 | package util
import "errors"
func GetRootCause(err error) error {
unwrapped := errors.Unwrap(err)
if unwrapped != nil {
return GetRootCause(unwrapped)
} else {
return err
}
}
| 26 | 185 | 13 | 0.98 | 2026-04-17T22:32:28.945709 | true |
github_Universal-Debloater-Alliance_universal-android-debloater-next-generation_7be7084a48b82db52718bbb43ae93b96935f9bb5 | Rust | Universal-Debloater-Alliance | universal-android-debloater-next-generation | 6,383 | 273 | Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices. Improve your privacy, the security and battery life of your device. | [
"adb",
"android",
"bloatware-list",
"bloatware-removal",
"debloat",
"debloater",
"debloating",
"privacy"
] | GPL-3.0 | src/core/save.rs | save.rs | 5,991 | use crate::core::config::{Config, DeviceSettings};
use crate::core::sync::{CorePackage, Phone, User, apply_pkg_state_commands};
use crate::core::utils::DisplayablePath;
use crate::gui::widgets::package_row::PackageRow;
use log::{error, info, warn};
use serde::{Deserialize, Serialize};
use std::{
fs,
path::{Path... | 470 | 5,991 | 192 | 0.98 | 2026-04-17T14:49:24.833820 | true |
github_fluxcd_flux2_9f0ec4a91720a8dfecd43b9579eebdcf3d48498c | Go | fluxcd | flux2 | 8,053 | 739 | Open and extensible continuous delivery solution for Kubernetes. Powered by GitOps Toolkit. | [
"continuous-delivery",
"gitops",
"gitops-toolkit",
"helm",
"kubernetes",
"kustomize"
] | Apache-2.0 | cmd/flux/diff.go | diff.go | 847 | /*
Copyright 2021 The Flux authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, softwar... | 126 | 847 | 32 | 0.98 | 2026-04-17T20:21:08.980488 | true |
github_konstaui_konsta_48c19ba6687605650138db6d6d764215eb861c62 | JavaScript | konstaui | konsta | 4,148 | 154 | Mobile UI components made with Tailwind CSS | [
"android",
"ios",
"material-design",
"mobile",
"react",
"svelte",
"tailwindcss",
"ui-components",
"vue"
] | MIT | src/shared/touch-ripple-class.js | touch-ripple-class.js | 3,243 | export class TouchRipple {
constructor(el, x, y) {
const ripple = this;
if (!el) return undefined;
ripple.el = el;
const { left, top, width, height } = el.getBoundingClientRect();
const center = {
x: x - left,
y: y - top,
};
let diameter = Math.max((height ** 2 + width ** 2) ... | 289 | 3,243 | 109 | 0.98 | 2026-04-23T12:02:51.765133 | true |
github_nodejs_node_d23f5d0ab6abe130596c74ce6c5ce5f11a07aea3 | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/internal/buffer.js | buffer.js | 33,183 | 'use strict';
const {
BigInt,
Float32Array,
Float64Array,
MathFloor,
Number,
Symbol,
Uint8Array,
} = primordials;
const {
ERR_BUFFER_OUT_OF_BOUNDS,
ERR_INVALID_ARG_TYPE,
ERR_OUT_OF_RANGE,
} = require('internal/errors').codes;
const { validateNumber } = require('internal/validators');
const { isArr... | 4,302 | 33,183 | 1,119 | 0.98 | 2026-04-23T06:15:49.272324 | true |
github_OpenListTeam_OpenList_42121aac7b781274ee494e10d6f308eccf161100 | Go | OpenListTeam | OpenList | 21,963 | 1,882 | A new AList Fork to Anti Trust Crisis | [
"alist",
"aliyunpan",
"baidupan",
"openlist"
] | AGPL-3.0 | cmd/root.go | root.go | 1,578 | package cmd
import (
"fmt"
"os"
"github.com/OpenListTeam/OpenList/v4/cmd/flags"
_ "github.com/OpenListTeam/OpenList/v4/drivers"
_ "github.com/OpenListTeam/OpenList/v4/internal/archive"
_ "github.com/OpenListTeam/OpenList/v4/internal/offline_download"
"github.com/spf13/cobra"
)
var RootCmd = &cobra.Command{
U... | 152 | 1,578 | 38 | 0.98 | 2026-04-17T09:20:24.294647 | true |
github_yeungchenwa_FontDiffuser_b7869126a7641ff75036effa8679683326521413 | 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/modules/unet_blocks.py | unet_blocks.py | 23,363 | import torch
from torch import nn
from torchvision.ops import DeformConv2d
from .attention import (SpatialTransformer,
OffsetRefStrucInter,
ChannelAttnBlock)
from .resnet import (Downsample2D,
ResnetBlock2D,
Upsample2D)
def... | 1,316 | 23,363 | 662 | 0.98 | 2026-04-22T22:42:38.704800 | true |
github_milvus-io_milvus_0a677463d64923c5ed23025ed3f38abb0c25e65e | Go | milvus-io | milvus | 43,838 | 3,961 | Milvus is a high-performance, cloud-native vector database built for scalable vector ANN search | [
"anns",
"cloud-native",
"diskann",
"distributed",
"embedding-database",
"embedding-similarity",
"embedding-store",
"faiss",
"golang",
"hnsw",
"image-search",
"llm",
"nearest-neighbor-search",
"rag",
"vector-database",
"vector-search",
"vector-similarity",
"vector-store"
] | Apache-2.0 | cmd/milvus/boring_disabled.go | boring_disabled.go | 120 | //go:build !boringcrypto
package milvus
func boringEnabled() bool {
return false
}
func maybeEnableOpenSSLFIPS() {}
| 14 | 120 | 10 | 0.98 | 2026-04-17T07:28:43.896955 | true |
github_imsyy_DailyHotApi_36b15ffd65f2b4364307cd837475309696567310 | TypeScript | imsyy | DailyHotApi | 3,749 | 1,256 | 🔥 今日热榜 API,一个聚合热门数据的 API 接口,支持 RSS 模式 及 Vercel 部署 | 前端页面:https://github.com/imsyy/DailyHot | [
"api",
"daily-hot",
"list",
"rss",
"vercel"
] | MIT | src/routes/smzdm.ts | smzdm.ts | 1,739 | import type { ListContext, Options, RouterData } from "../types.js";
import { get } from "../utils/getData.js";
import { getTime } from "../utils/getTime.js";
const typeMap: Record<string, string> = {
"1": "今日热门",
"7": "周热门",
"30": "月热门",
};
export const handleRoute = async (c: ListContext, noCache: boolean) =>... | 179 | 1,619 | 68 | 0.98 | 2026-04-17T18:03:15.725068 | true |
github_ultraworkers_claw-code_5f7502a56d1afa566a8637ff16bc0da5ac12a6e6 | 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/session_store.py | session_store.py | 1,022 | from __future__ import annotations
import json
from dataclasses import asdict, dataclass
from pathlib import Path
@dataclass(frozen=True)
class StoredSession:
session_id: str
messages: tuple[str, ...]
input_tokens: int
output_tokens: int
DEFAULT_SESSION_DIR = Path('.port_sessions')
def save_sessi... | 85 | 1,022 | 36 | 0.98 | 2026-04-17T13:13:23.734955 | true |
github_voicepaw_so-vits-svc-fork_7629214d29f3a0c85448af0be985459798eec329 | Python | voicepaw | so-vits-svc-fork | 9,290 | 1,225 | so-vits-svc fork with realtime support, improved interface and more features. | [
"contentvec",
"deep-learning",
"gan",
"hubert",
"lightning",
"pytorch",
"pytorch-lightning",
"realtime",
"so-vits-svc",
"softvc",
"sovits",
"speech-synthesis",
"vits",
"voice-changer",
"voice-conversion"
] | NOASSERTION | src/so_vits_svc_fork/train.py | train.py | 20,593 | from __future__ import annotations
import os
import warnings
from logging import getLogger
from multiprocessing import cpu_count
from pathlib import Path
from typing import Any
import lightning.pytorch as pl
import torch
from lightning.pytorch.accelerators import MPSAccelerator, TPUAccelerator
from lightning.pytorch.... | 1,434 | 20,593 | 515 | 0.98 | 2026-04-22T14:03:33.683143 | true |
github_apollographql_apollo-client_cceb49ceca22885c23091d4774832378aade9a50 | TypeScript | apollographql | apollo-client | 19,717 | 2,702 | The industry-leading GraphQL client for TypeScript, JavaScript, React, Vue, Angular, and more. Apollo Client delivers powerful caching, intuitive APIs, and comprehensive developer tools to accelerate your app development. | [
"apollo-client",
"apollographql",
"graphql",
"graphql-client",
"typescript"
] | MIT | src/utilities/HKT.ts | HKT.ts | 923 | /**
* A helper interface to implement Higher-Kinded-Types (HKT) in TypeScript.
*
* @example
* For example usage, see `src/masking/GraphQLCodegenDataMasking.ts`.
*
* @beta
* The Higher-Kinded-Types implementation might change between minor versions,
* as we discover ways of making it more performant and/or our r... | 142 | 923 | 36 | 0.98 | 2026-04-18T01:25:57.381668 | true |
github_klothoplatform_klotho_5f45298e2e29bd757af8d118851490f60bbc0da5 | 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/io/raw_file.go | raw_file.go | 690 | package io
import (
"io"
)
// RawFile represents a file with its included `Content` in case the compiler needs to read/manipulate it.
// If the content is not needed except to `WriteTo`, then try using [FileRef] instead.
type RawFile struct {
FPath string
Content []byte
}
type File interface {
Path() string
W... | 105 | 690 | 37 | 0.98 | 2026-04-18T01:19:31.151360 | true |
github_fschutt_azul_f621c1b86faa56e4f2433ba040f150d9a7cae7f2 | Rust | fschutt | azul | 6,098 | 223 | Desktop GUI Framework | [
"c",
"cpp",
"desktop",
"desktop-gui-framework",
"gui",
"gui-framework",
"gui-library",
"opengl",
"rust"
] | MIT | core/src/resources.rs | resources.rs | 98,973 | #[cfg(not(feature = "std"))]
use alloc::string::ToString;
use alloc::{boxed::Box, collections::btree_map::BTreeMap, string::String, vec::Vec};
use core::{
fmt,
hash::{Hash, Hasher},
sync::atomic::{AtomicU32, AtomicUsize, Ordering as AtomicOrdering},
};
use azul_css::{
format_rust_code::GetHash,
pro... | 9,782 | 98,971 | 2,867 | 0.98 | 2026-04-17T14:52:31.041652 | true |
github_crossplane_crossplane_947516355c80acaee94923d68b21bb6641e53ee0 | Go | crossplane | crossplane | 11,599 | 1,162 | The Cloud Native Control Plane | [
"cloud-computing",
"cloud-management",
"cloud-native",
"cncf",
"containers",
"control-plane",
"infrastructure",
"infrastructure-as-code",
"kubernetes",
"multicloud",
"serverless"
] | Apache-2.0 | internal/initializer/tls_test.go | tls_test.go | 27,245 | /*
Copyright 2023 The Crossplane 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, s... | 2,069 | 27,245 | 779 | 0.98 | 2026-04-17T12:15:35.308056 | true |
github_tarcisio-marinho_GonnaCry_4cd7b7d14b60d0d3d1625c639620d2ac1ef3ca26 | Python | tarcisio-marinho | GonnaCry | 772 | 406 | A Linux Ransomware | [
"aes",
"aes-encryption",
"c",
"crypto-library",
"cryptography",
"decryption",
"encryption",
"linux",
"linux-ransomware",
"malware",
"malware-analysis",
"malware-development",
"openssl",
"python",
"python-2",
"ransom-worm",
"ransomware",
"ransomware-prevention",
"rsa-cryptography"... | GPL-2.0 | src/GonnaCry/persistence.py | persistence.py | 1,760 | import variables
import os
import subprocess
import shutil
def startup():
desktop = \
'''[Desktop Entry]
Type=Application
Name=daemon
Exec={}
Icon=
Comment=SystemManagement
X-GNOME-Autostart-enabled=true
'''.format(variables.daemon_path)
with open(variables.daemon_desktop, 'w') as f:
f.write(desktop)... | 129 | 1,760 | 79 | 0.98 | 2026-04-23T04:35:47.159780 | true |
github_valyala_fasthttp_5b8594f951b9c8675ea8d4c1494ef9e72999df4e | Go | valyala | fasthttp | 23,337 | 1,818 | Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x faster than net/http | [] | MIT | bytesconv_32_test.go | bytesconv_32_test.go | 1,289 | //go:build !amd64 && !arm64 && !ppc64 && !ppc64le && !riscv64 && !s390x
package fasthttp
import (
"testing"
)
func TestWriteHexInt(t *testing.T) {
t.Parallel()
testWriteHexInt(t, 0, "0")
testWriteHexInt(t, 1, "1")
testWriteHexInt(t, 0x123, "123")
testWriteHexInt(t, 0x7fffffff, "7fffffff")
}
func TestAppendUi... | 139 | 1,289 | 60 | 0.98 | 2026-04-17T09:12:47.121289 | true |
github_ssbc_patchwork_4c72bbb94add5cf1f56b5f5df06743e5ea947a02 | JavaScript | ssbc | patchwork | 3,571 | 333 | A decentralized messaging and sharing app built on top of Secure Scuttlebutt (SSB). | [
"decentralized",
"decentralized-messaging",
"electron",
"javascript",
"linux",
"macos",
"nodejs",
"off-grid",
"offline",
"p2p",
"scuttlebutt",
"server",
"social",
"social-network",
"ssb",
"windows"
] | AGPL-3.0 | lib/thread-summary.js | thread-summary.js | 1,298 | const pull = require('pull-stream')
const getBump = require('./get-bump')
module.exports = function (dest, {
recentLimit = 3,
bumpFilter = null,
recentFilter = null,
readThread = null,
messageFilter = null,
pullFilter = null
}, cb) {
const bumps = []
let totalReplies = 0
const latestReplies = []
re... | 159 | 1,298 | 49 | 0.98 | 2026-04-23T07:49:10.637825 | true |
github_existence-master_Sentient_c122c28231d1df639d30b2b93ebecc4f3892750d | 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/jest.config.js | jest.config.js | 471 | module.exports = {
testEnvironment: "jest-environment-jsdom",
setupFilesAfterEnv: ["<rootDir>/jest.setup.js"],
transform: {
"^.+\\.(js|jsx)$": ["babel-jest", { presets: ["next/babel"] }]
},
moduleNameMapper: {
"^@components/(.*)$": "<rootDir>/components/$1",
"^@hooks/(.*)$": "<rootDir>/hooks/$1",
"^@stores... | 32 | 471 | 16 | 0.98 | 2026-04-23T03:57:10.683460 | true |
github_jmcdo29_testing-nestjs_60dcfab45091de856c8364329e4f88b501f95bea | JavaScript | jmcdo29 | testing-nestjs | 3,018 | 380 | A repository to show off to the community methods of testing NestJS including Unit Tests, Integration Tests, E2E Tests, pipes, filters, interceptors, GraphQL, Mongo, TypeORM, and more! | [
"cqrs",
"examples",
"graphql",
"hacktoberfest",
"interceptor",
"mongo",
"nestjs",
"pipes",
"rest",
"testing",
"typeorm"
] | MIT | jest.config.js | jest.config.js | 348 | module.exports = {
moduleFileExtensions: ['js', 'json', 'ts'],
rootDir: '.',
testEnvironment: 'node',
testMatch: ['<rootDir>/src/**/*spec.ts'],
transform: {
'^.+\\.(t|j)s$': [
'ts-jest',
{
tsconfig: '<rootDir>/tsconfig.app.json',
ignoreCodes: ['TS151001'],
},
],
},
... | 29 | 348 | 17 | 0.98 | 2026-04-18T01:37:54.144381 | true |
github_goodrain_rainbond_7f05c2b4551ee7e13bc8094ed26cd5343cff0f91 | Go | goodrain | rainbond | 6,138 | 859 | A container platform that needs no Kubernetes learning, Build, deploy, assemble, and manage apps on Kubernetes, no K8s expertise needed, all in a graphical platform. | [
"application",
"cloud-native",
"cloud-native-applications",
"continuous-delivery",
"devops",
"heroku",
"hybrid-cloud",
"k8s",
"kubernetes",
"microservice-architecture",
"microservice-governance",
"multi-cloud",
"multi-cluster",
"paas",
"rainbond",
"saas",
"service-mesh"
] | NOASSERTION | api/handler/cloud.go | cloud.go | 7,267 | // Copyright (C) 2014-2018 Goodrain Co., Ltd.
// RAINBOND, Application Management Platform
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your opt... | 726 | 7,079 | 228 | 0.98 | 2026-04-17T20:42:14.152448 | true |
github_standard-things_esm_3769db4d54d0a679dae992193b06a1e2353ca9a3 | JavaScript | standard-things | esm | 5,251 | 145 | Tomorrow's ECMAScript modules today! | [
"es6",
"es6-modules",
"esm",
"esmodules",
"nodejs"
] | NOASSERTION | src/env/is-eval.js | is-eval.js | 606 | import { argv, stdin } from "../safe/process.js"
import getFlags from "./get-flags.js"
import isPreloaded from "./is-preloaded.js"
import isPrint from "./is-print.js"
import shared from "../shared.js"
function init() {
function isEval() {
if (isPrint()) {
return true
}
if (argv.length !== 1 ||
... | 71 | 606 | 32 | 0.98 | 2026-04-23T07:31:06.364292 | true |
github_ardatan_graphql-tools_22fa2d4b0d537e94487ff8f4d61fa9192c9079b2 | JavaScript | ardatan | graphql-tools | 5,424 | 827 | :wrench: Utility library for GraphQL to build, stitch and mock GraphQL schemas in the SDL-first approach | [
"graphql",
"graphql-api",
"graphql-js",
"graphql-schema",
"javascript",
"mock",
"schema-language",
"schema-stitching",
"typescript"
] | MIT | jest.config.js | jest.config.js | 2,049 | const { resolve } = require('path');
const { pathsToModuleNameMapper } = require('ts-jest');
const CI = !!process.env.CI;
const ROOT_DIR = __dirname;
const TSCONFIG = resolve(ROOT_DIR, 'tsconfig.json');
const tsconfig = require(TSCONFIG);
const ESM_PACKAGES = [
'graphql',
'graphql-upload',
'fs-capacitor',
'ap... | 172 | 2,049 | 75 | 0.98 | 2026-04-18T01:32:56.353672 | true |
github_pocketbase_pocketbase_3f08228a7c27564cf784018da191ee3eee955d0c | Go | pocketbase | pocketbase | 57,663 | 3,292 | Open Source realtime backend in 1 file | [
"authentication",
"backend",
"golang",
"realtime"
] | MIT | core/db_tx.go | db_tx.go | 2,986 | package core
import (
"errors"
"fmt"
"sync"
"github.com/pocketbase/dbx"
)
// RunInTransaction wraps fn into a transaction for the regular app database.
//
// It is safe to nest RunInTransaction calls as long as you use the callback's txApp.
func (app *BaseApp) RunInTransaction(fn func(txApp App) error) error {
... | 409 | 2,986 | 113 | 0.98 | 2026-04-17T07:17:22.931740 | true |
github_jesseduffield_lazydocker_744f4467ad5535aef53f95e4ecc6b5e89a8dabd0 | Go | jesseduffield | lazydocker | 50,674 | 1,602 | The lazier way to manage everything docker | [] | MIT | pkg/gui/arrangement.go | arrangement.go | 5,688 | package gui
import (
"github.com/jesseduffield/lazycore/pkg/boxlayout"
"github.com/jesseduffield/lazydocker/pkg/gui/panels"
"github.com/jesseduffield/lazydocker/pkg/utils"
"github.com/mattn/go-runewidth"
"github.com/samber/lo"
)
// In this file we use the boxlayout package, along with knowledge about the app's s... | 597 | 5,688 | 221 | 0.98 | 2026-04-17T07:22:06.673601 | true |
github_unhappychoice_gitlogue_1bb452fd4efbec825596f0d7dbbacfc70dd57e09 | Rust | unhappychoice | gitlogue | 4,609 | 100 | A cinematic Git commit replay tool for the terminal, turning your Git history into a living, animated story. | [
"cli",
"cli-tool",
"code-animation",
"commit-history",
"developer-tools",
"git",
"git-history",
"git-visualization",
"productivity",
"ratatui",
"rust",
"screensaver",
"syntax-highlighting",
"terminal",
"terminal-app",
"terminal-based",
"terminal-screensaver",
"tree-sitter",
"tui"... | ISC | src/git.rs | git.rs | 50,375 | use anyhow::{Context, Result};
use chrono::{DateTime, Local, Utc};
use chrono_english::{parse_date_string, Dialect};
use git2::{Commit as Git2Commit, Delta, DiffOptions, Oid, Repository};
use globset::{Glob, GlobSet, GlobSetBuilder};
use rand::RngExt;
use std::cell::RefCell;
use std::path::Path;
use std::sync::OnceLock... | 3,697 | 50,375 | 1,464 | 0.98 | 2026-04-17T18:34:19.044982 | true |
github_voxel51_fiftyone_5c746dc77ae4d51e6c1306ae4b58baa88715373a | JavaScript | voxel51 | fiftyone | 10,582 | 740 | Refine high-quality datasets and visual AI models | [
"active-learning",
"artificial-intelligence",
"computer-vision",
"data-centric-ai",
"data-cleaning",
"data-curation",
"data-quality",
"data-science",
"deep-learning",
"developer-tools",
"image-classification",
"machine-learning",
"object-detection",
"python",
"unstructured-data",
"vect... | Apache-2.0 | app/.eslintrc.js | .eslintrc.js | 1,564 | /* eslint-disable */
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:react/jsx-runtime",
"plugin:@typescript-eslint/recommended",
"prettier",
],
globals: {
Atomics... | 132 | 1,564 | 73 | 0.98 | 2026-04-17T06:49:02.452137 | true |
github_reactjs_react.dev_1c6f2c7ae3f650ea92e5c1d8b3e4870aa879650a | JavaScript | reactjs | react.dev | 11,733 | 7,893 | The React documentation website | [
"documentation",
"javascript",
"react",
"website"
] | CC-BY-4.0 | src/pages/[[...markdownPath]].js | [[...markdownPath]].js | 5,332 | /**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*/
import {Fragment, useMemo} from 'react';
import {useRouter} from 'ne... | 613 | 5,332 | 196 | 0.98 | 2026-04-23T05:38:55.609189 | true |
github_1jehuang_mermaid-rs-renderer_d5db9ffb2e65738fb108ca835a8a674d86001828 | Rust | 1jehuang | mermaid-rs-renderer | 1,155 | 41 | A fast native Rust Mermaid diagram renderer. No browser required. 500-1000x faster than mermaid-cli. | [
"cli",
"diagram",
"flowchart",
"mermaid",
"rust",
"svg"
] | MIT | src/layout/quadrant.rs | quadrant.rs | 3,885 | use std::collections::BTreeMap;
use crate::config::LayoutConfig;
use crate::ir::Graph;
use crate::theme::Theme;
use super::text::measure_label;
use super::{DiagramData, Layout, QuadrantLayout, QuadrantPointLayout, TextBlock};
fn quadrant_palette(_theme: &Theme) -> Vec<String> {
vec![
"#6366f1".to_string(... | 337 | 3,885 | 137 | 0.98 | 2026-04-17T19:35:10.731699 | true |
github_farion1231_cc-switch_8c3822c4fd260e816ec68a7bd063e847f93f9e7d | TypeScript | farion1231 | cc-switch | 46,404 | 2,957 | A cross-platform desktop All-in-One assistant tool for Claude Code, Codex, OpenCode, openclaw & Gemini CLI. | [
"ai-tools",
"claude-code",
"codex",
"desktop-app",
"mcp",
"minimax",
"omo",
"open-source",
"openclaw",
"openclaw-ui",
"opencode",
"provider-management",
"rust",
"skills",
"skills-management",
"tauri",
"typescript",
"wsl-support"
] | MIT | src/utils/uuid.ts | uuid.ts | 1,075 | /**
* 生成 UUID v4
*
* 优先使用 crypto.randomUUID(),不可用时使用 crypto.getRandomValues() 实现
*
* 兼容性:
* - crypto.randomUUID(): Chrome 92+, Safari 15.4+, Firefox 95+
* - crypto.getRandomValues(): Chrome 11+, Safari 5+, Firefox 21+
*/
export function generateUUID(): string {
const cryptoApi = globalThis.crypto;
// 优先使用原... | 121 | 1,003 | 38 | 0.98 | 2026-04-17T13:19:04.915333 | true |
github_rancher_rancher_af8c7ff7f31283f1e0509192bd66d750bfcf36a7 | Go | rancher | rancher | 25,503 | 3,179 | Complete container management platform | [
"cattle",
"containers",
"docker",
"kubernetes",
"orchestration",
"rancher"
] | Apache-2.0 | pkg/clusterrouter/factory.go | factory.go | 2,253 | package clusterrouter
import (
"net/http"
"sync"
"github.com/moby/locker"
"github.com/rancher/rancher/pkg/clusterrouter/proxy"
v3 "github.com/rancher/rancher/pkg/generated/norman/management.cattle.io/v3"
"github.com/rancher/rancher/pkg/types/config/dialer"
"k8s.io/client-go/rest"
)
type factory struct {
dial... | 207 | 2,253 | 80 | 0.98 | 2026-04-17T08:38:08.681055 | true |
github_OptimalBits_bull_721dd89e920c719ec5727b1cd23088291ee0eab0 | JavaScript | OptimalBits | bull | 16,244 | 1,421 | Premium Queue package for handling distributed jobs and messages in NodeJS. | [
"job",
"job-queue",
"message",
"message-queue",
"nodejs",
"priority",
"queue",
"rate-limiter",
"scheduler"
] | NOASSERTION | lib/utils.js | utils.js | 1,622 | 'use strict';
const errorObject = { value: null };
function tryCatch(fn, ctx, args) {
try {
return fn.apply(ctx, args);
} catch (e) {
errorObject.value = e;
return errorObject;
}
}
/**
* Waits for a redis client to be ready.
* @param {Redis} redis client
*/
function isRedisReady(client) {
return... | 187 | 1,622 | 71 | 0.98 | 2026-04-23T06:50:44.254862 | true |
github_rangle_augury_a2ebf95e5879b394aece4f8a577a77cc521dc80e | JavaScript | rangle | augury | 1,995 | 214 | Angular Debugging and Visualization Tools | [
"angular",
"angular2",
"augury",
"debugging",
"devtools"
] | MIT | webpack.test.config.js | webpack.test.config.js | 1,411 | const webpack = require('webpack');
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const buildDir = path.join(__dirname, './build');
module.exports = {
mode: 'development',
entry: {
'test': [
path.join(__dirname, 'webpack.test.bootstrap.ts'),
],
},
ou... | 129 | 1,411 | 76 | 0.98 | 2026-04-18T00:27:21.804454 | true |
github_ent_ent_38b4e5bab5878ffc5490c155742604f6252316cf | Go | ent | ent | 17,033 | 997 | An entity framework for Go | [
"ent",
"entity-framework",
"orm"
] | Apache-2.0 | cmd/entc/entc.go | entc.go | 866 | // Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
package main
import (
"bytes"
"log"
"os"
"path/filepath"
"entgo.io/ent/cmd/internal/base"
"entgo.io/ent/entc/gen"
"... | 99 | 866 | 42 | 0.98 | 2026-04-17T10:17:20.350201 | true |
github_stretchr_testify_32c0e338825308f6b9b4d0407aa5682a23e2dc9c | Go | stretchr | testify | 25,936 | 1,698 | A toolkit with common assertions and mocks that plays nicely with the standard library | [
"assertions",
"go",
"golang",
"mocking",
"testify",
"testing",
"toolkit"
] | MIT | internal/spew/spew.go | spew.go | 5,969 | /*
* Copyright (c) 2013-2016 Dave Collins <[REDACTED_EMAIL]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" ... | 857 | 5,969 | 149 | 0.98 | 2026-04-17T08:33:22.297983 | true |
github_vercel_swr_b055b80671a85a51627091a4c8e5ec568028f8c4 | TypeScript | vercel | swr | 32,352 | 1,332 | React Hooks for Data Fetching | [
"cache",
"data",
"data-fetching",
"fetch",
"hook",
"hooks",
"nextjs",
"react",
"react-native",
"stale-while-revalidate",
"suspense",
"swr",
"vercel"
] | MIT | src/_internal/events.ts | events.ts | 132 | export const FOCUS_EVENT = 0
export const RECONNECT_EVENT = 1
export const MUTATE_EVENT = 2
export const ERROR_REVALIDATE_EVENT = 3
| 20 | 132 | 5 | 0.98 | 2026-04-23T09:00:01.569280 | true |
github_drprojects_superpoint_transformer_60f0e60024950893e5a26148129554952ce37933 | 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/loss/bce.py | bce.py | 1,729 | import torch
from torch import Tensor
from torch.nn import BCEWithLogitsLoss as TorchBCEWithLogitsLoss
from src.loss.weighted import WeightedLossMixIn
__all__ = ['WeightedBCEWithLogitsLoss', 'BCEWithLogitsLoss']
class WeightedBCEWithLogitsLoss(WeightedLossMixIn, TorchBCEWithLogitsLoss):
"""Weighted BCE loss bet... | 168 | 1,729 | 51 | 0.98 | 2026-04-22T21:12:53.447399 | true |
github_ultraworkers_claw-code_953d46ada9f24e2e4c67cd42fbc350b4388f7282 | 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/execution_registry.py | execution_registry.py | 1,399 | from __future__ import annotations
from dataclasses import dataclass
from .commands import PORTED_COMMANDS, execute_command
from .tools import PORTED_TOOLS, execute_tool
@dataclass(frozen=True)
class MirroredCommand:
name: str
source_hint: str
def execute(self, prompt: str) -> str:
return execu... | 124 | 1,399 | 52 | 0.98 | 2026-04-17T13:13:11.606396 | true |
github_MichalLytek_type-graphql_06968c909885786d964bfef842d2fff036b4bfde | TypeScript | MichalLytek | type-graphql | 8,087 | 674 | Create GraphQL schema and resolvers with TypeScript, using classes and decorators! | [
"api",
"controllers",
"decorators",
"gql",
"graphql",
"graphql-js",
"graphql-schema",
"hacktoberfest",
"resolvers",
"schema",
"typescript"
] | MIT | src/typings/index.ts | index.ts | 486 | export * from "./utils";
export * from "./auth-checker";
export * from "./Complexity";
export * from "./legacy-decorators";
export type { MiddlewareFn, NextFn, MiddlewareInterface } from "./middleware";
export * from "./resolver-data";
export * from "./ResolverInterface";
export * from "./resolvers-map";
export * from ... | 57 | 486 | 14 | 0.98 | 2026-04-17T17:58:08.015757 | true |
github_sashabaranov_go-openai_adccb158e8c8da1535e0de5515dc142b903e7610 | Go | sashabaranov | go-openai | 10,623 | 1,689 | OpenAI ChatGPT, GPT-5, GPT-Image-1, Whisper API clients for Go | [
"chatgpt",
"chatgpt-api",
"dall-e",
"go",
"golang",
"gpt-4",
"gpt-5",
"gpt-5-api",
"openai",
"openai-whisper",
"streaming-api"
] | Apache-2.0 | internal/request_builder_test.go | request_builder_test.go | 2,621 | package openai //nolint:testpackage // testing private field
import (
"bytes"
"context"
"errors"
"io"
"net/http"
"reflect"
"testing"
)
var errTestMarshallerFailed = errors.New("test marshaller failed")
type failingMarshaller struct{}
func (*failingMarshaller) Marshal(_ any) ([]byte, error) {
return []byte{}... | 295 | 2,621 | 97 | 0.98 | 2026-04-17T12:35:30.287616 | true |
github_hi-abhi_tensorflow-value-iteration-networks_5a63953d8a6c26de8447cebc3ea1a0a9aae7ba7d | Python | hi-abhi | tensorflow-value-iteration-networks | 551 | 117 | TensorFlow implementation of the Value Iteration Networks (NIPS '16) paper | [
"deep-learning",
"machine-learning",
"neural-networks",
"reinforcement-learning",
"tensorflow"
] | Apache-2.0 | train.py | train.py | 5,341 | import time
import numpy as np
import tensorflow as tf
from data import process_gridworld_data
from model import VI_Block, VI_Untied_Block
from utils import fmt_row
# Data
tf.app.flags.DEFINE_string('input', 'data/gridworld_8.mat', 'Path to data')
tf.app.flags.DEFINE_integer('imsize', 8, ... | 460 | 5,341 | 108 | 0.98 | 2026-04-22T20:49:52.291488 | true |
github_codesandbox_codesandbox-client_63e86d07d42803244dd1c453b641d095a18894c1 | JavaScript | codesandbox | codesandbox-client | 13,601 | 2,422 | An online IDE for rapid web development | [
"angular",
"codesandbox",
"javascript",
"preact",
"react",
"svelte",
"vue"
] | NOASSERTION | Gulpfile.js | Gulpfile.js | 675 | const gulp = require('gulp');
const _rimraf = require('rimraf');
function rimraf(dir) {
let retries = 0;
const retry = cb => {
_rimraf(dir, { maxBusyTries: 1 }, err => {
if (!err) {
return cb();
}
if (err.code === 'ENOTEMPTY' && ++retries < 5) {
return setTimeout(() => retry... | 69 | 675 | 31 | 0.98 | 2026-04-23T04:55:51.541150 | true |
github_PuerkitoBio_goquery_8cb673b50e64df173e45277879b04fcf9a7cc9a1 | Go | PuerkitoBio | goquery | 14,929 | 927 | A little like that j-thing, only in Go. | [
"goquery",
"html-parsing",
"jquery",
"selector-strings"
] | BSD-3-Clause | bench_traversal_test.go | bench_traversal_test.go | 14,443 | package goquery
import (
"testing"
"github.com/andybalholm/cascadia"
)
func BenchmarkFind(b *testing.B) {
var n int
for i := 0; i < b.N; i++ {
if n == 0 {
n = DocB().Find("dd").Length()
} else {
DocB().Find("dd")
}
}
if n != 41 {
b.Fatalf("want 41, got %d", n)
}
}
func BenchmarkFindWithinSele... | 2,198 | 14,443 | 823 | 0.98 | 2026-04-17T10:37:50.267721 | true |
github_wassim249_YT-Navigator_cbe9f3c4c87b0e73cce557642258c0018d67133e | Python | wassim249 | YT-Navigator | 588 | 71 | YT Navigator: AI-powered YouTube content explorer that lets you search and chat with channel videos using AI agents. Extract insights from hours of content in seconds with semantic search and precise timestamps. | [
"agentic-ai",
"agentic-rag",
"ai",
"django",
"langchain",
"langgraph",
"llm",
"python",
"rag",
"reranking",
"youtube",
"youtube-bot"
] | MIT | app/apps.py | apps.py | 194 | """App configuration."""
from django.apps import AppConfig
class AppConfig(AppConfig):
"""App configuration."""
default_auto_field = "django.db.models.BigAutoField"
name = "app"
| 16 | 194 | 11 | 0.98 | 2026-04-23T00:53:04.734548 | true |
github_smartcontractkit_chainlink_070930be38618ec62a209a522e49b513665a5500 | Go | smartcontractkit | chainlink | 8,198 | 1,964 | node of the decentralized oracle network, bridging on and off-chain computation | [
"blockchain",
"chainlink",
"ethereum",
"golang",
"oracle",
"solidity"
] | NOASSERTION | core/cmd/presenters_test.go | presenters_test.go | 452 | package cmd_test
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/smartcontractkit/chainlink/v2/core/cmd"
)
func TestJAID(t *testing.T) {
t.Parallel()
jaid := cmd.JAID{ID: "1"}
t.Run("GetID", func(t *testing.T) { assert.Equal(t, "1", jaid.GetID()) })... | 40 | 452 | 24 | 0.98 | 2026-04-17T16:44:00.281386 | true |
github_Chainlit_chainlit_12dd5aa324fe6a024d4c1bd26e1a0f3b7a2a9fa8 | JavaScript | Chainlit | chainlit | 11,961 | 1,694 | Build Conversational AI in minutes ⚡️ | [
"chatgpt",
"langchain",
"llm",
"openai",
"openai-chatgpt",
"python",
"ui"
] | Apache-2.0 | lint-staged.config.js | lint-staged.config.js | 948 | module.exports = {
// Prettier: globs only — skip nested `.(cursor|claude)/**` and symlink names (see `.shared/`).
'!(.(cursor|claude))/**': ['pnpm format:files'],
'.(cursor|claude)/!(agents|commands|rules|skills)': ['pnpm format:files'],
'**/*.{ts,tsx,js,cjs,mjs}': ['pnpm lint:fix'],
'frontend/**/*.{ts,tsx... | 92 | 946 | 28 | 0.98 | 2026-04-17T22:53:00.448914 | true |
github_slint-ui_slint_98fb306191f55173b1abb1f80702ed7f4851fca3 | 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/compiler/langtype.rs | langtype.rs | 42,780 | // 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
use std::borrow::Cow;
use std::collections::{BTreeMap, HashMap};
use std::fmt::Display;
use std::rc::Rc;
use itertools::Itertools;
use smol_str::SmolStr;
use... | 3,880 | 42,759 | 1,193 | 0.98 | 2026-04-17T13:36:23.473655 | true |
github_jaymody_picoGPT_e4d0aea3b77ac147d8141e9d0aca4b84c80bc4e7 | Python | jaymody | picoGPT | 3,459 | 456 | An unnecessarily tiny implementation of GPT-2 in NumPy. | [
"deep-learning",
"gpt",
"gpt-2",
"large-language-models",
"machine-learning",
"neural-network",
"nlp",
"python"
] | MIT | utils.py | utils.py | 2,745 | import json
import os
import re
import numpy as np
import requests
import tensorflow as tf
from tqdm import tqdm
from encoder import get_encoder
def download_gpt2_files(model_size, model_dir):
assert model_size in ["124M", "355M", "774M", "1558M"]
for filename in [
"checkpoint",
"encoder.jso... | 214 | 2,745 | 83 | 0.98 | 2026-04-17T17:46:30.252312 | true |
github_ChatGPTNextWeb_NextChat_6237e11b323156d436824dcf054b58f143456bc5 | 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/ar.ts | ar.ts | 22,912 | import { SubmitKey } from "../store/config";
import type { PartialLocaleType } from "./index";
import { getClientConfig } from "../config/client";
import { SAAS_CHAT_UTM_URL } from "@/app/constant";
const isApp = !!getClientConfig()?.isApp;
const ar: PartialLocaleType = {
WIP: "قريبًا...",
Error: {
Unauthorize... | 2,031 | 17,213 | 592 | 0.98 | 2026-04-23T08:58:09.515771 | true |
github_devtron-labs_devtron_edcbabdca91457ae0aa04c507dd19a5145eaf37f | Go | devtron-labs | devtron | 5,455 | 569 | The only Kubernetes dashboard you need | [
"aks",
"appops",
"argocd",
"continuous-deployment",
"dashboard",
"deployment",
"deployment-automation",
"deployment-pipeline",
"deployment-strategy",
"devtron",
"eks",
"gitops",
"gke",
"hacktoberfest",
"kubectl",
"kubernetes",
"kubernetes-dashboard",
"kubernetes-deployment",
"rel... | Apache-2.0 | api/argoApplication/ArgoApplicationRestHandler.go | ArgoApplicationRestHandler.go | 4,288 | /*
* Copyright (c) 2024. Devtron 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 agre... | 405 | 4,288 | 119 | 0.98 | 2026-04-17T21:25:27.309912 | true |
github_SeaQL_sea-orm_4f9ed8a2c454fc13e729656adab6ef852df7fd40 | Rust | SeaQL | sea-orm | 9,543 | 693 | 🐚 A powerful relational ORM for Rust | [
"database",
"hacktoberfest",
"loco",
"mariadb",
"mysql",
"orm",
"postgres",
"rust",
"sql",
"sqlite",
"sqlx",
"tokio"
] | Apache-2.0 | src/executor/cursor.rs | cursor.rs | 89,011 | use crate::{
ConnectionTrait, DbErr, EntityTrait, FromQueryResult, Identity, IdentityOf, IntoIdentity,
PartialModelTrait, PrimaryKeyToColumn, QuerySelect, Select, SelectModel, SelectThree,
SelectThreeModel, SelectTwo, SelectTwoModel, SelectorTrait, Topology,
};
use sea_query::{
Condition, DynIden, Expr,... | 6,626 | 89,011 | 2,488 | 0.98 | 2026-04-17T14:27:18.755207 | true |
github_apocas_dockerode_f80c7f3f867241a7cf069a03287d0af6636150a9 | JavaScript | apocas | dockerode | 4,874 | 487 | Docker + Node = Dockerode (Node.js module for Docker's Remote API) | [
"docker",
"javascript",
"moby",
"node",
"nodejs"
] | Apache-2.0 | lib/network.js | network.js | 3,895 | var util = require('./util');
/**
* Represents an network
* @param {Object} modem docker-modem
* @param {String} id Network's id
*/
var Network = function(modem, id) {
this.modem = modem;
this.id = id;
};
Network.prototype[require('util').inspect.custom] = function() { return this; };
/**
* Inspect
* @par... | 446 | 3,895 | 172 | 0.98 | 2026-04-23T07:32:33.084989 | true |
github_existence-master_Sentient_8bebedca845995c8e31ad61046ca2c7665bdc583 | 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/middleware.js | middleware.js | 1,471 | import { NextResponse } from "next/server"
import { auth0 } from "./lib/auth0"
export async function middleware(request) {
// Redirect the root path to the chat page
if (request.nextUrl.pathname === "/") {
const { origin } = new URL(request.url)
return NextResponse.redirect(`${origin}/chat`)
}
if (process.env... | 183 | 1,467 | 48 | 0.98 | 2026-04-23T03:57:11.312378 | true |
github_BrainJS_brain.js_41c13cc629608871627d301deefa747579029968 | 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/gru.ts | gru.ts | 1,971 | import { add } from './add';
import { negative } from './negative';
import { multiply } from './multiply';
import { multiplyElement } from './multiply-element';
import { ones } from './ones';
import { sigmoid } from './sigmoid';
import { random } from './random';
import { tanh } from './tanh';
import { zeros } from './... | 224 | 1,971 | 71 | 0.98 | 2026-04-17T17:55:59.849820 | true |
github_TransformerOptimus_SuperAGI_a030a8dcc3ff02720f8de63a1c3038241400e2ee | Python | TransformerOptimus | SuperAGI | 17,474 | 2,206 | <⚡️> SuperAGI - A dev-first open source autonomous AI agent framework. Enabling developers to build, manage & run useful autonomous agents quickly and reliably. | [
"agents",
"agi",
"ai",
"artificial-general-intelligence",
"artificial-intelligence",
"autonomous-agents",
"gpt-4",
"hacktoberfest",
"llm",
"llmops",
"nextjs",
"openai",
"pinecone",
"python",
"superagi"
] | MIT | ui.py | ui.py | 2,083 | import os
import sys
import subprocess
from time import sleep
import shutil
from sys import platform
from superagi.lib.logger import logger
def check_command(command, message):
if not shutil.which(command):
logger.info(message)
sys.exit(1)
def run_npm_commands(shell=False):
os.... | 166 | 2,083 | 62 | 0.98 | 2026-04-22T15:03:20.359119 | true |
github_mpatacchiola_dissecting-reinforcement-learning_4f065d40af0c503e731b0c9566a19214cc5cdd03 | 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_control_qlearning.py | temporal_differencing_control_qlearning.py | 9,480 | #!/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... | 1,011 | 9,480 | 231 | 0.98 | 2026-04-22T20:43:09.079523 | true |
github_directus_directus_f75e3e24c33a6487988d0974c1647f2ad7aa9ed5 | TypeScript | directus | directus | 34,882 | 4,723 | The flexible backend for all your projects 🐰 Turn your DB into a headless CMS, admin panels, or apps with a custom UI, instant APIs, auth & more. | [
"api",
"app",
"cms",
"composable",
"data-visualization",
"database",
"directus",
"graphql",
"headless-cms",
"javascript",
"mariadb",
"mssql",
"mysql",
"no-code",
"node",
"postgresql",
"sql",
"sqlite",
"typescript",
"vue"
] | NOASSERTION | api/src/app.test.ts | app.test.ts | 6,279 | import http from 'node:http';
import type { AddressInfo } from 'node:net';
import { useEnv } from '@directus/env';
import { Router } from 'express';
import { afterEach, beforeEach, describe, expect, test, vi } from 'vitest';
import createApp from './app.js';
vi.mock('./database', () => ({
default: vi.fn(),
getDataba... | 665 | 6,279 | 231 | 0.98 | 2026-04-23T07:57:55.273311 | true |
github_HuolalaTech_page-spy-web_2d974b06e78ba5c43d1cb83a07e71a41199d722f | TypeScript | HuolalaTech | page-spy-web | 5,589 | 347 | A remote debugging platform you'll definitely find useful. Lightweight, cross-platform, out-of-box debugging tool | [
"console",
"debugger",
"devtools",
"remote-control"
] | MIT | src/apis/request.ts | request.ts | 2,172 | import { resolveProtocol } from '@/utils';
import { InvokeParams, request } from '@huolala-tech/request';
import { RequestFailed } from './RequestFailed';
export const API_BASE_URL =
import.meta.env.VITE_API_BASE || window.DEPLOY_BASE_PATH;
export const TOKEN_KEY = 'page-spy-auth-token';
export const getAuthToken =... | 251 | 2,172 | 88 | 0.98 | 2026-04-18T00:23:57.847749 | true |
github_hyperledger-solang_solang_65871d260e2d74d1fb265c67ba87a2fd80167db3 | Rust | hyperledger-solang | solang | 1,376 | 257 | Solidity Compiler for Solana, Polkadot and Stellar | [
"blockchain",
"bpf",
"compiler",
"polkadot",
"rust",
"smart-contracts",
"solana",
"solidity",
"soroban",
"stellar",
"substrate",
"wasm"
] | Apache-2.0 | src/codegen/polkadot.rs | polkadot.rs | 4,928 | // SPDX-License-Identifier: Apache-2.0
//! Contains `codegen` helpers for the Polkadot target.
use solang_parser::pt::Loc;
use crate::{
codegen::{
cfg::{ControlFlowGraph, Instr},
revert::log_runtime_error,
vartable::Vartable,
Expression, Options,
},
sema::ast::{Namespace, ... | 470 | 4,928 | 177 | 0.98 | 2026-04-17T17:06:31.447563 | true |
github_fission_fission_84aca6eb62dcea495525b778124bb679f938718c | Go | fission | fission | 8,852 | 789 | Fast and Simple Serverless Functions for Kubernetes | [
"cloud-native",
"containers",
"devops",
"docker",
"faas",
"fission",
"functions",
"functions-as-a-service",
"go",
"hacktoberfest",
"kubernetes",
"lambda",
"serverless",
"serverless-functions"
] | Apache-2.0 | pkg/storagesvc/storage_test.go | storage_test.go | 1,694 | package storagesvc
import (
"os"
"reflect"
"testing"
)
func TestNewS3Storage(t *testing.T) {
input := map[string]string{
"bucketName": "tmpBucket",
"subDir": "a/b/c",
"accessKeyID": "tmpAccessKeyID",
"secretAccessKey": "tmpSecretAccessKey",
"region": "ap-south-1",
}
os.Sete... | 153 | 1,694 | 56 | 0.98 | 2026-04-17T20:18:09.906248 | true |
github_jesseduffield_lazydocker_99c6580706021701b971f7d6ab4f44bf9477854e | Go | jesseduffield | lazydocker | 50,674 | 1,602 | The lazier way to manage everything docker | [] | MIT | pkg/gui/menu_panel.go | menu_panel.go | 3,512 | package gui
import (
"github.com/jesseduffield/lazydocker/pkg/gui/panels"
"github.com/jesseduffield/lazydocker/pkg/gui/presentation"
"github.com/jesseduffield/lazydocker/pkg/gui/types"
"github.com/jesseduffield/lazydocker/pkg/utils"
)
type CreateMenuOptions struct {
Title string
Items []*types.MenuIte... | 405 | 3,508 | 134 | 0.98 | 2026-04-17T07:22:12.184036 | true |
github_redox-os_redox_9c989215c3adc45b02c40b9c6856e8534a14812d | Rust | redox-os | redox | 16,234 | 994 | Mirror of https://gitlab.redox-os.org/redox-os/redox | [
"bsd",
"freebsd",
"gnu",
"gnu-hurd",
"linux",
"microkernel",
"minix",
"open-source",
"openbsd",
"operating-system",
"plan9",
"posix",
"redox",
"rust",
"sel4"
] | MIT | src/cook.rs | cook.rs | 175 | // avoid confusion with build.rs
pub mod cook_build;
pub mod fetch;
pub mod fetch_repo;
pub mod fs;
pub mod ident;
pub mod package;
pub mod pty;
pub mod script;
pub mod tree;
| 32 | 175 | 11 | 0.98 | 2026-04-17T13:50:45.113998 | true |
github_vercel_next.js_bef3c86d639690e39ba264b071ac164b3010a47d | JavaScript | vercel | next.js | 139,094 | 30,951 | The React Framework | [
"blog",
"browser",
"compiler",
"components",
"hybrid",
"nextjs",
"node",
"react",
"server-rendering",
"ssg",
"static",
"static-site-generator",
"universal",
"vercel"
] | MIT | jest.config.js | jest.config.js | 3,176 | const nextJest = require('next/jest')
const createJestConfig = nextJest()
// Any custom config you want to pass to Jest
/** @type {import('jest').Config} */
const customJestConfig = {
displayName: process.env.IS_WEBPACK_TEST ? 'webpack' : 'Turbopack',
testMatch: ['**/*.test.js', '**/*.test.ts', '**/*.test.jsx', '... | 263 | 3,176 | 85 | 0.98 | 2026-04-23T04:44:55.434408 | true |
github_stoplightio_elements_688a6e7aabb47e81d001785c7ee09e0433fe46a6 | JavaScript | stoplightio | elements | 2,397 | 259 | Build beautiful, interactive API Docs with embeddable React or Web Components, powered by OpenAPI and Markdown. | [
"api",
"api-documentation",
"gatsby",
"hacktoberfest",
"openapi",
"openapi3",
"openapi3-1",
"react",
"stoplight-elements",
"stoplight-oss",
"swagger-oss"
] | Apache-2.0 | .eslintrc.js | .eslintrc.js | 340 | module.exports = {
extends: ['@stoplight', 'plugin:storybook/recommended'],
rules: {
'no-console': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'no-restricted-imports': [
'error',
{
patterns: ['lodash/*', '@fortawesome/free-solid-svg-icons/*'],
... | 25 | 340 | 15 | 0.98 | 2026-04-17T18:07:51.143585 | true |
github_ultraworkers_claw-code_9dab9997460c3df7b97e3c95ce43d74c3e7c74ad | 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/remote_runtime.py | remote_runtime.py | 753 | from __future__ import annotations
from dataclasses import dataclass
@dataclass(frozen=True)
class RuntimeModeReport:
mode: str
connected: bool
detail: str
def as_text(self) -> str:
return f'mode={self.mode}\nconnected={self.connected}\ndetail={self.detail}'
def run_remote_mode(target: str... | 65 | 753 | 26 | 0.98 | 2026-04-17T13:13:21.126260 | true |
github_adambielski_siamese-triplet_630935daad41911ede179618cd0f76ac6cce7a66 | Python | adambielski | siamese-triplet | 3,169 | 633 | Siamese and triplet networks with online pair/triplet mining in PyTorch | [
"contrastive-loss",
"deep-learning",
"embedding",
"learning-embeddings",
"machine-learning",
"pytorch",
"siamese-network",
"triplet-loss",
"triplet-network"
] | BSD-3-Clause | losses.py | losses.py | 3,432 | import torch
import torch.nn as nn
import torch.nn.functional as F
class ContrastiveLoss(nn.Module):
"""
Contrastive loss
Takes embeddings of two samples and a target label == 1 if samples are from the same class and label == 0 otherwise
"""
def __init__(self, margin):
super(ContrastiveLo... | 321 | 3,432 | 92 | 0.98 | 2026-04-17T17:49:35.450663 | true |
github_strapi_strapi_94192d4aaefa6ed23213c7ebbdc5d224750751e4 | JavaScript | strapi | strapi | 71,921 | 9,657 | 🚀 Strapi is the leading open-source headless CMS. It’s 100% JavaScript/TypeScript, fully customizable, and developer-first. | [
"api",
"cms",
"cms-framework",
"content-management",
"content-management-system",
"customizable",
"dashboard",
"graphql",
"hacktoberfest",
"headless-cms",
"jamstack",
"javascript",
"koa",
"koa2",
"mysql",
"no-code",
"nodejs",
"rest",
"strapi",
"typescript"
] | NOASSERTION | lint-staged.config.js | lint-staged.config.js | 1,152 | 'use strict';
const path = require('path');
const fs = require('fs');
const findUp = require('find-up');
const includes = ['packages', '.github'];
const root = path.resolve(__dirname);
function extractPackageName(pkgJsonPath) {
return JSON.parse(fs.readFileSync(pkgJsonPath).toString()).name;
}
function getLintCo... | 117 | 1,152 | 51 | 0.98 | 2026-04-17T17:53:23.881065 | true |
github_LaurentMazare_tch-rs_9343462d7e49adab18979ebec8343eafaf00898a | Rust | LaurentMazare | tch-rs | 5,352 | 419 | Rust bindings for the C++ api of PyTorch. | [
"deep-learning",
"machine-learning",
"neural-network",
"pytorch",
"rust"
] | Apache-2.0 | src/nn/mod.rs | mod.rs | 1,362 | //! A small neural-network library based on Torch.
//!
//! This library tries to stay as close as possible to the original
//! Python and C++ implementations.
pub mod init;
pub use init::{f_init, init, Init};
mod var_store;
pub use var_store::{Path, VarStore, Variables};
mod module;
pub use module::{Module, ModuleT};... | 179 | 1,362 | 70 | 0.98 | 2026-04-17T15:04:03.750643 | true |
github_strands-agents_sdk-python_019b9cde476891e7a9407c3f3761e8ca938b2521 | Python | strands-agents | sdk-python | 5,650 | 788 | A model-driven approach to building AI agents in just a few lines of code. | [
"agentic",
"agentic-ai",
"agents",
"ai",
"anthropic",
"autonomous-agents",
"bedrock",
"genai",
"litellm",
"llama",
"llm",
"machine-learning",
"mcp",
"multi-agent-systems",
"ollama",
"openai",
"opentelemetry",
"python",
"strands-agents"
] | Apache-2.0 | src/strands/_exception_notes.py | _exception_notes.py | 926 | """Exception note utilities for Python 3.10+ compatibility."""
# add_note was added in 3.11 - we hoist to a constant to facilitate testing
supports_add_note = hasattr(Exception, "add_note")
def add_exception_note(exception: Exception, note: str) -> None:
"""Add a note to an exception, compatible with Python 3.10... | 115 | 926 | 22 | 0.98 | 2026-04-17T15:44:42.155334 | true |
github_PrefectHQ_prefect_dd4c51850f4c046f4359454937d756ef30114dcf | Python | PrefectHQ | prefect | 22,192 | 2,267 | Prefect is a workflow orchestration framework for building resilient data pipelines in Python. | [
"automation",
"data",
"data-engineering",
"data-ops",
"data-science",
"infrastructure",
"ml-ops",
"observability",
"orchestration",
"pipeline",
"prefect",
"python",
"workflow",
"workflow-engine"
] | Apache-2.0 | src/prefect/serializers.py | serializers.py | 10,852 | """
Serializer implementations for converting objects to bytes and bytes to objects.
All serializers are based on the `Serializer` class and include a `type` string that
allows them to be referenced without referencing the actual class. For example, you
can get often specify the `JSONSerializer` with the string "json"... | 991 | 10,852 | 307 | 0.98 | 2026-04-17T16:38:02.039772 | true |
github_PyO3_pyo3_6b6af15063cbdfbc439e9f6c633326cd09056eb3 | Rust | PyO3 | pyo3 | 15,582 | 958 | Rust bindings for the Python interpreter | [
"binding",
"ffi",
"python",
"python-c-api",
"rust"
] | Apache-2.0 | src/types/bytes.rs | bytes.rs | 15,346 | use crate::byteswriter::PyBytesWriter;
use crate::ffi_ptr_ext::FfiPtrExt;
use crate::instance::{Borrowed, Bound};
use crate::{ffi, Py, PyAny, PyResult, Python};
use std::io::Write;
use std::ops::Index;
use std::slice::SliceIndex;
use std::str;
/// Represents a Python `bytes` object.
///
/// This type is immutable.
///... | 1,761 | 15,346 | 468 | 0.98 | 2026-04-17T13:52:43.377720 | true |
github_kubernetes-sigs_external-dns_99fdeaee09b38aa812e1d5c425d632ff4483a872 | 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/ingress.go | ingress.go | 11,731 | /*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, ... | 1,129 | 11,731 | 336 | 0.98 | 2026-04-17T20:17:12.964112 | true |
github_bentoml_OpenLLM_877a9ed9688311ae74a626261f6f128bc30daf16 | Python | bentoml | OpenLLM | 12,281 | 805 | Run any open-source LLMs, such as DeepSeek and Llama, as OpenAI compatible API endpoint in the cloud. | [
"bentoml",
"fine-tuning",
"llama",
"llama2",
"llama3-1",
"llama3-2",
"llama3-2-vision",
"llm",
"llm-inference",
"llm-ops",
"llm-serving",
"llmops",
"mistral",
"mlops",
"model-inference",
"open-source-llm",
"openllm",
"vicuna"
] | Apache-2.0 | src/openllm/analytic.py | analytic.py | 3,539 | from __future__ import annotations
import functools, os, re, time, typing, abc
import attr, click, typer, typer.core
DO_NOT_TRACK = 'BENTOML_DO_NOT_TRACK'
class EventMeta(abc.ABC):
@property
def event_name(self) -> str:
# camel case to snake case
event_name = re.sub(r'(?<!^)(?=[A-Z])', '_', self.__class... | 283 | 3,539 | 106 | 0.98 | 2026-04-22T15:06:19.631575 | true |
github_ChromeDevTools_chrome-devtools-mcp_67281b029e79bb6957149f5e7daff275ae5ef929 | TypeScript | ChromeDevTools | chrome-devtools-mcp | 36,793 | 2,272 | Chrome DevTools for coding agents | [
"browser",
"chrome",
"chrome-devtools",
"debugging",
"devtools",
"mcp",
"mcp-server",
"puppeteer"
] | Apache-2.0 | src/tools/memory.ts | memory.ts | 2,792 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {zod} from '../third_party/index.js';
import {ensureExtension} from '../utils/files.js';
import {ToolCategory} from './categories.js';
import {definePageTool, defineTool} from './ToolDefinition.js';
export const takeMemory... | 265 | 2,792 | 91 | 0.98 | 2026-04-23T08:42:47.773354 | true |
github_ccfddl_ccf-deadlines_52bac30489bf5741f4a33a21e1f05610a310c230 | Rust | ccfddl | ccf-deadlines | 8,898 | 590 | ⏰ Agenticly track worldwide conference deadlines (Website, Python Cli, Wechat Applet) | [
"artificial-intelligence",
"blockchain-technology",
"ccf-rankings",
"computer-systems",
"conf-deadline",
"data-management",
"deadline",
"networked-systems",
"security-systems",
"social-computing",
"software-engineering"
] | MIT | src/components/subscription_modal.rs | subscription_modal.rs | 29,243 | use leptos::prelude::*;
use std::collections::HashSet;
use thaw::*;
use wasm_bindgen::prelude::*;
use web_sys::js_sys;
use web_sys::window;
#[derive(Clone, Debug, PartialEq)]
pub struct SubscriptionLink {
pub url: String,
pub description: String,
}
pub type IcsSubscription = SubscriptionLink;
fn sanitize_fil... | 1,810 | 28,530 | 642 | 0.98 | 2026-04-17T14:29:38.132820 | true |
github_evolus_pencil_74f09654403d994537502e3db342991c87758f24 | JavaScript | evolus | pencil | 9,740 | 785 | The Pencil Project's unique mission is to build a free and opensource tool for making diagrams and GUI prototyping that everyone can use. | [
"drawing",
"electron",
"javascript",
"mockup",
"nodejs",
"pencil",
"prototyping",
"sketching",
"ui-design",
"wireframe"
] | GPL-2.0 | app/archive/mainWindow.js | mainWindow.js | 9,161 | Pencil.buildRecentFileMenu = function (files) {
var menu = document.getElementById("recentDocumentMenu");
Dom.empty(menu);
if (!files) {
files = Config.get("recent-documents");
if (!files) {
menu.setAttribute("disabled", true);
return;
}
}
menu.remove... | 679 | 9,159 | 243 | 0.98 | 2026-04-23T07:02:35.056963 | true |
github_pathwaycom_pathway_ff01860ddc908e07d85354aa19299c09e02f1457 | 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/value.rs | value.rs | 19,967 | // Copyright © 2026 Pathway
#![allow(clippy::non_canonical_partial_ord_impl)] // False positive with Derivative
use std::fmt::{self, Debug, Display};
use std::mem::{align_of, size_of};
use std::ops::Deref;
use std::sync::Arc;
use super::error::{DataError, DynError, DynResult};
use super::time::{DateTime, DateTimeNai... | 1,988 | 19,966 | 786 | 0.98 | 2026-04-23T04:40:42.292605 | true |
github_Data-Centric-AI-Community_data-profiling_51ae906dd158d8d1cd069adec6537f7c2abbd852 | Python | Data-Centric-AI-Community | data-profiling | 13,513 | 1,781 | 1 Line of code data quality profiling & exploratory data analysis for Pandas and Spark DataFrames. | [
"big-data-analytics",
"data-analysis",
"data-exploration",
"data-profiling",
"data-quality",
"data-science",
"deep-learning",
"eda",
"exploration",
"exploratory-data-analysis",
"hacktoberfest",
"html-report",
"jupyter",
"jupyter-notebook",
"machine-learning",
"pandas",
"pandas-datafr... | MIT | src/data_profiling/compare_reports.py | compare_reports.py | 13,003 | import json
import warnings
from dataclasses import asdict
from typing import Any, List, Optional, Tuple, Union
import pandas as pd
from dacite import from_dict
from data_profiling.config import Correlation, Settings
from data_profiling.model import BaseDescription
from data_profiling.model.alerts import Alert
from d... | 1,362 | 13,003 | 360 | 0.98 | 2026-04-17T06:47:21.026128 | true |
github_cri-o_cri-o_2e247df7895cc0676460be967c839e17cc59b8f6 | 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/lib/checkpoint.go | checkpoint.go | 11,740 | package lib
import (
"context"
"fmt"
"io"
"os"
"path/filepath"
"time"
metadata "github.com/checkpoint-restore/checkpointctl/lib"
"github.com/checkpoint-restore/go-criu/v8/stats"
rspec "github.com/opencontainers/runtime-spec/specs-go"
"github.com/opencontainers/runtime-tools/generate"
"go.podman.io/common/p... | 1,450 | 11,740 | 390 | 0.98 | 2026-04-17T21:23:29.234970 | true |
github_Automattic_mongoose_5ebe7bb029ba63b83b5f74e870434d1b677d3a5f | JavaScript | Automattic | mongoose | 27,471 | 3,979 | MongoDB object modeling designed to work in an asynchronous environment. | [
"mongo",
"mongodb",
"nodejs",
"odm",
"orm"
] | MIT | lib/helpers/getConstructorName.js | getConstructorName.js | 334 | 'use strict';
/**
* If `val` is an object, returns constructor name, if possible. Otherwise returns undefined.
* @api private
*/
module.exports = function getConstructorName(val) {
if (val == null) {
return void 0;
}
if (typeof val.constructor !== 'function') {
return void 0;
}
return val.constru... | 48 | 334 | 17 | 0.98 | 2026-04-23T06:42:25.739080 | true |
github_karanhudia_borg-ui_751203d0cd7d7aac2308fe59c44520fafe741f3a | Python | karanhudia | borg-ui | 1,408 | 41 | Replace complex Borg Backup terminal commands with a beautiful web UI. Create, schedule, and restore backups with just a few clicks. | [
"automation",
"back",
"borg",
"borg-backup",
"borgbackup",
"borgbase",
"deduplication",
"docker",
"raspber",
"sbc",
"self-hosted",
"webapp"
] | AGPL-3.0 | app/api/archive_download.py | archive_download.py | 1,708 | import os
import shutil
import tempfile
from typing import Awaitable, Callable
from fastapi import HTTPException, status
from fastapi.responses import FileResponse
from starlette.background import BackgroundTask
async def extract_file_download(
file_path: str,
extract: Callable[[str], Awaitable[dict]],
t... | 115 | 1,708 | 47 | 0.98 | 2026-04-23T03:46:31.476913 | true |
github_vercel_pkg_e3ca60468e8a88bd754a5bd560fcdd2dc44529a2 | TypeScript | vercel | pkg | 24,392 | 1,065 | Package your Node.js project into an executable | [
"binaries",
"cli",
"compiler",
"nodejs"
] | MIT | lib/detector.ts | detector.ts | 10,653 | import * as babelTypes from '@babel/types';
import * as babel from '@babel/parser';
import generate from '@babel/generator';
import { log } from './log';
import { ALIAS_AS_RELATIVE, ALIAS_AS_RESOLVABLE } from './common';
function isLiteral(node: babelTypes.Node): node is babelTypes.Literal {
if (node == null) {
... | 1,190 | 10,653 | 520 | 0.98 | 2026-04-23T06:43:01.843352 | true |
github_pubkey_rxdb_b92a6c3f5f538cfb966b3bfe6a2c48be8cfd5348 | 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/rx-document.ts | rx-document.ts | 19,528 | import {
Observable,
defer
} from 'rxjs';
import {
distinctUntilChanged,
filter,
map,
shareReplay,
startWith
} from 'rxjs/operators';
import {
clone,
trimDots,
pluginMissing,
flatClone,
deepEqual,
PROMISE_RESOLVE_NULL,
RXJS_SHARE_REPLAY_DEFAULTS,
getProperty,
... | 1,664 | 19,528 | 593 | 0.98 | 2026-04-18T01:24:06.145475 | true |
github_ChatGPTNextWeb_NextChat_a9879ecedebd371ca49b694d526b874422ed0d72 | TypeScript | ChatGPTNextWeb | NextChat | 87,769 | 59,807 | ✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows | [
"calclaude",
"chatgpt",
"claude",
"cross-platform",
"desktop",
"fe",
"gemini",
"gemini-pro",
"gemini-server",
"gemini-ultra",
"gpt-4o",
"groq",
"nextjs",
"ollama",
"react",
"tauri",
"tauri-app",
"vercel",
"webui"
] | MIT | app/api/deepseek.ts | deepseek.ts | 3,207 | import { getServerSideConfig } from "@/app/config/server";
import {
DEEPSEEK_BASE_URL,
ApiPath,
ModelProvider,
ServiceProvider,
} from "@/app/constant";
import { prettyObject } from "@/app/utils/format";
import { NextRequest, NextResponse } from "next/server";
import { auth } from "@/app/api/auth";
import { isM... | 343 | 3,207 | 129 | 0.98 | 2026-04-23T08:58:01.606807 | true |
github_bootstrap-vue_bootstrap-vue_2ca8c03629ef973ed5b9a648638bc0a2a5ee3a7c | JavaScript | bootstrap-vue | bootstrap-vue | 14,460 | 1,857 | MOVED to https://github.com/bootstrap-vue-next/bootstrap-vue-next | [
"a11y",
"accessibility",
"accessible",
"bootstrap",
"bootstrapvue",
"component-library",
"components",
"icons",
"nuxt",
"nuxtjs",
"vue",
"wai-aria"
] | MIT | src/mixins/form-radio-check-group.js | form-radio-check-group.js | 4,833 | import { extend } from '../vue'
import { PROP_TYPE_BOOLEAN, PROP_TYPE_BOOLEAN_STRING, PROP_TYPE_STRING } from '../constants/props'
import { SLOT_NAME_FIRST } from '../constants/slots'
import { htmlOrText } from '../utils/html'
import { looseEqual } from '../utils/loose-equal'
import { makeModelMixin } from '../utils/mo... | 493 | 4,833 | 163 | 0.98 | 2026-04-23T11:49:18.243694 | true |
github_tidwall_tile38_b173da1f175db3801d14d1258e0f6102fcc9a3b2 | Go | tidwall | tile38 | 9,619 | 610 | Real-time Geospatial and Geofencing | [
"database",
"geo",
"geofences",
"geospatial",
"index",
"location",
"spatial"
] | MIT | internal/clip/linestring.go | linestring.go | 1,091 | package clip
import (
"github.com/tidwall/geojson"
"github.com/tidwall/geojson/geometry"
)
func clipLineString(
lineString *geojson.LineString, clipper geojson.Object,
opts *geometry.IndexOptions,
) geojson.Object {
bbox := clipper.Rect()
var newPoints [][]geometry.Point
var clipped geometry.Segment
var rejec... | 128 | 1,091 | 45 | 0.98 | 2026-04-17T18:09:47.710574 | true |
github_claudiajs_claudia_8bba972ad5e047b11eda05a7cefd1140ad1ad00f | 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/commands/add-kinesis-event-source.js | add-kinesis-event-source.js | 4,638 | const loadConfig = require('../util/loadconfig'),
isRoleArn = require('../util/is-role-arn'),
isKinesisArn = require('../util/is-kinesis-arn'),
retry = require('oh-no-i-insist'),
aws = require('aws-sdk');
module.exports = function addKinesisEventSource(options, logger) {
'use strict';
let lambdaConfig,
lambda,... | 456 | 4,638 | 157 | 0.98 | 2026-04-23T07:43:40.971298 | true |
github_ssbc_patchwork_97f6f3920ee41d91f31185e1684e1b300989f7a5 | JavaScript | ssbc | patchwork | 3,571 | 333 | A decentralized messaging and sharing app built on top of Secure Scuttlebutt (SSB). | [
"decentralized",
"decentralized-messaging",
"electron",
"javascript",
"linux",
"macos",
"nodejs",
"off-grid",
"offline",
"p2p",
"scuttlebutt",
"server",
"social",
"social-network",
"ssb",
"windows"
] | AGPL-3.0 | lib/app/views.js | views.js | 3,023 | const { h, Value, Dict, dictToCollection, map, computed, resolve, watch } = require('mutant')
module.exports = function (renderPage, defaultViews) {
const views = Dict({})
const forwardHistory = []
const backHistory = []
// if defaultViews changes, load them!
watch(defaultViews, (defaultViews) => {
if ... | 300 | 3,023 | 131 | 0.98 | 2026-04-23T07:48:49.612035 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.