Skip to content

Instantly share code, notes, and snippets.

const ArgumentType = require('../extension-support/argument-type');
const BlockType = require('../extension-support/block-type');
const Cast = require('../util/cast');
const log = require('../util/log');
class Scratch3myExtension {
constructor(runtime) {
this.runtime = runtime;
}
@nonrenrioio4
nonrenrioio4 / Cinch Audio Recorder
Created March 13, 2025 14:14
Cinch Audio Recorder Crack
Cinch Audio Recorder Cracked
// Current version
const Calculator = Component<CalculatorProps, CalculatorResult>('calculator',
async (props) => {
const languageModel = openai("gpt-4o-mini");
const prompt = `Calculate the result of the following expression: ${props.expression}`
return (
<GenerateText prompt={prompt} model={languageModel}>
{result => { return result.text}}
</GenerateText>
)
@paskarmeitr50
paskarmeitr50 / DC-Unlocker
Created March 13, 2025 14:12
DC-Unlocker Crack
DC-Unlocker Cracked
# "nativity" should not return results for "native"
nativities => nativity
# "organizer" should not return results for "organic"
organizing, organize, organizers => organizer
# "shorts" should not return results for "short sleeves"
short-sleeves, short-sleeve, short sleeves, short sleeve, short sleeved => shortsleeve, short_sleeve
@karthikeyan-mac
karthikeyan-mac / setRecoveryLock.sh
Created March 13, 2025 14:12
Recovery Lock Enablement in macOS Using the Jamf Pro API
#!/bin/zsh
# Script to Set/Remove Recovery Lock on Apple Silicon Macs using the Jamf API.
# Works based on the 'lockMode' variable (Set/Remove) to configure Recovery Lock.
#
# Key Functionalities:
# - Retrieves the Mac's serial number.
# - Generates a 26-digit random Recovery Lock password.
# - Uses JAMF API Roles and Clients
# - Uses Jamf Pro API to:
@caeperdiajinb
caeperdiajinb / iCareFone for WhatsApp Transfer
Created March 13, 2025 14:11
iCareFone for WhatsApp Transfer Cracked
iCareFone for WhatsApp Transfer Crackeded
# Finding Non-Self-Hosted Runners in a GitHub Organization
To find all GitHub-hosted runners (non-self-hosted) that are being used in your organization, you'll need to combine a few approaches since GitHub doesn't provide a single direct view for this specific filter.
## Method 1: Using GitHub API
The most comprehensive way is to use the GitHub API to query all workflow runs and filter out those using GitHub-hosted runners:
```bash
# Set your GitHub Personal Access Token with appropriate permissions
@fritzlaszlo
fritzlaszlo / download-kirby-content-folder.sh
Created March 13, 2025 14:10
A simple bash script to SSH into your server/webspace, zip Kirby's content folder, download to your machine and unzip it.
#!/bin/bash
# Colors for terminal output
GREEN='\033[0;32m'
BLUE='\033[0;34m'
YELLOW='\033[1;33m'
RED='\033[0;31m'
NC='\033[0m' # No Color (reset)
# Configuration variables