Discover gists
This file contains 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
TEST |
This file contains 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
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; | |
} |
This file contains 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
Cinch Audio Recorder Cracked |
This file contains 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
// 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> | |
) |
This file contains 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
DC-Unlocker Cracked |
This file contains 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
# "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 |
This file contains 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/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: |
This file contains 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
iCareFone for WhatsApp Transfer Crackeded |
This file contains 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
# 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 |
This file contains 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/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 |