I hereby claim:
- I am simpleauthority on github.
- I am vspctr (https://keybase.io/vspctr) on keybase.
- I have a public key whose fingerprint is BE39 8E85 8C43 FC84 E34C 5B02 D567 7A29 21F8 E4BA
To claim this, I am signing this object:
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: GenuineIntel | |
| CPU Brand: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz | |
| CPU Family: 0x6 |
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: GenuineIntel | |
| CPU Brand: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz | |
| CPU Family: 0x6 |
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: GenuineIntel | |
| CPU Brand: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz | |
| CPU Family: 0x6 |
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: GenuineIntel | |
| CPU Brand: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz | |
| CPU Family: 0x6 |
| import com.mashape.unirest.http.HttpResponse; | |
| import com.mashape.unirest.http.JsonNode; | |
| import com.mashape.unirest.http.Unirest; | |
| import com.mashape.unirest.http.async.Callback; | |
| import com.mashape.unirest.http.exceptions.UnirestException; | |
| import java.io.File; | |
| import java.util.UUID; | |
| import java.util.concurrent.Future; |
| fun main() { | |
| // Type what you know here, and replace unknowns with the star symbol (*). The more star symbols you have | |
| // the more permutations you will have. This increases exponentially. | |
| val givenFormat = "myemailwithm**singcha*s@gmail.com" | |
| // DO NOT CHANGE ANYTHING BEYOND THIS LINE | |
| val generator = PermutationGenerator(givenFormat) | |
| generator.generate() | |
| } |
I hereby claim:
To claim this, I am signing this object:
| package me.minidigger.test.test; | |
| /* | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| #!/bin/sh | |
| CDIR=$(pwd) | |
| rm -rf /tmp/paper | |
| mkdir /tmp/paper | |
| cd /tmp/paper | |
| echo "Determing latest MC version from Paper..." | |
| curl -s "https://papermc.io/api/v1/paper" | grep '"versions"' | awk -F '"' '{ print $8 }' > ./latest-paper | |
| echo "Latest version is $(cat ./latest-paper)!" |
| MergeSort(arr, low, high): | |
| arr = array of unsorted integers | |
| low = integer, initially 0 | |
| high = integer, initially size(arr) - 1 | |
| if low >= high then return | |
| mid = floor((low + high) / 2) | |
| MergeSort(arr, low, mid) |