Skip to content

Instantly share code, notes, and snippets.

View yoichiro-manabe's full-sized avatar
🌿
ケムリクサいいですね

Yoichiro Manabe yoichiro-manabe

🌿
ケムリクサいいですね
  • beaglesoft LLC
  • Japan
View GitHub Profile
@yoichiro-manabe
yoichiro-manabe / Program.cs
Created December 27, 2018 02:56
KuromojiSample
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using Lucene.Net.Analysis;
using Lucene.Net.Analysis.Ja;
using Lucene.Net.Analysis.Ja.Dict;
using Lucene.Net.Analysis.Ja.TokenAttributes;
using Lucene.Net.Analysis.TokenAttributes;
# Custom segmentation for long entries
日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞
関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,テスト名詞
# Custom reading for sumo wrestler
朝青龍,朝青龍,アサショウリュウ,カスタム人名
# Silly entry:
abcd,a b cd,foo1 foo2 foo3,bar
abcdefg,ab cd efg,foo1 foo2 foo4,bar
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>leafletサンプル</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.4.0/dist/leaflet.css" >
<script src="https://unpkg.com/leaflet@1.4.0/dist/leaflet.js"></script>
</head>
<body>
<div id="mapid" style="height: 400px; width: 600px;"></div>
@yoichiro-manabe
yoichiro-manabe / DnsLookup.cs
Created April 27, 2019 05:12
DnsClient.NETを利用したDNSへの問い合わせ
/// <summary>
/// DNSへの問い合わせクラス
/// </summary>
public class DnsLookup
{
/// <summary>
/// DNSへ問い合わせを行いSRVレコードとAレコードからサービスのホストを取得します。
/// </summary>
/// <param name="lookupName">問い合わせを行うSRVレコードに対応したNamespace</param>
/// <returns><see cref="ServiceHost"/></returns>