Skip to content
View yusent's full-sized avatar
🏡
Working from home
🏡
Working from home

Organizations

@soluciones-manugor @poligono-consultores
Block or Report

Block or report yusent

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
yusent/README.md
module Myself where

type Skill = String

data Profile = Profile
  { name :: String
  , mainSkills :: [Skill]
  }

instance Show Profile where
  show p = unlines
         $ ("Hi! I'm " ++ name p ++ " and my main skills are:")
         : (bulletify <$> mainSkills p)

main :: IO ()
main = print myself

myself :: Profile
myself = Profile "Yus"
  [ "Haskell"
  , "Ruby"
  , "JavaScript"
  , "Rails"
  , "React"
  , "React Native"
  ]

bulletify :: String -> String
bulletify = ('-' :) . (' ' :)

Pinned

  1. cfdis cfdis Public

    A set of tools to work with CFDIs (mexican invoices)

    Haskell 2

  2. yesod-auth-bcryptdb yesod-auth-bcryptdb Public

    Yesod.Auth.BcryptDB plugin

    Haskell 1 1

  3. pos-printer pos-printer Public

    Ruby library for printing using ESC/POS (thermal) printers.

    Ruby 5

  4. numerals numerals Public

    Forked from roelvandijk/numerals

    Convert numbers to number words

    Haskell

  5. adventofcode adventofcode Public

    My Advent of Code solutions

    Python