Skip to content

Instantly share code, notes, and snippets.

View lstellway's full-sized avatar

Logan Stellway lstellway

View GitHub Profile
# Aliases
alias c="clear"
alias ll="ls -lah"
alias lz="ls -laZ" # include (selinux) security context in listing
alias cl="c && ll"
alias ..="cd .."
# Empty contents of files
empty() {
for arg in "$@"
@lstellway
lstellway / Speed Tests
Last active May 8, 2018 22:25
Tools for testing server performance
CURL
curl -o /dev/null -w "Connection Time: %{time_connect} TTFB: %{time_starttransfer} Total Time: %{time_total} \n" https://example.com/
Documentation & formatting variables:
https://curl.haxx.se/docs/manpage.html#-w
Apache Bench
ab -n 1000 -c 100 https://example.com/
Recommended Repos
https://wiki.centos.org/AdditionalResources/Repositories
PHP
https://ius.io/
OSX DiskUtility Format
sudo diskutil eraseDisk FAT32 NAME MBRFormat /dev/disk1
Copy Image
sudo dd bs=1m if=/path/to/raspbian.img of=/dev/disk1
Setup
https://www.losant.com/blog/getting-started-with-the-raspberry-pi-zero-w-without-a-monitor
PiZero W does not support 5GHz WiFi
@lstellway
lstellway / wp-meta-key-search.php
Created September 8, 2018 00:43
WordPress plugin to add meta keys to search queries
<?php
/**
* Reference: https://websmartdesign.nz/searching-structured-post-data-with-wordpress/
*/
// Join wp_postmeta
add_filter('posts_join', function($join) {
global $wpdb;
$join .= "LEFT JOIN {$wpdb->postmeta} ON ({$wpdb->posts}.ID = {$wpdb->postmeta}.post_id) ";
@lstellway
lstellway / wordpress-json-postmeta-search.php
Created September 12, 2018 17:18
WordPress include wp_postdata meta fields in search query
<?php
/**
* Reference: https://websmartdesign.nz/searching-structured-post-data-with-wordpress/
* Make meta data searchable
*/
// Join wp_postmeta
add_filter('posts_join', function($join) {
global $wpdb;
#!/bin/bash
run()
{
/usr/share/elasticsearch/bin/elasticsearch-plugin $1
}
init()
{
# Get installed plugins
@lstellway
lstellway / photoshop-save-for-web-jpg.jsx
Last active December 22, 2020 16:51
Photoshop Save for Web Script
/**
* Add array indexOf() method
*
* @param {object} Object
* @param {int} max
* @param {int} min)
* @return {mixed}
*/
if (!Array.prototype.indexOf) Array.prototype.indexOf = (function(Object, max, min){
"use strict";
<?php
/**
* Force Login
*/
function force_login() {
if (!is_user_logged_in()) {
$url = home_url($_SERVER['REQUEST_URI']);
$whitelist = [];
@lstellway
lstellway / distribute
Last active February 22, 2022 22:39
Distribute files in a directory to subfolders based on URL's in a specified file.
#!/bin/bash
# Loop through links
while IFS="" read -r LINE || [ -n "$LINE" ]; do
# Replace domain (everything before "/media")
PATH=${LINE//**\/media/media}
# Get file file name (everything after the last "/")
FILE_NAME=${PATH//*\//}