Skip to content

Instantly share code, notes, and snippets.

View curtisbelt's full-sized avatar

Curtis Belt curtisbelt

View GitHub Profile
@curtisbelt
curtisbelt / httpd-vhosts.conf
Created November 13, 2016 00:19
httpd-vhosts.conf for Re-usable Wordpress Installation
<VirtualHost *:80>
ServerName dev.host
UseCanonicalName off
ServerAlias *.host
DocumentRoot E:/wamp64/www/wordpress
<Directory "E:/wamp64/www/wordpress/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
@curtisbelt
curtisbelt / Default (Windows).sublime-keymap
Last active November 29, 2016 23:28
Default (Windows).sublime-keymap
[
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" },
// Auto-space within parentheses
{ "keys": [" "], "command": "insert_snippet", "args": {"contents": " $0 "}, "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "\\($", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^\\)", "match_all": true }
]
},
@curtisbelt
curtisbelt / responsive-font.scss
Last active December 4, 2016 09:35
Responsive Font Mixin
$viewport-desktop-size: 1366;
$viewport-mobile-size: 320;
// Given a range of font sizes ( $mobile-font-size and $desktop-font-size ), apply break points evenly from mobile to desktop widths
@mixin responsive-font( $mobile-font-size, $desktop-font-size, $line-height-buffer: 2 ) {
$number-of-breakpoints-required: $desktop-font-size - $mobile-font-size;
$maximum-viewport-range: $viewport-desktop-width - $viewport-mobile-width;
$breakpoint-multiplier: $maximum-viewport-range / $number-of-breakpoints-required;
font-size: #{$mobile-font-size}px;
line-height: #{$mobile-font-size + $line-height-buffer}px;
@curtisbelt
curtisbelt / lamp-stack-ubuntu-php7.md
Last active April 3, 2017 07:27
LAMP Stack (Ubuntu 16.04, PHP 7.1)
@curtisbelt
curtisbelt / fix-yoga-13-wireless.sh
Created April 17, 2017 05:26
Ubuntu 16.04 Fix Lenovo Ideapad Yoga 13 Wireless RTL8723AU
#!/usr/bin/env bash
# Fix Wireless Driver on Lenovo IdeaPad Yoga 13
# Realtek Semiconductor Corp. RTL8723AU 802.11n WLAN Adapter
# SUCCESSFUL on Ubuntu 16.04.
# FAILED on Ubuntu 16.10, and 17.04.
# On 16.04, Wireless is (usually) able to connect, albeit at <1 Mbps.
# Enough to install git and clone the driver repo.
# If not, will have to use a good ol' USB drive.
@curtisbelt
curtisbelt / wp-config.php
Last active December 8, 2017 03:36
wp-config for Re-usable Wordpress Installation
<?php
/******************************************** // <-- Add a dash to turn on debugging
// define( 'WP_DEBUG', true );
// define( 'WP_DEBUG_LOG', true );
// define( 'WP_DEBUG_DISPLAY', true );
error_reporting(E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR);
ini_set('display_errors', 1);
// define( 'SCRIPT_DEBUG', true );
@curtisbelt
curtisbelt / compress-all-images.sh
Last active February 23, 2018 03:32
Bulk Compress JPG/PNG
#!/bin/bash
# Setup variable extra_args with -newer argument if our tracking file exists
# Find all files with extension jpg/jpeg/png, case insensitive
# For jpg/jpeg, execute jpegoptim
# For png, execute pngquant
# Log output to compress-all-images.log
# https://stackoverflow.com/questions/38965254/jpegoptim-save-shell-last-run-and-check-files-or-folders-after-this-date
@curtisbelt
curtisbelt / AppFlex.js
Last active September 7, 2019 15:52
Sample Vue Components
/*
The full project features a page builder on the backend, with various "Flexible Components"
the user can select from to build their page. Each of these corresponds to a Vue compoennt
on the frontend.
There are two ways to use the component:
- Manually use a specific Flex component
- Automatically load all Flex components (when used on page that supports it)
@curtisbelt
curtisbelt / userChrome.css
Created April 25, 2021 00:49
Firefox userChrome.css
/**
* Hide the default tabs toolbar
* I manage tabs as a sidebar using Sidebery addon: https://addons.mozilla.org/en-US/firefox/addon/sidebery/
*/
#main-window[tabsintitlebar="true"] #TabsToolbar > .toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
@curtisbelt
curtisbelt / refresh-all-premier-repos.sh
Created April 11, 2022 20:20
Refresh All Premier Repos
#!/bin/bash
# Clones/refreshes repositories for VIP premier sites (production environments)
# Dependencies: jq, git, vipgo
vipgo api GET "/sites?pagesize=550&support_package=enterprise%20support&environment_name=production" > ./premier-production-environments.json
sites=$( jq -cr '.data[] | @base64' ./premier-production-environments.json )