-
https://www.youtube.com/user/DevTipsForDesigners/playlists?shelf_id=0&view=1&sort=dd Travis Neilson
-
https://github.com/theskillwithin/hrtcup (eslint, browersync, etc confic)
#index
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| .fluid-container-menu { | |
| background-color: #FFFFFF; | |
| } |
| img:hover { | |
| -webkit-filter: grayscale(0%); | |
| -webkit-transition: .5s ease-in-out; | |
| -moz-filter: grayscale(0%); | |
| -moz-transition: .5s ease-in-out; | |
| -o-filter: grayscale(0%); | |
| -o-transition: .5s ease-in-out; | |
| filter: grayscale(0%); | |
| } |
https://www.youtube.com/user/DevTipsForDesigners/playlists?shelf_id=0&view=1&sort=dd Travis Neilson
https://github.com/theskillwithin/hrtcup (eslint, browersync, etc confic)
#index
Laradock is a community maintained set of Docker containers that we can use in our projects. Here I'm going to show what it takes to a couple of projects running usinng the same laradock setup.
I'm not gonna be building anything new here, so I'm going to create two new laravel applications:
laravel new project-a --dev| let x = { greeting: 'Hello', infotext: 'lorem ispum sit dolor amet' }; | |
| let y = Object.assign({}, x); | |
| y.greeting = 'Worked'; | |
| console.log(x); | |
| console.log(y); | |
| /* | |
| So... what does this o? |