aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJulien Dessaux2022-06-01 15:57:45 +0200
committerJulien Dessaux2022-06-01 15:59:02 +0200
commit66a9e75608ae9a4c0bf3611c7fc8a5539d429f33 (patch)
tree61a659701abbdca20808dc42c9e34135069b8272 /content
parentUpdated dependencies (diff)
downloadwww-66a9e75608ae9a4c0bf3611c7fc8a5539d429f33.tar.gz
www-66a9e75608ae9a4c0bf3611c7fc8a5539d429f33.tar.bz2
www-66a9e75608ae9a4c0bf3611c7fc8a5539d429f33.zip
Fixed git.adyxax.org urls following gitea to cgit migration
Diffstat (limited to 'content')
-rw-r--r--content/blog/golang/funge98-interpreter.md2
-rw-r--r--content/blog/hugo/adding-custom-shortcode-age.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/content/blog/golang/funge98-interpreter.md b/content/blog/golang/funge98-interpreter.md
index 0228b58..d64ebeb 100644
--- a/content/blog/golang/funge98-interpreter.md
+++ b/content/blog/golang/funge98-interpreter.md
@@ -8,7 +8,7 @@ date: 2021-09-27
[Funge-98](https://github.com/catseye/Funge-98/blob/master/doc/funge98.markdown) is an esoteric programming language that like most [esolangs](https://esolangs.org/) is designed to be fun, without any particular use, and in particular impossible to compile. I like Funge-98 for its indecipherable two-dimensional grid of instructions and data mixed together, where execution can proceed in any direction of that grid and wrap around if is would leave the grid.
-I began implementing this interpreter about two weeks ago when trying to resurrect [my Funge-98 IRC bot](https://git.adyxax.org/adyxax/b98/src/branch/master/bot.b98). I had trouble compiling [Fungi](https://github.com/thomaseding/fungi) the haskell Funge-98 interpreter that I used at that time and while I managed to use [Cfunge](https://github.com/VorpalBlade/cfunge) to replace it that was too late : I was already tempted by the idea to write my own interpreter and could not resist.
+I began implementing this interpreter about two weeks ago when trying to resurrect [my Funge-98 IRC bot](https://git.adyxax.org/adyxax/b98/tree/bot.b98). I had trouble compiling [Fungi](https://github.com/thomaseding/fungi) the haskell Funge-98 interpreter that I used at that time and while I managed to use [Cfunge](https://github.com/VorpalBlade/cfunge) to replace it that was too late : I was already tempted by the idea to write my own interpreter and could not resist.
## Some interesting challenges
diff --git a/content/blog/hugo/adding-custom-shortcode-age.md b/content/blog/hugo/adding-custom-shortcode-age.md
index 1f912bc..72fb9bd 100644
--- a/content/blog/hugo/adding-custom-shortcode-age.md
+++ b/content/blog/hugo/adding-custom-shortcode-age.md
@@ -33,7 +33,7 @@ And if you are wondering how I am able to display a shortcode code inside this p
{{< print "{{ index .Params 0 }}" >}}
{{< / highlight >}}
-You can find these examples [here](https://git.adyxax.org/adyxax/www/src/branch/master/layouts/shortcodes/)! Hugo really is a powerful static website generator, it is amazing.
+You can find these examples [here](https://git.adyxax.org/adyxax/www/tree/layouts/shortcodes)! Hugo really is a powerful static website generator, it is amazing.
## References