Skip to content

Instantly share code, notes, and snippets.

View TechWithTy's full-sized avatar
🎯
Focusing

TechWIthTy TechWithTy

🎯
Focusing
View GitHub Profile
@TechWithTy
TechWithTy / LICompanyConnect.js
Last active November 26, 2025 18:52
Linked In Company Connector
(async function inviteUntilComplete(target = 20) {
const wait = ms => new Promise(r => setTimeout(r, ms));
function selectedCount() {
return document.querySelectorAll('input[type="checkbox"][aria-selected="true"]').length;
}
function unselectedCheckboxes() {
return Array.from(document.querySelectorAll('input[type="checkbox"][aria-selected="false"]'));

🚨 STOP using git log the old way! 🚨

If you're constantly drowning in a flood of commit hashes, author names, dates, and long messages—you're doing it wrong. I used to type git log like a caveman, getting lost in a sea of unnecessary info. Then I found a BETTER way.

🔥 Meet glp—my custom alias that makes viewing recent commits insanely easier. Here’s why you need it:

Compact & Clean – No more overwhelming walls of text.
Color-coded for Clarity – Instantly spot commit hashes, authors, and times.
Relative Time Awareness – See commits as "5 minutes ago" instead of a full timestamp.

Kling AI Prompting Guide
Effective prompting is key to generating desired video content with Kling. Kling AI uses a structured approach to prompts, allowing for detailed control over the generated video.
**1. Core Prompt Formula**
Kling utilizes the following formula for constructing prompts:
`Prompt = Subject (Subject Description) + Subject Movement + Scene (Scene Description) + (Camera Language + Lighting + Atmosphere)`
let scrolling = true;
function scrollToBottom() {
const interval = setInterval(() => {
if (!scrolling) {
clearInterval(interval);
console.log('Scrolling stopped.');
return;
}
@TechWithTy
TechWithTy / GoogleDorking.md
Created January 23, 2026 14:26 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@TechWithTy
TechWithTy / Recaptcha Solver (Automatically solves Recaptcha in browser).user.js Recaptcha Solver in Browser | Automatically solves Recaptcha in browser by engageub | Note: This script is solely intended for the use of educational purposes only and not to abuse any website. This script uses audio in order to solve the captcha. Use it wisely and do not abuse any website. Click "Raw" to install it on Tampermonkey
// ==UserScript==
// @name Recaptcha Solver (Automatically solves Recaptcha in browser)
// @namespace Recaptcha Solver
// @version 2.1
// @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser
// @author engageub
// @match *://*/recaptcha/*
// @connect engageub.pythonanywhere.com
// @connect engageub1.pythonanywhere.com
// @grant GM_xmlhttpRequest