From 753489b857b31100ddc173f9a50242601b71c66c Mon Sep 17 00:00:00 2001 From: babbleberry Date: Fri, 26 Jan 2024 22:16:28 +0000 Subject: [PATCH] Changed Github username --- .github/FUNDING.yml | 2 +- RPI-BUILD.md | 2 +- _config.yml | 2 +- part15-tcpip-webserver/README.md | 2 +- part6-breakout/README.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index c1a93cb..d21debe 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1 @@ -github: isometimes +github: babbleberry diff --git a/RPI-BUILD.md b/RPI-BUILD.md index af9d194..bdcdc28 100644 --- a/RPI-BUILD.md +++ b/RPI-BUILD.md @@ -23,7 +23,7 @@ Note: you can avoid re-imaging the Pi, by instead [building a cross-compiler you Now let's build something: - * Use `git` to clone this repo: `git clone https://github.com/isometimes/rpi4-osdev.git` + * Use `git` to clone this repo: `git clone https://github.com/babbleberry/rpi4-osdev.git` * Decide which part you want to build - I like testing with _part5-framebuffer_ (it's visual, so you'll know when it works!) * Copy the _Makefile.gcc_ to _Makefile_ * Edit the _Makefile_ and ensure the `GCCPATH` variable points to the _bin_ subdirectory where your cross-compiler is to be found diff --git a/_config.yml b/_config.yml index 583b5d8..865e583 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,4 @@ -remote_theme: isometimes/cayman-ga4 +remote_theme: babbleberry/cayman-ga4 google_analytics: G-YL02TRV3C8 url: "https://www.rpi4os.com" plugins: diff --git a/part15-tcpip-webserver/README.md b/part15-tcpip-webserver/README.md index e559708..2f8205a 100644 --- a/part15-tcpip-webserver/README.md +++ b/part15-tcpip-webserver/README.md @@ -86,7 +86,7 @@ We then serve responses based on three possible cases: * The incoming request is not a GET request (eg. maybe it's a HEAD request) - you can simulate this using the `curl` tool: `curl -I 192.168.0.66` * The incoming request is a GET request for the root web page `/` - `curl 192.168.0.66/` - * The incoming request is a GET request for any non-root web page - eg. `curl 192.168.0.66/isometimes/monkey` + * The incoming request is a GET request for any non-root web page - eg. `curl 192.168.0.66/babbleberry/monkey` I recommend reading [this page](http://tuxgraphics.org/electronics/200905/embedded-tcp-ip-stack.shtml) for a full explanation. The code I have ported is very similar to what you see there. diff --git a/part6-breakout/README.md b/part6-breakout/README.md index f8bf563..3c3cc68 100644 --- a/part6-breakout/README.md +++ b/part6-breakout/README.md @@ -150,7 +150,7 @@ I hope writing your first game was easier than you thought it might be - and on _Well done, you've just written your first game!_ -PS: if you have issues using the Arm gcc compiler (namely an unexpected crash after painting the first brick), you might to try setting the compiler optimisation level to `-O1` instead of `-O2` in the _Makefile_. Some folks have [reported issues](https://github.com/isometimes/rpi4-osdev/issues/17), and I am able to reproduce these. +PS: if you have issues using the Arm gcc compiler (namely an unexpected crash after painting the first brick), you might to try setting the compiler optimisation level to `-O1` instead of `-O2` in the _Makefile_. Some folks have [reported issues](https://github.com/babbleberry/rpi4-osdev/issues/17), and I am able to reproduce these. ![The finished game](images/6-breakout-thefinishedgame.jpg)