name: adhd-mode description: > Activates a strict, minimal-prose response mode optimized for ADHD users in Claude Code. Trigger this skill whenever the user says phrases like "adhd mode", "focus mode", "short answers", "no prose", "just steps", "be concise", "cut the fluff", "minimal responses", "I have ADHD", or anything like "I need simple numbered answers". Also trigger on blunt/casual phrases that signal "just give me the facts": "cut the bullshit", "no bullshit", "no bs", "cut the crap", "just the facts", "skip the fluff", "get to the point", "bottom line it", "tldr", "tl;dr", "spare me the details", "just answer the question", or similar. Also trigger when the user is
"Is Claude down again or is it just me?" "It's 9:07 AM in San Francisco. So yes."
- A beverage of your choosing (hard mode: espresso martinis before standup)
- The Anthropic Status Page bookmarked, pinned, tattooed on your forearm
- A Slack channel where at least three engineers have already posted "is claude down?"
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
| services: | |
| chroma: | |
| image: "chromadb/chroma:latest" | |
| volumes: | |
| - ./__data__/chromadb:/chroma/chroma | |
| environment: | |
| - IS_PERSISTENT=TRUE | |
| - PERSIST_DIRECTORY=${PERSIST_DIRECTORY:-/chroma/chroma} | |
| - ANONYMIZED_TELEMETRY=${ANONYMIZED_TELEMETRY:-TRUE} | |
| ports: |
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
| app.factory("Pagination", | |
| [ | |
| '$filter', | |
| function($filter){ | |
| var Pagination = { | |
| data: { | |
| perPage:20, | |
| count: 0, | |
| currentPage: 0, | |
| paginationSet: [], |
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
| JavascriptJukebox = { | |
| letsGetThisPartyStarted: function(){ | |
| Array.prototype.randomElement = function () { | |
| return this[Math.floor(Math.random() * this.length)]; | |
| }; | |
| var lyrics = this.lyrics().randomElement(); | |
| this.playItAgainTony(lyrics); | |
| }, | |
| playItAgainTony: function(lyrics){ | |
| var i = 0; |
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
| /* | |
| * Based off of Sails.js 0.11.1 Blueprints REST API generator | |
| */ | |
| Blueprints = { | |
| serializeObject: function(){ | |
| //js function to create json object out of form data | |
| $.fn.serializeObject = function(){ | |
| var o = {}; | |
| var a = this.serializeArray(); | |
| $.each(a, function() { |
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 | |
| //create our mega query with post data, meta fields, and taxonomies | |
| function get_posts_terms_fields($params=null){ | |
| global $wpdb; | |
| $defaults=array( | |
| 'posts_per_page' => 5, | |
| 'offset' => 0, | |
| 'category' => '', | |
| 'category_name' => '', |
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
| #set variables | |
| SET @oldurl = 'http://oldurl.com'; | |
| SET @newurl = 'http://newurl.com'; | |
| #update wp_site options | |
| UPDATE wp_options SET option_value = replace(option_value, @oldurl, @newurl) WHERE option_name = 'home' OR option_name = 'siteurl'; | |
| #update wp_posts guid | |
| UPDATE wp_posts SET guid = REPLACE (guid, @oldurl, @newurl); |
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
| //Comment walker | |
| function comments_walker($comment, $args, $depth) { | |
| $GLOBALS['comment'] = $comment; | |
| extract($args, EXTR_SKIP); | |
| if ( 'div' == $args['style'] ) { | |
| $tag = 'div'; | |
| $add_below = 'comment'; | |
| } else { | |
| $tag = 'li'; |
NewerOlder