-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
161 changed files
with
288 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"java.configuration.updateBuildConfiguration": "interactive" | ||
} | ||
"java.configuration.updateBuildConfiguration": "interactive", | ||
"telemetry.enableTelemetry": true | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
use strict; | ||
use warnings; | ||
|
||
my $num; | ||
my $lastDig; | ||
|
||
# Need my digit sets | ||
# perl doesn't support sets so have to make them manually | ||
my %odd = ( | ||
1 => 1, | ||
3 => 1, | ||
5 => 1, | ||
7 => 1, | ||
9 => 1, | ||
); | ||
|
||
if(@ARGV == 0) { | ||
print STDERR "ERROR: No input provided\n"; | ||
exit 1; | ||
} | ||
$num = $ARGV[0]; | ||
|
||
#some debug if anyone needs it in the future | ||
#print "Number " . $num . "\n"; | ||
|
||
if ($num =~ /(\d)[^\d]*$/) { | ||
$lastDig = int($1); | ||
} | ||
|
||
if(exists $odd{$lastDig}){ | ||
print "True\n"; | ||
exit 0; | ||
} | ||
print "False\n"; | ||
1; | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fn main() { | ||
std::thread::sleep(std::time::Duration::from_millis(100000)); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"rustc_fingerprint":7324001767824312892,"outputs":{"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/johnrodonnell/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.71.0-nightly (d0f204e4d 2023-04-16)\nbinary: rustc\ncommit-hash: d0f204e4d750b62f9d6c2593405e828757126832\ncommit-date: 2023-04-16\nhost: x86_64-unknown-linux-gnu\nrelease: 1.71.0-nightly\nLLVM version: 16.0.2\n","stderr":""}},"successes":{}} | ||
{"rustc_fingerprint":13423959009784225579,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.72.0 (5680fa18f 2023-08-23)\nbinary: rustc\ncommit-hash: 5680fa18feaa87f3ff04063800aec256c3d4b4be\ncommit-date: 2023-08-23\nhost: x86_64-unknown-linux-gnu\nrelease: 1.72.0\nLLVM version: 16.0.5\n","stderr":""},"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/thomas/.local/share/rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}} |
1 change: 1 addition & 0 deletions
1
...ime/target/debug/.fingerprint/build_time-05d94e818914635b/build-script-build-script-build
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
d271683553f10ba6 |
1 change: 1 addition & 0 deletions
1
...arget/debug/.fingerprint/build_time-05d94e818914635b/build-script-build-script-build.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"rustc":17954901377634971088,"features":"[]","target":427768481117760528,"profile":17385444107779271700,"path":4524081124783967569,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/build_time-05d94e818914635b/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} |
Binary file added
BIN
+21 Bytes
...target/debug/.fingerprint/build_time-05d94e818914635b/dep-build-script-build-script-build
Binary file not shown.
File renamed without changes.
1 change: 0 additions & 1 deletion
1
build_time/target/debug/.fingerprint/build_time-473188a4de5d060b/bin-build_time
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...target/debug/.fingerprint/build_time-5809178bb22b1b61/run-build-script-build-script-build
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
d9f5043ec59fb7d5 |
1 change: 1 addition & 0 deletions
1
...t/debug/.fingerprint/build_time-5809178bb22b1b61/run-build-script-build-script-build.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"rustc":17954901377634971088,"features":"","target":0,"profile":0,"path":0,"deps":[[15687193879738803693,"build_script_build",false,11964922174720471506]],"local":[{"Precalculated":"1703042715.369586597s (target/CACHEDIR.TAG)"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} |
1 change: 0 additions & 1 deletion
1
build_time/target/debug/.fingerprint/build_time-611e1cff2db97e11/test-bin-build_time
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
build_time/target/debug/.fingerprint/build_time-611e1cff2db97e11/test-bin-build_time.json
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
build_time/target/debug/.fingerprint/build_time-a94d51ae7fb98483/bin-build_time
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cf3c623d0b08d242 |
1 change: 1 addition & 0 deletions
1
build_time/target/debug/.fingerprint/build_time-a94d51ae7fb98483/bin-build_time.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"rustc":17954901377634971088,"features":"[]","target":16291746725044359259,"profile":11039742474438789458,"path":1684066648322511884,"deps":[[15687193879738803693,"build_script_build",false,15399953120314586585]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/build_time-a94d51ae7fb98483/dep-bin-build_time"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.