This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.Linq; | |
using Microsoft.Diagnostics.Runtime; | |
namespace HeapSlave | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[15:01:19] [Server thread/ERROR] [FML/]: Caught exception from HardcoreQuesting | |
java.lang.NoClassDefFoundError: org/lwjgl/input/Keyboard | |
at hardcorequesting.client.KeyboardHandler.toConfig(KeyboardHandler.java:73) ~[KeyboardHandler.class:?] | |
at hardcorequesting.client.KeyboardHandler.getDefault(KeyboardHandler.java:94) ~[KeyboardHandler.class:?] | |
at hardcorequesting.config.ConfigHandler.<clinit>(ConfigHandler.java:41) ~[ConfigHandler.class:?] | |
at hardcorequesting.HardcoreQuesting.preInit(HardcoreQuesting.java:48) ~[HardcoreQuesting.class:?] | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_66] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_66] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_66] | |
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_66] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
++++++++++>++[-<++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.+++++++++++++++++++++++++.+++++++++++++++..+++++++++.[-]++++++++++++++++++++++++++++++++.++++++++++++++++++++++++++++++++++.+++++++++++++++++++++++++++++++++++++++.+++++++++.++.------------.----.---.++++++++++++++++++++++++.[-]++++++++++++++++++++++++++++++++.++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.-----.[-]++++++++++++++++++++++++++++++++.+++++++++++++++++++++++++++++++++++++++++++++++++++++++++.++++++++++++++++++++++.++++++.[-]++++++++++.>]<++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.+++++++++++++++++++++++++.+++++++++++++++..+++++++++.[-]++++++++++++++++++++++++++++++++.++++++++++++++++++++++++++++++++++.+++++++++++++++++++++++++++++++++++++++.+++++++++.++.------------.----.---.++++++++++++++++++++++++.[-]++++++++++++++++++++++++++++++++.++++++++++++++++++++++++++++++++++++.+++++++++++++++++++++++++++++++++.----.+++++++++++++++++.[-]++++++++++++++++++++++++++++++++. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Globalization; | |
using System.Threading; | |
namespace ConsoleApplication1 | |
{ | |
internal static class Program | |
{ | |
private static void Main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Globalization; | |
using System.Threading; | |
namespace ConsoleApplication1 | |
{ | |
internal static class Program | |
{ | |
private static void Main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
using System.Threading.Tasks; | |
using SimpleExpressionEvaluator; | |
namespace ConsoleApplication1 | |
{ | |
internal static class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
namespace UrbanScience | |
{ | |
public struct Int32Set | |
{ | |
private readonly int[] buckets; | |
private readonly Slot[] slots; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace ConsoleApplication | |
{ | |
internal static class Program | |
{ | |
private static void Main() | |
{ | |
string nullString = null; | |
Console.WriteLine(nullString + "hello hello hello"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public sealed class ArrayWrapper<T> : IReadOnlyDictionary<int, T> | |
{ | |
private readonly T[] arr; | |
public ArrayWrapper(T[] arr) | |
{ | |
if (arr == null) | |
{ | |
throw new ArgumentNullException("arr"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using GeoAPI.Geometries; | |
using NetTopologySuite.Geometries.Utilities; | |
namespace NetTopologySuite.Algorithm.Locate | |
{ | |
public class OptimizedIndexedPointInAreaLocator : IPointOnGeometryLocator |