Skip to content

Instantly share code, notes, and snippets.

View akshar-dave's full-sized avatar
🌻

Akshar Dave akshar-dave

🌻
View GitHub Profile
@akshar-dave
akshar-dave / BlockLinkedInPostsWithHashtag.js
Last active August 24, 2022 06:29
Block LinkedIn posts with a specific hashtag
let hashtag = "MIDJOURNEY";
const removePostsWithHashtag = (posts, hashtag) => {
let docs = posts;
docs.forEach((doc => {
let caption = doc.innerText.toUpperCase();
let hasHashtag = caption.indexOf(hashtag) !== -1
if(!hasHashtag) return;
let thisPost = doc.closest(".artdeco-card");
@davidtheclark
davidtheclark / isElementInViewport.js
Created May 4, 2013 02:00
JavaScript: Is element in viewport?
/*
No jQuery necessary.
Thanks to Dan's StackOverflow answer for this:
http://stackoverflow.com/questions/123999/how-to-tell-if-a-dom-element-is-visible-in-the-current-viewport
*/
function isElementInViewport(el) {
var rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&