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
@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 / 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 / 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 / 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"'
Analyser:
https://www.elastic.co/guide/en/elasticsearch/reference/6.8/search-suggesters-phrase.html
Template:
POST /_template/template_produtos
{
"index_patterns": [
"produto*"
],
"settings": {