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.Diagnostics; | |
using System.IO; | |
namespace Brain | |
{ | |
class Program | |
{ | |
public static void Main() | |
{ | |
Console.Title = "BrainF Interpreter"; |
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; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace AOC08 | |
{ | |
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; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace AOC09 | |
{ | |
class IntcodeComputer | |
{ |
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 class Memory | |
{ | |
public Dictionary<long, long> Storage = new Dictionary<long, long>(); | |
public int Size => Storage.Count; | |
public Memory(long[] input) | |
{ | |
for (var i = 0; i < input.Length; i++) | |
{ | |
Storage.Add(i, input[i]); |
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 class ModuleInfo | |
{ | |
public string Name; | |
} | |
public abstract class TetherModule | |
{ | |
public abstract void Startup(); |
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; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Windows.Forms; | |
using Microsoft.VisualBasic; | |
using Tether; |
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; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Windows.Forms; | |
using Microsoft.VisualBasic; | |
using Tether; |
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
const Augur = require("augurbot"), | |
u = require("../utils/utils"); | |
const request = require("request-promise-native"); | |
function getFromAPI(params) { | |
var url = "https://www.edsm.net/api-v1/" + params; | |
return JSON.parse(request(url)); | |
} | |
const Module = new Augur.Module() |
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
// Message GuyInGrey if this has issues! | |
const request = require("request-promise-native"); | |
// Note: The EDSM rate limit is 360/hour. More than enough for this server's usage. | |
let apiUrl = "https://www.edsm.net/"; | |
async function getSystemInfo(systemName) { | |
return new Promise(async (fulfill, reject) => { | |
try { |
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
package com.GuyInGrey.Amity; | |
import java.util.ArrayList; | |
import java.util.Random; | |
import java.util.Stack; | |
public class MazeGenerator | |
{ | |
static Random rand; |
OlderNewer