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; | |
| using System.Collections.Generic; | |
| namespace ObjectOrientationLearning | |
| { | |
| /// <summary> | |
| /// 自販機で飲み物を買う動作を行うプログラム | |
| /// </summary> | |
| class Program | |
| { | |
| // 自販機のインスタンス管理 |
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; | |
| namespace ConsoleApp | |
| { | |
| class JankenGame | |
| { | |
| static void Main(string[] args) | |
| { | |
| // じゃんけんゲーム! |
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; | |
| using System.Collections.Generic; | |
| public class UnitychanSpriteAction : MonoBehaviour | |
| { | |
| static int hashSpeed = Animator.StringToHash ("Speed"); | |
| static int hashFallSpeed = Animator.StringToHash ("FallSpeed"); | |
| static int hashGroundDistance = Animator.StringToHash ("GroundDistance"); | |
| static int hashIsCrouch = Animator.StringToHash ("IsCrouch"); |
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
| # -*- coding: utf-8 -*- | |
| from paramiko import SSHClient, AutoAddPolicy | |
| HOST = 'xx.xx.xx.xx' | |
| PORT = 22 | |
| USER = 'user_name' | |
| PASSWORD = 'user_password' | |
| PRIVATE_KEY = '/Users/user_name/.ssh/id_rsa' |
NewerOlder