Creates merge request on Gitlab for you
Download it, add executable perms and place into PATH:
# Place it into ~/.bin
mkdir ~/.bin
Translations: Korean (by Yongwoo Lee)
Laravel has a powerful Inversion of Control (IoC) / Dependency Injection (DI) Container. Unfortunately the official documentation doesn't cover all of the available functionality, so I decided to experiment with it and document it for myself. The following is based on Laravel 5.4.26 - other versions may vary.
I won't attempt to explain the principles behind DI / IoC here - if you're not familiar with them you might want to read What is Dependency Injection? by Fabien Potencier (creator of the Symfony framework).
/* custom bootstrap grid by Hugh Anderson */ | |
.col-xs-110 { width: calc(100% / 10) } /* 1/10 */ | |
.col-xs-18 { width: calc(100% / 8) } /* 1/8 */ | |
.col-xs-15 { width: calc(100% / 5) } /* 1/5 */ | |
.col-xs-38 { width: calc(300% / 8) } /* 3/8 */ | |
.col-xs-310 { width: calc(300% / 10) } /* 3/10 */ | |
.col-xs-25 { width: calc(200% / 5) } /* 2/5 */ | |
.col-xs-35 { width: calc(300% / 5) } /* 3/5 */ | |
.col-xs-58 { width: calc(500% / 8) } /* 5/8 */ |
These are my notes basically. At first i created this gist just as a reminder for myself. But feel free to use this for your project as a starting point. If you have questions you can find me on twitter @thomasf https://twitter.com/thomasf This is how i used it on a Debian Wheezy testing (https://www.debian.org/releases/testing/)
Discuss, ask questions, etc. here https://news.ycombinator.com/item?id=7445545