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
<prototype name="microcorruption" extrapop="2" stackshift="2"> | |
<input> | |
<pentry maxsize="2" minsize="1"> | |
<register name="R15"/> | |
</pentry> | |
<pentry maxsize="2" minsize="1"> | |
<register name="R14"/> | |
</pentry> | |
<pentry maxsize="2" minsize="1"> | |
<register name="R13"/> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<compiler_spec> | |
<global> | |
<range space="RAM"/> | |
</global> | |
<stackpointer register="SP" space="RAM"/> | |
<default_proto> | |
<prototype name="__stdcall" extrapop="2" stackshift="2"> | |
<input> | |
<pentry maxsize="2" minsize="1"> |
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
{ | |
"Environments": [ | |
{ | |
"Name": "MyEnvironment", | |
"Connection": { | |
"Provider": "Bootstrap", | |
"TNS": "DBNAME", | |
"TNS_ADMIN": "C:\\app\\oracle\\product\\12.2.0\\client_1\\network\\admin", | |
"Schema": "SYSADM", | |
"BootstrapParameters": { |
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
11,(temp) -> Set Grill Temp | |
11,-01 / 19 -> Cancel Grill Temp | |
12,(seconds formatted as 5 numbers) -> Set Timer | |
12,07920 -> Set Timer for 2 hours and 12 minutes | |
13 -> Cancel Timer | |
14,(temp) -> Set Probe Temp | |
15 -> Cancel Probe Temp |
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.Drawing; | |
using System.Text; | |
namespace AdventOfCode.Utilities | |
{ | |
class ElfImage | |
{ | |
public List<int[,]> Layers = new List<int[,]>(); |
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 AdventOfCode.Utilities; | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
namespace AdventOfCode.Solutions.Year2019 { |
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
################################################################################# | |
#.#.....#.........#...S.#...............#...............#.......#.....#.........# | |
#.#.#.###.#.#####.#.###.#.###########.#.#.###.###########.###.#E#.###.#.#.####### | |
#...#.....#.#...#.#.#.#.#.#.........#.#.#...#.#...#.....#...#.#.#...#...#.#.....# | |
#.#########.#.#.###.#.#.###.#######I###.#.#.#.#.#.#.###.###.#.#.#.#.#####.#.###.# | |
#.#.......#...#...#s#.#.#...#.#.....#...#.#.#.#.#.#.#.#...#.#.#.#.#...#.U.#...#.# | |
#.#R#####.#######.#.#.#.#.###.#.#####.#.#.#.###.#.#.#B#.#.#.#.#.#####.#.#####.#.# | |
#.#.#...#.#.....#...#.#..i....#n#.....#.#.#.....#.....#.#.#.#.#.......#.#.....#.# | |
#.#.###.#.#.#.#.#####.#######.#.#.#.###.#.#############.###.#.###.#####.#.#####.# | |
#.#..l..#.#.#.#.#.......#...#.#.#.#.#.#.#...#.....#.#...#...#.#...#...#.#.....#w# |
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
s<->i = 16 | |
s<->n = 38 | |
s<->l = 114 | |
s<->w = 740 | |
s<->c = 608 | |
s<->r = 776 | |
s<->g = 50 | |
s<->o = 58 | |
s<->v = 158 | |
s<->j = 74 |
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
s<->i = S, | |
s<->n = I, S, | |
s<->l = R, W, | |
s<->w = F, K, P, V, W, | |
s<->c = K, P, W, | |
s<->r = F, G, K, P, V, W, | |
s<->o = I, N, S, | |
s<->v = K, P, W, | |
s<->j = I, N, O, S, | |
s<->q = D, H, K, P, W, |
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 AdventOfCode.Utilities; | |
using System; | |
using System.Linq; | |
using System.Numerics; | |
namespace AdventOfCode.Solutions.Year2019 { | |
class Day22 : ASolution { | |
public Day22() : base(22, 2019, "") { |
OlderNewer