Skip to content
View alekseylichtman's full-sized avatar
🚴‍♀️
Working on my bike
🚴‍♀️
Working on my bike
Block or Report

Block or report alekseylichtman

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. customTerminal.bash_prompt customTerminal.bash_prompt
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # GIT FUNCTIONS
    4
    git_branch() {
    5
        git branch 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
  2. DiceRoller DiceRoller Public

    Kotlin

  3. iOSPedometr iOSPedometr Public

    This app can count steps you've walked, distance and your average speed.

    Swift 1

  4. Swift. Convert any object into JSON Swift. Convert any object into JSON
    1
    protocol JSONConvertible: Codable {
    2
        func convertToJson() -> String
    3
    }
    4
    
                  
    5
    extension JSONConvertible {
  5. Swift. Convert any object to dictionary Swift. Convert any object to dictionary
    1
    protocol DictionaryConvertible: Codable {
    2
        func convertToDictionary() -> [String: Any]
    3
    }
    4
    
                  
    5
    extension DictionaryConvertible {
  6. Swift. Get Date() with timezone Swift. Get Date() with timezone
    1
    extension Date {
    2
        var currentUTCTimeZoneDate: String {
    3
            let calendar = Calendar.current
    4
            let timeZone = calendar.timeZone.identifier
    5
            let formatter = DateFormatter()