- Modificado (modified);
- Preparado (staged/index)
- Consolidado (comitted);
Discover gists
| #!/bin/sh | |
| # Set the icons and branding | |
| selfServiceBrandIcon="/Users/$3/Library/Application Support/com.jamfsoftware.selfservice.mac/Documents/Images/brandingimage.png" | |
| fileVaultIcon="/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/FileVaultIcon.icns" | |
| if [[ -f $selfServiceBrandIcon ]]; then | |
| brandIcon="$selfServiceBrandIcon" | |
| else | |
| brandIcon="$fileVaultIcon" |
| import zipfile | |
| import os | |
| import json | |
| import concurrent.futures | |
| import requests | |
| import shutil | |
| import time | |
| ######## INITIAL SETUP ######## | |
| # Define the token, download path, and target category |
| import math | |
| # === Constants === | |
| G = 6.67430e-11 # m^3/kg/s^2 (Gravitational Constant) | |
| g0 = 9.81 # m/s^2 (Standard gravity) | |
| AU = 1.496e11 # meters | |
| M_star = 1.989e30 # kg (Sun-like) | |
| M_a= 5.972e24 # kg | |
| # === Spacecraft Settings === |
22 copy/paste-ready prompts for building your own AI agent system. Each prompt builds a functional system or implements a proven best practice you can hand to an AI coding assistant.
Replace placeholders like <your-workspace>, <your-messaging-platform>, and <your-model> with your own values.
First thing to do is to create your certificate on Cloudflare:
- On your website dashboard, go to SSL/TLS > Origin Server
- On Hostnames section, change the hostnames to your domains or subdomain. e.g.
tobako.bidipeppercrap.com - On Origin Certificates section, press the Create Certificate button
- Leave the default settings and press Next
- Copy the PEM certificate to your server:
/etc/ssl/certs/your.domain.com.pem
Generalized versions of all root .md files used by OpenClaw. These files are loaded into the agent's system prompt on every request (except MEMORY.md which is conditional).
Copy these as starting points and customize for your own setup. Replace <placeholders> with your values.
You can use the below link to access Fritzing downloads for free.
Additionally, below are direct download links to Fritzing.
| package edu.iyte.ceng316.view; | |
| import java.io.*; | |
| import java.net.URL; | |
| import javax.sound.sampled.*; | |
| public enum SoundEffect { | |
| HIT("/edu/iyte/ceng316/resource/hit.wav"), | |
| MISS("/edu/iyte/ceng316/resource/miss.wav"), | |
| BG("/edu/iyte/ceng316/resource/background.wav"), | |
| CONGRATS("/edu/iyte/ceng316/resource/congrats.wav"); |