Giter Club home page Giter Club logo

yondav

Website Badge Linkedin Badge Gmail Badge Resume Badge

yondav

Who am I?

  class YonDav:
    family_name = 'David'
    given_name = 'Jonathan'
    nick_name = 'Yoni'
    brand_name = 'yondav'

    location = 'New York City'

    profession = 'Software Engineer'
    employer = {
        'name': 'Kinetic IQ',
        'web': 'https://www.kineticiq.com/'
    }

    technologies = [
        'JavaScript',
        'TypeScript',
        'Python',
        'Bash',
        'Git',
        'Rust',
        'Solidity',
        'AWS',
        'ReactJS',
        'NextJS',
        'Gatsby',
        'CSS',
        'TailwindCSS',
        'NodeJS',
        'ExpressJS',
        'NestJS',
        'Prisma',
        'MongoDB',
        'MySQL',
        'PostgreSQL'
    ]

    interests = ['Audio Engineering', 'Percussion', 'Baseball', 'Cooking', 'Travel']

    def format_interests(self):
        formatted_interests = ""
        for interest in self.interests:
            formatted_interests += f"- {interest}\n"
        return formatted_interests

    def introduction(self):
        interests_list = self.format_interests()
        return f"Hello, I'm {self.given_name} {self.family_name} but you can call me {self.nick_name} or drop the extra syllables and call me {self.brand_name}.\n\nI'm currently living in {self.location} working as a {self.profession} at [{self.employer['name']}]({self.employer['web']}). \n\nOutside of programming, my primary interests are\n{interests_list}"

    def tech_icons(self):
        icons_markdown_list = []
        for tech in self.technologies:
            icon_file_name = tech.lower() + '.svg'
            icon_path = os.path.join('./readme-assets/icons', icon_file_name)
            icon_markdown = f"<img src='{icon_path}' width='50' style="margin:0 8px;" alt='{tech}'>"
            icons_markdown_list.append(icon_markdown)
        return " ".join(icons_markdown_list)
  yondav = YonDav()

yondav.introduction()

Hello, I'm Jonathan David but you can call me Yoni or drop the extra syllables and call me yondav.

I'm currently living in New York City and working as a Software Engineer at Kinetic IQ.

Outside of programming, my primary interests are

  • Audio Engineering
  • Percussion
  • Baseball
  • Cooking
  • Travel

yondav.tech_icons()

JavaScriptTypeScriptPython BashGitRustSolidityAWSReactJSNextJSGatsbyCSSTailwindCSSNodeJSExpressJSNestJSPrismaMongoDBMySQLPostgreSQL

yondav's GitHub Stats

Yoni David's Projects

baseball icon baseball

Bat-Around Baseball Sim :baseball: A React app featuring play-by-play simulations of baseball games using real player data.

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.