Skip to content

Instantly share code, notes, and snippets.

View fliedonion's full-sized avatar

Takahiro KITAHARA fliedonion

View GitHub Profile
@fliedonion
fliedonion / RxAndThenWhenFizzBuzz.cs
Last active April 7, 2017 02:54
Reactive Extensions And/Then/When FizzBuzz
using System;
using System.Linq;
using System.Reactive.Linq;
namespace RxAndThenWhenFizzBuzz {
class Program {
static void Main(string[] args) {
var numberObserver = Observable.Range(1, 30);
var fizzObserver = numberObserver.Select(i => i % 3 == 0 ? "Fizz" : "");
var buzzObserver = numberObserver.Select(i => i % 5 == 0 ? "Buzz" : "");
@fliedonion
fliedonion / RxZipFizzBuzz.cs
Created April 6, 2017 17:33
Reactive Extensions Zip FizzBuzz
using System;
using System.Linq;
using System.Reactive.Linq;
namespace RxZipFizzBuzz
{
class Program
{
static void Main(string[] args)
{
@fliedonion
fliedonion / CheckJavaVersion.cs
Last active July 7, 2017 14:24
Get Java version of specified directory.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text.RegularExpressions;
namespace CheckJavaVersion {
class Program {
static void Main(string[] args) {
@fliedonion
fliedonion / SampleForm1.cs
Last active September 4, 2017 23:48
TextRender-Wrap-sample
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
@fliedonion
fliedonion / IconLoader.cs
Last active September 19, 2017 23:51
Load Icon Data From File. Sideline of my other program using UpdateResource.
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
// https://stackoverflow.com/a/36795367
// http://schima.hatenablog.com/entry/20090512/1242139542
// https://blogs.msdn.microsoft.com/oldnewthing/20120720-00/?p=7083
namespace IconLoadToStruct {
@fliedonion
fliedonion / result_sample.elm
Last active November 7, 2017 04:22
hello-elm
import Html exposing (text, h1)
{-
type alias EmailAddress = String
type alias Message =
{ recipient : EmailAddress
, body : String
}
@fliedonion
fliedonion / TaskCompletionSourceBasic.cs
Created September 20, 2016 23:41
TaskCompletionSource example.
class Program {
static Task<byte[]> FromWebClient(WebClient wc, Uri address) {
var tcs = new TaskCompletionSource<byte[]>();
wc.DownloadDataCompleted += (object sender, DownloadDataCompletedEventArgs e) => {
if (e.Cancelled)
tcs.SetCanceled();
else if (e.Error != null)
tcs.SetException(e.Error);
@fliedonion
fliedonion / convert.md
Created October 4, 2018 12:29
Regex for Convert C# Field to Property with INotifyPropertyChanged

Find pattern is like this:
public (.+) (?!PropertyChanged)(.+);

Replace is:

public $1 $2 {
    get { return \l$2; }
    set {
        if(\l$2 != value) {
 \l$2 = value;
@fliedonion
fliedonion / SomeFormBase.cs
Created October 7, 2018 13:24
WnForms Control Enable to ignore many clicks during controls were disabling.
namespace net.case_of_t.WinForms {
public class SomeFormBase : Form{
protected static readonly int DefaultWaitMsForTurnEnable = 1000;
protected void ControlsEnableAfter(Control target) {
ControlsEnableAfter(DefaultWaitMsForTurnEnable, target);
}
protected void ControlsEnableAfter(IEnumerable<Control> targets) {
@fliedonion
fliedonion / karabiner.pc-jis-sample.json
Last active April 28, 2019 16:58
karabiner-elements: JIS PCキーボードでVMware fusion除外デバイス指定も絡めたwin-alt置換、caps-rCtrl化、無変換変換かな-英数かな化サンプル
{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"parameters": {