Skip to content
View yacir's full-sized avatar

Organizations

@numberly
Block or Report

Block or report yacir

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  1. CollectionViewSlantedLayout CollectionViewSlantedLayout Public

    A CollectionView Layout displaying a slanted cells

    Swift 2.3k 129

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

    Generates tabs for consecutive markdown code blocks

    Python 47 12

  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 }