Skip to content

Instantly share code, notes, and snippets.

View edriso's full-sized avatar
๐ŸŒฑ
Objects in motion stay in motion. =อŸอŸอžอž๐Ÿ€ YOSH!

Mohamed Idris edriso

๐ŸŒฑ
Objects in motion stay in motion. =อŸอŸอžอž๐Ÿ€ YOSH!
View GitHub Profile
@benjaminjackson
benjaminjackson / unfollow-all-auto.js
Created November 13, 2025 17:40
Unfollow Everyone on LinkedIn (No Confirmation, Nukes Everyone)
// LinkedIn Auto-Unfollow Script
// Automatically unfollows everyone without confirmation
// WARNING: This will unfollow people automatically without asking for confirmation
(() => {
let count = 0;
const processedPeople = new Set(); // Track who we've already unfollowed
function getAllFollowingButtons() {
return Array.from(document.querySelectorAll('button.artdeco-button--muted.artdeco-button--secondary'))
@discoveryluca
discoveryluca / DivisibleBy.php
Last active June 9, 2024 09:46
DivisibleBy kata - 11988 tests that run in under 3 seconds, from 302 lines of code, using dataProviders
<?php
namespace App;
class DivisibleBy
{
public function isDivisibleByTwo($number)
{
// if last number is divisible by 2
return is_int(substr($number, -1) / 2);
@hofmannsven
hofmannsven / README.md
Last active December 23, 2025 04:11
Git CLI Cheatsheet