Sigma88 changed the topic of #Kopernicus to: #Kopernicus | Release 1.3.0-8 - https://git.io/v0Gg5 | Pictures: https://git.io/vHqLy | List of packs: http://git.io/vWjiY | GitHub: http://git.io/vWAFE | Examples: http://git.io/vWAF9 | Visual Editor: http://git.io/vWAbq | Funny Quotes: https://git.io/vHqt8 | <Kopernicus> Kopernicus/master 91e89a4 thomas-jenkins: Kopernicus 1.2.2-6 - "404 - Title not found"
<Sigma88> !c ("Scientist".GetHashCode() % 127).ToString("X")
<Qboid> FFFFFFAC
<Sigma88> !c 127.ToString("X")
<Qboid> 7F
<Sigma88> !c ("Scientist".GetHashCode() % 127)
<Qboid> -84
<Sigma88> !c Math.Abs("Scientist".GetHashCode() % 127).ToString("X")
<Qboid> 54
<Sigma88> !c Math.Abs("Scientist".GetHashCode())
<Qboid> 41800864
<Sigma88> !c Math.Abs("41800864".GetHashCode())
<Qboid> 1152699561
<Sigma88> !c Math.Abs("1152699561".GetHashCode())
<Qboid> 1958088161
<Sigma88> 41800864%127
<Sigma88> !c 41800864%127
<Qboid> 84
xShadowx has joined #Kopernicus
NathanKell|AFK is now known as NathanKell
NathanKell is now known as NathanKell|AFK
<Sigma88> !c "test".IndexOf("x")
<Qboid> -1
<Sigma88> !c "".GetHashCode()
<Qboid> 371857150
<Sigma88> !c ''.GetHashCode()
<Qboid> (1,1): error CS1011: Empty character literal
<Qboid> (1,1): error CS1011: Empty character literal
<Qboid> (1,1): error CS1011: Empty character literal
<Sigma88> !c 'x'.GetHashCode()
<Qboid> 7864440
<Sigma88> cool
<Sigma88> !c "&ColorHiPilot;".GetHashCode()
<Qboid> -1799922817
<Sigma88> !c 1799922817 % 128 + 128
<Qboid> 129
<Sigma88> !c (1799922817 % 128 + 128).ToString("X")
<Qboid> 81
<Sigma88> !c "1799922817".GetHashCode()
<Qboid> -1043140539
<Sigma88> !c (1043140539 % 128 + 128).ToString("X")
<Qboid> BB
<Sigma88> !c "1043140539".GetHashCode()
<Qboid> -1325124952
<Sigma88> !c (1325124952 % 128 + 128).ToString("X")
<Qboid> D8
<Sigma88> !c "" + (char)int.Parse("D83DDC71".Substring(0, 4), NumberStyles.HexNumber) + (char)int.Parse("D83DDC71".Substring(4, 4), NumberStyles.HexNumber)
<Qboid> (1,51): error CS0103: The name `NumberStyles' does not exist in the current context
<Sigma88> !c "" + (char)int.Parse("D83DDC71".Substring(0, 4), System.Globalization.NumberStyles.HexNumber) + (char)int.Parse("D83DDC71".Substring(4, 4), System.Globalization.NumberStyles.HexNumber)
<Qboid> ?
<Sigma88> lol
<Sigma88> !u ?
<Qboid> U+1F471 PERSON WITH BLOND HAIR (?)
<Sigma88> !c "" + (char)int.Parse("d83cdf83".Substring(0, 4), System.Globalization.NumberStyles.HexNumber) + (char)int.Parse("d83cdf83".Substring(4, 4), System.Globalization.NumberStyles.HexNumber)
<Qboid> ?
<Sigma88> I wonder if that works with KSP
<xShadowx> !c Convert.ToInt32("FF")
<Qboid> yles style, System.Globalization.NumberFormatInfo info) [0x00015] in <77c9551943624fd18301ba6f78a841e5>:0 at System.Int32.Parse (System.String s, System.IFormatProvider provider) [0x00008] in <77c9551943624fd18301ba6f78a841e5>:0 at System.Convert.ToInt32 (System.String value) [0x0000b] in <77c9551943624fd18301ba6f78a841e5>:0 at <InteractiveExpressionClass>.Host (System.Object& $retval) [0
<Qboid> System.FormatException: Input string was not in a correct format. at System.Number.StringToNumber (System.String str, System.Globalization.NumberStyles options, System.Number+NumberBuffer& number, System.Globalization.NumberFormatInfo info, System.Boolean parseDecimal) [0x00057] in <77c9551943624fd18301ba6f78a841e5>:0 at System.Number.ParseInt32 (System.String s, System.Globalization.NumberSt
<Qboid> x00000] in <7d1347a8ff4a41e794dd172f05472a0a>:0 at Mono.CSharp.Evaluator.Evaluate (System.String input, System.Object& result, System.Boolean& result_set) [0x0003e] in <a81adb37139f4f2ea6ce1da80d3be432>:0 at QIRC.CSharp.CSharp.Evaluate (ChatSharp.IrcClient client, System.String input, System.String user, System.String source, System.Boolean admin, System.Boolean quite) [0x00103] in <66358288
<xShadowx> !c Convert.ToInt32("FF", 16)
<Qboid> 255
<xShadowx> Sigma88: ^ shorter way to parse hex to int
egg|zzz|egg is now known as egg|nomz|egg
<Sigma88> !c "" + (char)(Convert.ToInt32"d83c",16)+(char)(Convert.ToInt32"df83",16)
<Qboid> (1,30): error CS1525: Unexpected symbol `d83c'
<Sigma88> !c "" + (char)(Convert.ToInt32("d83c",16))+(char)(Convert.ToInt32("df83",16))
<Qboid> ?
<Sigma88> thanks xShadowx
<xShadowx> !c Convert.ToInt32(0xFF)
<Qboid> 255
<UmbralRaptor> !u ??
<Qboid> U+1F383 JACK-O-LANTERN (?)
<Qboid> U+1F47B GHOST (?)
<xShadowx> !c "" + Convert.ToChar(0xD83D) + Convert.ToChar(0xDC71)
<Qboid> ?
<xShadowx> Sigma88: ^ even better ;p
<xShadowx> didnt think itd read 0x flag but guess so
* xShadowx sends a vampire to bite UmbralRaptor
<xShadowx> VampireRaptor :D
<UmbralRaptor> !u ⚰⚱☠
<Qboid> U+26B0 COFFIN (⚰)
<Qboid> U+26B1 FUNERAL URN (⚱)
<Qboid> U+2620 SKULL AND CROSSBONES (☠)
<UmbralRaptor> xShadowx: So, grad school?
<xShadowx> o.O?
<UmbralRaptor> Something about being pale and possibly gaunt from the work and monetary environment.
<Sigma88> !c "&ColorHi".Substring(7)
<Qboid> i
<Sigma88> !c "&ColorHi".Substring(6,2)
<Qboid> Hi
egg|nomz|egg is now known as egg
egg is now known as egg|zzz|egg
<Sigma88> !c XKCDColors.HexFormat.BrightOrange
<Qboid> (1,2): error CS0103: The name `XKCDColors' does not exist in the current context