- Framework: Laravel 4.2.17
- OS: Mac OSX 10.11.2
- Model: MacBook Pro (Retina, Mid 2012)
- Webserver: Apache 2.4.16
- Configuration: mod_php
- Processor: 2.3 GHz Intel Core i7
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
| using System.Collections.Generic; | |
| using Unity.Collections; | |
| using UnityEngine; | |
| [System.Serializable] | |
| public class Tile | |
| { | |
| public int Key; | |
| public Vector3 Position; | |
| public Vector3 Normal; |
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
| using Unity.Burst; | |
| using Unity.Collections; | |
| using Unity.Jobs; | |
| using UnityEngine; | |
| /// <summary> | |
| /// Cellular Automata using Unity Job System | |
| /// </summary> | |
| /// <example> | |
| /// This sample shows how to call the <see cref="Run"/> method. |
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
| angular.module('bw.paging', []).directive('paging', function () { | |
| var regex = /\{page\}/g; | |
| return { | |
| restrict: 'EA', | |
| link: fieldLink, | |
| template: fieldTemplate, | |
| scope: { | |
| page: '=', | |
| pageSize: '=', |
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 | |
| namespace Tests\Browser; | |
| use Tests\DuskTestCase; | |
| class ExampleAnnoyAjayTest extends DuskTestCase | |
| { | |
| /** | |
| * A basic browser test example. |
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 gulp = require('gulp'); | |
| var include = require('gulp-include'); | |
| var less = require('gulp-less'); | |
| var watch = require('gulp-watch'); | |
| var uglify = require('gulp-uglify'); | |
| var cssmin = require('gulp-cssmin'); | |
| var rename = require('gulp-rename'); | |
| var notify = require("gulp-notify"); | |
| var changed = require("gulp-changed"); | |
| var plumber = require("gulp-plumber"); |
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>VirtualDOM Example</title> | |
| </head> | |
| <body> | |
| <div id="output"></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 amqpConnectionOptions = { | |
| host: process.env['RABBITMQ_PORT_5672_TCP_ADDR'], | |
| port: 5672, | |
| login: 'guest', | |
| password: 'guest' | |
| }; | |
| var amqpQueueOptions = { | |
| durable: true, | |
| autoDelete: false | |
| }; |
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
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| shell: { | |
| bower: { | |
| options: { | |
| stdout: true, | |
| }, | |
| command: 'bower-requirejs -c public_html/js/main.js -e requirejs' | |
| } | |
| }, |
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
| Header add Content-Type "application/json" | |
| Header add Access-Control-Allow-Methods "GET,HEAD,POST,PUT,DELETE,OPTIONS" | |
| Header add Access-Control-Allow-Headers "Auth-Token,Content-Type" | |
| Header add Access-Control-Allow-Origin "*" |
NewerOlder