This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo update-alternatives --config php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- WITHOUT MAX WIDTH --> | |
| <div class="youtube-container"> | |
| <iframe src="//www.youtube.com/embed/n-7zo6CXcp8" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe> | |
| </div> | |
| <style> | |
| .youtube-container { | |
| position: relative; | |
| height: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [alias] | |
| # shortcuts | |
| a = add | |
| s = status -s | |
| st = status | |
| cm = commit -m | |
| co = checkout | |
| cob = checkout -b | |
| br = branch | |
| brm = branch --merged |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function randomColor() { | |
| return '#' + Math.floor(Math.random()*16777215).toString(16); | |
| } |