awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 repositorios

Awesome GitHub RepositoriesLinear String Scanning

Basic sequential traversal of character arrays for pattern matching and searching.

Distinct from String Iterators: The candidates focus on complex algorithms or high-level iterators; this is a basic systems-level scanning implementation.

Explore 2 awesome GitHub repositories matching operating systems & systems programming · Linear String Scanning. Refine with filters or upvote what's useful.

Awesome Linear String Scanning GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • antirez/kiloAvatar de antirez

    antirez/kilo

    8,767Ver en GitHub↗

    Kilo is a small-scale text editor implemented in C to demonstrate low-level systems programming. It provides a command line interface for modifying and saving text files directly within a terminal. The editor includes built-in string search and navigation capabilities to locate text within a file. It also applies colors to source code based on language patterns to provide syntax highlighting.

    Uses linear character array scanning to implement core text search and syntax highlighting logic.

    C
    Ver en GitHub↗8,767
  • orhun/binsiderAvatar de orhun

    orhun/binsider

    3,938Ver en GitHub↗

    Binsider is a collection of specialized toolsets for hexadecimal editing, ELF structural analysis, system call tracing, and execution performance profiling. It provides a suite of utilities designed for binary reverse engineering, encompassing both static structural analysis and dynamic runtime monitoring of compiled binaries. The project distinguishes itself by combining low-level binary manipulation, such as a hex editor for raw byte modification, with an ELF binary analysis tool for inspecting file structures and metadata. It also includes a Linux system call tracer for observing dynamic b

    Scans raw binary data for contiguous sequences of printable ASCII characters to identify embedded strings.

    Rustanalysisbinarybinary-data
    Ver en GitHub↗3,938
  1. Home
  2. Operating Systems & Systems Programming
  3. Linear String Scanning