Skip to content

Instantly share code, notes, and snippets.

View muzudho's full-sized avatar

むずでょ muzudho

View GitHub Profile
@muzudho
muzudho / file0.txt
Last active July 14, 2018 00:03
C# DynamicJsonの使い方 (1)JSON→クラス (2)JSON→連想配列 ref: https://qiita.com/muzudho1/items/3831ddd06aa3542b9b56
using Codeplex.Data; // DynamicJson はこれ。
using CsharpDynamicJsonBestPractice.Model; // 自分で好きに作れだぜ。
using System.Diagnostics; // Trace とかこれ。
using System.IO; // ファイル読み込みはこれ。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/myButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
@muzudho
muzudho / file0.txt
Last active June 21, 2017 04:36
Laravel の独習をこれから始めてみようぜ ref: http://qiita.com/muzudho1/items/524400c6d53ffbf4c0eb
<?php
@muzudho
muzudho / JumpButton.cs
Last active June 16, 2017 01:27
ゲーム開発を受注しようぜ<その5> ref: http://qiita.com/muzudho1/items/c2d57d16fbab3db50f86
using UnityEngine;
public class JumpButton : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
@muzudho
muzudho / file0.txt
Last active June 20, 2017 09:06
Webアプリ案件を受注しようぜ<その4> ref: http://qiita.com/muzudho1/items/f9042c3677208e1b30ee
vi /etc/php.ini
@muzudho
muzudho / file0.txt
Last active June 20, 2017 05:51
Webアプリ案件を受注しようぜ<その3> ref: http://qiita.com/muzudho1/items/2e382c9ec03ede31fec4
firewall-cmd --list-all
@muzudho
muzudho / file0.txt
Last active June 20, 2017 02:27
Webアプリ案件を受注しようぜ<その2> ref: http://qiita.com/muzudho1/items/516422e7628f69bb63dd
RHEL, Fedora and CentOS based distributions
@muzudho
muzudho / file0.txt
Last active June 19, 2017 21:39
Webアプリ案件を受注しようぜ<その1> ref: http://qiita.com/muzudho1/items/d17799dfacc6d84a4c8a
vagrant box add hashicorp/precise64
@muzudho
muzudho / file0.txt
Last active January 27, 2019 12:22
Unityで状態遷移を組むときに使うアニメーター・コントローラーを作成するC#スクリプトのソースコード ref: http://qiita.com/muzudho1/items/d2a76d79b8a6b8437897
using UnityEditor;
using UnityEditor.Animations;
using UnityEngine;
/// <summary>
/// 開発中に使うメニュー
/// </summary>
public class ToolMenu {
#region アニメーター・コントローラー編集
@muzudho
muzudho / file0.txt
Last active June 8, 2017 18:57
Unityのアニメーター・コントローラーを使ってモーションの状態遷移をプログラムから独立させようぜ ref: http://qiita.com/muzudho1/items/85cd11ba0c7b1b7d496d
using UnityEditor;
using UnityEngine;