Skip to content
View Victor1890's full-sized avatar
😁
Web technologies lover!
😁
Web technologies lover!
Block or Report

Block or report Victor1890

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

I'm Victor J. Rosario V


FullStack Developer 👨‍💻

A little more about me... In development

npm

npx victor1890
const victor1890 = {
    code: ["Javascript", "Typescript", "C#", "C", "C++", "Java", "Dart"],
    askMeAbout: ["Responsible", "Organized", "Social", "Fast Learning", "Collaborator / Contributor"],
    technologies: {
        mobileApp: ["React-Native", "Flutter"], //bacis
        frontend: {
            js: ["React", "NextJs", "VanillaJs"],
            css: ["Materialize", "Material-UI", "Bootstrap", "Tailwind"]
        },
        backend: {
            [js || ts]: ["Node", "Express", "GraphQL", "TypeORM", "Deno", "Golang"], //basic Deno
            asp: ["ASP.Net Core"]
        },
        databases: ["SQL Server", "SQLite", "Firebase", "MongoDB", "PostgreSQL", "Redis"]
    }
};

What I Use



































































📊 GitHub Stats:



✍️ Random Dev Quote

🎮 Little Game

Snake animation

Below is my recent articles Victor J. Rosario V. collected from dev.to

My Recent Articles

thumbnail Battle of the Node.js ORMs: Sequelize vs. Prisma
In the ever-evolving landscape of Node.js development, choosing the right Object-Relational Mapper...
27/02/2024
thumbnail The Best ORMs for Node.js App Development in 2023
What is an ORM? Object-relational mapping (ORMs) are a type of software that provides a...
01/11/2023
thumbnail From Good to Great: Scaling Applications with TypeORM Optimization
TypeORM is a popular Object-Relational Mapping (ORM) library for Node.js. It provides a high-level...
13/10/2023
thumbnail Exploring the Contrast: Helpers and Utils Demystified
Helpers and utils are both commonly used terms in software development to refer to classes or modules...
11/10/2023
thumbnail Unlocking Node.js Performance: The Art of Data Caching
Introduction Caching is a technique that stores data in memory so that it can be accessed...
08/10/2023

Updated at: 2024-05-12T20:03:40Z

Pinned

  1. Reproductor_M-sica Reproductor_M-sica Public

    Esto es un Reproductor de Música hecho con C# con un estilo muy parecido a Spotify.

    C# 2 1

  2. Victor1890 Victor1890 Public

    This is my personal repo for README. It gets automatically updated to fetch the latest articles from my blog form dev.to.

    JavaScript 4 2

  3. This TypeScript class, named Base, i... This TypeScript class, named Base, is designed to be extended by other classes, serving as a solid foundation for building HTTP clients in TypeScript applications. It leverages the Fetch API to simplify common HTTP operations, including GET, POST, PATCH, and DELETE requests. The class provides a clean and extensible interface for making API calls, handling parameters, and managing error messages.
    1
    class Base {
    2
    	private readonly api: string
    3
    	private readonly headers: HeadersInit
    4
    
                  
    5
    	constructor(api: string, headers: HeadersInit = {}) {
  4. andreizanik/cookies-next andreizanik/cookies-next Public

    Getting, setting and removing cookies on both client and server with next.js

    TypeScript 533 40