Équipe ...
- Projet:
- Lieu:
| Certificate: | |
| Data: | |
| Version: 3 (0x2) | |
| Serial Number: | |
| 56:99:54:05:52:07:c5:33:39:e4:87:f7:0a:e6:6a:94 | |
| Signature Algorithm: sha256WithRSAEncryption | |
| Issuer: C=GB, ST=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO RSA Domain Validation Secure Server CA | |
| Validity | |
| Not Before: Feb 20 00:00:00 2016 GMT | |
| Not After : Feb 19 23:59:59 2017 GMT |
| #pragma config(Motor, port2, rightMotor, tmotorVex393_MC29, openLoop, reversed) | |
| #pragma config(Motor, port3, leftMotor, tmotorVex393_MC29, openLoop, reversed) | |
| #pragma config(Motor, port9, armMotor, tmotorVex393_MC29, openLoop) | |
| //*!!Code automatically generated by 'ROBOTC' configuration wizard !!*// | |
| /*---------------------------------------------------------------------------*/ | |
| /* */ | |
| /* Description: Competition template for VEX EDR */ | |
| /* */ | |
| /*---------------------------------------------------------------------------*/ |
| #!/bin/bash | |
| # | |
| # Debian | |
| # | |
| set -v | |
| apt-get -y update | |
| apt-get install -y ntpdate |
| // controller | |
| $course = Course::with(...)->checkEstablishmentOnView()->excludeArchived()->findOrFail($id); | |
| $view = View::make('some.view')->with('course', $course); | |
| return response()->json(['html' => $view->render()]); | |
| // kahlan spec | |
| it('does some magic and unicorns and all that stuff', function () { | |
| allow(Double::classname(['class' => App\Course::class]))->toReceive('::with')->andReturn($query = Double::instance()); |
| <?php | |
| class ImageManipulator | |
| { | |
| /** | |
| * @var int | |
| */ | |
| protected $width; | |
| /** | |
| * @var int |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
| <title>Hello World!</title> |
| <div class="container"> | |
| <p> | |
| <a class="btn btn-primary btn-lg" href="http://www.youtube.com/watch?v=6w4FI0Jq0lI" role="button">Open a Video</a> | |
| </p> | |
| </div> | |
| <!-- Video / Generic Modal --> |
| const url = require('url'); | |
| const http = require('http'); | |
| const qs = require('querystring'); | |
| const server = http.createServer((req, res) => { | |
| var Url_data = url.parse( req.url ); | |
| var pathname = Url_data.pathname; |
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); |