Skip to content
View juliaYamamoto's full-sized avatar
Block or Report

Block or report juliaYamamoto

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. Simple-Weather Simple-Weather Public

    A simple weather application made 100% in swift using apple frameworks for network communication and animations

    Swift 5 1

  2. HoTTeaPot HoTTeaPot Public

    A reference iOS app to show all status codes you can get: Success, errors, teapots and more :)

    Swift 3

  3. Meteor Meteor Public

    A simple meteor game

    C# 1

  4. melanciadev/circk melanciadev/circk Public

    C# 1

  5. Parse a local json using generics Parse a local json using generics
    1
    // Static function to decode a local json
    2
    // Receives a path and a generic type (must conform to the codable protocol) and return the data decoded into the given type
    3
    
                  
    4
    class JsonParser {
    5
            static func from<T: Codable> (path: String, ofType: T.Type) -> T? {