Skip to content

Instantly share code, notes, and snippets.

@molavec
molavec / zapier_email.html
Last active May 1, 2024 20:56
[zapier - Email alerta] Contenido email alerta nuevo contacto.
<p>Hola :</p>
<p><b>{{000000__firstname}} {{000000__lastname}}</b> ha solicitado ser atendido! 😃🎊</p>
<p>No pierdas su atención y contáctalo a la brevedad.</p>
<p>Sus datos son:</p>
<ul>
<li>Nombre: {{000000__firstname}} {{000000__lastname}}</li>
<li>Teléfono: <a href="tel:{{000000__phone}}">{{000000__phone}}</a></li>
<li>Email: <a href="mailto:{{000000__email}}">{{000000__email}}</a></li>
<li>Whatsapp: <a href="{{000000__whatsapp}}">hablar por whatsapp con el prospecto</a></li>
</ul>
@molavec
molavec / dgec-parse-link.js
Last active May 1, 2024 20:56
dgec-parse-link.js
¡Hola Anto!
----
Después de revisar tu cuenta, he encontrado varios puntos que podemos mejorar para generar más clics y conversiones.
-----
Efectivamente no se está midiendo ninguna acción debido a que los *eventos de conversión* no están configurados en tu página (y tampoco se han seleccionado apropiadamente para tu campaña).
@molavec
molavec / salfa_piloto.js
Created February 19, 2018 21:31
[snippets chrome] Snippet para chrome #chrome #devtools #script
//window.location.href = 'http://campanas.salfa.cl/chevrolet/new-onix/';
//window.location.href = 'http://campanas.salfa.cl/chevrolet/camaro/';
$(function() {
var name = 'Miguel Olave';
var rut= '14535990-2';
var email= 'miguel@turbomarket.cl';
var cod_area = '09';
var phone = '93443055';
var region = '13';
// Obsidian Plugin Sorter by Downloads:
// This script will sort the plugins by downloads amount and print them in the console.
// The script should be able to run in the browser console.
// The Obsidian Plugin List Sorter by Downloads Amount script will sort the plugins by downloads amount in your browser html view and print them in the console.
// The obsidian Plugins URL: https://obsidian.md/plugins
// Solution:
// 1. Get all the plugins divs
@MrMoshkovitz
MrMoshkovitz / GithubDorks.md
Last active May 1, 2024 20:55
Github Dorks

Github Dorks Repo

Github Dorks

Github Search is a quite powerful and useful feature that can be used to search for sensitive data on repositories. Collection of Github dorks can reveal sensitive personal and/or organizational information such as private keys, credentials, authentication tokens, etc. This list is supposed to be useful for assessing security and performing pen-testing of systems.

GitHub Dork Search Tool

github-dork.py is a simple python tool that can search through your repository or your organization/user repositories. It's not a perfect tool at the moment but provides basic functionality to automate the search on your repositories against the dorks specified in the text file.

Installation

var i = 0;
var num_of_items = 0;
var stop = false;
function startCheck(max)
{
i++;
//document.querySelectorAll('div.h-a-Kd.a-Hd-mb')[0];
var bottom = document.querySelectorAll('div.h-a-Hd-mb.a-Hd-mb')[0];
bottom.scrollIntoView();
@sullenel
sullenel / chrome.md
Created February 13, 2022 09:33
Chrome
  • chrome://discards/ - manage open tabs
@jsoverson
jsoverson / reddit-signup.js
Created December 3, 2018 17:46
Reddit signup script w/Puppeteer and 2Captcha
const puppeteer = require('puppeteer');
const request = require('request-promise-native');
const poll = require('promise-poller').default;
const siteDetails = {
sitekey: '6LeTnxkTAAAAAN9QEuDZRpn90WwKk_R1TRW_g-JC',
pageurl: 'https://old.reddit.com/login'
}
const getUsername = require('./get-username');