diff --git a/code/Cargo.lock b/code/Cargo.lock new file mode 100644 index 0000000..0630a0e --- /dev/null +++ b/code/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "code" +version = "0.1.0" diff --git a/code/Cargo.toml b/code/Cargo.toml new file mode 100644 index 0000000..8edb061 --- /dev/null +++ b/code/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "code" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/code/src/main.rs b/code/src/main.rs new file mode 100644 index 0000000..938a2b2 --- /dev/null +++ b/code/src/main.rs @@ -0,0 +1,16 @@ +use std::io::stdin; +use std::fs; + +fn main() { + // Input to skills + let mut input_string = String::new(); + stdin().read_line(&mut input_string).ok().expect("Error while reading input."); + println!("{:?}", input_string); + + // Read Skills - format? + let content = fs::read_to_string("../../skills.txt").expect("Error while reading file."); + println!("All skills:\n{}", content) + + // List skill levels + // ... +} diff --git a/code/target/.rustc_info.json b/code/target/.rustc_info.json new file mode 100644 index 0000000..72b2911 --- /dev/null +++ b/code/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":16714771619765513548,"outputs":{"15537503139010883884":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n","stderr":""},"17598535894874457435":{"success":true,"status":"","code":0,"stdout":"rustc 1.57.0 (f1edd0429 2021-11-29)\nbinary: rustc\ncommit-hash: f1edd0429582dd29cccacaf50fd134b05593bd9c\ncommit-date: 2021-11-29\nhost: x86_64-unknown-linux-gnu\nrelease: 1.57.0\nLLVM version: 13.0.0\n","stderr":""},"931469667778813386":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/six/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\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_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"2797684049618456168":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"}},"successes":{}} \ No newline at end of file diff --git a/code/target/CACHEDIR.TAG b/code/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/code/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/code/target/debug/.cargo-lock b/code/target/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/bin-code b/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/bin-code new file mode 100644 index 0000000..019543f --- /dev/null +++ b/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/bin-code @@ -0,0 +1 @@ +2136a22337b65c36 \ No newline at end of file diff --git a/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/bin-code.json b/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/bin-code.json new file mode 100644 index 0000000..75a8411 --- /dev/null +++ b/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/bin-code.json @@ -0,0 +1 @@ +{"rustc":7409016768189200941,"features":"[]","target":15690610733060188954,"profile":9251013656241001069,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/code-2f16a75f6f4e9b63/dep-bin-code"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/dep-bin-code b/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/dep-bin-code new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/dep-bin-code differ diff --git a/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/invoked.timestamp b/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/code/target/debug/.fingerprint/code-2f16a75f6f4e9b63/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/code/target/debug/code b/code/target/debug/code new file mode 100755 index 0000000..80e54d3 Binary files /dev/null and b/code/target/debug/code differ diff --git a/code/target/debug/code.d b/code/target/debug/code.d new file mode 100644 index 0000000..c7fbc25 --- /dev/null +++ b/code/target/debug/code.d @@ -0,0 +1 @@ +/home/six/c/IRLrpg/code/target/debug/code: /home/six/c/IRLrpg/code/src/main.rs diff --git a/code/target/debug/deps/code-2f16a75f6f4e9b63 b/code/target/debug/deps/code-2f16a75f6f4e9b63 new file mode 100755 index 0000000..80e54d3 Binary files /dev/null and b/code/target/debug/deps/code-2f16a75f6f4e9b63 differ diff --git a/code/target/debug/deps/code-2f16a75f6f4e9b63.d b/code/target/debug/deps/code-2f16a75f6f4e9b63.d new file mode 100644 index 0000000..3964b06 --- /dev/null +++ b/code/target/debug/deps/code-2f16a75f6f4e9b63.d @@ -0,0 +1,5 @@ +/home/six/c/IRLrpg/code/target/debug/deps/code-2f16a75f6f4e9b63: src/main.rs + +/home/six/c/IRLrpg/code/target/debug/deps/code-2f16a75f6f4e9b63.d: src/main.rs + +src/main.rs: diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/10o86p9ski54m92p.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/10o86p9ski54m92p.o new file mode 100644 index 0000000..2c7b9e8 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/10o86p9ski54m92p.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/11k0d2lq57waplj5.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/11k0d2lq57waplj5.o new file mode 100644 index 0000000..fbd472a Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/11k0d2lq57waplj5.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/16kynwk8qu06yl7u.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/16kynwk8qu06yl7u.o new file mode 100644 index 0000000..112902a Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/16kynwk8qu06yl7u.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/193gp3wi860n41ea.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/193gp3wi860n41ea.o new file mode 100644 index 0000000..3737adb Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/193gp3wi860n41ea.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1bpyjjpuuqvw2md3.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1bpyjjpuuqvw2md3.o new file mode 100644 index 0000000..8411427 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1bpyjjpuuqvw2md3.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1ek027wj0ihz40cz.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1ek027wj0ihz40cz.o new file mode 100644 index 0000000..e06b3ff Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1ek027wj0ihz40cz.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1fhnbnexd6mxhrsb.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1fhnbnexd6mxhrsb.o new file mode 100644 index 0000000..51b26a3 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1fhnbnexd6mxhrsb.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1jjwihm9berpqrzm.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1jjwihm9berpqrzm.o new file mode 100644 index 0000000..6bac871 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1jjwihm9berpqrzm.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1l4al2lu0b28d8qw.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1l4al2lu0b28d8qw.o new file mode 100644 index 0000000..20cba2e Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/1l4al2lu0b28d8qw.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/23zgx2bcnrs8zzf3.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/23zgx2bcnrs8zzf3.o new file mode 100644 index 0000000..df24226 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/23zgx2bcnrs8zzf3.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/24cnh5me4y39ca6g.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/24cnh5me4y39ca6g.o new file mode 100644 index 0000000..b8a592d Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/24cnh5me4y39ca6g.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2adq4y8ykmvf7l59.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2adq4y8ykmvf7l59.o new file mode 100644 index 0000000..8bd2eee Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2adq4y8ykmvf7l59.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2bgqogvfmy4r3jy3.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2bgqogvfmy4r3jy3.o new file mode 100644 index 0000000..6c79470 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2bgqogvfmy4r3jy3.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2gj80knx3cgf0w64.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2gj80knx3cgf0w64.o new file mode 100644 index 0000000..5fafb90 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2gj80knx3cgf0w64.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2gqj7sj5tdpodyhh.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2gqj7sj5tdpodyhh.o new file mode 100644 index 0000000..cdc5bb9 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2gqj7sj5tdpodyhh.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2keprlf3fmbi981o.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2keprlf3fmbi981o.o new file mode 100644 index 0000000..c28a9be Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2keprlf3fmbi981o.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2thz5ioz87x1gtaz.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2thz5ioz87x1gtaz.o new file mode 100644 index 0000000..ea7fc0f Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2thz5ioz87x1gtaz.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2tyhlc4ts6jmgqxy.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2tyhlc4ts6jmgqxy.o new file mode 100644 index 0000000..4395027 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2tyhlc4ts6jmgqxy.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2zhmp7t973ag71r.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2zhmp7t973ag71r.o new file mode 100644 index 0000000..c48616c Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/2zhmp7t973ag71r.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/30g1h2h5saw6l0fw.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/30g1h2h5saw6l0fw.o new file mode 100644 index 0000000..5f049e3 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/30g1h2h5saw6l0fw.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/3fgclbuwohai47ga.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/3fgclbuwohai47ga.o new file mode 100644 index 0000000..a2c1037 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/3fgclbuwohai47ga.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/3ia7gwix54ecaa14.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/3ia7gwix54ecaa14.o new file mode 100644 index 0000000..0927825 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/3ia7gwix54ecaa14.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/40wch1e0wbcs8d6j.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/40wch1e0wbcs8d6j.o new file mode 100644 index 0000000..b5d531b Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/40wch1e0wbcs8d6j.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/4gltxbh6e1egt9ca.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/4gltxbh6e1egt9ca.o new file mode 100644 index 0000000..a7c775d Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/4gltxbh6e1egt9ca.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/4iei7az88if62iwr.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/4iei7az88if62iwr.o new file mode 100644 index 0000000..f60dc6f Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/4iei7az88if62iwr.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/50wu8q3jfcj8cacz.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/50wu8q3jfcj8cacz.o new file mode 100644 index 0000000..887a1c6 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/50wu8q3jfcj8cacz.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/5ekfddc7fsnj6iyn.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/5ekfddc7fsnj6iyn.o new file mode 100644 index 0000000..471eb2b Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/5ekfddc7fsnj6iyn.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/7h7btlka0dxureq.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/7h7btlka0dxureq.o new file mode 100644 index 0000000..7009c09 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/7h7btlka0dxureq.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/dep-graph.bin b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/dep-graph.bin new file mode 100644 index 0000000..3e6aefb Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/dep-graph.bin differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/i00l3gjwjlu3pls.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/i00l3gjwjlu3pls.o new file mode 100644 index 0000000..f67e100 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/i00l3gjwjlu3pls.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/nvw4p769v4uet0k.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/nvw4p769v4uet0k.o new file mode 100644 index 0000000..cd1fe6f Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/nvw4p769v4uet0k.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/p1hfvq2nv0c66f6.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/p1hfvq2nv0c66f6.o new file mode 100644 index 0000000..71cd60a Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/p1hfvq2nv0c66f6.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/qlgjuazepzv181g.o b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/qlgjuazepzv181g.o new file mode 100644 index 0000000..86303df Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/qlgjuazepzv181g.o differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/query-cache.bin b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/query-cache.bin new file mode 100644 index 0000000..cd01738 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/query-cache.bin differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/work-products.bin b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/work-products.bin new file mode 100644 index 0000000..37f60a1 Binary files /dev/null and b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn-2i3xllcyzrtah/work-products.bin differ diff --git a/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn.lock b/code/target/debug/incremental/code-1sht12kytr7b9/s-g5sbztsqf0-1bx3zqn.lock new file mode 100755 index 0000000..e69de29 diff --git a/skills.txt b/skills.txt new file mode 100644 index 0000000..5c48f46 --- /dev/null +++ b/skills.txt @@ -0,0 +1,17 @@ +Make bed +Brush teeth +Shower +Tasks review today +Code for 1 hour +Watch useful documentary +Contact relative(s) +Reading 20 pages from a book +Practice a language for 15 mins +Meditation +Running +Martial arts training +Self-defense training +Gym training +Getting into bed in time +Partial House cleanup +Full House cleanup