Skip to content

Instantly share code, notes, and snippets.

View fumiya-kume's full-sized avatar
⌨️
Typing or Code Reading

kuu(Fumiya Kume) fumiya-kume

⌨️
Typing or Code Reading
View GitHub Profile
@fumiya-kume
fumiya-kume / やや
Created October 19, 2018 08:54
てきとー
ややや
@fumiya-kume
fumiya-kume / ななな
Created October 19, 2018 08:49
てすと
ややや
@fumiya-kume
fumiya-kume / やっほー
Created October 19, 2018 04:56
やっほー
/*やっほー*/
@fumiya-kume
fumiya-kume / あはは
Created October 18, 2018 06:36
えへへ
ななな
@fumiya-kume
fumiya-kume / hello_world.py
Created October 16, 2018 03:11
Hello World Examples
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
@fumiya-kume
fumiya-kume / gist1
Last active October 15, 2018 09:50
gist test
aaa
# 自動補完を有効にする
# コマンドの引数やパス名を途中まで入力して <Tab> を押すといい感じに補完してくれる
# 例: `cd path/to/<Tab>`, `ls -<Tab>`
autoload -U compinit; compinit
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
# 入力したコマンドが存在せず、かつディレクトリ名と一致するなら、ディレクトリに cd する
# 例: /usr/bin と入力すると /usr/bin ディレクトリに移動
setopt auto_cd
using System;
using System.IO;
using Xamarin.UITest;
namespace LTTimer.UITest
{
public static class Extension
{
public static void ExScreenShot(this IApp app, string Title)
{
using Moq;
using System;
using Xunit;
namespace XamarinMeetUpForStudentDemo
{
public class PrettyCureMockTest
{
public interface IDateManager
{
using Moq;
using System;
using Xunit;
namespace XamarinMeetUpForStudentDemo
{
public class PrettyCureMockTest
{
public interface IDateManager
{