View gist:610f90b0ff89e29e3eaf81a2b077f564
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
View defi-humancoders.md

Équipe ...

  • Projet:
  • Lieu:

Langages utilisés

Serveur

Clients

View gist:7f65a4344bbc46ab3177ed01e017fd24
#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 */
/* */
/*---------------------------------------------------------------------------*/
View proxy-debian-linux.sh
#!/bin/bash
#
# Debian
#
set -v
apt-get -y update
apt-get install -y ntpdate
View mocking Eloquent fluent query with kahlan 3.*
// 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());
View ImageManipulator.php
<?php
class ImageManipulator
{
/**
* @var int
*/
protected $width;
/**
* @var int
View index.html
<!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>
View index.html
<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 -->
View file.js
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;
View controllers.application.js
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});