Skip to content

Instantly share code, notes, and snippets.

View INVISIBLE5130's full-sized avatar
๐Ÿ 
Working from home

Ihor Sheptiakov INVISIBLE5130

๐Ÿ 
Working from home
View GitHub Profile
@INVISIBLE5130
INVISIBLE5130 / candidates-scraper.js
Last active April 5, 2025 17:02
A browser-based scraper for extracting candidate information from Djinni (a job platform). This script runs directly in the browser and allows you to collect candidate data from multiple pages. Link to the github repository - https://github.com/INVISIBLE5130/candidates-scraper
// ==UserScript==
// @name Candidates Scraper for Djinni
// @namespace http://tampermonkey.net/
// @version 2025-04-05
// @description Scrape candidates from Djinni
// @author Ihor Sheptiakov
// @match https://djinni.co/developers/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=djinni.co
// @grant none
// ==/UserScript==
@seunggabi
seunggabi / semantic-branch-names.md
Last active April 16, 2025 06:32
Semantic Branch Names

Semantic Branch Names

See how a minor change to your branch name style can make you a better programmer.

Format: <type>/#<issueNumber>-<alias>

Example

@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active April 19, 2025 13:27
crack activate Office on mac with license file

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@bgromov
bgromov / git-reset-author.sh
Created June 23, 2016 17:50
Git: reset author for ALL commits
#!/bin/sh
# Credits: http://stackoverflow.com/a/750191
git filter-branch -f --env-filter "
GIT_AUTHOR_NAME='Newname'
GIT_AUTHOR_EMAIL='new@email'
GIT_COMMITTER_NAME='Newname'
GIT_COMMITTER_EMAIL='new@email'
" HEAD