Skip to content

Instantly share code, notes, and snippets.

View sametcn99's full-sized avatar
🎧
Focusing

samet sametcn99

🎧
Focusing
View GitHub Profile
@sametcn99
sametcn99 / README.md
Last active March 24, 2026 17:20
A userscript that automatically hides viewed job postings in LinkedIn Jobs.

LinkedIn Hide Viewed Jobs

Hide or highlight viewed job postings on LinkedIn Jobs with a privacy-first userscript built for Tampermonkey and Violentmonkey.

This project focuses on three things: stable LinkedIn SPA behavior, high-confidence multilingual viewed/applied detection, and safer scrolling with guard and cooldown protections.

Quick Links

@cmj
cmj / nitter_instances.md
Last active May 23, 2026 10:13
Active Nitter instances
@Venoli
Venoli / CountryCodes.cs
Last active December 17, 2024 08:57
List of Country Codes and Country Names - C#
using System;
using System.Globalization;
using PhoneNumbers;
using System.Collections.Generic;
using System.Threading.Tasks;
public class CountryCodes
{
public static void Main()
{
@AveYo
AveYo / .. MediaCreationTool.bat ..md
Last active May 22, 2026 01:06
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat
@milanboers
milanboers / clone.bash
Last active January 15, 2026 19:08
Clone all repositories of a Github user
curl -s https://api.github.com/users/milanboers/repos | grep \"clone_url\" | awk '{print $2}' | sed -e 's/"//g' -e 's/,//g' | xargs -n1 git clone