Skip to content

Instantly share code, notes, and snippets.

View thinkstylestudio's full-sized avatar

Theron Smith thinkstylestudio

View GitHub Profile
@thinkstylestudio
thinkstylestudio / Person.php
Created March 15, 2024 19:27
Example of watcher
<?php
//dilo surucu
#[AllowDynamicProperties]
/**
* @property string $name
*/
class Person
# This file contains common pin mappings for the BIGTREETECH SKR mini
# E3 v2.0. To use this config, the firmware should be compiled for the
# STM32F103 with a "28KiB bootloader". Also, select "Enable extra
# low-level configuration options" and configure "GPIO pins to set at
# micro-controller startup" to "!PA14".
# The "make flash" command does not work on the SKR mini E3. Instead,
# after running "make", copy the generated "out/klipper.bin" file to a
# file named "firmware.bin" on an SD card and then restart the SKR
# mini E3 with that SD card.
@thinkstylestudio
thinkstylestudio / CreateModel.sh
Created February 27, 2020 23:47
Create and scaffold laravel Model and stuff
function artmodel() {
art make:model Models\\$1\\$2
art make:controller --resource --api --model=Models\\$1\\$2 $1\\$(plur $2)Controller
art make:factory --model=Models\\$1\\$2 $(plur $2)Factory
art make:seed $(plur $2)Seeder
art make:policy --model=Models\\$1\\$2 $1\\$2Policy
art make:resource $1\\$2Resource
art make:resource --collection $1\\$(plur $2)Collection
art make:request $1\\Create$2Request
art make:request $1\\Update$2Request
@thinkstylestudio
thinkstylestudio / massInsertOrUpdate.php
Created January 14, 2020 23:07 — forked from RuGa/massInsertOrUpdate.php
Mass (bulk) insert or update on duplicate for Laravel 4/5
/**
* Mass (bulk) insert or update on duplicate for Laravel 4/5
*
* insertOrUpdate([
* ['id'=>1,'value'=>10],
* ['id'=>2,'value'=>60]
* ]);
*
*
* @param array $rows
@thinkstylestudio
thinkstylestudio / gist:53f30a12cb78116c7dedfb519fdfd346
Created May 7, 2019 05:01 — forked from stevegrunwell/gist:11c3e9d370127fa97898
Bulk-upgrade WordPress plugins using WP-CLI, committing each upgrade to Git as we go
#! /bin/bash
# Find available updates for WordPress plugins via WP-CLI, then upgrade theme one at a time.
# After each upgrade, commit the changed files to Git.
#
# Requires that WP-CLI be installed and in your path: http://wp-cli.org/
#
# Currently, it will only work when run from the root of the WordPress installation, and has
# a hard-coded path for wp-content/plugins.
#
@thinkstylestudio
thinkstylestudio / tip.sh
Created July 18, 2018 06:07 — forked from JeffreyWay/tip.sh
Ever want to undo everything that you've worked on since the last commit (including adding new files)? Here's a little alias to help with that.
alias gundo='git reset HEAD~ && git clean -df'
@thinkstylestudio
thinkstylestudio / routes.sh
Created July 18, 2018 06:02 — forked from JeffreyWay/routes.sh
Add this to your ~/.bashrc file (or anywhere related) to give yourself an easy way to view the routes in your Laravel app, or filter the results down to a particular search query.
function routes()
{
if [ $# -eq 0 ]; then
php artisan route:list
else
php artisan route:list | grep ${1}
fi
}
@thinkstylestudio
thinkstylestudio / wp_auto_install.sh
Created July 16, 2018 18:31 — forked from nicomollet/wp_auto_install.sh
WP-CLI auto install script
#!/bin/bash
# Default options
LOCALE="fr_FR"
DB_HOST='localhost'
VIRUSTOTAL_KEY='YOUR_KEY'
printf "Name of the project? cf My Project: "
read PROJECT_NAME
/**
* Print Stylesheet fuer Deinewebsite.de
* @version 1.0
* @lastmodified 16.06.2016
*/
@media print {
/* Inhaltsbreite setzen, Floats und Margins aufheben */
/* Achtung: Die Klassen und IDs variieren von Theme zu Theme. Hier also eigene Klassen setzen */
@thinkstylestudio
thinkstylestudio / 1-macOS-10.13-high-sierra-setup.md
Created May 21, 2018 23:16 — forked from kevinelliott/1-macOS-10.13-high-sierra-setup.md
macOS 10.13 High Sierra Mostly-Automated Setup

macOS 10.13 High Sierra Mostly-Automated Setup

An easy to refer to document for regularly setting up macOS 10.13 High Siera, in flavor of my previous macOS/OSX setup gists:

I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. I generally reinstall each computer from scratch every 6 months, and I do not perform upgrades between releases.