I hereby claim:
- I am sorashi on github.
- I am sorashi (https://keybase.io/sorashi) on keybase.
- I have a public key ASBwT6rSA3IN9ucBeb8lFArMNi-s_EyVCmw3_U013Ulv9wo
To claim this, I am signing this object:
using System; | |
using System.Text.RegularExpressions; | |
public class Fraction | |
{ | |
private int denominator = 1; | |
private int nominator = 0; | |
public Fraction() { | |
} |
I hereby claim:
To claim this, I am signing this object:
The geographical name Czechia was officially announced when the state started to exist on its own in 1993. The reason why it is not known is because the Czech state and its institutions have not used it. A short country name that is not used by the state itself and by its institutions cannot become well known and recognized abroad.
Czechia is listed in UNTERM.
Some examples to make the difference between a political and a geographical name clear
^:(?<user>[a-zA-Z0-9_]{4,25})!\1@\1\.tmi\.twitch\.tv PRIVMSG #(?<channel>[a-zA-Z0-9_]{4,25}) :(?<message>.+)$ |
Katakana Codes | |
ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶヷヸヹヺ・ | |
Basic Katakana | |
アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲン | |
Punctuation and Symbols | |
゛゜ーヽヾ | |
Phonetic Extensions for Ainu |
import time | |
now=time.time() | |
c=1000 | |
while c>0: | |
print c | |
c-=7 | |
print "Hello, Tokyo! It took me "+str(round((time.time()-now)*1000,3))+"ms to count down from 1000, decreasing by 7." |
private static object GetUserDecision(string question, Type typeToReturn, Func<object, bool> validator) | |
{ | |
string answer; | |
if (typeToReturn == typeof(bool)) | |
{ | |
do | |
{ | |
Write(question + " (y/n) "); | |
answer = Console.ReadLine(); | |
answer = answer.ToLower().Trim(); |