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
| from flask import Flask, request | |
| app = Flask(__name__) | |
| @app.route('/', methods=["GET", "POST"]) | |
| def hello(): | |
| print(request.headers) | |
| print(request.get_data()) | |
| name = "Hello World" | |
| return name |
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
| import chainer | |
| import chainer.functions as F | |
| import chainer.links as L | |
| from chainer import initializers | |
| from chainer import training | |
| from chainer import variable | |
| from chainer.training import extensions | |
| from time import sleep | |
| from chainer.backends import cuda | |
| import numpy |
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 UnityEngine; | |
| using System.Collections; | |
| public class PlayerControlScript : MonoBehaviour { | |
| // 速度 | |
| public Vector2 SPEED = new Vector2(0.05f, 0.05f); | |
| // Use this for initialization | |
| void Start () { | |
| } |