Skip to content

Instantly share code, notes, and snippets.

View supercid's full-sized avatar

Cid Lopes supercid

View GitHub Profile
@supercid
supercid / phpcs_pre-commit
Created December 31, 2018 09:39
Run phpcs and phpcbf on all staged files before a commit is made
#!/bin/sh
PROJECT=`php -r "echo dirname(dirname(dirname(realpath('$0'))));"`
STAGED_FILES_CMD=`git diff --cached --name-only --diff-filter=ACMR HEAD | grep \\\\.php`
# Determine if a file list is passed
if [ "$#" -eq 1 ]
then
oIFS=$IFS
IFS='
@supercid
supercid / installshopware.sh
Last active March 31, 2022 12:34
Shopware Local Install Script
#!/bin/bash
cd ~/Sites
composer create-project shopware/composer-project --no-interaction --stability=dev shopware
cd shopware
MYSQL_ENV_MYSQL_HOST='mysql'
# Setup variables to populate the .env file
cp .env.example .env
sed -i -e 's*DB_DATABASE=composer*DB_DATABASE=shopware*g' .env
sed -i -e 's*DB_USERNAME=root*DB_USERNAME=homestead*g' .env
@supercid
supercid / reminders.md
Last active October 15, 2019 07:29
PerfTestReminders

Install CTOP

wget https://github.com/bcicen/ctop/releases/download/v0.7.2/ctop-0.7.2-linux-amd64 -O /usr/local/bin/ctop
chmod +x /usr/local/bin/ctop

Get IP host machine with:

hostname -I | awk '{print $1}' I'm using debian-host on /etc/hosts inside the docker container

@supercid
supercid / pre-commit
Last active September 25, 2019 10:44
Run m2 checks before commit
#!/bin/sh
export PATH=/usr/local/bin:$PATH
ROOT=`git rev-parse --show-toplevel`
if [ ! -d "$ROOT/vendor" ]; then
echo "Run composer install to run checkstyles"
exit 1
fi
@supercid
supercid / .zshrc
Last active June 12, 2019 10:57
My zshrc config
export PATH=$HOME/bin:/usr/local/bin:$PATH
source <(antibody init)
PATH="/Users/alcidemar/Library/Python/2.7/bin:${PATH}"
# Path to your oh-my-zsh installation.
export ZSH=/Users/alcidemar/.oh-my-zsh
#export NVM_DIR="$HOME/.nvm"
#. "/usr/local/opt/nvm/nvm.sh"
# The shit above slows down the shell by 3 seconds! Load manually when needed
alias loadnvm=". /usr/local/opt/nvm/nvm.sh"

Terminal Tips


My whole setup is now versioned in a public dotfiles repository. You can either follow this guide and install everything manually, however i do recommend that you fork the repo and tweak with your own preferences.

iTerm

@supercid
supercid / osx-for-hackers.sh
Created March 27, 2019 11:40 — forked from brandonb927/osx-for-hackers.sh
OSX for Hackers: Yosemite/El Capitan Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned.
#!/bin/sh
###
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer)
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos
###
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx
@supercid
supercid / tmux.conf
Last active March 15, 2019 07:28 — forked from rajanand02/tmux.conf
Tmux configurations with status bar theme
# set prefix to control-f
set -g prefix C-f
#unbind system defined prefix
unbind C-b
# helps in faster key repetition
set -sg escape-time 0
# start session number from 1 rather than 0

Profiler

This is a simple PHP profiler based on syslog and ticks.

Killer feature is that it doesn't need to be included inside statements but only prepend your scripts.

@supercid
supercid / git-fav-aliases
Created December 31, 2018 09:45
git most used aliases
gaa='git add --all'
gfo='git fetch origin'
gb='git branch'
gcb='git checkout -b'
gbnm='git branch --no-merged'
glgga='git log --graph --decorate --all'
gss='git status -s'
gup='git pull --rebase'
gupv='git pull --rebase -v'
gwch='git whatchanged -p --abbrev-commit --pretty=medium'