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
| <?php | |
| /** | |
| * WooCommerce: Remove unnecessary billing fields from Checkout page. | |
| * | |
| * Billing fields will display if cart total is greater than zero at time of | |
| * loading the Checkout page. If coupon is added to bring total down to zero, | |
| * billing fields will remain displayed unless page is also refreshed by user. | |
| * | |
| * Billing fields will always display if the order needs shipping information |
| <script type="text/javascript"> | |
| /* in order to update info on your checkout page you need to trigger update_checkout function | |
| so add this in your javascript file for your theme or plugin | |
| */ | |
| jQuery('body').trigger('update_checkout'); | |
| /* what this does is update the order review table but what it doesn't do is update shipping costs; | |
| the calculate_shipping function of your shipping class will not be called again; | |
| so if you were like me and you made a shipping method plugin and you had to change costs based on payment method then |
| sudo apt-get update && sudo apt-get install -y imagemagick php-imagick && sudo service php7.0-fpm restart && sudo service apache2 restart |
This tutorial walks through setting up AWS infrastructure for WordPress, starting at creating an AWS account. We'll manually provision a single EC2 instance (i.e an AWS virtual machine) to run WordPress using Nginx, PHP-FPM, and MySQL.
This tutorial assumes you're relatively comfortable on the command line and editing system configuration files. It is intended for folks who want a high-level of control and understanding of their infrastructure. It will take about half an hour if you don't Google away at some point.
If you experience any difficulties or have any feedback, leave a comment. 🐬
Coming soon: I'll write another tutorial on a high availability setup for WordPress on AWS, including load-balancing multiple application servers in an auto-scaling group and utilizing RDS.
| server { | |
| include /home/webmaster/www/codeable.io.conf; | |
| server_name codeable.io; | |
| listen 443 ssl spdy default_server; | |
| root /home/webmaster/www/codeable.io; | |
| index index.php index.html; | |
| error_log /var/log/nginx/codeable.io.error.log warn; |
| # ----------------------------------------------------------------- | |
| # .gitignore for WordPress | |
| # Bare Minimum Git | |
| # http://ironco.de/bare-minimum-git/ | |
| # ver 20150227 | |
| # | |
| # This file is tailored for a WordPress project | |
| # using the default directory structure | |
| # | |
| # This file specifies intentionally untracked files to ignore |
| $fontawesome_path: "." !default | |
| @font-face | |
| font-family: 'FontAwesome' | |
| src: font-url('#{$fontawesome_path}/fontawesome-webfont.eot') | |
| src: font-url('#{$fontawesome_path}/fontawesome-webfont.eot?#iefix') format("embedded-opentype"), font-url('#{$fontawesome_path}/fontawesome-webfont.woff') format("woff"), font-url('#{$fontawesome_path}/fontawesome-webfont.ttf') format("truetype") | |
| font-weight: normal | |
| font-style: normal | |
| @mixin icon($icon) |