Skip to content

Instantly share code, notes, and snippets.

View supercid's full-sized avatar

Cid Lopes supercid

View GitHub Profile
@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 / 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 / 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 / supress.txt
Created May 9, 2018 12:12
PHP Storm Inspections
/** @noinspection PhpUndefinedMethodInspection */
/** @noinspection PhpDeprecationInspection */
PhpAssignmentInConditionInspection
PhpDeprecationInspection
PhpDocMissingReturnTagInspection
PhpDocSignatureInspection
PhpDynamicAsStaticMethodCallInspection
PhpIllegalArrayKeyTypeInspection
@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 / shopware-one-liner.sh
Last active March 7, 2018 07:32
Shopware install one line
git clone https://github.com/shopware/shopware.git
cd shopware
chmod -R 755 var
chmod -R 755 web
chmod -R 755 files
chmod -R 755 media
chmod -R 755 engine/Shopware/Plugins/Community
cd build/
ant configure
ant build-unit
@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"

Keybase proof

I hereby claim:

  • I am supercid on github.
  • I am supercid (https://keybase.io/supercid) on keybase.
  • I have a public key ASDfn2eux4enGBYnftuNim9XsHvKVPtOOrMp0hDbpzcCjwo

To claim this, I am signing this object:

@supercid
supercid / install-pre-commit.sh
Created August 8, 2017 13:33 — forked from stefansundin/install-pre-commit.sh
Git pre-commit check to stop accidental commits to master and develop branches. There is also a variant with a core.whitespace check.
#!/bin/sh
# This gist contains pre-commit hooks to prevent you from commiting bad code or to the wrong branch.
# There are four variants that I have built:
# - pre-commit: stops commits to "master" and "develop" branches.
# - pre-commit-2: also includes a core.whitespace check.
# - pre-commit-3: the core.whitespace check and an EOF-newline-check.
# - pre-commit-4: only the core.whitespace check.
# Set desired version like this before installing:
# FILE=pre-commit