Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View neto-developer's full-sized avatar
🎯
Focusing

Neto, Aristides da Silva neto-developer

🎯
Focusing
View GitHub Profile
Analyser:
https://www.elastic.co/guide/en/elasticsearch/reference/6.8/search-suggesters-phrase.html
Template:
POST /_template/template_produtos
{
"index_patterns": [
"produto*"
],
"settings": {
@neto-developer
neto-developer / gist:074ccc015e2f300a2cdce4b3d2336597
Created April 14, 2020 14:20
Filter a Apache Log in a Range of DateTime
Considering $4 is the position of DataTime on access_log file
cat /var/log/httpd/access_log | awk '$4 >= "[14/Apr/2020:09:50:00" && $4 < "[14/Apr/2020:10:15:00"'
@neto-developer
neto-developer / autofill.js
Last active February 2, 2022 18:32
Preenchimento automatico de formulários
/**
* Tool to autofill some forms
*/
function randomiza(n) {
return Math.round(Math.random() * n);
}
function getRange(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
@neto-developer
neto-developer / showDimensionsOfAllImagesOnPage.js
Created February 2, 2022 18:29
Show dimensions of all images on page
$('img').each(function(){
let t = $(this);
let url = `https://dummyimage.com/${Math.round(t.outerWidth())}x${Math.round(t.outerHeight())}/f0f0f0/999`;
console.log(`${Math.round(t.outerWidth())}x${Math.round(t.outerHeight() => ${t.attr('src')}`);
t.attr('src', url);
});
@neto-developer
neto-developer / showHeadingTags.js
Created February 2, 2022 18:31
Show all heading tags on page
$('h1,h2,h3,h4,h5,h6').each(function(){
console.log($(this).prop("tagName") + ' - ' + $(this).text().trim());
$(this).html($(this).prop("tagName") + ' - ' + $(this).html());
});
@neto-developer
neto-developer / disable_pm2_vizion.sh
Created April 1, 2024 13:19
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"
#!/bin/bash
# A feature do pm2 chamada "vizion" tenta indexar o repositório do projeto de cada comando rodando.
# Em grandes repositórios e principalmente com um grande numero de processos rodando isso pode causar um
# grande consumo de memória e IO, o que impacta drasticamente a performance da maquina e dependendo da maquin,
# pode causar: "FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory"
# A seguir salvamos o estado do pm2 no arquivo ~/.pm2/dump.pm2, matamos o PM2 God Daemon e
# todos os processos que ele gerencia, alteramos o dumo.pm2 desativando a flag do "vizion"
# e ressucitamos o pm2 ao estado original.