Skip to content

Instantly share code, notes, and snippets.

View gsoldateli's full-sized avatar

Guilherme Soldateli gsoldateli

  • Freelancer
  • Lajeado/RS - Brazil
View GitHub Profile
@bradtraversy
bradtraversy / docker-help.md
Last active November 23, 2025 10:14
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@devdrops
devdrops / steps.md
Last active September 22, 2017 14:09
PHPBrew on Ubuntu 14.04

PHPBrew on Ubuntu 14.04

Steps:

  1. Installing
    curl -L -O https://github.com/phpbrew/phpbrew/raw/master/phpbrew
    chmod +x phpbrew
    sudo mv phpbrew /usr/bin/phpbrew
    
@schmuli
schmuli / Gulp and Bower Components.md
Last active December 29, 2017 15:44
Minify and Concat all bower components

This is an example gulpFile that can be used to minify and concat all bower components marked as dependencies. Also includes the bower.json and package.json files for the project.

The 'vendors' task will extract all bower components, using main-bower-files, but replaces any files that have a matching .min file that exists. Any unminified files are then minified using Uglify, and then all files are concatenated into a single vendors.js file.

The bower.json deliberately includes the SizzleStats dependency, as this component doesn't include a minified file.