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_SociallyIneptWeeb_AICoverGen_0df2477e4c465eb234bde7501127d2ce2b53f56e | Python | SociallyIneptWeeb | AICoverGen | 1,409 | 351 | A WebUI to create song covers with any RVC v2 trained AI voice from YouTube videos or audio files. | [
"ai",
"rvc",
"song-covers",
"uvr",
"webui"
] | MIT | src/download_models.py | download_models.py | 1,129 | from pathlib import Path
import requests
MDX_DOWNLOAD_LINK = 'https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/'
RVC_DOWNLOAD_LINK = 'https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/'
BASE_DIR = Path(__file__).resolve().parent.parent
mdxnet_models_dir = BASE_DIR / 'mdxnet_m... | 80 | 1,129 | 32 | 0.98 | 2026-04-22T17:58:57.000452 | true |
github_imsnif_diskonaut_2aa033e41907b366a3b84faacee1350105fc07ff | Rust | imsnif | diskonaut | 3,031 | 90 | Terminal disk space navigator 🔭 | [
"cli",
"disk-space",
"navigator",
"terminal",
"visualization"
] | MIT | src/state/ui_effects.rs | ui_effects.rs | 733 | use ::std::path::PathBuf;
pub struct UiEffects {
pub flash_space_freed: bool,
pub current_path_is_red: bool,
pub deletion_in_progress: bool,
pub loading_progress_indicator: u64,
pub last_read_path: Option<PathBuf>,
}
impl UiEffects {
pub fn new() -> Self {
Self {
flash_spac... | 69 | 733 | 27 | 0.98 | 2026-04-17T19:18:59.299335 | true |
github_ChatGPTNextWeb_NextChat_b3e5e7b7b9309be2357a4c2b529495207740fbe1 | 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/proxy.ts | proxy.ts | 2,766 | import { NextRequest, NextResponse } from "next/server";
import { getServerSideConfig } from "@/app/config/server";
export async function handle(
req: NextRequest,
{ params }: { params: { path: string[] } },
) {
console.log("[Proxy Route] params ", params);
if (req.method === "OPTIONS") {
return NextRespo... | 296 | 2,766 | 90 | 0.98 | 2026-04-23T08:58:04.438767 | true |
github_microsoft_ToRA_95010bb57203aad687eb9c0e975acbdc89bba487 | Python | microsoft | ToRA | 1,116 | 79 | ToRA is a series of Tool-integrated Reasoning LLM Agents designed to solve challenging mathematical reasoning problems by interacting with tools [ICLR'24]. | [
"autonomous-agents",
"language-model",
"llm",
"mathematical-reasoning",
"tool-learning"
] | MIT | src/utils/data_loader.py | data_loader.py | 3,409 | import os
import json
import random
from datasets import load_dataset, Dataset, concatenate_datasets
from utils.utils import load_jsonl, lower_keys
def load_data(data_name, split, data_dir='./data'):
data_file = f"{data_dir}/{data_name}/{split}.jsonl"
if os.path.exists(data_file):
examples = list(load_... | 259 | 3,409 | 71 | 0.98 | 2026-04-22T16:50:58.406950 | true |
github_fission_fission_b0ee4e0c97abe78f274a56d9ad4feb955de7622b | 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/utils/backoff.go | backoff.go | 3,796 | package utils
import (
"fmt"
"time"
)
const (
DefaultInitialInterval = 500 * time.Millisecond
DefaultMultiplier = 1.5
DefaultMaxInterval = 300 * time.Second
DefaultMaxCount = 30
)
type backoff struct {
// InitialInterval is the first interval of backoff
InitialInterval time.Duration
// MaxIn... | 422 | 3,796 | 121 | 0.98 | 2026-04-17T20:18:14.557912 | true |
github_imsyy_DailyHotApi_7c898a4449b8f26afef23330efbd1f6eef449428 | TypeScript | imsyy | DailyHotApi | 3,749 | 1,256 | 🔥 今日热榜 API,一个聚合热门数据的 API 接口,支持 RSS 模式 及 Vercel 部署 | 前端页面:https://github.com/imsyy/DailyHot | [
"api",
"daily-hot",
"list",
"rss",
"vercel"
] | MIT | src/utils/getRSS.ts | getRSS.ts | 1,629 | import type { RouterData, ListItem } from "../types.ts";
import { Feed } from "feed";
import logger from "./logger.js";
// 生成 RSS
const getRSS = (data: RouterData) => {
try {
// 基本信息
const feed = new Feed({
title: data.title,
description: data.title + data.type + (data?.description ? " - " + data... | 158 | 1,598 | 63 | 0.98 | 2026-04-17T18:03:23.263700 | true |
github_TransformerOptimus_SuperAGI_216f95e02bb385309cd4451527d9be82e7961406 | 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 | cli2.py | cli2.py | 2,814 | import os
import sys
import subprocess
from time import sleep
import shutil
from sys import platform
from multiprocessing import Process
from superagi.lib.logger import logger
def check_command(command, message):
if not shutil.which(command):
logger.info(message)
sys.exit(1)
def ... | 217 | 2,814 | 74 | 0.98 | 2026-04-22T15:03:19.110293 | true |
github_tulios_kafkajs_48815ffe81a4edd6592522a07d677c5a0a1a483f | JavaScript | tulios | kafkajs | 3,994 | 584 | A modern Apache Kafka client for node.js | [
"kafka",
"kafka-client",
"nodejs",
"npm-package"
] | MIT | src/utils/sharedPromiseTo.js | sharedPromiseTo.js | 565 | /**
* @template T
* @param { (...args: any) => Promise<T> } [asyncFunction]
* Promise returning function that will only ever be invoked sequentially.
* @returns { (...args: any) => Promise<T> }
* Function that may invoke asyncFunction if there is not a currently executing invocation.
* Returns promise from the cu... | 85 | 565 | 19 | 0.98 | 2026-04-23T07:42:29.568706 | true |
github_okteto_okteto_acae06d6a3f52b2f3495f80373058b6e08280211 | Go | okteto | okteto | 3,500 | 318 | Develop your applications directly in your Kubernetes Cluster | [
"cloud-native",
"cloud-native-developers",
"debug",
"developer-tools",
"development",
"docker",
"hacktoberfest",
"helm",
"kubernetes",
"okteto"
] | Apache-2.0 | cmd/args/lister.go | lister.go | 1,815 | // Copyright 2024 The Okteto 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 ... | 217 | 1,815 | 65 | 0.98 | 2026-04-17T22:30:50.493865 | true |
github_krakend_krakend-ce_19cdd4648962be3a382da7a284dd99c4e4be8b8c | Go | krakend | krakend-ce | 2,598 | 491 | KrakenD Community Edition: High-performance, stateless, declarative, API Gateway written in Go. | [
"ai-gateway",
"api-gateway",
"apis",
"async",
"backend-services",
"cloud-native",
"docker",
"go",
"golang",
"graphql",
"microservice",
"microservices",
"nats",
"reverse-proxy"
] | Apache-2.0 | router_engine.go | router_engine.go | 2,638 | package krakend
import (
"encoding/json"
"github.com/gin-gonic/gin"
botdetector "github.com/krakend/krakend-botdetector/v2/gin"
httpsecure "github.com/krakend/krakend-httpsecure/v2/gin"
lua "github.com/krakend/krakend-lua/v2/router/gin"
opencensus "github.com/krakend/krakend-opencensus/v2/router/gin"
"github.... | 227 | 2,638 | 77 | 0.98 | 2026-04-18T00:59:33.694657 | true |
github_huggingface_transformers_704001c476a6d4d4397dbf22a2de6fa1ca00b1d7 | 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/image_processing_utils.py | image_processing_utils.py | 29,590 | # Copyright 2022 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 ... | 2,989 | 29,556 | 689 | 0.98 | 2026-04-22T13:17:56.332584 | true |
github_nodejs_node_1d793d719f5fbfafdf17dca0caa5ac04eeeddd41 | JavaScript | nodejs | node | 116,870 | 35,414 | Node.js JavaScript runtime ✨🐢🚀✨ | [
"javascript",
"js",
"linux",
"macos",
"mit",
"node",
"nodejs",
"runtime",
"windows"
] | NOASSERTION | lib/internal/freeze_intrinsics.js | freeze_intrinsics.js | 15,234 | // Adapted from SES/Caja - Copyright (C) 2011 Google Inc.
// Copyright (C) 2018 Agoric
// 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
//
//... | 1,408 | 15,234 | 548 | 0.98 | 2026-04-23T06:15:54.870637 | true |
github_SuperTails_langcraft_da5c056b86cb7ae714ee382dc3941f60a9b03ae9 | Rust | SuperTails | langcraft | 561 | 7 | Compiler from LLVM IR to Minecraft datapacks. | [
"compiler",
"llvm",
"minecraft"
] | Apache-2.0 | src/bin/main.rs | main.rs | 10,874 | use langcraft::interpreter::InterpError;
use langcraft::{Datapack, Interpreter, BuildOptions};
use std::path::PathBuf;
// TODO: Allow specifying breakpoints somehow
fn run_interpreter(interp: &mut Interpreter) -> Result<(), Box<dyn std::error::Error>> {
let mut hit_breakpoint = false;
let stdin = std::io::std... | 967 | 10,874 | 322 | 0.98 | 2026-04-17T17:10:12.941955 | true |
github_volcano-sh_volcano_804f4b5988a5dc65a737e404a1b8f5c12c9e8621 | Go | volcano-sh | volcano | 5,473 | 1,336 | A Cloud Native Batch System (Project under CNCF) | [
"ai",
"batch-systems",
"bigdata",
"gene",
"golang",
"hpc",
"kubernetes",
"machine-learning",
"serving",
"training"
] | Apache-2.0 | pkg/metriccollect/collectmgr.go | collectmgr.go | 1,761 | /*
Copyright 2024 The Volcano 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... | 189 | 1,761 | 59 | 0.98 | 2026-04-17T21:24:36.577299 | true |
github_Windy3f3f3f3f_claude-code-from-scratch_2a784f577e0b3ebeca6c7961a580e944f294cf83 | TypeScript | Windy3f3f3f3f | claude-code-from-scratch | 984 | 333 | Build your own Claude Code from scratch. 🔍 Claude Code 开源了 50 万行代码,读不动?用 ~4000 行 TypeScript / Python 从零复现核心架构,11 章分步教程带你理解 coding agent 精髓 | [
"ai",
"ai-agent",
"anthropic",
"build-from-scratch",
"claude",
"claude-code",
"coding-agent",
"llm",
"tutorial",
"typescript"
] | MIT | src/cli.ts | cli.ts | 11,805 | #!/usr/bin/env node
import * as readline from "readline";
import { Agent } from "./agent.js";
import { printWelcome, printUserPrompt, printError, printInfo, printPlanForApproval, printPlanApprovalOptions } from "./ui.js";
import { loadSession, getLatestSessionId } from "./session.js";
import { listMemories } from "./m... | 1,294 | 11,797 | 372 | 0.98 | 2026-04-22T17:00:40.479483 | true |
github_0xJacky_nginx-ui_3de8f143274637171ee255e309d5e9463de69e56 | Go | 0xJacky | nginx-ui | 11,044 | 805 | Yet another WebUI for Nginx | [
"chatgpt-app",
"code-completion",
"copilot",
"cron",
"deepseek-r1",
"docker",
"go",
"letsencrypt",
"linux",
"macos",
"mcp",
"mcp-server",
"nginx",
"self-hosted",
"vue",
"webui",
"windows"
] | AGPL-3.0 | api/api.go | api.go | 507 | package api
import (
"github.com/0xJacky/Nginx-UI/model"
"github.com/gin-gonic/gin"
)
func CurrentUser(c *gin.Context) *model.User {
return c.MustGet("user").(*model.User)
}
func SetSSEHeaders(c *gin.Context) {
c.Header("Content-Type", "text/event-stream")
c.Header("Cache-Control", "no-cache")
c.Header("Connec... | 30 | 507 | 19 | 0.98 | 2026-04-17T12:26:02.559472 | true |
github_pathwaycom_pathway_713a918c33ab26dc3749073cfe3dff46644a251d | 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/env.rs | env.rs | 1,136 | use std::env;
use std::error;
use std::str::FromStr;
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
#[error("couldn't parse the value of {0:?} environment variable as UTF-8 string")]
NotUtf8(String),
#[error("couldn't parse the value of {0:?} environment variable: {1}")]
Parsing... | 111 | 1,136 | 41 | 0.98 | 2026-04-23T04:40:42.873257 | true |
github_huggingface_transformers_9f9edb40eb51bf1907c9f575cdb4c9424ec967d5 | 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/dependency_versions_check.py | dependency_versions_check.py | 2,099 | # 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... | 263 | 2,099 | 63 | 0.98 | 2026-04-22T13:17:50.979051 | true |
github_akxcv_vuera_579a96ba08475177728a09453bc2235b7a646f86 | JavaScript | akxcv | vuera | 4,297 | 241 | :eyes: Vue in React, React in Vue. Seamless integration of the two. :dancers: | [
"babel-plugin",
"interop",
"migrate",
"react",
"seamless-integration",
"vue",
"vue-plugin"
] | MIT | src/resolvers/Vue.js | Vue.js | 502 | import { ReactWrapper } from '../'
export default function VueResolver (component) {
return {
components: { ReactWrapper },
props: ['passedProps'],
inheritAttrs: false,
render (createElement) {
return createElement(
'react-wrapper',
{
props: {
component,
... | 45 | 502 | 24 | 0.98 | 2026-04-23T12:02:21.499451 | true |
github_jdh-algo_JoyVASA_147a9aed0c7707fe6ae3d59ce1a30154ef75afcc | Python | jdh-algo | JoyVASA | 864 | 85 | Diffusion-based Portrait and Animal Animation | [
"audio-driven-talking-face",
"generative-ai",
"image-animation",
"lip-sync",
"portrait-anination",
"talking-head"
] | MIT | src/modules/spade_generator.py | spade_generator.py | 2,659 | # coding: utf-8
"""
Spade decoder(G) defined in the paper, which input the warped feature to generate the animated image.
"""
import torch
from torch import nn
import torch.nn.functional as F
from .util import SPADEResnetBlock
class SPADEDecoder(nn.Module):
def __init__(self, upscale=1, max_features=256, block_... | 265 | 2,659 | 59 | 0.98 | 2026-04-22T22:00:26.942477 | true |
github_wassim249_YT-Navigator_8bd2f54ae938391860a0b30b3e556d00dbd53cc4 | 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/views/profile.py | profile.py | 661 | """Views for the profile app."""
from django.contrib import messages
from django.contrib.auth.decorators import login_required
from django.shortcuts import (
redirect,
render,
)
@login_required
def profile_view(request):
"""Profile view."""
if request.method == "POST":
username = request.POST... | 55 | 661 | 27 | 0.98 | 2026-04-23T00:53:12.640509 | true |
github_grafana_pyroscope_e960eb3dfb9869ab2f1b040816aa44f4791533da | Go | grafana | pyroscope | 11,365 | 737 | Continuous Profiling Platform. Debug performance issues down to a single line of code | [
"continuous-profiling",
"developer-tools",
"devops",
"find-bottlenecks",
"golang",
"hacktoberfest",
"linux",
"monitoring",
"observability",
"performance",
"profiling",
"pyroscope",
"python",
"ruby"
] | AGPL-3.0 | pkg/block/compaction.go | compaction.go | 17,246 | package block
import (
"bytes"
"context"
"fmt"
"io"
"os"
"slices"
"sort"
"strings"
"sync"
"github.com/grafana/dskit/multierror"
"github.com/parquet-go/parquet-go"
"github.com/prometheus/common/model"
"github.com/prometheus/prometheus/storage"
"golang.org/x/sync/errgroup"
metastorev1 "github.com/grafan... | 1,926 | 17,246 | 684 | 0.98 | 2026-04-17T12:21:02.669950 | true |
github_rayon-rs_rayon_3e44dc5cdd281b456b737cfaaa6d34754a0914ca | Rust | rayon-rs | rayon | 12,878 | 584 | Rayon: A data parallelism library for Rust | [] | Apache-2.0 | src/iter/flat_map.rs | flat_map.rs | 3,826 | use super::plumbing::*;
use super::*;
use std::fmt::{self, Debug};
/// `FlatMap` maps each element to a parallel iterator, then flattens these iterators together.
/// This struct is created by the [`flat_map()`] method on [`ParallelIterator`]
///
/// [`flat_map()`]: ParallelIterator::flat_map()
#[must_use = "iterator... | 424 | 3,826 | 154 | 0.98 | 2026-04-17T14:16:44.744848 | true |
github_APIs-guru_graphql-voyager_b398ab9ea5404605958499da51b3222a08a200b6 | TypeScript | APIs-guru | graphql-voyager | 8,121 | 549 | 🛰️ Represent any GraphQL API as an interactive graph | [
"api-documentation",
"graphql",
"graphql-tools",
"graphviz",
"visualization"
] | MIT | src/utils/local-storage-lru-cache.ts | local-storage-lru-cache.ts | 1,471 | export class LocalStorageLRUCache {
private _localStorageKey;
private _maxSize;
constructor(options: { localStorageKey: string; maxSize: number }) {
this._localStorageKey = options.localStorageKey;
this._maxSize = options.maxSize;
}
public set(key: string, value: string): void {
const lru = this... | 150 | 1,471 | 57 | 0.98 | 2026-04-23T08:29:09.861771 | true |
github_segmentio_evergreen_8b147afa41fc115f37d6e28ba65aa17d8021f7d2 | JavaScript | segmentio | evergreen | 12,428 | 813 | 🌲 Evergreen React UI Framework by Segment | [
"component-library",
"design-systems",
"evergreen",
"react",
"segment",
"ui",
"ui-components"
] | MIT | src/positioner/index.js | index.js | 116 | export { default as Positioner } from './src/Positioner'
export { default as getPosition } from './src/getPosition'
| 16 | 116 | 3 | 0.98 | 2026-04-23T04:58:48.461013 | true |
github_esimov_caire_7e581edfecc4118d258ac7fc291b7282b1e5e202 | Go | esimov | caire | 10,482 | 386 | Content aware image resize library | [
"computer-vision",
"content-aware-resize",
"content-aware-scaling",
"edge-detection",
"face-detection",
"golang",
"image-processing",
"image-resize",
"machine-learning",
"seam-carving"
] | MIT | carver_benchmark_test.go | carver_benchmark_test.go | 697 | package caire
import (
"image"
"os"
"path/filepath"
"testing"
)
func Benchmark_Carver(b *testing.B) {
sampleImg := filepath.Join("./testdata", "sample.jpg")
f, err := os.Open(sampleImg)
if err != nil {
b.Fatalf("could not load sample image: %v", err)
}
defer f.Close()
src, _, err := image.Decode(f)
if e... | 96 | 697 | 40 | 0.98 | 2026-04-17T12:37:53.671114 | true |
github_farion1231_cc-switch_e74de48306ddd83aa31976af8ca0aac9692f7a93 | 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/domUtils.ts | domUtils.ts | 297 | export function isTextEditableTarget(target: EventTarget | null): boolean {
if (!(target instanceof HTMLElement)) return false;
const tagName = target.tagName;
return (
tagName === "INPUT" ||
tagName === "TEXTAREA" ||
tagName === "SELECT" ||
target.isContentEditable
);
}
| 35 | 297 | 12 | 0.98 | 2026-04-17T13:19:01.487793 | true |
github_potpie-ai_potpie_e54ad853dd1eca5373253cf16ed203c9d555a690 | Python | potpie-ai | potpie | 5,337 | 603 | Spec-driven development for large codebases | [
"agents",
"ai-agents",
"ai-agents-framework",
"artificial-intelligence",
"developer-tools",
"devtools",
"generative-ai",
"knowledge-graph",
"rag"
] | Apache-2.0 | app/core/base_model.py | base_model.py | 345 | import typing as t
from sqlalchemy.ext.declarative import as_declarative, declared_attr
class_registry: t.Dict = {}
@as_declarative(class_registry=class_registry)
class Base:
id: t.Any
__name__: str
# Generate __tablename__ automatically
@declared_attr
def __tablename__(cls) -> str:
ret... | 31 | 345 | 17 | 0.98 | 2026-04-22T21:55:37.560488 | true |
github_tensorflow_rust_a493eddc39daed86a82c383911a87157c8442ed2 | Rust | tensorflow | rust | 5,469 | 436 | Rust language bindings for TensorFlow | [
"machine-learning",
"rust",
"tensorflow"
] | Apache-2.0 | src/protos/tensor_shape.rs | tensor_shape.rs | 14,487 | // This file is generated by rust-protobuf 2.27.1. Do not edit
// @generated
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]
#![allow(unused_attributes)]
#![cfg_attr(rustfmt, rustfmt::skip)]
#![allow(box_pointers)]
#![allow(dead_code)]
#![allow(missing_docs)]
#!... | 1,110 | 14,487 | 443 | 0.98 | 2026-04-17T15:00:15.928446 | true |
github_bigint_hey_c9940fde50ee8f2d9589d84041bb7742ffa8b6cf | 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/indexer/codegen.ts | codegen.ts | 820 | import type { CodegenConfig } from "@graphql-codegen/cli";
const config: CodegenConfig = {
config: {
inlineFragmentTypes: "combine",
noGraphQLTag: true
},
documents: "./src/indexer/documents/**/*.graphql",
generates: {
"generated.ts": {
config: {
addDocBlocks: false,
disableDe... | 69 | 820 | 35 | 0.98 | 2026-04-18T01:23:18.340000 | true |
github_wooorm_markdown-rs_3c47e20517a9a1ffafc0968bc642964fab10fb81 | Rust | wooorm | markdown-rs | 1,496 | 87 | CommonMark compliant markdown parser in Rust with ASTs and extensions | [
"commonmark",
"compiler",
"gfm",
"markdown",
"parse",
"render",
"rust",
"tokenize"
] | MIT | src/util/identifier.rs | identifier.rs | 477 | //! Info on JavaScript identifiers.
use unicode_id::UnicodeID;
/// Check if a character can start a JS identifier.
#[must_use]
pub fn id_start(char: char) -> bool {
UnicodeID::is_id_start(char) || matches!(char, '$' | '_')
}
/// Check if a character can continue a JS (or JSX) identifier.
#[must_use]
pub fn id_co... | 67 | 477 | 18 | 0.98 | 2026-04-17T17:06:06.022644 | true |
github_ChatGPTNextWeb_NextChat_ff15bee14edc91d7746e2ae82694b258cc2afa57 | TypeScript | ChatGPTNextWeb | NextChat | 87,769 | 59,807 | ✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows | [
"calclaude",
"chatgpt",
"claude",
"cross-platform",
"desktop",
"fe",
"gemini",
"gemini-pro",
"gemini-server",
"gemini-ultra",
"gpt-4o",
"groq",
"nextjs",
"ollama",
"react",
"tauri",
"tauri-app",
"vercel",
"webui"
] | MIT | app/utils/store.ts | store.ts | 2,050 | import { create } from "zustand";
import { combine, persist, createJSONStorage } from "zustand/middleware";
import { Updater } from "../typing";
import { deepClone } from "./clone";
import { indexedDBStorage } from "@/app/utils/indexedDB-storage";
type SecondParam<T> = T extends (
_f: infer _F,
_s: infer S,
...a... | 226 | 2,050 | 79 | 0.98 | 2026-04-23T08:58:35.632564 | true |
github_ChromeDevTools_chrome-devtools-mcp_962026491b603e5ae289846a18b4e78f0ca80f47 | 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/PageCollector.ts | PageCollector.ts | 10,896 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {FakeIssuesManager} from './DevtoolsUtils.js';
import {logger} from './logger.js';
import type {
Target,
CDPSession,
ConsoleMessage,
Protocol,
Issue,
} from './third_party/index.js';
import {DevTools} from './third... | 1,004 | 10,896 | 402 | 0.98 | 2026-04-23T08:42:28.830280 | true |
github_charmbracelet_crush_fca3dc9369d2306674a30fae43fe2e662024a0da | Go | charmbracelet | crush | 23,121 | 1,528 | Glamourous agentic coding for all 💘 | [
"agentic-ai",
"ai",
"llms",
"ravishing"
] | NOASSERTION | internal/cmd/root.go | root.go | 18,375 | package cmd
import (
"bytes"
"context"
_ "embed"
"errors"
"fmt"
"io"
"io/fs"
"log/slog"
"net/url"
"os"
"os/exec"
"path/filepath"
"regexp"
"strconv"
"strings"
"time"
tea "charm.land/bubbletea/v2"
fang "charm.land/fang/v2"
"charm.land/lipgloss/v2"
"github.com/charmbracelet/colorprofile"
"github.com... | 2,158 | 17,894 | 621 | 0.98 | 2026-04-17T09:14:37.089868 | true |
github_slint-ui_slint_594f55b25f64f8e1fdee204d0e8d9f0ff9c73a71 | Rust | slint-ui | slint | 22,265 | 863 | Slint is an open-source declarative GUI toolkit to build native user interfaces for Rust, C++, JavaScript, or Python apps. | [
"cpp",
"declarative-ui",
"desktop",
"embedded-devices",
"gui",
"javascript",
"language",
"lsp-server",
"native",
"rust",
"rust-lang",
"toolkit",
"ui",
"user-interface",
"wasm",
"webassembly",
"widgets"
] | NOASSERTION | internal/core/context.rs | context.rs | 6,956 | // 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 crate::Property;
use crate::api::PlatformError;
use crate::input::InternalKeyboardModifierState;
use crate::platform::{EventLoopProxy, Platform};
use alloc:... | 568 | 6,955 | 174 | 0.98 | 2026-04-17T13:36:34.093569 | true |
github_storj_drpc_dce1c4761b6ad47f253350ff112539dac5498e0e | Go | storj | drpc | 1,619 | 62 | drpc is a lightweight, drop-in replacement for gRPC | [
"drpc",
"go",
"grpc",
"microservices",
"nanoservices",
"proto",
"rpc"
] | MIT | internal/integration/error_test.go | error_test.go | 1,797 | // Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package integration
import (
"context"
"errors"
"io"
"strings"
"testing"
"github.com/zeebo/assert"
"storj.io/drpc/drpcerr"
"storj.io/drpc/drpctest"
)
func TestError(t *testing.T) {
ctx := drpctest.NewTracker(t)
defer ctx.Close... | 208 | 1,797 | 88 | 0.98 | 2026-04-18T01:05:37.816663 | true |
github_huggingface_transformers_61763e19c0801c4026673a9ea8e25893f0105301 | 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/backbone_utils.py | backbone_utils.py | 16,948 | # Copyright 2026 The HuggingFace Inc. team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed ... | 1,690 | 16,948 | 377 | 0.98 | 2026-04-22T13:17:46.994367 | true |
github_SuperTails_langcraft_55130453c60c79a0840f29e2640515ecacf26b17 | Rust | SuperTails | langcraft | 561 | 7 | Compiler from LLVM IR to Minecraft datapacks. | [
"compiler",
"llvm",
"minecraft"
] | Apache-2.0 | src/intrinsics.rs | intrinsics.rs | 21,226 | use crate::cir::{Function, FunctionId, Command, Execute, FuncCall};
use lazy_static::lazy_static;
use std::collections::{HashSet, HashMap};
static INTRINSIC_STRS: &[(&str, &str)] = &[
("intrinsic:lshr", include_str!("intrinsic/lshr.mcfunction")),
("intrinsic:lshr64", include_str!("intrinsic/lshr64.mcfunction")... | 1,714 | 21,226 | 706 | 0.98 | 2026-04-17T17:10:15.601353 | true |
github_pion_webrtc_dad0a079a23f3df42a7e3834630edd0baac6b99a | Go | pion | webrtc | 16,225 | 1,836 | Pure Go implementation of the WebRTC API | [
"audio",
"go",
"golang",
"live-video",
"ortc",
"p2p",
"pion",
"pion-webrtc",
"rtp",
"srtp",
"streaming",
"video",
"voip",
"wasm",
"webassembly",
"webcam",
"webrtc",
"webrtc-api",
"webrtc-libraries",
"webrtc-server"
] | MIT | icetransport_js.go | icetransport_js.go | 995 | // SPDX-FileCopyrightText: 2026 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
//go:build js && wasm
// +build js,wasm
package webrtc
import "syscall/js"
// ICETransport allows an application access to information about the ICE
// transport over which packets are sent and received.
type ICETra... | 119 | 995 | 36 | 0.98 | 2026-04-17T10:26:16.003960 | true |
github_cosmos_cosmos-sdk_670565018dc525fa88982568f73ce8aa38b6e9a9 | Go | cosmos | cosmos-sdk | 6,981 | 4,172 | :chains: A Framework for Building High Value Public Blockchains :sparkles: | [
"blockchain",
"cometbft",
"cosmos-sdk",
"cryptocurrency",
"go",
"golang",
"tendermint"
] | Apache-2.0 | core/appconfig/config.go | config.go | 547 | package appconfig
import (
depinjectappconfig "cosmossdk.io/depinject/appconfig"
)
// LoadJSON loads an app config in JSON format.
var LoadJSON = depinjectappconfig.LoadJSON
// LoadYAML loads an app config in YAML format.
var LoadYAML = depinjectappconfig.LoadYAML
// WrapAny marshals a proto message into a proto A... | 73 | 547 | 19 | 0.98 | 2026-04-17T16:45:31.191574 | true |
github_go-gitea_gitea_7249cb902eb5e9ca341dc3e36715382bc5d0b33b | TypeScript | go-gitea | gitea | 54,955 | 6,587 | Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD | [
"bitbucket",
"cicd",
"devops",
"docker-registry-v2",
"git",
"git-gui",
"git-lfs",
"git-server",
"gitea",
"github",
"github-actions",
"gitlab",
"go",
"golang",
"hacktoberfest",
"maven-server",
"npm-registry",
"self-hosted",
"typescript",
"vue"
] | MIT | vite.config.ts | vite.config.ts | 12,160 | import {build, defineConfig} from 'vite';
import vuePlugin from '@vitejs/plugin-vue';
import {stringPlugin} from 'vite-string-plugin';
import {licensePlugin, wrap} from 'rolldown-license-plugin';
import {readFileSync, writeFileSync, mkdirSync, unlinkSync, globSync} from 'node:fs';
import path, {basename, join, parse} f... | 1,138 | 12,160 | 339 | 0.98 | 2026-04-17T07:19:34.330288 | true |
github_ko-build_ko_75443a9b606927b94a409ed76795242f335d35de | Go | ko-build | ko | 8,410 | 441 | Build and deploy Go applications | [
"container",
"containers",
"deploy",
"docker",
"go",
"golang",
"kubernetes"
] | Apache-2.0 | pkg/build/options.go | options.go | 5,745 | // Copyright 2018 ko Build 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 applic... | 834 | 5,745 | 213 | 0.98 | 2026-04-17T20:19:20.322571 | true |
github_maaslalani_slides_d3f090e7f13adcdd7726b5578a3577e518424e31 | Go | maaslalani | slides | 11,449 | 310 | Terminal based presentation tool | [
"markdown",
"presentation",
"slides",
"terminal"
] | MIT | internal/navigation/search_test.go | search_test.go | 1,264 | package navigation
import (
"testing"
)
type mockModel struct {
slides []string
page int
}
func (m *mockModel) CurrentPage() int {
return m.page
}
func (m *mockModel) SetPage(page int) {
m.page = page
}
func (m *mockModel) Pages() []string {
return m.slides
}
func TestSearch(t *testing.T) {
data := []str... | 174 | 1,264 | 72 | 0.98 | 2026-04-17T12:18:11.805703 | true |
github_hyperium_hyper_0af623b1bf915b5f87f3ae56d2747eeb0146d4d5 | Rust | hyperium | hyper | 16,010 | 1,728 | An HTTP library for Rust | [
"http",
"hyper",
"rust"
] | MIT | src/rt/bounds.rs | bounds.rs | 4,344 | //! Trait aliases
//!
//! Traits in this module ease setting bounds and usually automatically
//! implemented by implementing another trait.
#[cfg(all(feature = "client", feature = "http2"))]
pub use self::h2_client::Http2ClientConnExec;
#[cfg(all(feature = "server", feature = "http2"))]
pub use self::h2_server::Http2... | 463 | 4,344 | 144 | 0.98 | 2026-04-17T13:51:17.129239 | true |
github_rustdesk_rustdesk_5f6d5f005c0f05f74e8acdf62f9bc7879636ae65 | 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/fa.rs | fa.rs | 61,009 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "وضعیت"),
("Your Desktop", "دسکتاپ شما"),
("desk_tip", "دسکتاپ شما با این شناسه و رمز عبور قابل دسترسی است"),
("Password", "رمز عبور"),
("Ready", "آماده به کار")... | 5,581 | 45,696 | 748 | 0.98 | 2026-04-17T13:14:29.300328 | true |
github_rust-lang_rustlings_f043bd48f2d45d5a2f5f43ce8c94cf3a2766bae9 | 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/init.rs | init.rs | 8,564 | use anyhow::{Context, Result, bail};
use crossterm::{
QueueableCommand,
style::{Attribute, Color, ResetColor, SetAttribute, SetForegroundColor},
};
use serde::Deserialize;
use std::{
env::{current_dir, set_current_dir},
fs::{self, create_dir},
io::{self, Write},
path::Path,
process::{Command... | 715 | 8,558 | 239 | 0.98 | 2026-04-17T13:16:14.130126 | true |
github_taylorwilsdon_google_workspace_mcp_276ab0d4f1e7a5b24f688e89a956e31da4ffa50e | Python | taylorwilsdon | google_workspace_mcp | 2,133 | 643 | Control Gmail, Google Calendar, Docs, Sheets, Slides, Chat, Forms, Tasks, Search & Drive with AI - Comprehensive Google Workspace / G Suite MCP Server & CLI Tool | [
"ai",
"g-suite",
"gmail",
"google-calendar",
"google-chat",
"google-docs",
"google-drive",
"google-forms",
"google-sheets",
"google-tasks",
"google-workspace",
"gsuite",
"llm",
"llm-tools",
"mcp",
"mcp-server",
"model-context-protocol",
"model-context-protocol-server",
"model-con... | MIT | core/http_utils.py | http_utils.py | 11,308 | """
SSRF-safe HTTP fetching utilities.
Provides async HTTP fetch functions with protection against SSRF attacks,
DNS rebinding, and redirect-based bypasses. Extracted from gdrive/drive_tools.py
for reuse across modules (Drive uploads, Gmail URL attachments, etc.).
"""
import ipaddress
import asyncio
import logging
im... | 1,061 | 11,306 | 336 | 0.98 | 2026-04-17T16:04:08.614382 | true |
github_medialab_xan_c6b935fdb1662c8c272a05a6347b31018c6ae5e6 | Rust | medialab | xan | 3,903 | 80 | The CSV magician | [
"cli",
"csv",
"rust",
"tsv"
] | Unlicense | src/cmd/fmt.rs | fmt.rs | 4,541 | use std::fs;
use crate::config::{Config, Delimiter};
use crate::util;
use crate::CliResult;
struct TempFileGuard(String);
impl Drop for TempFileGuard {
fn drop(&mut self) {
let _ = fs::remove_file(&self.0);
}
}
static USAGE: &str = "
Formats CSV data with a custom delimiter or CRLF line endings.
Ge... | 449 | 4,541 | 142 | 0.98 | 2026-04-17T18:35:28.596924 | true |
github_volta-cli_volta_07a30352fa915e4c4646dcd420da67286007817b | Rust | volta-cli | volta | 12,919 | 331 | Volta: JS Toolchains as Code. ⚡ | [
"node",
"nodejs",
"package-manager"
] | NOASSERTION | src/command/run.rs | run.rs | 5,277 | use std::collections::HashMap;
use std::ffi::OsString;
use crate::command::Command;
use crate::common::{Error, IntoResult};
use log::warn;
use volta_core::error::{report_error, ExitCode, Fallible};
use volta_core::platform::{CliPlatform, InheritOption};
use volta_core::run::execute_tool;
use volta_core::session::{Acti... | 505 | 5,277 | 153 | 0.98 | 2026-04-17T14:16:20.272655 | true |
github_ssbuild_chatglm_finetuning_9e0e48ef40076bc835be19f6299b45c9f8113459 | Python | ssbuild | chatglm_finetuning | 1,537 | 173 | chatglm 6b finetuning and alpaca finetuning | [
"adalora",
"chatglm",
"deep-learning",
"freeze",
"ia3",
"lora",
"p-tuning-v2",
"pytorch",
"qlora",
"sft"
] | Apache-2.0 | data_processer.py | data_processer.py | 9,905 | # @Time : 2023/3/25 18:36
# @Author : tk
import copy
import json
import random
import typing
from enum import Enum
import numpy as np
from deep_training.zoo.model_zoo.glm4.llm_model import ChatGLM4Tokenizer
class DataStrategy(Enum):
truncation = 1
siding = 2
class TokenIdsMaker:
def __init__(self, t... | 701 | 8,527 | 189 | 0.98 | 2026-04-22T23:53:46.713398 | true |
github_wassim249_YT-Navigator_959b9af942e4a040076a12b9832432a3214327a5 | 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/views/home.py | home.py | 1,726 | """Views for the home page."""
import structlog
from django.contrib.auth.decorators import login_required
from django.core.paginator import (
EmptyPage,
PageNotAnInteger,
Paginator,
)
from django.shortcuts import render
from django.views.decorators.http import require_GET
from app.models import Video
log... | 168 | 1,726 | 60 | 0.98 | 2026-04-23T00:53:12.334804 | true |
github_ChromeDevTools_chrome-devtools-mcp_92f4612010a3d3054cf803439739562295926fe3 | TypeScript | ChromeDevTools | chrome-devtools-mcp | 35,846 | 2,192 | Chrome DevTools for coding agents | [
"browser",
"chrome",
"chrome-devtools",
"debugging",
"devtools",
"mcp",
"mcp-server",
"puppeteer"
] | Apache-2.0 | src/PageCollector.ts | PageCollector.ts | 11,294 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {FakeIssuesManager} from './DevtoolsUtils.js';
import {logger} from './logger.js';
import type {
Target,
CDPSession,
ConsoleMessage,
Protocol,
Issue,
} from './third_party/index.js';
import {DevTools} from './third... | 1,055 | 11,294 | 420 | 0.98 | 2026-04-18T00:20:55.901623 | true |
github_sharkdp_bat_8f64e8c5821a611e6b19f6e101b5817b578c514b | 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/controller.rs | controller.rs | 12,312 | use crate::assets::HighlightingAssets;
use crate::config::{Config, VisibleLines};
#[cfg(feature = "git")]
use crate::diff::{get_git_diff, LineChanges};
use crate::error::*;
use crate::input::{Input, InputReader, OpenedInput};
#[cfg(feature = "lessopen")]
use crate::lessopen::LessOpenPreprocessor;
#[cfg(feature = "git")... | 972 | 12,312 | 343 | 0.98 | 2026-04-17T13:16:49.748502 | true |
github_graffle-js_graffle_5c3e1b65cb08cf434a9f47da9edeaeebe9f94bf5 | TypeScript | graffle-js | graffle | 6,116 | 309 | Simple GraphQL Client for JavaScript. Minimal. Extensible. Type Safe. Runs everywhere. | [
"graphql",
"graphql-client",
"lightweight",
"nodejs",
"typescript"
] | MIT | src/context/context.ts | context.ts | 1,465 | import type { Configuration } from './fragments/configuration/_.js'
import type { Extensions } from './fragments/extensions/_.js'
import type { Properties } from './fragments/properties/_.js'
import type { RequestInterceptors } from './fragments/requestInterceptors/_.js'
import type { Scalars } from './fragments/scalar... | 146 | 1,465 | 37 | 0.98 | 2026-04-23T08:30:50.554143 | true |
github_ajeetdsouza_zoxide_996f61d3ff28d6cc0306e917d3e56a599ac5b9ea | Rust | ajeetdsouza | zoxide | 35,686 | 790 | A smarter cd command. Supports all major shells. | [
"autojump",
"bash",
"cli",
"command-line",
"command-line-tool",
"elvish",
"fasd",
"fish",
"fish-shell",
"fzf",
"hacktoberfest",
"jump",
"nushell",
"powershell",
"rust",
"shell",
"xonsh",
"xontrib",
"z",
"zsh"
] | MIT | src/util.rs | util.rs | 12,768 | use std::ffi::OsStr;
use std::fs::{self, File, OpenOptions};
use std::io::{self, Read, Write};
use std::path::{Component, Path, PathBuf};
use std::process::{Child, Command, Stdio};
use std::time::SystemTime;
use std::{env, mem};
#[cfg(windows)]
use anyhow::anyhow;
use anyhow::{Context, Result, bail};
use crate::db::{... | 1,279 | 12,768 | 385 | 0.98 | 2026-04-17T13:21:04.318038 | true |
github_axios_axios_e769b89a4e138e8612e230225812d13979af38b1 | JavaScript | axios | axios | 109,012 | 11,651 | Promise based HTTP client for the browser and node.js | [
"hacktoberfest",
"http-client",
"javascript",
"nodejs",
"promise"
] | MIT | lib/cancel/CanceledError.js | CanceledError.js | 618 | 'use strict';
import AxiosError from '../core/AxiosError.js';
class CanceledError extends AxiosError {
/**
* A `CanceledError` is an object that is thrown when an operation is canceled.
*
* @param {string=} message The message.
* @param {Object=} config The config.
* @param {Object=} request The requ... | 78 | 618 | 23 | 0.98 | 2026-04-23T06:16:44.143301 | true |
github_Wilfred_bfc_683eff7db82c4796051f04269ff7ba5db953770c | Rust | Wilfred | bfc | 541 | 34 | An industrial-grade brainfuck compiler | [
"brainfuck",
"compiler",
"llvm",
"rust"
] | GPL-2.0 | src/peephole.rs | peephole.rs | 85,562 | //! Optimisations that replace parts of the BF AST with faster
//! equivalents.
use std::collections::{HashMap, HashSet};
use std::hash::Hash;
use std::num::Wrapping;
use itertools::Itertools;
use crate::diagnostics::Warning;
use crate::bfir::AstNode::*;
use crate::bfir::{get_position, AstNode, BfValue, Combine, Po... | 8,067 | 85,562 | 2,666 | 0.98 | 2026-04-17T17:10:32.281713 | true |
github_smartcontractkit_chainlink_b83ca5b00d037fcf1a7bf90a3e5fc0776a3e99b5 | 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/config/audit_logger_config.go | audit_logger_config.go | 340 | package config
import (
commonconfig "github.com/smartcontractkit/chainlink-common/pkg/config"
"github.com/smartcontractkit/chainlink/v2/core/store/models"
)
type AuditLogger interface {
Enabled() bool
ForwardToUrl() (commonconfig.URL, error)
Environment() string
JsonWrapperKey() string
Headers() (models.Servi... | 25 | 340 | 15 | 0.98 | 2026-04-17T16:44:10.688353 | true |
github_authzed_spicedb_d7c5b53db6748c6436b0c414161893eaafaaa1d4 | Go | authzed | spicedb | 6,606 | 381 | Open Source, Google Zanzibar-inspired database for scalably storing and querying fine-grained authorization data | [
"abac",
"acl",
"authorization",
"ciam",
"cloud-native",
"database",
"distributed-systems",
"entitlements",
"fga",
"fine-grained-access-control",
"fine-grained-authorization",
"kubernetes",
"permissions",
"rbac",
"rebac",
"security",
"security-tools",
"zanzibar"
] | Apache-2.0 | internal/lsp/overlay.go | overlay.go | 2,997 | package lsp
import (
"io/fs"
"os"
"path/filepath"
"strings"
"time"
"github.com/ccoveille/go-safecast/v2"
"github.com/jzelinskie/persistent"
"github.com/sourcegraph/go-lsp"
)
// lspOverlayFS is an fs.FS that serves open editor files from memory
// and falls back to disk for everything else. It is rooted at so... | 385 | 2,997 | 93 | 0.98 | 2026-04-17T18:15:24.378860 | true |
github_quickwit-oss_tantivy_97befe7b9edef40d2e8b606012b869a71460dbc1 | Rust | quickwit-oss | tantivy | 15,013 | 896 | Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust | [
"rust",
"search-engine"
] | MIT | src/aggregation/date.rs | date.rs | 575 | use time::format_description::well_known::Rfc3339;
use time::OffsetDateTime;
use crate::TantivyError;
pub(crate) fn format_date(val: i64) -> crate::Result<String> {
let datetime = OffsetDateTime::from_unix_timestamp_nanos(val as i128).map_err(|err| {
TantivyError::InvalidArgument(format!(
"Cou... | 43 | 575 | 17 | 0.98 | 2026-04-17T13:54:07.918541 | true |
github_starship_starship_bdc86cb53e5464236d18d40acb2f04e66e0fb445 | 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/bug_report.rs | bug_report.rs | 9,558 | use crate::shadow;
use crate::utils::{self, DEFAULT_COMMAND_TIMEOUT_MS, exec_cmd};
use nu_ansi_term::Style;
use std::fs;
use std::path::PathBuf;
use std::time::Duration;
pub fn create() {
println!("{}\n", shadow::VERSION.trim());
let os_info = os_info::get();
let environment = Environment {
os_ty... | 795 | 9,558 | 312 | 0.98 | 2026-04-17T13:17:25.377696 | true |
github_lovell_sharp_ebbf54e9c84a3b38c1836f3162bd1b9c36109d7c | JavaScript | lovell | sharp | 32,168 | 1,398 | High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, AVIF and TIFF images. Uses the libvips library. | [
"avif",
"crop",
"exif",
"icc",
"image",
"image-processing",
"javascript",
"jpeg",
"libvips",
"nodejs",
"performance",
"png",
"resize",
"sharp",
"svg",
"tiff",
"webp"
] | Apache-2.0 | lib/operation.js | operation.js | 33,282 | /*!
Copyright 2013 Lovell Fuller and others.
SPDX-License-Identifier: Apache-2.0
*/
const is = require('./is');
/**
* How accurate an operation should be.
* @member
* @private
*/
const vipsPrecision = {
integer: 'integer',
float: 'float',
approximate: 'approximate'
};
/**
* Rotate the output image.
*... | 4,294 | 33,282 | 1,017 | 0.98 | 2026-04-23T06:40:54.563564 | true |
github_Morganamilo_paru_edcb5d06f41c65c3962ad98f1395eed921256828 | Rust | Morganamilo | paru | 8,603 | 309 | Feature packed AUR helper | [
"arch",
"archlinux",
"aur-helper",
"hacktoberfest",
"pacman",
"paru",
"pkgbuild",
"yaourt",
"yay"
] | GPL-3.0 | src/auth.rs | auth.rs | 2,299 | use anyhow::{Result, ensure, bail, Context};
use std::fs::File;
use std::io::{Read, Write};
use std::os::unix::io::FromRawFd;
use nix::unistd::pipe;
use crate::config::Config;
use std::process::Command;
use std::cell::RefCell;
#[derive(Debug)]
pub struct Pipe {
pub read: File,
pub write: File,
}
impl Pipe {
... | 221 | 2,299 | 94 | 0.98 | 2026-04-17T14:30:43.537386 | true |
github_PKU-Alignment_omnisafe_f3a1e8b0651afbdf4b94cee4b7d9bc9bfa256b6a | Python | PKU-Alignment | omnisafe | 1,108 | 154 | JMLR: OmniSafe is an infrastructural framework for accelerating SafeRL research. | [
"benchmark",
"constraint-rl",
"constraint-satisfaction-problem",
"deep-learning",
"deep-reinforcement-learning",
"machine-learning",
"pytorch",
"reinforcement-learning",
"safe-reinforcement-learning",
"safe-rl",
"saferl",
"safety-critical",
"safety-gym",
"safety-gymnasium"
] | Apache-2.0 | conftest.py | conftest.py | 321 | import os
try:
from metadrive import SafeMetaDriveEnv
meta_drive_env_available = True
except ImportError:
meta_drive_env_available = False
def pytest_ignore_collect(path, config):
if os.path.basename(path) == 'meta_drive_env.py' and not meta_drive_env_available:
return True
return False... | 29 | 321 | 16 | 0.98 | 2026-04-22T20:19:46.890736 | true |
github_eloialonso_iris_85e01501f3ad6ba1f000d531e4206655ccf1aea9 | Python | eloialonso | iris | 877 | 94 | Transformers are Sample-Efficient World Models. ICLR 2023, notable top 5%. | [
"artificial-intelligence",
"atari",
"deep-learning",
"machine-learning",
"reinforcement-learning",
"research",
"transformers",
"world-models"
] | GPL-3.0 | src/collector.py | collector.py | 6,274 | import random
import sys
from typing import List, Optional, Union
from einops import rearrange
import numpy as np
import torch
from tqdm import tqdm
import wandb
from agent import Agent
from dataset import EpisodesDataset
from envs import SingleProcessEnv, MultiProcessEnv
from episode import Episode
from utils import... | 517 | 6,274 | 126 | 0.98 | 2026-04-22T20:26:44.250084 | true |
github_apollographql_apollo-client_fe51be8124ed3a49de0f306e19020af7943b14c1 | 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/v4-migration.ts | v4-migration.ts | 24,354 | /**
* This file documents exports that have been removed from Apollo Client in 4.0.
*
* Executing the `removals` codemod will point removed exports to this file, where
* docblocks will explain the removal and suggest alternatives.
*/
/**
* {@inheritDoc @apollo/client/v4-migration!Removals.HOC:type }
*/
export d... | 2,236 | 24,354 | 768 | 0.98 | 2026-04-18T01:25:59.065746 | true |
github_centrifugal_centrifugo_016a918f06bd0a08c3b2c677d18ff57d0529ace4 | Go | centrifugal | centrifugo | 10,173 | 694 | Scalable real-time messaging server in a language-agnostic way. Self-hosted alternative to Pubnub, Pusher, Ably, socket.io, Phoenix.PubSub, SignalR. Set up once and forever. | [
"ably",
"alternative",
"eventsource",
"grpc",
"http-streaming",
"http3",
"messaging",
"pubnub",
"pubsub",
"pusher",
"real-time",
"redis",
"scalability",
"server-sent-events",
"socket-io",
"sse",
"streaming",
"websocket",
"websockets",
"webtransport"
] | Apache-2.0 | internal/apiproto/raw.go | raw.go | 670 | package apiproto
import (
"errors"
)
// Raw type used by Centrifugo as type for fields in structs which value
// we want to left untouched. For example custom application specific JSON
// payload data in published message. This is very similar to json.RawMessage
// type.
type Raw []byte
// MarshalJSON returns *r as... | 114 | 670 | 29 | 0.98 | 2026-04-17T12:44:17.355549 | true |
github_clap-rs_clap_0c992672953ab5dfe51ea28fb83d3e5142169681 | Rust | clap-rs | clap | 16,307 | 1,170 | A full featured, fast Command Line Argument Parser for Rust | [
"argument-parser",
"argument-parsing",
"command-line",
"command-line-parser",
"parsed-arguments",
"positional-arguments",
"rust",
"subcommands"
] | Apache-2.0 | src/_concepts.rs | _concepts.rs | 5,388 | //! ## CLI Concepts
//!
//! Note: this will be speaking towards the general case.
//!
//! ### Environmental context
//!
//! When you run a command line application, it is inside a terminal emulator, or terminal.
//! This handles integration with the rest of your system including user input,
//! rendering, etc.
//!
//! ... | 822 | 5,388 | 109 | 0.98 | 2026-04-17T13:50:19.400667 | true |
github_pamburus_hl_e245a9981c31f06b5b87170a5d15bcd91dce2a3e | Rust | pamburus | hl | 3,077 | 63 | A fast and powerful log viewer and processor that converts JSON logs or logfmt logs into a clear human-readable format. | [
"cli",
"command-line-tool",
"hl",
"human",
"json",
"json-log",
"json-logging",
"json-logs",
"log",
"log-viewer",
"logfmt",
"logging",
"logs",
"rust",
"structured-logging",
"translates-json-logs",
"viewer"
] | MIT | src/cli/tests.rs | tests.rs | 5,111 | use super::*;
use enumset::enum_set;
use std::str::FromStr;
type InputInfoSet = EnumSet<InputInfo>;
#[test]
fn test_input_info() {
let set = InputInfoSet::all();
assert_eq!(
*set,
enum_set!(InputInfo::Auto | InputInfo::None | InputInfo::Minimal | InputInfo::Compact | InputInfo::Full)
);
... | 275 | 5,111 | 149 | 0.98 | 2026-04-17T19:18:08.023025 | true |
github_doug-martin_goqu_d0cb8072f3375bf53eef960fe47f6f10dafe08b0 | Go | doug-martin | goqu | 2,649 | 221 | SQL builder and query library for golang | [
"database",
"go",
"golang",
"mysql",
"postgres",
"postgresql",
"querybuilder",
"sql",
"sql-builder",
"sql-builders",
"sql-generation",
"sql-query",
"sql-statement",
"sql-statements",
"sqlite"
] | MIT | internal/errors/error.go | error.go | 366 | package errors
import "fmt"
type Error struct {
err string
}
func New(message string, args ...interface{}) error {
return Error{err: "goqu: " + fmt.Sprintf(message, args...)}
}
func NewEncodeError(t interface{}) error {
return Error{err: "goqu_encode_error: " + fmt.Sprintf("Unable to encode value %+v", t)}
}
fu... | 52 | 366 | 20 | 0.98 | 2026-04-17T18:28:27.091860 | true |
github_stochasticai_xTuring_885df54b67be41b91272a6d5578dc4b9d50df6c4 | Python | stochasticai | xTuring | 2,663 | 212 | Build, personalize and control your own LLMs. From data pre-processing to fine-tuning, xTuring provides an easy way to personalize open-source LLMs. Join our discord community: https://discord.gg/TgHXuSJEk6 | [
"adapter",
"deep-learning",
"fine-tuning",
"finetuning",
"gen-ai",
"generative-ai",
"gpt-2",
"gpt-j",
"language-model",
"llama",
"llm",
"lora",
"mistral",
"mixed-precision",
"peft",
"quantization"
] | Apache-2.0 | src/xturing/__init__.py | __init__.py | 1,675 | from importlib import import_module
_LAZY_EXPORTS = {
"BaseDataset": ("xturing.datasets", "BaseDataset"),
"InstructionDataset": ("xturing.datasets", "InstructionDataset"),
"TextDataset": ("xturing.datasets", "TextDataset"),
"BaseEngine": ("xturing.engines", "BaseEngine"),
"GPT2Engine": ("xturing.en... | 116 | 1,675 | 48 | 0.98 | 2026-04-17T23:35:10.620916 | true |
github_FairwindsOps_polaris_20c727cf68cc9c1b29f0b74573372706c9178b16 | Go | FairwindsOps | polaris | 3,359 | 224 | Validation of best practices in your Kubernetes clusters | [
"audit",
"best-practices",
"cluster",
"dashboard",
"fairwinds-official",
"kubernetes"
] | Apache-2.0 | pkg/config/schema.go | schema.go | 11,878 | // Copyright 2022 FairwindsOps, 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 ... | 1,353 | 11,878 | 387 | 0.98 | 2026-04-17T22:36:48.997696 | true |
github_serenity-rs_serenity_e2bd61cae15d8db9e7d0475be0823b3a8f8dbb76 | Rust | serenity-rs | serenity | 5,463 | 661 | A Rust library for the Discord API. | [
"discord",
"discord-api",
"hacktoberfest",
"rust"
] | ISC | src/builder/execute_webhook.rs | execute_webhook.rs | 13,725 | #[cfg(feature = "http")]
use super::{check_overflow, Builder};
use super::{
CreateActionRow,
CreateAllowedMentions,
CreateAttachment,
CreateEmbed,
EditAttachments,
};
#[cfg(feature = "http")]
use crate::constants;
#[cfg(feature = "http")]
use crate::http::CacheHttp;
#[cfg(feature = "http")]
use crat... | 1,495 | 13,725 | 397 | 0.98 | 2026-04-17T15:00:55.382008 | true |
github_open-wa_wa-automate-nodejs_f08bf9a12403f43d76869b15b03c1eb0c4dc7d07 | TypeScript | open-wa | wa-automate-nodejs | 3,448 | 669 | 💬 🤖 The most reliable tool for chatbots with advanced features. Be sure to 🌟 this repository for updates! | [
"api",
"chatbots",
"framework",
"nodejs",
"typescript"
] | NOASSERTION | docfix.ts | docfix.ts | 400 | import * as shell from 'shelljs';
// shell.cp('./node_modules/typedoc-plugin-pages/dist/theme/v2/templates/markdown-page.hbs', './node_modules/typedoc-neo-theme/bin/default/templates');
shell.cp('./docs-source/layouts/default.hbs', './node_modules/typedoc-plugin-pages/dist/theme/v2/layouts');
shell.cp('./docs-source/l... | 13 | 400 | 5 | 0.98 | 2026-04-17T18:03:59.138465 | true |
github_mswjs_msw_47ae5435235bfe1809e39368671cfb21c785a0e3 | TypeScript | mswjs | msw | 17,848 | 615 | Industry standard API mocking for JavaScript. | [
"api",
"api-mocking",
"devtools",
"mock",
"mock-service-worker",
"mocking",
"mocking-framework",
"mocking-library",
"msw",
"mswjs",
"service-worker"
] | MIT | src/node/async-handlers-controller.test.ts | async-handlers-controller.test.ts | 1,510 | import { http } from '../core/http'
import { AsyncHandlersController } from './async-handlers-controller'
it('respects initial handlers in the boundary', () => {
{
const controller = new AsyncHandlersController([])
controller.boundary(() => {
expect(controller.currentHandlers()).toEqual([])
})()
... | 126 | 1,510 | 51 | 0.98 | 2026-04-17T17:54:44.376739 | true |
github_serenity-rs_serenity_da6f405d4ddc5a851f86f030f8adecd94a5b3e4c | Rust | serenity-rs | serenity | 5,463 | 661 | A Rust library for the Discord API. | [
"discord",
"discord-api",
"hacktoberfest",
"rust"
] | ISC | src/builder/edit_guild_welcome_screen.rs | edit_guild_welcome_screen.rs | 3,559 | #[cfg(feature = "http")]
use super::Builder;
#[cfg(feature = "http")]
use crate::http::CacheHttp;
#[cfg(feature = "http")]
use crate::internal::prelude::*;
use crate::model::prelude::*;
/// A builder to edit the welcome screen of a guild
///
/// [Discord docs](https://docs.discord.com/developers/resources/guild#modify... | 356 | 3,559 | 120 | 0.98 | 2026-04-17T15:00:49.021778 | true |
github_idreesshaikh_Autonomous-Driving-in-Carla-using-Deep-Reinforcement-Learning_8001cf936b19685e61482cad596f8ec7271a60c8 | Python | idreesshaikh | Autonomous-Driving-in-Carla-using-Deep-Reinforcement-Learning | 551 | 92 | Deep Reinforcement Learning (PPO) in Autonomous Driving (Carla) [from scratch] | [
"autonomous-driving",
"carla-driving-simulator",
"carla-environment",
"carla-simulator",
"ddqn",
"deep-learning",
"deep-learning-algorithms",
"deep-reinforcement-learning",
"openai",
"ppo",
"proximal-policy-optimization",
"pytorch",
"reinforcement-learning",
"self-driving",
"self-driving... | MIT | discrete_driver.py | discrete_driver.py | 8,354 | import os
import sys
import time
import random
import numpy as np
import argparse
import logging
import pickle
import torch
from distutils.util import strtobool
from threading import Thread
from datetime import datetime
from torch.utils.tensorboard import SummaryWriter
from simulation.connection import ClientConnection... | 559 | 8,354 | 218 | 0.98 | 2026-04-22T20:50:13.223327 | true |
github_foresterre_cargo-msrv_287423ed66c0a750d09b4149e1423785dde44bd5 | Rust | foresterre | cargo-msrv | 1,171 | 42 | 🦀 Find the minimum supported Rust version (MSRV) for your project | [
"cargo",
"cargo-msrv",
"cli",
"hacktoberfest",
"msrv",
"rust",
"rust-lang",
"rust-tools"
] | Apache-2.0 | src/reporter/mod.rs | mod.rs | 5,865 | use storyteller::{ChannelEventListener, ChannelReporter, EventListener, event_channel};
use crate::TResult;
use crate::reporter::event::ScopeCounter;
pub use ui::DiscardOutputHandler;
pub use ui::HumanProgressHandler;
pub use ui::JsonHandler;
pub use ui::MinimalOutputHandler;
pub use event::{
Event, Marker, Mess... | 516 | 5,865 | 210 | 0.98 | 2026-04-17T19:34:44.622802 | true |
github_goodrain_rainbond_577002be717f4fdcdff0de4bb308660cda344701 | 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/controller/lg_pack.go | lg_pack.go | 6,127 | package controller
import (
"archive/tar"
"compress/gzip"
"encoding/json"
"errors"
"github.com/go-chi/chi"
"github.com/goodrain/rainbond/db"
httputil "github.com/goodrain/rainbond/util/http"
"io"
"math/rand"
"net/http"
"os"
"path"
"path/filepath"
"reflect"
"strings"
)
// LongVersionStruct -
type LongVe... | 595 | 5,783 | 210 | 0.98 | 2026-04-17T20:41:59.577595 | true |
github_huggingface_transformers_a51ebca341d4940b6b2cb28e5f4513b5a72b35f8 | 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/activations.py | activations.py | 13,184 | # 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... | 1,309 | 13,182 | 361 | 0.98 | 2026-04-22T13:17:45.785624 | true |
github_ultraworkers_claw-code_2dc0c05cef1e0c41eb65d5db987f9b98c98e391e | 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/__init__.py | __init__.py | 912 | """Python porting workspace for the Claude Code rewrite effort."""
from .commands import PORTED_COMMANDS, build_command_backlog
from .parity_audit import ParityAuditResult, run_parity_audit
from .port_manifest import PortManifest, build_port_manifest
from .query_engine import QueryEnginePort, TurnResult
from .runtime ... | 69 | 912 | 30 | 0.98 | 2026-04-17T13:13:03.945908 | true |
github_mpatacchiola_dissecting-reinforcement-learning_ba74ed551cef0feb8f80f095a7d222a4cfc395ba | 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/2/montecarlo_prediction.py | montecarlo_prediction.py | 4,758 | #!/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... | 570 | 4,758 | 128 | 0.98 | 2026-04-22T20:43:07.689173 | true |
github_typicode_lowdb_1ddd81898bfb92802284b42cf4b716b7a6ae565b | TypeScript | typicode | lowdb | 22,525 | 967 | Simple and fast JSON database | [
"database",
"electron",
"embeddable",
"embedded-database",
"javascript",
"json",
"localstorage",
"lodash",
"nodejs",
"storage"
] | MIT | src/examples/cli.ts | cli.ts | 292 | import { JSONFileSyncPreset } from '../presets/node.js'
type Data = {
messages: string[]
}
const message = process.argv[2] || ''
const defaultData: Data = { messages: [] }
const db = JSONFileSyncPreset<Data>('file.json', defaultData)
db.update(({ messages }) => messages.push(message))
| 37 | 292 | 13 | 0.98 | 2026-04-23T06:45:33.420169 | true |
github_iov-one_weave_6c6203badcb1f9a8fb29f21c3c275fb53b7a07e3 | Go | iov-one | weave | 1,111 | 45 | Easy-to-use SDK to build Tendermint ABCI applications | [
"abci",
"blockchain",
"framework",
"tendermint"
] | NOASSERTION | cmd/bnscli/cmd_batch.go | cmd_batch.go | 10,698 | package main
import (
"errors"
"flag"
"fmt"
"io"
bnsd "github.com/iov-one/weave/cmd/bnsd/app"
"github.com/iov-one/weave/cmd/bnsd/x/account"
"github.com/iov-one/weave/cmd/bnsd/x/username"
"github.com/iov-one/weave/datamigration"
"github.com/iov-one/weave/x/cash"
"github.com/iov-one/weave/x/currency"
"github... | 800 | 10,698 | 323 | 0.98 | 2026-04-17T17:00:11.260053 | true |
github_livekit_livekit_32d86d9f5d77b56e4a688a7efc38f2985abfcc8f | Go | livekit | livekit | 18,220 | 1,897 | End-to-end realtime stack for connecting humans and AI | [
"golang",
"media-server",
"sfu",
"video",
"voice",
"voice-ai",
"webrtc"
] | Apache-2.0 | pkg/service/ioservice.go | ioservice.go | 4,757 | // Copyright 2023 LiveKit, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to i... | 532 | 4,757 | 195 | 0.98 | 2026-04-17T09:42:21.814555 | true |
github_Netflix_vizceral_2184b425e85bf4463f9a610cf275708e8d0ba756 | JavaScript | Netflix | vizceral | 4,093 | 397 | WebGL visualization for displaying animated traffic graphs | [
"graph",
"monitoring",
"traffic",
"visualization",
"webgl"
] | Apache-2.0 | src/globalStyles.js | globalStyles.js | 4,027 | /**
*
* Copyright 2016 Netflix, 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 a... | 410 | 4,027 | 121 | 0.98 | 2026-04-23T14:43:53.390798 | true |
github_rustdesk_rustdesk_741805e25f5672590ebb00f739ab7131732a1cd1 | 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/he.rs | he.rs | 51,961 | lazy_static::lazy_static! {
pub static ref T: std::collections::HashMap<&'static str, &'static str> =
[
("Status", "מצב"),
("Your Desktop", "שולחן העבודה שלך"),
("desk_tip", "ניתן לגשת לשולחן העבודה שלך עם מזהה וסיסמה זו."),
("Password", "סיסמה"),
("Ready", "מוכן"),
(... | 4,369 | 40,571 | 748 | 0.98 | 2026-04-17T13:14:31.694707 | true |
github_bigint_hey_294347edb7d883029269adf7919bf1550b511371 | TypeScript | bigint | hey | 29,463 | 1,807 | Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿 | [
"blockchain",
"crypto",
"dapp",
"graphql",
"hacktoberfest",
"lens-protocol",
"nextjs",
"react",
"social-media",
"tailwindcss",
"turborepo",
"typescript",
"vitest",
"wagmi",
"web3"
] | GPL-3.0 | src/data/storage.ts | storage.ts | 340 | export const Localstorage = {
AccountStore: "account.store",
AuthStore: "auth.store",
BetaStore: "beta.store",
HomeTabStore: "home-tab.store",
NotificationStore: "notification.store",
PreferencesStore: "preferences.store",
ProStore: "pro.store",
ReloadTabs: "reload.tabs",
SearchStore: "search.store",
... | 26 | 340 | 13 | 0.98 | 2026-04-18T01:22:56.796745 | true |
github_ZhuLinsen_daily_stock_analysis_e2261b6d4fb3ff99aac8517b70eff8ce74255341 | Python | ZhuLinsen | daily_stock_analysis | 30,272 | 30,966 | LLM驱动的 A/H/美股智能分析器:多数据源行情 + 实时新闻 + LLM决策仪表盘 + 多渠道推送,零成本定时运行,纯白嫖. LLM-powered stock analysis system for A/H/US markets. | [
"agent",
"ai",
"aigc",
"gemini",
"llm",
"quant",
"quantitative-trading",
"rag",
"stock"
] | MIT | src/services/social_sentiment_service.py | social_sentiment_service.py | 14,149 | # -*- coding: utf-8 -*-
"""
===================================
Social Sentiment Intelligence Service
===================================
Fetches Reddit / X (Twitter) / Polymarket social sentiment data
from api.adanos.org for US stock tickers.
Optional — requires SOCIAL_SENTIMENT_API_KEY.
Only activates for US stock ... | 1,157 | 14,122 | 344 | 0.98 | 2026-04-17T15:27:49.470053 | true |
github_bvaughn_react-virtualized_86a8ba26ba89eadf981263f1c30ba760181f5d10 | JavaScript | bvaughn | react-virtualized | 27,068 | 3,034 | React components for efficiently rendering large lists and tabular data | [
"grid",
"list",
"listview",
"performance",
"react",
"react-components",
"tabular-data",
"virtualization",
"windowing"
] | MIT | source/Masonry/createCellPositioner.js | createCellPositioner.js | 1,533 | /** @flow */
import type {CellMeasurerCache, Positioner} from './Masonry';
type createCellPositionerParams = {
cellMeasurerCache: CellMeasurerCache,
columnCount: number,
columnWidth: number,
spacer?: number,
};
type resetParams = {
columnCount: number,
columnWidth: number,
spacer?: number,
};
export de... | 173 | 1,533 | 69 | 0.98 | 2026-04-23T04:50:36.125764 | true |
github_ReFirmLabs_binwalk_11441565768e405a9fbc712b8900f0d4e320481c | Rust | ReFirmLabs | binwalk | 13,850 | 1,782 | Firmware Analysis Tool | [] | MIT | src/signatures/cfe.rs | cfe.rs | 1,278 | use crate::signatures::common::{
CONFIDENCE_LOW, CONFIDENCE_MEDIUM, SignatureError, SignatureResult,
};
/// Human readable description
pub const DESCRIPTION: &str = "CFE bootloader";
/// CFE bootloader always contains this string
pub fn cfe_magic() -> Vec<Vec<u8>> {
vec![b"CFE1CFE1".to_vec()]
}
/// Validate ... | 152 | 1,278 | 40 | 0.98 | 2026-04-17T14:14:43.484559 | true |
github_fram-x_FluidTransitions_7647f1bdecac7fe943e2f37d487c0ad3aefb0dd2 | JavaScript | fram-x | FluidTransitions | 2,924 | 190 | Fluid Transitions for React Navigation | [
"animation",
"react-native",
"react-navigation",
"shared-element-transition",
"transition"
] | MIT | lib/TransitionOverlayView.js | TransitionOverlayView.js | 7,206 | import React from 'react';
import { View, StyleSheet, Animated } from 'react-native';
import PropTypes from 'prop-types';
import sortBy from 'lodash.sortby';
import TransitionItem from './TransitionItem';
import { TransitionContext, RouteDirection } from './Types';
import * as Constants from './TransitionConstants';
... | 682 | 7,206 | 235 | 0.98 | 2026-04-23T14:01:27.201549 | true |
github_fish-shell_fish-shell_65a77714bafe4a035e97463ecaaa495046964661 | Rust | fish-shell | fish-shell | 33,184 | 2,275 | The user-friendly command line shell. | [
"fish",
"rust",
"shell",
"terminal"
] | NOASSERTION | src/kill.rs | kill.rs | 2,917 | //! The killring.
//!
//! Works like the killring in emacs and readline. The killring is cut and paste with a memory of
//! previous cuts.
use std::collections::VecDeque;
use std::sync::Mutex;
use crate::prelude::*;
struct KillRing(VecDeque<WString>);
static KILL_RING: Mutex<KillRing> = Mutex::new(KillRing::new());... | 292 | 2,917 | 116 | 0.98 | 2026-04-17T13:22:47.373086 | true |
github_ZhuLinsen_daily_stock_analysis_207868facd324e5bbbb0db6be4f2723d49fca933 | Python | ZhuLinsen | daily_stock_analysis | 30,933 | 31,565 | LLM驱动的 A/H/美股智能分析器:多数据源行情 + 实时新闻 + LLM决策仪表盘 + 多渠道推送,零成本定时运行,纯白嫖. LLM-powered stock analysis system for A/H/US markets. | [
"agent",
"ai",
"aigc",
"gemini",
"llm",
"quant",
"quantitative-trading",
"rag",
"stock"
] | MIT | api/app.py | app.py | 7,768 | # -*- coding: utf-8 -*-
"""
===================================
FastAPI 应用工厂模块
===================================
职责:
1. 创建和配置 FastAPI 应用实例
2. 配置 CORS 中间件
3. 注册路由和异常处理器
4. 托管前端静态文件(生产模式)
使用方式:
from api.app import create_app
app = create_app()
"""
import mimetypes
import os
from contextlib import asynccontex... | 501 | 7,126 | 209 | 0.98 | 2026-04-22T14:56:40.115540 | true |
github_isomorphic-git_isomorphic-git_9c8cffeb00cfce9e1445c416c9da0337f64e9d25 | JavaScript | isomorphic-git | isomorphic-git | 8,181 | 460 | A pure JavaScript implementation of git for node and browsers! | [
"browser",
"git",
"hacktoberfest",
"isomorphic-javascript",
"javascript",
"nodejs",
"vcs"
] | MIT | src/commands/fetch.js | fetch.js | 12,881 | // @ts-check
import '../typedefs.js'
import { _currentBranch } from '../commands/currentBranch.js'
import { MissingParameterError } from '../errors/MissingParameterError.js'
import { RemoteCapabilityError } from '../errors/RemoteCapabilityError.js'
import { GitConfigManager } from '../managers/GitConfigManager.js'
imp... | 1,578 | 12,881 | 379 | 0.98 | 2026-04-23T07:10:57.268369 | true |
github_lbjlaq_Antigravity-Manager_a5451c709e10f16ce72c1396f21c6845c1ac06f7 | TypeScript | lbjlaq | Antigravity-Manager | 28,337 | 3,089 | Professional Antigravity Account Manager & Switcher. One-click seamless account switching for Antigravity Tools. Built with Tauri v2 + React (Rust).专业的 Antigravity 账号管理与切换工具。为 Antigravity 提供一键无缝账号切换功能。 | [
"account-manager",
"antigravity"
] | NOASSERTION | src/stores/useViewStore.ts | useViewStore.ts | 384 | import { create } from 'zustand';
interface ViewState {
isMiniView: boolean;
setMiniView: (isMini: boolean) => void;
toggleMiniView: () => void;
}
export const useViewStore = create<ViewState>((set) => ({
isMiniView: false,
setMiniView: (isMini) => set({ isMiniView: isMini }),
toggleMiniView: ... | 47 | 384 | 14 | 0.98 | 2026-04-17T13:28:46.634067 | true |
github_ultraworkers_claw-code_a9684d542c80552075d49b6151010a34341e8425 | 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/QueryEngine.py | QueryEngine.py | 712 | from __future__ import annotations
from .query_engine import QueryEnginePort
from .runtime import PortRuntime
class QueryEngineRuntime(QueryEnginePort):
def route(self, prompt: str, limit: int = 5) -> str:
matches = PortRuntime().route_prompt(prompt, limit=limit)
lines = ['# Query Engine Route', ... | 65 | 710 | 20 | 0.98 | 2026-04-17T13:13:03.358308 | true |
github_pathwaycom_pathway_8fe6585d1d97c454b212580becbe391e81f66b88 | Rust | pathwaycom | pathway | 63,434 | 1,631 | Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG. | [
"batch-processing",
"data-analytics",
"data-pipelines",
"data-processing",
"dataflow",
"etl",
"etl-framework",
"iot-analytics",
"kafka",
"machine-learning-algorithms",
"pathway",
"python",
"real-time",
"rust",
"stream-processing",
"streaming",
"time-series-analysis"
] | NOASSERTION | src/persistence/cached_object_storage.rs | cached_object_storage.rs | 40,846 | use log::{debug, error, info, warn};
use std::cmp::{max, min};
use std::collections::hash_map::Iter;
use std::collections::{HashMap, HashSet};
use std::mem::take;
use std::sync::{Arc, Mutex};
use std::time::{Duration, Instant};
use futures::channel::oneshot::Receiver as OneShotReceiver;
use lz4_flex::block::{compress_... | 3,234 | 40,846 | 1,116 | 0.98 | 2026-04-23T04:40:46.690454 | true |
github_tidwall_tile38_edd5e4fc41ed0a398d4cf3bcbf20dec05cf433b6 | Go | tidwall | tile38 | 9,619 | 610 | Real-time Geospatial and Geofencing | [
"database",
"geo",
"geofences",
"geospatial",
"index",
"location",
"spatial"
] | MIT | internal/server/expression.go | expression.go | 4,483 | package server
import (
"strings"
"github.com/tidwall/geojson"
)
// BinaryOp represents various operators for expressions
type BinaryOp byte
// expression operator enum
const (
NOOP BinaryOp = iota
AND
OR
tokenAND = "and"
tokenOR = "or"
tokenNOT = "not"
tokenLParen = "("
tokenRParen = ")"
)
// ... | 531 | 4,483 | 190 | 0.98 | 2026-04-17T18:10:08.935018 | true |
github_kopia_kopia_7d76bc55bebe6443ad4d7cf4a2f70d03b570cda2 | Go | kopia | kopia | 13,024 | 637 | Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included. | [
"backup",
"cloud",
"deduplication",
"encryption",
"google-cloud-storage"
] | Apache-2.0 | internal/diff/diff_test.go | diff_test.go | 18,636 | package diff_test
import (
"bytes"
"context"
"io"
"os"
"strings"
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/zeebo/blake3"
"github.com/kopia/kopia/fs"
"github.com/kopia/kopia/internal/diff"
"github.com/kopia/kopia/internal/repotesting"
"github.com/kopia/kopia/internal/testlogging"... | 1,778 | 18,636 | 616 | 0.98 | 2026-04-17T11:30:45.634792 | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.