aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Wade <stephen@stephenwade.me>2022-08-09 09:02:44 -0400
committerGitHub <noreply@github.com>2022-08-09 09:02:44 -0400
commit201fbc616444336ce7ba657abe559f14dd9516f6 (patch)
treea2ac9153dbffdde94d47c4219b28cb1205fabc82
parentead119e3bb3d436dccc3db604e931f083746cb5f (diff)
downloadxesite-201fbc616444336ce7ba657abe559f14dd9516f6.tar.xz
xesite-201fbc616444336ce7ba657abe559f14dd9516f6.zip
code/christine.website (#521)
-rw-r--r--blog/fun-with-redirection-2021-09-22.markdown2
-rw-r--r--blog/rust-crates-go-stdlib-2020-09-27.markdown10
2 files changed, 6 insertions, 6 deletions
diff --git a/blog/fun-with-redirection-2021-09-22.markdown b/blog/fun-with-redirection-2021-09-22.markdown
index e846af3..c8c8c52 100644
--- a/blog/fun-with-redirection-2021-09-22.markdown
+++ b/blog/fun-with-redirection-2021-09-22.markdown
@@ -337,7 +337,7 @@ example you can take a folder, zip it up and then unzip it over on another
machine using a command like this:
```
-$ tar cz ./blog | ssh pneuma tar xz -C ~/code/xeiaso.net/blog
+$ tar cz ./blog | ssh pneuma tar xz -C ~/code/christine.website/blog
```
This will run `tar` to create a compressed copy of the `./blog` folder and then
diff --git a/blog/rust-crates-go-stdlib-2020-09-27.markdown b/blog/rust-crates-go-stdlib-2020-09-27.markdown
index b81916f..b575f81 100644
--- a/blog/rust-crates-go-stdlib-2020-09-27.markdown
+++ b/blog/rust-crates-go-stdlib-2020-09-27.markdown
@@ -80,7 +80,7 @@ And now let's run it with `RUST_LOG=trace`:
```console
$ env RUST_LOG=trace cargo run --example logger_test
Finished dev [unoptimized + debuginfo] target(s) in 0.07s
- Running `/home/cadey/code/xeiaso.net/target/debug/logger_test`
+ Running `/home/cadey/code/christine.website/target/debug/logger_test`
TRACE logger_test > starting main
DEBUG logger_test > debug message
INFO logger_test > this is some information
@@ -353,7 +353,7 @@ And you can use it like this:
```console
$ cargo run --example json
- Compiling xesite v2.0.1 (/home/cadey/code/xeiaso.net)
+ Compiling xesite v2.0.1 (/home/cadey/code/christine.website)
Finished dev [unoptimized + debuginfo] target(s) in 0.43s
Running `target/debug/examples/json`
comment: Comment {
@@ -433,7 +433,7 @@ And then let's run this:
```console
$ cargo run --example http
- Compiling xesite v2.0.1 (/home/cadey/code/xeiaso.net)
+ Compiling xesite v2.0.1 (/home/cadey/code/christine.website)
Finished dev [unoptimized + debuginfo] target(s) in 2.20s
Running `target/debug/examples/http`
comment: Comment {
@@ -463,9 +463,9 @@ And then when we run it we get an error back:
```console
$ cargo run --example http_fail
- Compiling xesite v2.0.1 (/home/cadey/code/xeiaso.net)
+ Compiling xesite v2.0.1 (/home/cadey/code/christine.website)
Finished dev [unoptimized + debuginfo] target(s) in 1.84s
- Running `/home/cadey/code/xeiaso.net/target/debug/examples/http_fail`
+ Running `/home/cadey/code/christine.website/target/debug/examples/http_fail`
Error: HTTP status client error (404 Not Found) for url (https://xena.greedo.xeserv.us/files/comment2.json)
```