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
    
  
  
    
  | # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "scotch/box" | |
| config.vm.network "private_network", ip: "192.168.33.10" | |
| config.vm.hostname = "scotchbox" | |
| config.vm.synced_folder ".", "/var/www/public", nfs: true | 
  
    
      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
    
  
  
    
  | The Vagrant Push FTP And SFTP strategy supports the following configuration options: | |
| host - The address of the remote (S)FTP server. If the (S)FTP server is running on a non-standard port, you can specify the port after the address (host:port). | |
| username - The username to use for authentication with the (S)FTP server. | |
| password - The password to use for authentication with the (S)FTP server. | |
| passive - Use passive FTP (default is true). | |
| secure - Use secure (SFTP) (default is false). | |
| destination - The root destination on the target system to sync the files (default is /). | |
| exclude - Add a file or file pattern to exclude from the upload, relative to the dir. This value may be specified multiple times and is additive. exclude take precedence over include values. | |
| include - Add a file or file pattern to include in the upload, relative to the dir. This value may be specified multiple times and is additive. | 
  
    
      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
    
  
  
    
  | # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure(2) do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at | 
  
    
      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
    
  
  
    
  | Vagrant.configure("2") do |config| | |
| config.vm.provision "shell", inline: "echo Hello" | |
| config.vm.define "web" do |web| | |
| web.vm.box = "apache" | |
| end | |
| config.vm.define "db" do |db| | |
| db.vm.box = "mysql" | |
| end | 
  
    
      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
    
  
  
    
  | {% for row in badges|batch(2) %} | |
| <div clas="row"> | |
| {% for badge in row %} | |
| <div class="col-md-6"> | |
| <img src="{{ badge.imageUrl }}" alt="badge" class="badges img-responsive pull-left"/> | |
| <blockquote class="pull-left"> | |
| <h3>{{ badge.assertion.badge.name }}</h3> | |
| <p>{{ badge.assertion.badge.description }}</p> | |
| <small>Achieved on {{ badge.assertion.issued_on }}</small> | 
  
    
      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
    
  
  
    
  | #include <iostream> | |
| using namespace std; | |
| int main() { | |
| cout << "Incert two numbers: " << endl; | |
| // cout << endl; | |
| int n = 0; int m =0; | |
| cin >> n >> m; | |
| cout << "Multiplication of: " << n << " and " << m << " is: " << n * m << endl; | 
  
    
      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
    
  
  
    
  | <?php | |
| $baseDir = "mp3s"; | |
| $soundcloudURL = "http://soundcloud.com/ninja-tune/sets/solid-steel-radio-shows/"; | |
| $urlBits = str_replace('http://', '', $soundcloudURL); | |
| $urlBits = preg_replace('@/$@', '', $urlBits); | |
| $urlBits = explode("/", $urlBits); | |
| /** | |
| * http://soundcloud.com/ninja-tune/sets/solid-steel-radio-shows/ | 
  
    
      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.youtube.com/watch?v=4vi1eWE0L4Q&list=PL3Wxyd2R8-gIuToQ1NmhVSLZfjrBMePNu | 
  
    
      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
    
  
  
    
  | Want to allow your users to sign in with Google on your website? This series covers implementing authentication between your website and Google. | |
| https://www.youtube.com/watch?v=oxa581kKBNg&list=PLfdtiltiRHWFIbiGNaGW1qreZNrx7uOAG | 
  
    
      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
    
  
  
    
  | <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Project Title</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content=""> | |
| <link rel="shortcut icon" href="favicon.ico"> | |
| <!-- Twitter Bootstrap --> |