Skip to content

Instantly share code, notes, and snippets.

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Schema; //add 2017/03/13 fix php artisan migrate error
class AppServiceProvider extends ServiceProvider
{
/**
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
/*
pick 05dc87e change8 revert head~2
# Rebase 0912b7f..05dc87e onto 0912b7f (1 command)
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CubeController : MonoBehaviour {
public void DidMove(Vector3 movePos) {
float tx = movePos.x;
float ty = movePos.y + 0.49f;
float tz = movePos.z;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MoveAreaController : MonoBehaviour {
public MainController MainControllerInst;
public static List<MoveAreaController> areas = new List<MoveAreaController>();
public MoveAreaController moveareas;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MainController : MonoBehaviour {
public int statusFlag;
// Use this for initialization
void Start () {
@0gravity000
0gravity000 / ViewController.m
Last active July 3, 2016 13:10
Open Weather Map Web API Test
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
@0gravity000
0gravity000 / ViewController.swift
Created June 19, 2016 14:01
Optional Test 04
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
//optional Test04
let msg:String? = nil //オプショナル型なのでnilが代入できる
print(msg)
@0gravity000
0gravity000 / ViewController.swift
Created June 19, 2016 13:43
Optional Test 03
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
//optional Test03
let msg:String? = nil //オプショナル型なのでnilが代入できる
print(msg)