fmartingr.com/templates/openring.html

59 lines
1.7 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<section class="webring">
<h3>Articles from blogs I follow around the net</h3>
<section class="articles">
<div class="article">
<h4 class="title">
<a href="https://drewdevault.com/2021/12/30/Language-design-considerations.html" target="_blank"
rel="noopener">Breaking down a small language design proposal</a>
</h4>
<p class="summary">
We are developing a new systems programming language. The name is a secret, so
well call it xxxx instead. In xxxx, we have a general requirement that all variables
must be initialized. This is fine for the simple case, such as “let x: int =
10”. But, it doe…</p>
<small class="source">
via <a href="https://drewdevault.com">Drew DeVault&#39;s blog</a>
</small>
<small class="date">December 30, 2021</small>
</div>
</section>
<p class="attribution">
Generated by
<a href="https://git.sr.ht/~sircmpwn/openring">openring</a>
</p>
</section>
<style>
.webring .articles {
display: flex;
flex-wrap: wrap;
margin: -0.5rem;
}
.webring .title {
margin: 0;
}
.webring .article {
flex: 1 1 0;
display: flex;
flex-direction: column;
margin: 0.5rem;
padding: 0.5rem;
background: #eee;
min-width: 10rem;
}
.webring .summary {
font-size: 0.8rem;
flex: 1 1 0;
}
.webring .attribution {
text-align: right;
font-size: 0.8rem;
color: #555;
}
</style>