Skip to content
View emersondemetrio's full-sized avatar
Block or Report

Block or report emersondemetrio

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

Hi there πŸ‘‹

  • πŸ’» I like to create apps =]
  • πŸ”­ Software Enginieer @ Kyte
  • 🌱 I’m currently learning more about myself
  • πŸ‘― I’m looking to collaborate on anything I could help
  • πŸ’¬ Ask me about programming
  • πŸ“« How to reach me: [email protected]
  • πŸ˜„ Pronouns: he/him
  • ⚑ Fun fact: I am also a musician

I also have these other profiles:

Pinned Loading

  1. Fill array with something Fill array with something
    1
    // 2024 version
    2
    const arr = Array.from({ length: 30 }, (_, id) => ({ 
    3
    	id,
    4
    	name: `item-${id}`
    5
    }));
  2. Convert URLs to JSON Convert URLs to JSON
    1
    const url2JSON = source => {
    2
    	const obj = {
    3
    		source,
    4
    		props: {},
    5
    		keysList: [],
  3. Random Number Between Range Random Number Between Range
    1
    const rnb = (max, min) => Math.floor(Math.random() * (max - min + 1)) + min;
  4. Deleting Branchs with bash Deleting Branchs with bash
    1
    #!/bin/bash
    2
    
    
    3
    while read -r branch; 
    4
      do echo "deleting: $branch"; 
    5
      git branch -D $branch; 
  5. Replicate Object Replicate Object
    1
    const replicateObject = (obj, times) => {
    2
    	const tmp = JSON.stringify(obj);
    3
    	return JSON.parse("[" + tmp.concat(",").repeat(times).slice(0, -1) + "]");
    4
    };
    5
    
    
  6. emersondemetrio.github.io emersondemetrio.github.io Public

    emersondemetrio.github.io

    TypeScript