Giter Club home page Giter Club logo

Fernando Pradas

Website Build Passing Tests Passing Code Quality Languages License GitHub last commit

GitHub followers Twitter Follow

What I do?

I'm a software engineer with wide experience in development.

I've had the opportunity to participate in the development of exciting 🀩 projects that have helped me to learn πŸ€” actively. When I develop software my main goal 🚩is to solve problems with a clean 🧽, reusable ♻️ and scalable ⬆️ code. I'm always looking for πŸ”Ž how to improve myself and how to improve the code and its performance, this is really important πŸ” in large volume projects.

Adaptability and multidisciplinary teamwork πŸ‘₯, and seeking always to keep abreast of new trends πŸ†• in a world 🌎 of constant change, as is the development of software.

I recently started in the πŸŽ“ teaching world as a Frameworks teacher at LaSalleBCN (URL University).

On my free time πŸ₯³ I love to travel ✈️ and learning about science βš› divulgation.

My principles

  • πŸ§‘β€πŸ’» Write the code for your colleagues, not for machines.
  • πŸ› οΈ Pick the right tool for the right job, don't reinvent the wheel.
  • πŸ€·β€β™€οΈ Don’t solve a problem that doesn’t exist.
  • πŸ«‚ Listen. Inspire. Learn. Share.
  • πŸš€ Don’t walk alone, the humanity didn't get to the moon by only one person.
  • πŸ₯‘ Be pragmatic, solve it and then iterate.

Interests

  • πŸ§‘β€πŸ”¬ Science Divulgation
  • πŸ€– AI Artificial Intelligence
  • β›“ Blockchain & Smart Contracts (Specially in Ethereum)
  • ✈ Travelling

Experience

import java.time.LocalDate
import java.time.Period

@JvmInline
value class Company(val name: String)

data class Job(
    val company: Company,
    val startDate: LocalDate,
    val endDate: LocalDate,
    val title: String,
    val description: String
) {
    internal val period: Period = Period.between(startDate, endDate)
}

fun Job.toStringPeriod() = period
    .takeIf { it.years > 0 }?.let { "${it.years} years" } ?: "${period.months} months"

val professionalCareer = listOf(
    Job(
        Company("OLX Autos"),
        LocalDate.of(2022, 7, 1),
        LocalDate.now(),
        "Backend Chapter Lead",
        """
        As a backend chapter lead my role here is to play as an orchestrator to align efforts 
        between different squads. As well as a technical reference and cross-team mentor.
        Part of this role is to help building a backend community and promote knowledge sharing 
        across all devs, RFCs proposals, etc.
        """.trimIndent()
    ),
    Job(
        Company("OLX Autos"),
        LocalDate.of(2022, 1, 1),
        LocalDate.now(),
        "Senior Remote Software Engineer",
        """
        OLX lists around 500k cars on its platform every month and treated more than 
        50k inspections with a quotation for sale. In 2021 OLX Autos sold around 100k cars 
        and have more than 4,600 employees in the three continents and 10 markets 
        in which it operates.My role as a backend engineer is to help OLX continue to grow 
        and consolidate in LATAM and the rest of the markets.
        Among the technologies I work with here are Java/Kotlin with Spring Boot, 
        Infrastructure as Code with AWS and Terraform, pipeline definition with Gitlab CI/CD 
        and Kubernetes.
        """.trimIndent()
    ),
    Job(
        Company("Letgo"),
        LocalDate.of(2018, 1, 1),
        LocalDate.now(),
        "Senior Software Engineer",
        """
        When I joined Letgo in 2018 it was, with over 100M downloads and more than 20M 
        of monthly users, one the top downloaded second-hand marketplace Apps in USA. 
        The company was only 3 years old at 
        that moment and was growing fast, time-to-market was the priority and delivering 
        new features, always A/B tested, was our day to day.
        Among other things, working and dealing with high availability and large scale systems. 
        And how important is to have the correct logging and monitoring of your systems, 
        with approximately 700k daily users.
        Also designing solutions with different AWS (such DynamoDB, SQS, SNS, Aurora, etc) 
        """.trimIndent()
    ),
    Job(
        Company("La Salle BCN"),
        LocalDate.of(2020, 2, 1),
        LocalDate.of(2022, 1, 1),
        "Teacher",
        """
        As part of the faculty of the university master's degree 
        in high performance web programming at La Salle (Ramon Llull University, Barcelona). 
        My subject was development frameworks. 
        The course covers various topics to master modern backend frameworks such as 
        dependency injection containers, logging, ORM and data mapper patterns.
        """.trimIndent()
    ),
    Job(
        Company("Atrapalo"),
        LocalDate.of(2015, 11, 1),
        LocalDate.of(2018, 1, 1),
        "Senior Software Engineer",
        """
        When I joined Letgo in 2018 it was, with over 100M 
        downloads and more than 20M of monthly users, 
        one the top downloaded second-hand marketplace Apps in USA. 
        The company was only 3 years old at that moment and was 
        growing fast, time-to-market was the priority and delivering 
        new features, always A/B tested, was our day to day.
        Among other things, working and dealing with high availability 
        and large scale systems, by implementing microservices and 
        Event-Driven Architecture. Keeping in mind how important is 
        to have the correct logging and monitoring of your systems, 
        with approximately 700k daily users.
        Also designing solutions with different Amazon Web Services 
        (such DynamoDB, SQS, SNS, Aurora, etc).
        """.trimIndent()
    ),
    Job(
        Company("Bab"),
        LocalDate.of(2012, 12, 1),
        LocalDate.of(2015, 11, 1),
        "Full-stack Developer",
        """     
        A small company with 12-14 employees mainly focused 
        on and SaaS product consisting of a CMS + e-commerce, 
        but also developing custom projects for clients.
        My job here, mainly, was to participate in all phases 
        (requirements, design and development) of projects 
        from our clients. Projects such a MOOC platform or an 
        online magazine kiosk. Also helped in the first steps 
        of designing the new version of CMS platform.
        """.trimIndent()
    )
)

fun main() = println(
    professionalCareer
        .sortedByDescending { it.endDate }
        .joinToString(System.lineSeparator()) { "\t- ${it.title} at ${it.company.name} for ${it.toStringPeriod()}" }
        .let { "Professional career:${System.lineSeparator()}$it" }
)
/*
Professional career:
	- Backend Chapter Lead at OLX Autos for 2 months
	- Senior Remote Software Engineer at OLX Autos for 8 months
	- Senior Software Engineer at Letgo for 4 years
	- Teacher at La Salle BCN for 1 years
	- Senior Software Engineer at Atrapalo for 2 years
	- Full-stack Developer at Bab for 2 years
*/

Languages

let programmingLanguages = [
  "PHP",
  "Javascript",
  "Bash",
  "Go",
  "Scala",
  "Kotlin",
  "Solidity",
];

let spokenLanguages = [
  "Spanish",
  "Catalan",
  "English"
];

console.log(`I'm proficient in ${programmingLanguages.slice(0, -1).join(", ")} and ${programmingLanguages.slice(-1)}.`);
console.log(`I speak ${spokenLanguages.slice(0, -1).join(", ")} and ${spokenLanguages.slice(-1)}.`);

/*
I'm proficient in PHP, Javascript, Bash, Go, Scala, Kotlin and Solidity.
I speak Spanish, Catalan and English.
*/

Fernando Pradas's Projects

Fernando Pradas doesn’t have any public repositories yet.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.