Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
eric15342335 committed Nov 8, 2024
1 parent 0104c9e commit 537202a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ungrouped/linkedin-profile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
function openLinkedInConnections() {
// Select each connection card's name element
document.querySelectorAll('.mn-connection-card__name').forEach(card => {
// Attempt to find the URL from a known data attribute or surrounding link
let profileUrl = card.closest('.mn-connection-card').querySelector('a')?.href;

// Open each profile URL in a new tab if found
if (profileUrl) {
window.open(profileUrl, '_blank');
} else {
console.log("No URL found for one of the connections.");
}
});
}

openLinkedInConnections();
5 changes: 5 additions & 0 deletions yt-dlp/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Issues I encountered

## Long file name fix:

--restrict-filenames -o 1.mp4

0 comments on commit 537202a

Please sign in to comment.