Categories
Server Terminal

Laravel’s Artisan Command Shortcuts

php artisan route:list
composer dump-autoload
Categories
GIT

Useful GIT Shortcuts

Branch and checkout out a new branch:

git checkout -b my-lovely-new-branch

Adding all files to stage:

git add -A

Check user info:

git config --list

Force a push (maybe after resetting a branch until a previous point in time):

git push origin your-lovely-branch --force
Categories
Snippets

Absolute horizontal and vertical centering

.Absolute-Center {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;}

Absolute horizontal and vertical centering

Categories
Snippets

Absolute centering of an image

img {
position: absolute;
top: 50%;
left: 50%;
width: 500px;
height: 500px;
margin-top: -250px; /* Half the height */
margin-left: -250px; /* Half the width */}

Absolute centering of an image

Design a site like this with WordPress.com
Get started