Skip to content

Instantly share code, notes, and snippets.

View deanbot's full-sized avatar

Dean Verleger deanbot

View GitHub Profile
@deanbot
deanbot / aoc2020_9.dart
Last active December 9, 2020 17:31
Advent Of Code 2020 Day 9 in dart
import 'dart:math';
void main() {
final List<Object> solutions = [
SolutionA(),
SolutionB()
];
solutions.forEach((s) => print(s.toString()));
}
@deanbot
deanbot / aoc2020_10.dart
Last active December 10, 2020 22:24
Advent Of Code 2020 Day 10 in dart
import 'dart:math';
void main() {
final List<Object> solutions = [
SolutionA(),
SolutionB()
];
solutions.forEach((s) => print(s.toString()));
}
@deanbot
deanbot / aoc2020_11.dart
Last active December 12, 2020 19:18
Advent Of Code 2020 Day 11 in dart
void main() {
final List<Object> solutions = [
SolutionA(),
SolutionB()
];
solutions.forEach((s) => print(s.toString()));
}
// Full inputs at https://adventofcode.com/2020/day/11/input
const inputsDay11 = """L.LL.LL.LL
@deanbot
deanbot / aoc2020_12.dart
Last active December 12, 2020 23:56
Advent Of Code 2020 Day 12 in dart
void main() {
final List<Object> solutions = [
SolutionA(),
SolutionB()
];
solutions.forEach((s) => print(s.toString()));
}
// Full inputs at https://adventofcode.com/2020/day/12/input
const inputsDay12 = """F10

Install Android SDK CLI Ubuntu 20.04 WSL2 (Work in Progress)

Install Java 8

sudo apt install openjdk-8-jdk-headless

Android SDK

@deanbot
deanbot / pipeline.yaml
Last active September 21, 2024 00:11
manually exit in ado pipeline
- bash: exit 1