Discover gists
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
<div style="position:absolute;top:-999px;left:-999px"> | |
<svg | |
width="200" | |
height="200" | |
viewBox="0 0 220 220" | |
xmlns="http://www.w3.org/2000/svg"> | |
<filter id="displacementFilter4"> | |
<feImage xlink:href="data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='50' y='50' width='100' height='100' rx='25' fill='%230001' /%3E%3Crect x='50' y='50' width='100' height='100' rx='25' fill='%23FFF' style='filter:blur(5px)' /%3E%3C/svg%3E" x="0%" y="0%" width="100%" height="100%" result="thing9" /> |
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
#!/bin/sh | |
set -e | |
# First we are going to make sure that you understand this is sort of experimental and we will be compiling stuff. | |
# by default CONTINUE will be false | |
CONTINUE=false | |
echo "" | |
echo "You are about to download, compile, and install stuff on your computer." |
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
/** | |
* Instagram Like Removal Script – Enhanced Timing (2025) | |
* based on the comment activity deleter by sbolel, fixed and modified to work for likes as well | |
* important: UI language must be set to English for the script to work | |
* | |
* WARNING: This function directly manipulates the DOM and depends on the current HTML | |
* structure of Instagram's website to work. If Instagram implements changes to the | |
* activity page layout, structure, or functionality, this script may break or cause | |
* unexpected behavior. Use at your own risk and always review code before running it. | |
* |
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
version: '3.8' | |
services: | |
ollama: | |
image: ollama/ollama | |
container_name: ollama | |
volumes: | |
- ollama:/root/.ollama | |
networks: | |
- ollama_docker |
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
aahed | |
aalii | |
aapas | |
aargh | |
aarti | |
abaca | |
abaci | |
aback | |
abacs | |
abaft |
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
<?php | |
use Symfony\Component\EventDispatcher\EventDispatcher; | |
use Symfony\Component\Messenger\Event\WorkerMessageRetriedEvent; | |
use Symfony\Component\Messenger\EventListener\SendFailedMessageForRetryListener; | |
use Symfony\Component\Messenger\Handler\HandlersLocator; | |
use Symfony\Component\Messenger\MessageBus; | |
use Symfony\Component\Messenger\Middleware\HandleMessageMiddleware; | |
use Symfony\Component\Messenger\Middleware\SendMessageMiddleware; | |
use Symfony\Component\Messenger\Retry\MultiplierRetryStrategy; |
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
#Run As Administrator | |
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs; exit } | |
$code = @" | |
[DllImport("user32.dll")] | |
public static extern bool BlockInput(bool fBlockIt); | |
"@ | |
$userInput = Add-Type -MemberDefinition $code -Name UserInput -Namespace UserInput -PassThru |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
function OutputStatus($message){ | |
try { | |
[Console]::SetCursorPosition(0,0) | |
Write-Host $message.PadRight([Console]::BufferWidth) | |
} | |
catch [System.IO.IOException] { | |
## IO Exception when unable to set position | |
} | |
} | |
$messages = @() |
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
https://www.apple.com/os/macos/ | |
Published Date: June 9, 2025 | |
Verification: https://regex101.com/r/ouFDlr/4 | |
1) Exact regex — Matches major model identifier numbers based on Apple's knowledge base article (more accurate): | |
^(Mac(1[3-6]|BookPro1[6-8]|BookAir10|mini9|Pro7)|iMac2[01]),\d+$ | |
2) Current or higher regex — Matches model identifiers based on Apple's knowledge base article and may match higher versions before this regex is updated (more future-proof). |
NewerOlder