Skip to content
View yacir's full-sized avatar

Organizations

@numberly

Block or report yacir

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. CollectionViewSlantedLayout CollectionViewSlantedLayout Public

    A CollectionView Layout displaying a slanted cells

    Swift 2.3k 135

  2. markdown-fenced-code-tabs markdown-fenced-code-tabs Public

    Generates tabs for consecutive markdown code blocks

    Python 47 13

  3. A simple π—Άπ˜€π—’π—±π—± & π—Άπ˜€π—˜π˜ƒπ—²π—» extension to... A simple π—Άπ˜€π—’π—±π—± & π—Άπ˜€π—˜π˜ƒπ—²π—» extension to the π—œπ—»π˜π—²π—΄π—²π—Ώ type, which might come handy in many situations.
    1
    extension BinaryInteger {
    2
     /// Returns true if and only if this integer is even.
    3
     var isEven: Bool { return self % 2 == 0 }
    4
     /// Returns true if and only if this integer is odd.
    5
     var isOdd: Bool { return self % 2 != 0 }