Skip to content

Instantly share code, notes, and snippets.

@pauldominik
pauldominik / settings.json
Created February 7, 2017 10:34
Sublime Text 3 User settings
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"default_line_ending": "unix",
"draw_white_space": "all",
"font_size": 11,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
centered content v and h
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
@pauldominik
pauldominik / Easy Package Development for Laravel 5.md
Last active April 21, 2016 07:24
Easy Package Development for Laravel 5

The Scenario

  • You are working on a Laravel 5.2 project
  • You are adding a feature that you want to reuse with other Laravel 5 projects,
  • For this one, lets assume we are doing https://github.com/pauldominik/deploy

This is when package development comes in. I'm listing good tips on how you can do your dev workflow. So let me start with the gains.

The Benefits

@pauldominik
pauldominik / Guide to Laravel 5.2 projects
Last active April 21, 2016 03:55
Guide to Laravel 5.2 projects
# Installation/Start
- download as zip the most recent tag and lock laravel/framework with the same version in composer.json
- $ composer install
- $ cp .env.example .env
- $ php artisan key:generate
- $ git branch -develop # do all development with develop branch, us master for production releases
# Upgrading
@pauldominik
pauldominik / Sublime Text 3 Setup.rst
Last active August 23, 2017 04:46
Sublime Text 3 Setup