Skip to content

Instantly share code, notes, and snippets.

View lewalkingdad's full-sized avatar

Damien Biasotto lewalkingdad

  • Bondi Beach, New South Wales, Australia
  • 13:01 (UTC +11:00)
  • X @thql
View GitHub Profile
@lewalkingdad
lewalkingdad / Dockerfile
Created July 9, 2016 02:04
Docker Compose CakePHP 3 Nginx + PHP-FPM + MailHog + Phpmyadmin
FROM php:fpm-alpine
RUN apk add --no-cache --update icu-libs icu icu-dev
RUN docker-php-ext-install intl pdo pdo_mysql
@lewalkingdad
lewalkingdad / docker-compose.yml
Created October 10, 2015 12:53
Croogo3 Docker
web:
image: occitech/cakephp:5-apache
ports:
- 80
links:
- db
- mail
volumes:
- .:/var/www/html
environment:
@lewalkingdad
lewalkingdad / .vimrc
Created September 21, 2015 20:30
My very messy vimrc
" compatible has to be the first of all ( use the real vimpower )
set nocompatible
" backup rules
set backup " enable backup files (.txt~)
set undofile " enable persistent undo
silent execute '!mkdir -p $HOME/.vim/tmp/backup'
set backupdir=$HOME/.vim/tmp/backup " where to store backup
silent execute '!mkdir -p $HOME/.vim/tmp/swap'
@lewalkingdad
lewalkingdad / README.md
Last active April 9, 2017 20:43
Magento Security Patch SUPEE-53XX.

##Patch SUPEE_53XX for almost every versions of Magento.

###Here is the mapping patch version - magento version

  • SUPEE_5344 : For magento 1.8.0.0 to Magento 1.9.1.0
  • SUPEE_5345 : For magento 1.7.0.2
  • SUPEE_5346 : For Magento 1.6.1.0
  • SUPEE_5341 : For Magento 1.6.0.0
  • SUPEE_5390 : For Magento 1.5.1.0
  • SUPEE_5388 : For Magento 1.4.0.0 to 1.5.0.1
# ctrl+a
set -g prefix C-a
unbind C-b
bind-key C-a last-window
# delay between prefix and command
set -s escape-time 1
# Reload the file with Prefix r
bind r source-file ~/.tmux.conf \; display "Reloaded!"