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
// If the script does not work, you may need to allow same site scripting https://stackoverflow.com/a/50902950 | |
Linkedin = { | |
config: { | |
scrollDelay: 3000, | |
actionDelay: 5000, | |
nextPageDelay: 5000, | |
// set to -1 for no limit | |
maxRequests: -1, | |
totalRequestsSent: 0, |
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
if you unfollow all as shown here https://www.linkedin.com/pulse/mass-unfollow-linkedin-connections-mighil-/ | |
and need to undo this action Go to https://www.linkedin.com/mypreferences/d/unfollowed and past this into the browser console in hit enter | |
``` | |
(() => { | |
let count = 0; | |
function getAllButtons() { |
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
# Installation | |
- first install yt-dlp from https://github.com/yt-dlp/yt-dlp/wiki/Installation then add this method to `.bashrc` | |
- yt-dlp -c --concat-playlist always -o "pl_video:%(title)s.%(ext)s" https://www.youtube.com/playlist\?list\=PL0vfts4VzfNjQOM9VClyL5R0LeuTxlAR3 | |
# Easy Wat | |
``` |
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
# add this to .bashrc | |
``` | |
aio(){ | |
for f in *.$1; do echo "file '$f'" >> list.txt; done | |
ffmpeg -f concat -safe 0 -i list.txt -c copy aio.$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
#!/bin/bash | |
# Default Command | |
# https://ianmuchina.com/blog/08-ytdl/ | |
CMD="yt-dlp" | |
# Use yt-dlp if avaiable | |
command -v yt-dlp >/dev/null && | |
CMD="yt-dlp" ARGS="" | |
# Quality Options |
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
#!/bin/bash | |
alias plugin="wp plugin install --activate " | |
alias plugindeactivate="wp plugin deactivate --skip-plugins " | |
alias theme="wp theme install --activate " | |
wp_fix(){ | |
wp db export | |
wp cache flush | |
wp core check-update | |
wp core update |
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 myTimeout = setInterval(myGreeting, 5000); | |
function myGreeting() { | |
document.getElementsByClassName('sui-icon-play')[0].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
[...document.getElementsByClassName('details__name')].forEach((item)=>{console.log(item.innerHTML)}) |
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
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap'); | |
.artdeco-notification-badge .notification-badge, .artdeco-notification-badge .notification-badge.notification-badge--border,artdeco-notification-badge .notification-badge, .artdeco-notification-badge .notification-badge.notification-badge--border { | |
background-color:#eee !important; | |
} | |
div.feed-shared-update-v2__description-wrapper span{ | |
font-family: Amiri; | |
font-size: 30px; | |
} |
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
<?php | |
function getCurrentUserAllFormEntries() | |
{ | |
$query = wpFluent()->table('fluentform_submissions') | |
->select([ | |
'fluentform_submissions.id', | |
'fluentform_submissions.form_id', | |
'fluentform_submissions.user_id', | |
'fluentform_forms.title', |
NewerOlder