| 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let scrolling = true; | |
| function scrollToBottom() { | |
| const interval = setInterval(() => { | |
| if (!scrolling) { | |
| clearInterval(interval); | |
| console.log('Scrolling stopped.'); | |
| return; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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"]')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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) |
NewerOlder