diff --git a/posts/HackBU2024.md b/posts/HackBU2024.md index afa0247..dbbaf7a 100644 --- a/posts/HackBU2024.md +++ b/posts/HackBU2024.md @@ -48,7 +48,7 @@ conveniently the Hackathon can't really prevent prior work that isn't code so al ## Why yes I do prefer non-linear story telling -That reminds me I should probably mention why I was working on this solo as well as what I'm even using to build it. So unlike last year I did try a little bit more to get a group to work on something with but none of the other ideas were interesting and the people I was hoping to group with assumed I'd be fine on my own. Which they were right but I'd have liked the help if only so I could've increase the scope a bit. +That reminds me I should probably mention why I was working on this solo as well as what I'm even using to build it. So unlike last year I did try a little bit more to get a group to work on something with but none of the other ideas were interesting and the people I was hoping to group with assumed I'd be fine on my own. Which they were right but I'd have liked the help if only so I could've increased the scope a bit. But yeah once it was clear I'd be working on my own I decided to go with a language I was comfortable with and that I knew had all the tools I needed. That language being [Rust](https://www.rust-lang.org/). [Tide]() for the http server backend, [Reqwest]() for making http requests to various apis, [SerDe]() for serializing and deserializing json, and some other libraries which aren't interesting to list out2. diff --git a/static/css/dark-code.css b/static/css/dark-code.css index 72ab41b..0afe645 100644 --- a/static/css/dark-code.css +++ b/static/css/dark-code.css @@ -55,8 +55,8 @@ code.hljs { .hljs::selection, .hljs ::selection { - background-color: #373b41; - color: #c5c8c6; + /*background-color: #373b41; + color: #c5c8c6;*/ } diff --git a/static/css/light-code.css b/static/css/light-code.css index 024f295..4038d53 100644 --- a/static/css/light-code.css +++ b/static/css/light-code.css @@ -55,8 +55,8 @@ code.hljs { .hljs::selection, .hljs ::selection { - background-color: #c5c8c6; - color: #373b41; + /*background-color: #c5c8c6; + color: #373b41;*/ }