100 prompt shortcuts that change how Claude responds. Type any code at the start of your message.
Interactive searchable version with copy-to-clipboard: clskills.in/prompts
| Code | What it does |
|---|
100 prompt shortcuts that change how Claude responds. Type any code at the start of your message.
Interactive searchable version with copy-to-clipboard: clskills.in/prompts
| Code | What it does |
|---|
| <? | |
| // VIN API decoder for PHP 4.x+ | |
| define('ELEMENT_CONTENT_ONLY', true); | |
| define('ELEMENT_PRESERVE_TAGS', false); | |
| function getXML($vin) { | |
| $curl = curl_init(); | |
| curl_setopt ($curl, CURLOPT_URL, 'http://vinapi.skizmo.com/vins/'. $vin.'.xml'); | |
| curl_setopt ($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/xml', 'X-VinApiKey: #YOURAPIKEYGOESHERE#')); //use your API key here |