Skip to content

Instantly share code, notes, and snippets.

View supercid's full-sized avatar

Cid Lopes supercid

View GitHub Profile
@supercid
supercid / git-ignore-changes-already-committed-file
Created April 10, 2018 06:48
Git ignore changes to a particular file/path
# Recently i've been struggling to ignore my local changes to a .env file that was already committed in a git repo.
# To locally ignore your changes to that particular file/folder and keep tracking in the remote, use this:
git update-index --skip-worktree <path-name>
@supercid
supercid / supress.txt
Created May 9, 2018 12:12
PHP Storm Inspections
/** @noinspection PhpUndefinedMethodInspection */
/** @noinspection PhpDeprecationInspection */
PhpAssignmentInConditionInspection
PhpDeprecationInspection
PhpDocMissingReturnTagInspection
PhpDocSignatureInspection
PhpDynamicAsStaticMethodCallInspection
PhpIllegalArrayKeyTypeInspection
@supercid
supercid / enable_xdebug_cli.sh
Created June 6, 2018 11:35
Enable xdebug for command line applications
export XDEBUG_CONFIG="remote_enable=1 remote_mode=req remote_port=9002 remote_host=127.0.0.1 remote_connect_back=0"
@supercid
supercid / explodeTags.php
Created June 19, 2018 08:12
Explode tags comma delimited
<?php
/**
* Overridden product meta data model.
* This model is used as the data source when generating the tagging elements
* on the product page, and when making server-to-server API calls to Nosto.
*/
class My_Nosto_Model_Meta_Product extends Nosto_Tagging_Model_Meta_Product
{
@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 / brew_packages.txt
Last active December 25, 2018 15:11
mbp15-all brew packages installed
ant
getantibody/tap/antibody
apache-spark
bat
bower
cscope
curl
diff-so-fancy
wagoodman/dive/dive
dnsmasq
@supercid
supercid / brew_cask.txt
Created December 25, 2018 14:57
brew cask installed
chromedriver
docker-toolbox
filezilla
firefox
java8
kap
sourcetree
upterm
virtualbox
viscosity
{
"Ansi 6 Color" : {
"Green Component" : 0.72156862745098038,
"Blue Component" : 0.71764705882352942,
"Red Component" : 0.75686274509803919
},
"Tags" : [
],
"Ansi 12 Color" : {
@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 / 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'