Skip to content

Instantly share code, notes, and snippets.

View TechWithTy's full-sized avatar
🎯
Focusing

TechWIthTy TechWithTy

🎯
Focusing
View GitHub Profile
@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
@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"
let scrolling = true;
function scrollToBottom() {
const interval = setInterval(() => {
if (!scrolling) {
clearInterval(interval);
console.log('Scrolling stopped.');
return;
}
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)`

🚨 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.

@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"]'));
@TechWithTy
TechWithTy / AutoDownloadDelete.bat
Last active November 23, 2023 17:47
Delete All Files In Downloads Folder After A week
@echo off
setlocal
REM Set the path to the Downloads folder
set "download_folder=C:\Users\[UserName]\Downloads"
echo Target folder is: %download_folder%
REM Check if the downloads directory exists
if not exist "%download_folder%" (
echo The specified folder does not exist please input your username: %download_folder%
@TechWithTy
TechWithTy / login.tsx
Created June 16, 2023 02:10
Customer Portal Example Tailwind.css
import React from 'react';
interface Props {
title: string;
description: string;
}
const ReusableComponent: React.FC<Props> = ({ title, description }) => {
return (
<div className="relative min-h-screen flex">
@TechWithTy
TechWithTy / App.js
Created March 18, 2023 15:59
React: Demonstrating - Continuous Integration | Continuous Delivery | Continuous Deployment | Big O | Unit Testing | Type Checking
// MyComponent.js
import React from 'react';
// Define a functional component that takes a prop called "name"
function MyComponent({ name }) {
// Return a div with an h1 that displays a greeting using the "name" prop
return (
<div>
<h1>Hello, {name}!</h1>
@TechWithTy
TechWithTy / __main__.py
Created March 18, 2023 15:52
PYTHON: Demonstrating - Continuous Integration | Continuous Delivery | Continuous Deployment | Big O | Unit Testing | Type Checking
# Import necessary modules
from typing import List, Optional
import pytest
# Define a function that finds the maximum value in a list of integers
def find_max(numbers: List[int]) -> Optional[int]:
if not numbers:
return None
else:
return max(numbers)