license some blog posts under CC BY-SA 4.0
authorRalf Jung <post@ralfj.de>
Fri, 2 Apr 2021 09:25:12 +0000 (11:25 +0200)
committerRalf Jung <post@ralfj.de>
Fri, 2 Apr 2021 09:25:12 +0000 (11:25 +0200)
personal/_layouts/post.html
personal/_posts/2016-01-09-the-scope-of-unsafe.md
personal/_posts/2017-06-09-mutexguard-sync.md
personal/_posts/2020-12-14-provenance.md

index 652d476bd18fa9726b7778350dc6af60a0a3f7b7..77d138548f3c5a54152d91b9cdc5afbef14ee644 100644 (file)
@@ -10,7 +10,8 @@ layout: default
 {{ content }}
 
 <p class="comment">
-    Posted on <a href="{{ site.baseurl}}/blog">{{ site.blog.title }}</a> on {{ page.date | date: "%b %-d, %Y" }}. <br>
+    Posted on <a href="{{ site.baseurl}}/blog">{{ site.blog.title }}</a> on {{ page.date | date: "%b %-d, %Y" }}<!--
+      -->{% if page.license %} and licensed under <a href="{{ page.license-url }}" target="_blank">{{ page.license }}</a>{% endif %}. <br>
     Comments? <a href="mailto:post+blog-AT-ralfj-DOT-de?subject=Blog post comment: {{ page.title | uri_escape }}">Drop me a mail</a><!--
       -->{% if page.reddit %} or <a href="https://www.reddit.com/r{{ page.reddit }}" target="_blank">leave a note on reddit</a>{% endif %}<!--
       -->{% if page.forum %} or <a href="{{ page.forum }}" target="_blank">leave a note in the forum</a>{% endif %}!
index ec9fde019657d3b7ba456f78b7c5946af4dd7916..96a7eb41bb1fe91f41572200b806f4eccda87a2e 100644 (file)
@@ -2,6 +2,8 @@
 title: The Scope of Unsafe
 categories: research rust
 reddit: /rust/comments/4065l2/the_scope_of_unsafe/
+license: CC BY-SA 4.0
+license-url: https://creativecommons.org/licenses/by-sa/4.0/
 ---
 
 I'd like to talk about an important aspect of dealing with unsafe code, that still regularly seems to catch people on the wrong foot:
index 2fe628a5e9e2a07bfc01c9a9cfb6b3c908fd5aa8..8bfa21373c507ca5d76ac70eadf315bb3774dc2d 100644 (file)
@@ -2,6 +2,8 @@
 title: How MutexGuard was Sync When It Should Not Have Been
 categories: rust research
 reddit: /rust/comments/6gavfe/how_mutexguard_was_sync_when_it_should_not_have/
+license: CC BY-SA 4.0
+license-url: https://creativecommons.org/licenses/by-sa/4.0/
 ---
 
 A couple of weeks ago, our ongoing effort to [formalize Rust's type system]({% post_url 2015-10-12-formalizing-rust %}) lead to us actually discovering a bug in the Rust standard library:
index 693d8e2075e190420b91542f978bb3ee5ee1d164..4e95665df3daa7bc67ad5806493469143e2c6ee2 100644 (file)
@@ -2,6 +2,8 @@
 title: "Pointers Are Complicated II, or: We need better language specs"
 categories: rust research
 forum: https://internals.rust-lang.org/t/pointers-are-complicated-ii-or-we-need-better-language-specs/13562
+license: CC BY-SA 4.0
+license-url: https://creativecommons.org/licenses/by-sa/4.0/
 ---
 
 Some time ago, I wrote a blog post about how [there's more to a pointer than meets the eye]({% post_url 2018-07-24-pointers-and-bytes %}).