Skip to content

Instantly share code, notes, and snippets.

@bradwilson
bradwilson / settings.json
Last active March 14, 2026 21:58
Ubuntu color scheme for Windows Terminal
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions": [
{
"command": "copy",
"keys": "ctrl+shift+c"
},
{
"command": "paste",
@a904guy
a904guy / fucked_it_all.batch
Last active April 7, 2017 16:44
Upgraded Jonathan Moo's ANY Window's problem fixing script. (Use at your own caution, I cannot be held responsible for idiots who actually run this)
for letter in {A..Z} ; do
format $letter+":\";
done
@mikejolley
mikejolley / functions.php
Last active February 5, 2024 15:33 — forked from claudiosanches/functions.php
WooCommerce - Hide shipping rates when free shipping is available.
<?php
/**
* Hide shipping rates when free shipping is available.
* Updated to support WooCommerce 2.6 Shipping Zones.
*
* @param array $rates Array of rates found for the package.
* @return array
*/
function my_hide_shipping_when_free_is_available( $rates ) {
$free = array();
@claudiosanches
claudiosanches / functions.php
Last active April 16, 2022 09:14
WooCommerce - Hide shipping rates when free shipping is available.
<?php
/**
* Hide shipping rates when free shipping is available.
* Updated to support WooCommerce 2.6 Shipping Zones.
*
* @param array $rates Array of rates found for the package.
* @return array
*/
function my_hide_shipping_when_free_is_available( $rates ) {
$free = array();