awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 repository-uri

Awesome GitHub RepositoriesBit Sequence Shifting

Low-level operations for moving bits in a set left or right by specified positions.

Distinct from Bit-Shifting Arithmetic: Focuses on the shift operation itself rather than using shifts to implement a full arithmetic system

Explore 4 awesome GitHub repositories matching software engineering & architecture · Bit Sequence Shifting. Refine with filters or upvote what's useful.

Awesome Bit Sequence Shifting GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • kodecocodes/swift-algorithm-clubAvatar kodecocodes

    kodecocodes/swift-algorithm-club

    29,099Vezi pe GitHub↗

    This project is a comprehensive collection of common computer science algorithms and data structures implemented in Swift. It serves as an educational reference and library for studying computational complexity, algorithmic logic, and data structure engineering through practical code examples. The repository provides a wide suite of data structure implementations, including various types of linked lists, heaps, hash tables, and an extensive range of hierarchical trees such as Red-Black, B-Tree, and Splay trees. It also covers diverse sorting and searching techniques, from basic bubble sort to

    Provides operations for moving bits in a set left or right by a specified number of positions.

    Swiftalgorithmsdata-structuresswift
    Vezi pe GitHub↗29,099
  • crytic/slitherAvatar crytic

    crytic/slither

    6,141Vezi pe GitHub↗

    Trail of Bits flags assembly shift operations where the value and shift amount arguments are swapped, producing incorrect results.

    Pythonethereumsoliditystatic-analysis
    Vezi pe GitHub↗6,141
  • alda-lang/aldaAvatar alda-lang

    alda-lang/alda

    5,906Vezi pe GitHub↗

    Alda is a text-based music programming language and command-line tool for composing, playing, and live-coding musical scores. It functions as a MIDI composition engine that renders plain-text scores into audio output, and as a live coding environment where code entered in a read-eval-print loop produces real-time playback without restarting the interpreter. The system distinguishes itself through an event-driven playback engine that schedules timed note events, an instrument-attribute inheritance model that cascades properties like volume and tempo from global defaults to individual parts, an

    Changes note pitch by shifting octaves up or down using persistent angle bracket operators.

    Goaldahacktoberfestmusic
    Vezi pe GitHub↗5,906
  • dankogai/js-base64Avatar dankogai

    dankogai/js-base64

    4,365Vezi pe GitHub↗

    js-base64 este o bibliotecă JavaScript pentru codificarea și decodificarea datelor între formatul Base64 și șiruri de caractere sau matrice de octeți JavaScript. Oferă utilitare pentru conversia datelor binare în șiruri Base64 și transformarea acelor șiruri înapoi în textul lor original sau în formatul brut de octeți. Proiectul include un validator de șiruri Base64 pentru a verifica dacă o secvență respectă formatarea, caracterele și padding-ul corect. De asemenea, suportă crearea de șiruri Base64 sigure pentru URI prin înlocuirea caracterelor care ar cauza erori de codificare în URI-uri și permite eliminarea padding-ului. Biblioteca oferă un utilitar de extensie a prototipului care adaugă metode de codificare și decodificare direct la obiectele standard de tip șir și matrice din JavaScript.

    Implements low-level bit shifting to convert three bytes of binary data into four Base64 characters.

    JavaScript
    Vezi pe GitHub↗4,365
  1. Home
  2. Software Engineering & Architecture
  3. Integer Arithmetic
  4. Integer Bit Analyzers
  5. Bit-Shifting Arithmetic
  6. Bit Sequence Shifting

Explorează sub-etichetele

  • Music Octave Shift OperatorsNotation that changes note pitch by shifting octaves up or down using angle bracket operators that persist until reset. **Distinct from Bit Sequence Shifting:** Distinct from Bit Sequence Shifting: applies to musical octave shifts in score notation, not low-level bit manipulation.
  • Reversed Shift Argument DetectorsFlags assembly shift operations where the value and shift amount arguments are swapped. **Distinct from Bit Sequence Shifting:** Distinct from Bit Sequence Shifting: detects a specific bug pattern (swapped arguments) rather than general shift operations.