🔥 uutils / coreutils - Cross-platform Rust rewrite of the GNU coreutils
GitHub热门项目 | Cross-platform Rust rewrite of the GNU coreutils | Stars: 23,440 | 58 stars today | 语言: Rust
GitHub热门开源项目精选
GitHub热门项目 | Cross-platform Rust rewrite of the GNU coreutils | Stars: 23,440 | 58 stars today | 语言: Rust
GitHub热门项目 | Docker container for managing Nginx proxy hosts with a simple, powerful interface | Stars: 33,063 | 16 stars today | 语言: TypeScript
GitHub热门项目 | Production-ready platform for agentic workflow development. | Stars: 143,849 | 164 stars today | 语言: TypeScript
GitHub热门项目 | Deliver web apps with confidence 🚀 | Stars: 100,179 | 86 stars today | 语言: TypeScript
GitHub热门项目 | Run agents like Hermes and OpenClaw more securely inside NVIDIA OpenShell with managed inference | Stars: 20,920 | 51 stars today | 语言: TypeScript
GitHub热门项目 | 🌈一个跨平台的划词翻译和OCR软件 | A cross-platform software for text translation and recognition. | Stars: 18,584 | 45 stars today | 语言: JavaScript
GitHub热门项目 | OpenAI Plugins | Stars: 1,380 | 17 stars today | 语言: JavaScript
GitHub热门项目 | Transformer Explained Visually: Learn How LLM Transformer Models Work with Interactive Visualization | Stars: 7,737 | 18 stars today | 语言: JavaScript
GitHub热门项目 | 🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman | Stars: 68,689 | 471 stars today | 语言: JavaScript
GitHub热门项目 | Opensource IDE For Exploring and Testing API's (lightweight alternative to Postman/Insomnia) | Stars: 44,677 | 31 stars today | 语言: JavaScript
GitHub热门项目 | AI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary | Stars: 27,289 | 173 stars today | 语言: Python
GitHub热门项目 | 📚 《从零开始构建智能体》——从零开始的智能体原理与实践教程 | Stars: 56,371 | 479 stars today | 语言: Python
GitHub热门项目 | 💫 Toolkit to help you get started with Spec-Driven Development | Stars: 108,276 | 311 stars today | 语言: Python
GitHub热门项目 | NVIDIA Cosmos is an open platform of world models, datasets, and tools that enables developers to build Physical AI for robots, autonomous vehicles, smart infrastructure, and more. | Stars: 8,795 | 138 stars today | 语言: Jupyter Notebook
GitHub热门项目 | An Open Source implementation of Notebook LM with more flexibility and features | Stars: 24,436 | 227 stars today | 语言: TypeScript
GitHub热门项目 | A complete computer science study plan to become a software engineer. | Stars: 349,457 | 330 stars today | 语言:
GitHub热门项目 | Multi-platform SDK for integrating GitHub Copilot Agent into apps and services | Stars: 8,827 | 25 stars today | 语言: Java
Used Waymo batteries will bolster California and Texas energy storage projects.
Bilingual post · Post bilíngue Jump to: English · Português English {#english} Configuring CrabPascal with crabpascal.toml Every serious compiler needs project-level configuration. CrabPascal v2.22.0 reads crabpascal.toml from your project root — search paths, preprocessor symbols, Delphi vs FPC mode, output format, and runtime defaults. Where the file lives The compiler searches in order: crabpascal.toml (project root) .crabpascal.toml (hidden) config/crabpascal.toml If none exist, sensible defaults apply. Add the file when your project grows beyond a single .dpr . Starter configuration [compiler] version = "2.22.0" search_paths = [ "rtl/" , "lib/" , "examples/" ] defines = [ "CRABPASCAL" , "RELEASE" , "MSWINDOWS" ] mode = "DELPHI" # or "OBJFPC" strict = false warnings = true [preprocessor] enabled = true process_includes = true symbols = [] [output] error_format = "vscode" # or "gcc", "delphi" colors = true [runtime] default_http_port = 9000 [paths] rtl_path = "rtl/" output_path = "output/" Place this beside your .dpr file. All CLI commands ( check , run , build-exe ) pick it up automatically. Common use cases Delphi vs Free Pascal mode [compiler] mode = "DELPHI" defines = [ "CRABPASCAL" , "MSWINDOWS" ] Switch to FPC compatibility: [compiler] mode = "OBJFPC" defines = [ "FPC" , "UNIX" ] Mode affects parsing rules and RTL resolution under rtl/ . Custom unit search paths Large projects split units across folders: [compiler] search_paths = [ "rtl/" , "src/units/" , "src/services/" , "third_party/" ] This replaces hardcoded -U flags in scripts. Preprocessor symbols Match Delphi conditional compilation: [preprocessor] enabled = true symbols = [ "DEBUG" , "TESTING" ] Your Pascal code can use: {$IFDEF DEBUG} WriteLn ( 'Debug build' ); {$ENDIF} Run crab-pascal preproc MyApp.dpr to inspect expanded source. CI-friendly error output [output] error_format = "gcc" colors = false show_stacktrace = false GitHub Actions parsers often prefer gcc-style lines. Local development can