Skip to content
View itssimmons's full-sized avatar
🤙
"use strict";
🤙
"use strict";
Block or Report

Block or report itssimmons

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
itssimmons/README.md

# Hi Simón (sy-minh) here! 

📌 Online at Buenos Aires, Argentina (GMT-3)

I'm a Computer Technician graduate and Full Stack developer with 2 years of experience. I started programming at the age of 14 and landed my first job at 19. Throughout my career, I have developed mobile, web, and desktop applications, as well as Discord bots. In the BackEnd, I have experience with PHP (Laravel/Lumen), Python, AWS (CloudWatch, CodeArtifacts, AppSync, S3), MySQL, PostgreSQL, MongoDB, and many more. Right now im still learning more technologies and frameworks, i really dunno when to stop 😅

If I have made any valuable discoveries, it has been thanks more to perseverance than to any other talent.

# In the last 7 days I dedicated my code sessions on:

TypeScript    15 hrs 6 mins   █████████████░░░░░░░░░░░░   52.13 %
SCSS          5 hrs 59 mins   █████▒░░░░░░░░░░░░░░░░░░░   20.70 %
JavaScript    3 hrs 18 mins   ███░░░░░░░░░░░░░░░░░░░░░░   11.40 %
Bash          2 hrs 1 min     █▓░░░░░░░░░░░░░░░░░░░░░░░   07.00 %
JSON          1 hr 17 mins    █░░░░░░░░░░░░░░░░░░░░░░░░   04.48 %
  • 🔭 I’m currently working on socialpiper.com website
  • 🌱 I’m currently learning "again" C++ for game development

Pinned

  1. astroid-theme astroid-theme Public

    When you'll need a developer env to be chill, 𝑨𝒔𝒕𝒓𝒐𝒊𝒅 is your theme

    JavaScript 1

  2. snapverse/weirdo.js snapverse/weirdo.js Public

    Quiz project with the weirdest things about js

    TypeScript 1

  3. snapverse/snapverse snapverse/snapverse Public

    TypeScript

  4. purpledepth purpledepth Public archive

    (neo)vim color schema for those who love 💜

    Vim Script 1

  5. Simple configuration to set up jest ... Simple configuration to set up jest and typescript with its custom paths :file_folder::test_tube:
    1
    const { pathsToModuleNameMapper } = require('ts-jest');
    2
    //const { pathsToModuleNameMapper } = require('ts-jest/utils'); // also you can do like this, but jest recommends use one above
    3
    const { compilerOptions } = require('./tsconfig.json');
    4
    
                  
    5
    /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
  6. Don't use switch use an object! :wink: Don't use switch use an object! :wink:
    1
    import { joke, hardJoke, riddle } from '@/content'
    2
    import getQuote, { getAllQuotes } from '@/helpers/quotes'
    3
    import { Fact } from '@/types/common.types'
    4
    
                  
    5
    export function boredSwitch(topic: string): Fact {