This file contains hidden or 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. Go to https://www.linkedin.com/feed/following/?filterType=member | |
// 2. Select the ALL filter to see people you follow | |
// 3. Open console, paste the following and press enter | |
function massUnfollow(){ | |
var buttons = document.getElementsByClassName('is-following') | |
for (let i = 0; i < buttons.length; i++) { | |
buttons[i].click() | |
} |
This file contains hidden or 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
//Head on to https://www.linkedin.com/mynetwork/invitation-manager/ | |
//In browser console | |
var buttons = document.getElementsByTagName('button') | |
for (let i = 0; i < buttons.length; i++) { | |
var aria = buttons[i].getAttribute("aria-label") | |
if (aria && aria.startsWith("Accept")) { | |
buttons[i].click() | |
console.log(aria) | |
} | |
} |
This file contains hidden or 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
<!-- This example shows how to use simpleMDE safely with DOMPurify when dealing with intrusted user input. | |
Strip out javascript before rendering Markdown to HTML --> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.css"> | |
<script src="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/2.1.3/marked.min.js" integrity="sha512-AD+GG1nJKO4Je/Q8QsY1gM9/7o1QjpGe9W2Lrg1oGtEID/RX8bMKKZGgw/KOODkPXL6j74c6eJWAhE/3F2kKjA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/2.3.0/purify.min.js" integrity="sha512-FJzrdtFBVzaaehq9mzbhljqwJ7+jE0GyTa8UBxZdMsMUjflR25f5lJSGD0lmQPHnhQfnctG0B1TNQsObwyJUzA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | |
<textarea id="mde"></textarea> |
This file contains hidden or 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
interface=en0 | |
echo "Disconnecting from WiFi SSID" | |
sudo /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -z | |
echo "Turning down ${interface}" | |
sudo ifconfig -d $interface | |
mac=$(printf '02:00:00:%02X:%02X:%02X\n' $((RANDOM%256)) $((RANDOM%256)) $((RANDOM%256))) | |
echo "Generated Random MAC Address: ${mac}" | |
sudo ifconfig $interface ether $mac | |
echo "MAC address spoofed" | |
ifconfig $interface lladdr | grep ether |
OlderNewer