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 PUBLIC "-> | |
| <html lang="fr"> | |
| <head> | |
| <meta charset="utf8"> | |
| </head> | |
| <body> | |
| </body> | |
| </html> | 
  
    
      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
    
  
  
    
  | /* | |
| * AUTHOR: | |
| * NAME: | |
| * DESCRIPTION: | |
| * LICENCE | |
| */ | |
| #include <iostream> | |
  
    
      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
    
  
  
    
  | <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-12> | |
| Texte a mettre | |
| </div> | |
| </div> | |
| </div> | 
  
    
      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
    
  
  
    
  | var ajaxOptions = { | |
| url:'/find_my_location', | |
| type: 'POST', | |
| datatype:'json', | |
| data:{latitude:lattitude, longitude:longitude}, | |
| success: function(data){ | |
| return console.log("it wrk") | |
| } | |
| , | 
  
    
      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
    
  
  
    
  | <div class="main-display-area"> | |
| <div class="col-md-2"> | |
| <div class="panel panel-default"> | |
| <div class="panel-heading"> | |
| <h3 class="panel-title"> | |
| Course Title | |
| </h3> | |
| </div> | |
| <div class="panel-body"> | |
| <div class="list-group"> | 
  
    
      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
    
  
  
    
  | def fizzbuzz(n) | |
| # Return | |
| return (1..n).map{|num| (num % 3 == 0 && num % 5 == 0 ? "FizzBuzz" :(num % 5 == 0 ? "Buzz" :(num % 3 == 0 ? "Fizz" : num) ) ) | |
| }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
    
  
  
    
  | require "rails_helper" | |
| # require "devise" | |
| describe TasksController do | |
| user = User.create(name:"Bob", password:"AZERTYUIOP", | |
| password_confirmation:"AZERTYUIOP", email:"testeur@test.com") | |
| it "require user to log in before to see index of tasks" do | |
| get('index') | 
  
    
      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
    
  
  
    
  | # status bar | |
| set-option -g status-utf8 on | |
| # https://github.com/seebi/tmux-colors-solarized/blob/master/tmuxcolors-256.conf | |
| set-option -g status-bg colour235 #base02 | |
| set-option -g status-fg colour136 #yellow | |
| set-option -g status-attr default | |
| # default window title colors | 
  
    
      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
    
  
  
    
  | """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " Maintainer: | |
| " Amir Salihefendic | |
| " http://amix.dk - amix@amix.dk | |
| " | |
| " Version: | |
| " 5.0 - 29/05/12 15:43:36 | |
| " | 
  
    
      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 scrollToAnchor(aid){ | |
| var aTag = $("a[name='"+ aid +"']"); | |
| $('html,body').animate({scrollTop: aTag.offset().top},'slow'); | |
| } | |
| $(".link").on('click', function() { | |
| scrollToAnchor(this.id); | |
| }); | 
OlderNewer