- 電気ケトル
- 電子レンジ
- 浄水ポット
- 布団乾燥機
- 加湿器
- 洗面所別じゃない物件ならこれ
- 無線LANルーター(ISPから貸与されない場合。Atermがおすすめ。)
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
| /// <summary> | |
| /// Extensions for Moq.Mock | |
| /// </summary> | |
| public static class MockExtension | |
| { | |
| /// <summary> | |
| /// Method name of HttpMessageHandler.SendAsync | |
| /// </summary> | |
| private const string NameOfSendAsync = "SendAsync"; |
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
| syntax enable | |
| set number | |
| set cursorline | |
| set laststatus=2 | |
| set enc=utf-8 | |
| set fenc=utf-8 | |
| set autoindent |
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 re | |
| import random | |
| def main(): | |
| result = '' | |
| while re.search(r'(ズン){4}ドコ$',result) is None: | |
| result += random.choice(['ズン','ドコ']) | |
| result += 'キ・ヨ・シ!!' | |
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 -*- | |
| import json | |
| import tweepy | |
| from datetime import datetime | |
| def main(): | |
| #Twitter認証 | |
| consumer_key = '' | |
| consumer_secret = '' | |
| access_token_key = '' |
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
| #!/bin/sh | |
| ./configure \ | |
| --enable-fail-if-missing \ | |
| --enable-luainterp \ | |
| --with-luajit \ | |
| --with-lua-prefix=/path/to/lua \ | |
| --enable-multibyte \ | |
| --enable-python3interp \ | |
| --with-python3-config-dir=/path/to/python/config/dir \ |
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.Windows.Data; | |
| namespace WpfStyle | |
| { | |
| class LessThanConverter : IValueConverter | |
| { | |
| public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) | |
| { | |
| var val = System.Convert.ToDouble(value); |
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
| "--------------------- | |
| "Neobundle Settings | |
| "--------------------- | |
| if !1 | finish | endif | |
| if has('vim_starting') | |
| if &compatible | |
| set nocompatible | |
| endif | |
| set runtimepath+=~/.vim/bundle/neobundle.vim |
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
| <?php | |
| /* | |
| Plugin Name: SimpleOGP | |
| Description: OGP設定出力するだけの簡単なお仕事。 | |
| Author: edy | |
| Version: 1.0 | |
| */ | |
| class Open_Graph{ | |
| const TAGS = "<meta property=\"og:type\" content=\"%s\">\n |