awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 مستودعات

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

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • kodecocodes/swift-algorithm-clubالصورة الرمزية لـ kodecocodes

    kodecocodes/swift-algorithm-club

    29,099عرض على 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
    عرض على GitHub↗29,099
  • crytic/slitherالصورة الرمزية لـ crytic

    crytic/slither

    6,141عرض على GitHub↗

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

    Pythonethereumsoliditystatic-analysis
    عرض على GitHub↗6,141
  • alda-lang/aldaالصورة الرمزية لـ alda-lang

    alda-lang/alda

    5,906عرض على 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
    عرض على GitHub↗5,906
  • dankogai/js-base64الصورة الرمزية لـ dankogai

    dankogai/js-base64

    4,365عرض على GitHub↗

    js-base64 هي مكتبة JavaScript لترميز وفك ترميز البيانات بين تنسيق Base64 وسلاسل JavaScript أو مصفوفات البايت. توفر أدوات لتحويل البيانات الثنائية إلى سلاسل Base64 وتحويل تلك السلاسل مرة أخرى إلى نصها الأصلي أو تنسيق البايت الخام. يتضمن المشروع مدققاً لسلسلة Base64 للتحقق مما إذا كان التسلسل يتبع التنسيق الصحيح والحروف والحشو (padding). كما يدعم إنشاء سلاسل Base64 آمنة لـ URI عن طريق استبدال الحروف التي قد تسبب أخطاء ترميز في URIs ويسمح بإزالة الحشو. توفر المكتبة أداة امتداد للنموذج (prototype extension) تضيف طرق الترميز وفك الترميز مباشرة إلى كائنات السلسلة والمصفوفة القياسية في JavaScript.

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

    JavaScript
    عرض على GitHub↗4,365
  1. Home
  2. Software Engineering & Architecture
  3. Integer Arithmetic
  4. Integer Bit Analyzers
  5. Bit-Shifting Arithmetic
  6. Bit Sequence Shifting

استكشف الوسوم الفرعية

  • 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.