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 unsubscribeChannels() { | |
// Set delay time to wait for confirmation dialog | |
const UNSUBSCRIBE_DELAY_TIME = 2000 | |
// Function to execute function after delay | |
const executeAfterDelay = (func, delay) => new Promise((resolve, reject) => { | |
setTimeout(() => { | |
func() | |
resolve() |
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
// Get the total number of channels to unsubscribe | |
var channelCount = document.querySelectorAll("ytd-channel-renderer:not(.ytd-item-section-renderer)").length; | |
// Call the timer function | |
unsubscribeTimer(); | |
function unsubscribeTimer() { | |
// Return if there are no channels left to unsubscribe | |
if (channelCount === 0) { | |
return; |
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
split -l 1000 -d FILE_NAME.csv file_ | |
for i in $(find file_*); do mv $i "$i.csv"; done |
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
=SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( |
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
javascript:var geekdashboard = document.getElementsByClassName('_1pt_ _1pu0'); | |
for(var invite=0; invite<geekdashboard.length;invite++) { | |
geekdashboard[invite].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
javascript:var geekdashboard = document.getElementsByClassName('uiButton _1sm'); | |
for(var invite=0; invite<geekdashboard.length;invite++) { | |
geekdashboard[invite].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
[Desktop Entry] | |
Name=Firefox | |
Comment=Browse the World Wide Web | |
GenericName=Web Browser | |
X-GNOME-FullName=Firefox Web Browser | |
Exec=/home/USERNAME/firefox/firefox %u | |
Terminal=false | |
X-MultipleArgs=false | |
Type=Application | |
Icon=firefox-esr |
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
cd "C:\Program Files\Oracle\VirtualBox\" | |
VBoxManage.exe modifyvm "Name of your Virtual Machine" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3" | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1 |
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
//version 1.3 | |
import "browser/SafeMath.sol"; | |
import "browser/DateTime.sol"; | |
contract ERC20 { | |
function totalSupply() public constant returns (uint256); | |
function balanceOf(address _owner) public constant returns (uint); | |
function transfer(address _to, uint _value) public returns (bool); |
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
/* | |
* | |
* Author: Amar Ilindra | |
* URL: https://www.geekdashboard.com/ | |
* | |
* Add this code in your themes function.php file | |
*/ | |
/* |
NewerOlder