This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
place this in a Code block | |
--> | |
<script async | |
src="https://maps.googleapis.com/maps/api/js?key=*******&libraries=places&callback=initMap"> | |
</script> | |
<div style="height: 500px;" id="map"></div> | |
<script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function autoFollow() { | |
const buttons = document.querySelectorAll("[aria-label*='Invite']"); | |
for (let i = 0; i < buttons.length; i++) { | |
buttons[i].click(); | |
await new Promise(resolve => setTimeout(resolve, 200)); | |
const sendButton = document.querySelector("[aria-label='Send without a note']"); | |
if (sendButton) { | |
sendButton.click(); | |
} | |
await new Promise(resolve => setTimeout(resolve, 1000)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
1) goto linked in | |
2) search for people. I did "founders" who i'm 2 degrees away from, in a specific geo location. | |
3) Copy and paste this script on each page | |
*/ | |
async function autoFollow() { | |
const buttons = document.querySelectorAll("[aria-label*='Invite']"); | |
for (let i = 0; i < buttons.length; i++) { | |
buttons[i].click(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs').promises; | |
const path = require('path'); | |
const sharp = require('sharp'); | |
const sourceDir = './dirty'; | |
const targetDir = './clean'; | |
// Ensure target directory exists | |
async function ensureTargetDir() { | |
try { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
var forms = document.getElementsByTagName('form'); | |
for(var i = 0; i < forms.length; i++) { | |
var fields = forms[i].getElementsByTagName('input'); | |
for(var j = 0; j < fields.length; j++) {fill | |
fields[j].setAttribute('autocomplete', 'off'); | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
// Add to Custom Code > Bottom of Body | |
try{ | |
if(localStorage.getItem("lead_id")){ | |
setError("Only one submission allowed."); | |
throw new Error(); | |
}; | |
} catch(e){ | |
console.error(e); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap" rel="stylesheet"> | |
<style> | |
* { | |
font-family: 'Pixelify Sans', sans-serif!important; | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://rawgit.com/acoyfellow/FormSync/master/FormSync.js"></script> | |
<script> | |
function success(){ | |
clearFormSync(); | |
}; | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link | |
rel="stylesheet" | |
href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" | |
/> | |
<!-- Swiper --> | |
<div class="swiper mySwiper"> | |
<div class="swiper-wrapper"> | |
<div class="swiper-slide tc"><img src="https://firebasestorage.googleapis.com/v0/b/phonesites-prod.appspot.com/o/images%2FUZCKxREA6sNku9tDPHVFxd5PSrG3%2F1672423440866*Slide3*jpg?alt=media&token=7eb8afaf-c931-4665-a2b8-9edad704b5c5" /> | |
</div> |
NewerOlder