Skip to content

Instantly share code, notes, and snippets.

View sametcn99's full-sized avatar
🎧
Focusing

sametcn99

🎧
Focusing
View GitHub Profile
@sametcn99
sametcn99 / README.md
Last active June 7, 2026 21:56
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 β€” or install as a standalone browser extension for Chrome and Firefox.

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
@cseeman
cseeman / markdown_examples.md
Last active July 23, 2026 20:08
Markdown for info panel/warning box

Examples for how to create your own info panel, warning box and other decent looking notification in GitHub markdown.

All the boxes are single/two cell tables or two row tables.

Warning box

❗ You have to read about this
@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 July 19, 2026 02:05
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat
@milanboers
milanboers / clone.bash
Last active July 10, 2026 23:20
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