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
    
  
  
    
  | #Downloading and installing laravel globally with composer | |
| composer global require "laravel/installer" | |
| # Making "bin" directory visible in your PATH | |
| export PATH="$PATH:$HOME/.composer/vendor/bin" | 
  
    
      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
    
  
  
    
  | Public Shared Function getSelectedValuesFromListBox(ByVal objListBox As ListBox) As String | |
| Dim listOfIndices As List(Of Integer) = objListBox.GetSelectedIndices().ToList() | |
| Dim values As String = String.Empty | |
| For Each indice As Integer In listOfIndices | |
| values &= "," & objListBox.Items(indice).Value | |
| Next indice | |
| If Not String.IsNullOrEmpty(values) Then | |
| values = values.Substring(1) | |
| End If | 
  
    
      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
    
  
  
    
  | https://visualstudiogallery.msdn.microsoft.com/9e08e5d3-6eb4-4e73-a045-6ea2a5cbdabe | 
  
    
      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
    
  
  
    
  | $ docker ps | |
| $ docker attach --sig-proxy=false hopeful_wozniak | |
| ** CTRL + P + Q = detach and keep docker container running | |
| $ docker ps | 
  
    
      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
    
  
  
    
  | To put this folder on the PATH environment variable type | |
| export PATH="$PATH:$HOME/.composer/vendor/bin" | |
| This appends the folder to your existing PATH, however, it is only active for your current terminal session. | |
| If you want it to be automatically set, it depends on the shell you are using. For bash you can append this line to $HOME/.bashrc using your favourite editor or type the following on the shell | |
| echo 'export PATH="$PATH:$HOME/.composer/vendor/bin"' >> ~/.bashrc | 
  
    
      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
    
  
  
    
  | https://www.getpostman.com/ | 
  
    
      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
    
  
  
    
  | http://programmers.stackexchange.com/questions/141973/how-do-you-achieve-a-numeric-versioning-scheme-with-git | |
| Use tags to mark commits with version numbers: | |
| git tag -a v2.5 -m 'Version 2.5' | |
| Push tags upstream—this is not done by default: | |
| git push --tags | |
| Then use the describe command: | 
  
    
      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
    
  
  
    
  | Preferences > Editor > File and Code Templates > Includes tab > PHP Class Doc Comment | |
| /** | |
| * Class ${NAME} | |
| #if (${NAMESPACE}) * @package ${NAMESPACE} | |
| #end | |
| * @author Vinícius Feitosa da Silva <[email protected]> | |
| * @since ${DATE} ${TIME} | |
| */ | 
  
    
      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
    
  
  
    
  | Choose View > Parameter Info on the main menu or press Ctrl+P. |