Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/contribute.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Layout from "../layouts/Layout.astro";

<p>
Flix is developed at <a
href="http://cs.au.dk/research/programming-languages/"
href="https://cs.au.dk/research/programming-languages-logic-and-software-security"
>Aarhus University</a
>, at the <a href="http://plg.uwaterloo.ca">University of Waterloo</a
>, and by a community of <a
Expand Down
4 changes: 2 additions & 2 deletions src/pages/documentation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const smallLinks = [
},
{
text: "Blog",
link: "/blog/",
link: "https://blog.flix.dev/",
icon: "fa-brands:microblog",
},
{
Expand All @@ -28,7 +28,7 @@ const smallLinks = [
},
{
text: "Twitter",
link: "https://twitter.com/flixlang",
link: "https://x.com/flixlang",
icon: "fa-brands:twitter",
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/pages/principles.astro
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ import Principle from "../components/Principle.astro"
</Principle>

<Principle name="Share memory by communicating">
Flix follows the Go mantra: <a href="https://blog.golang.org/share-memory-by-communicating"><i>Do
Flix follows the Go mantra: <a href="https://go.dev/blog/codelab-share"><i>Do
not communicate by sharing memory; instead, share memory by
communicating.</i></a> In other words: mutable memory should never be shared between processes.
Processes should only share immutable messages (and data structures). We believe this
Expand All @@ -235,7 +235,7 @@ import Principle from "../components/Principle.astro"
</Principle>

<Principle name="Bugs are not recoverable errors">
We believe in the <a href="http://joeduffyblog.com/2016/02/07/the-error-model/">Midori Error
We believe in the <a href="https://joeduffyblog.com/2016/02/07/the-error-model/">Midori Error
Model</a>; that is, there are two kinds of errors: <i>recoverable errors</i> and <i>program
bugs</i>. Recoverable errors are things like illegal user input, network errors, etc. Errors
that can be anticipated and where there is a chance of recovery. Program bugs, on the other
Expand Down
Loading