Skip to content

Instantly share code, notes, and snippets.

View ishisaka's full-sized avatar
💭
I may be slow to respond.

Tadahiro Ishisaka ishisaka

💭
I may be slow to respond.
View GitHub Profile
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Text;
using System.Reflection;
namespace RoslynComple
@ishisaka
ishisaka / Program.cs
Last active July 4, 2018 07:19
RFC 2998に基づいたパスワードによる暗号化と複合化
/*
* RFC 2998に基づいたパスワードによる暗号化と複合化
* Tadahiro Ishisaka 2018
*/
using System;
using System.Text;
using System.IO;
using System.Security.Cryptography;
namespace rfc2998test
@ishisaka
ishisaka / setting.json
Last active April 6, 2018 01:26
Visual Studio Code setting.json
// Place your settings in this file to overwrite the default settings
{
// Controls the font family.
"editor.fontFamily": "MyricaM M",
// フォント サイズをピクセル単位で制御します。
"editor.fontSize": 16,
// エディターで空白文字を表示する方法を制御します。'none'、'boundary' および 'all' が使用可能です。'boundary' オプションでは、単語間の単一スペースは表示されません。
"editor.renderWhitespace": "all",
Push-Location (Split-Path -Path $MyInvocation.MyCommand.Definition -Parent)
# Load posh-git module from current directory
Import-Module .\Modules\posh-git
# If module is installed in a default location ($env:PSModulePath),
# use this instead (see about_Modules for more information):
# Import-Module posh-git
#Set up a simple prompt, adding the git prompt parts inside git repos
{
"editor.fontFamily": "Consolas, Meiryo",
"markdown.styles": [
"file://c:/users/jptais1/md.css"
]
}
@ishisaka
ishisaka / GitDiffVs.txt
Created October 15, 2015 01:45
Visual StudioのDiff/MergeツールをGitのDiff/Mergeツールと使用するための設定
[diff]
tool = vsdiffmerge
[difftool]
prompt = true
[difftool "vsdiffmerge"]
cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\Common7\\IDE\\vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t
keepbackup = false
trustexistcode = true
[merge]
tool = vsdiffmerge
@ishisaka
ishisaka / Program.cs
Created October 14, 2015 06:08
.NET(C#)のDateTime/DateTimeOffsetとUNIX時間との相互変換
// [Program.cs]
// Copyright (C) 2015 Tadahiro Ishisaka All rights reserved.
// This software is released under the MIT License.
using System;
namespace DateTimeSample
{
class Program
@ishisaka
ishisaka / Program.cs
Last active September 11, 2015 10:55
システムのプロキシー設定を取得する
// システムのプロキシー設定を表示する
// The MIT License (MIT)
// Copyright (c) 2015 Tadahiro Ishisaka. All Rights Reserved.
using System;
using System.Net;
namespace GetProxy
{
internal class Program
@ishisaka
ishisaka / Program.cs
Created October 29, 2014 02:11
EPplusを使ったExcel Hello World
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Drawing;
using OfficeOpenXml;
using OfficeOpenXml.Style;
---------------------------
Microsoft Word 15.0
---------------------------
申し訳ございません。この機能は破損しているため修復する必要があります。Windows コントロール パネルの [プログラムと機能] オプションを使用して Microsoft Office の修復を行ってください。
---------------------------
OK
---------------------------