msfjarvis.dev/layouts/partials/openring.html
github-actions[bot] f5a0fd0a32 Periodic openring sync (#22)
Co-authored-by: msfjarvis <msfjarvis@users.noreply.github.com>
2020-09-19 05:37:30 +05:30

83 lines
2.7 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 class="tag__link" href="https://joebirch.co/android/exploring-jetpack-compose-column/" target="_blank" rel="noopener">Exploring Jetpack Compose: Column</a>
</h4>
<p class="summary">The Column Composable provides us with the functionality of displaying a collection of composables in a vertically sequenced format, where each composable is displayed simultaneously one after the other. If youre enjoying my posts on Jetpack Compose, che…</p>
<small class="source">
via <a href="https://joebirch.co">Joe Birch</a>
</small>
<small class="date">September 18, 2020</small>
</div>
<div class="article">
<h4 class="title">
<a class="tag__link" href="https://publicobject.com/2020/09/14/many-correct-answers/" target="_blank" rel="noopener">Many Correct Answers</a>
</h4>
<p class="summary">Lets copy a file with bad Java I/O: private void copy(File source, File target) throws IOException {
try (InputStream in = new FileInputStream(source);
OutputStream out = new FileOutputStream(target)) {
while (true) {
int b = in.r…</p>
<small class="source">
via <a href="https://publicobject.com/">Public Object</a>
</small>
<small class="date">September 14, 2020</small>
</div>
<div class="article">
<h4 class="title">
<a class="tag__link" href="https://blog.jessfraz.com/post/the-automated-cio/" target="_blank" rel="noopener">The Automated CIO</a>
</h4>
<p class="summary">
I previously wrote a bit about our internal infrastructure in my post on The
Art of Automation. This
post is going to go into details about our automated Chief infrastructure
Officer (CIO). I joke so much that I automated our CIO that I even named the
repo ho…</p>
<small class="source">
via <a href="https://blog.jessfraz.com/">Ramblings from Jessie</a>
</small>
<small class="date">September 8, 2020</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;
padding-top: 1rem;
}
.webring .title {
margin: 0;
}
.webring .article {
flex: 1 1 0;
display: flex;
flex-direction: column;
margin: 0.5rem;
padding: 0.5rem;
background: #f2e3ff;
min-width: 8rem;
}
.webring .summary {
font-size: 0.8rem;
flex: 1 1 0;
}
.webring .attribution {
text-align: right;
font-size: 0.8rem;
color: #555;
}
</style>