Skip to content
View neto-developer's full-sized avatar
🚀
Taking off
🚀
Taking off

Block or report neto-developer

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

Pinned Loading

  1. Disable PM2 Vizion feature to save I... Disable PM2 Vizion feature to save IO and Memory Usage and avoid "FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory"
    1
    # Disable PM2 Vizion feature to save IO and Memory Usage and avoid "FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory"
    2
    
                  
    3
    A feature do pm2 chamada "vizion" tenta indexar o repositório do projeto de cada comando rodando.
    4
    Em grandes repositórios e principalmente com um grande numero de processos rodando isso pode causar um
    5
    grande consumo de memória e IO, o que impacta drasticamente a performance da maquina e dependendo da maquin,
  2. Show dimensions of all images on page Show dimensions of all images on page
    1
    $('img').each(function(){  
    2
        let t = $(this);
    3
        let url = `https://dummyimage.com/${Math.round(t.outerWidth())}x${Math.round(t.outerHeight())}/f0f0f0/999`;
    4
        console.log(`${Math.round(t.outerWidth())}x${Math.round(t.outerHeight() => ${t.attr('src')}`);
    5
        t.attr('src', url); 
  3. Show all heading tags on page Show all heading tags on page
    1
    $('h1,h2,h3,h4,h5,h6').each(function(){ 
    2
        console.log($(this).prop("tagName") + ' - ' + $(this).text().trim()); 
    3
        $(this).html($(this).prop("tagName") + ' - ' + $(this).html());
    4
    });
  4. Docker - Certbot - Manual Wildcard D... Docker - Certbot - Manual Wildcard Domain Certificate.md
    1
    ## Docker - Certbot - Manual Wildcard Domain Certificate.md
    2
    
                  
    3
    ### Create a dir for mount in containers, and save  letsencrypt folders
    4
    ``` bash
    5
    mkdir letsencrypt