I hereby claim:
- I am RoccoDeveloping on github.
- I am roccodev (https://keybase.io/roccodev) on keybase.
- I have a public key whose fingerprint is D9D1 7BA5 1476 600B 7EDC C745 1D50 8633 6653 3D32
To claim this, I am signing this object:
| package org.themachineproject.machine.command.qui; | |
| import javafx.geometry.*; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.*; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.control.TextField; | |
| import javafx.scene.input.KeyCode; | |
| import javafx.scene.layout.*; |
| package org.themachineproject.machine.command; | |
| import org.themachineproject.machine.IdentityDataBaseFile; | |
| import org.themachineproject.machine.Permissions; | |
| import org.themachineproject.machine.Terminal; | |
| import org.themachineproject.machine.TextFragment; | |
| import org.themachineproject.machine.command.qui.QUIShell; | |
| import java.util.ArrayList; |
I hereby claim:
To claim this, I am signing this object:
| Sleepy 5: 0-100 | |
| Sleepy 4: 100-300 | |
| Sleepy 3: 300-600 | |
| Sleepy 2: 600-1000 | |
| Sleepy 1: 1000-1500 | |
| Snoozer 5: 1500-2100 | |
| Snoozer 4: 2100-2800 | |
| Snoozer 3: 2800-3600 | |
| Snoozer 2: 3600-4500 | |
| Snoozer 1: 4500-5500 |
| ### Keybase proof | |
| I hereby claim: | |
| * I am roccodev on github. | |
| * I am roccodev (https://keybase.io/roccodev) on keybase. | |
| * I have a public key ASA966r1MK3Pj_4y0USMAk1-vqseFNKL3Kb0hcL2B3DiTwo | |
| To claim this, I am signing this object: |
| List<ArrayList<Integer>> rows = new ArrayList<ArrayList<Integer>>(); | |
| for(String s : Files.readAllLines(Paths.get(new File("res/day2").getPath()))) { | |
| ArrayList<Integer> row = new ArrayList<Integer>(); | |
| for(String s1 : s.split(" ")) { | |
| row.add(Integer.parseInt(s1)); | |
| } |
| public static void main(String args[]) { | |
| int input = 1; // Insert input here | |
| int total, level = 1; | |
| total = 1; | |
| while(total < input) { |
| int ok = 0; | |
| for(String s : Files.readAllLines(Paths.get(new File("res/day4").getPath()))) { | |
| ArrayList<Integer> row = new ArrayList<Integer>(); | |
| List<String> words = new ArrayList<String>(); | |
| boolean cont = false; | |
| for(String s1 : s.split(" ")) { | |
| List<String> lines = Files.readAllLines(Paths.get(new File("res/day5").getPath())); | |
| int current = 0; | |
| int steps = 0; | |
| boolean escaped = false; | |
| public static void main(String[] args) throws IOException { | |
| List<Integer> nums = Arrays.stream(Files.readAllLines(Paths.get(new File("res/day6").getPath())).get(0) | |
| .split("\\s+")) | |
| .mapToInt(Integer::parseInt) | |
| .boxed() | |
| .collect(Collectors.toList()); | |
| Map<List<Integer>, Integer> seen = new HashMap<>(); | |