templates/text.html (view raw)
1<!DOCTYPE html>
2<html lang=en>
3 <link rel="stylesheet" href="/static/style.css" type="text/css">
4 <link rel="stylesheet" href="/static/syntax.css" type="text/css">
5 <link rel="shortcut icon" type="images/x-icon" href="/static/favicon.ico">
6 <meta charset="UTF-8">
7 <meta name="description" content="{{ subtitle }}">
8 <meta name="viewport" content="initial-scale=1">
9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
10 <meta content="#151B1B" name="theme-color">
11 <meta name="HandheldFriendly" content="true">
12 <meta name="twitter:card" content="summary_large_image">
13 <meta name="twitter:site" content="@icyphox">
14 <meta name="twitter:title" content="{{ title }}">
15 <meta name="twitter:description" content="{{ subtitle }}">
16 <meta name="twitter:image" content="/static/icyphox.png">
17 <meta property="og:title" content="{{ title }}">
18 <meta property="og:type" content="website">
19 <meta property="og:description" content="{{ subtitle }}">
20 <meta property="og:url" content="https://icyphox.sh">
21 <meta property="og:image" content="/static/icyphox.png">
22 <title>
23 {{ title }}
24 </title>
25 <body>
26 <div class="container">
27 <div class="pull-left">
28 <div class="content">
29 <header>
30 {{ header }}
31 </header>
32 <div style="float: right">
33 view in <a href="/txt/{{ url }}.txt">plain-text</a>
34 </div>
35 <div style="float: left">
36 {{ date }}
37 </div>
38 <div style="clear: both" align="left">
39 <h1>{{ title }}</h1>
40 <h2 class="subtitle">{{ subtitle }}</h2>
41 {{ body }}
42 </div>
43 <p class="muted">Questions or comments?
44 Send an email to
45 <a href="mailto:~icyphox/x@lists.sr.ht?Subject=Re: {{ title }}">~icyphox/x@lists.sr.ht</a>—my <a href="https://lists.sr.ht/~icyphox/x">public inbox</a>.</p>
46
47 <hr>
48 <div class="openring">
49
50 <div class="openring-feed">
51 <h4><a href="https://peppe.rs/posts/auto-currying_rust_functions/">Auto-currying Rust Functions</a></h4>
52 <p>This post contains a gentle introduction to procedural macros in Rust and a guide to writing a procedural macro to curry Rust functions. The source code for the entire library can be found here. It is also available on crates.io.
53The following links might …</p>
54
55 <p>via <a href="https://peppe.rs">nerdypepper's μblog</a> on May 09, 2020</p>
56 </div>
57
58
59 <div class="openring-feed">
60 <h4><a href="https://k1ss.org/blog/20200525a">25/05/2020: This month in KISS (#2)</a></h4>
61 <p>Welcome to the second monthly update for KISS. This post will be
62quite a long one, we've seen some nice changes this month and some
63great work by the Community.…</p>
64
65 <p>via <a href="https://k1ss.org">KISS Linux Blog</a> on May 25, 2020</p>
66 </div>
67
68
69 <div class="openring-feed">
70 <h4><a href="https://drewdevault.com/tls/security/oauth/2020/06/12/Can-we-talk-about-client-side-certs.html">Can we talk about client-side certificates?</a></h4>
71 <p>I’m working on improving the means by which API users authenticate with the
72SourceHut API. Today, I was reading RFC 6749 (OAuth2) for this purpose,
73and it got me thinking about the original OAuth spec. I recalled vaguely that it
74had the API clients actuall…</p>
75
76 <p>via <a href="https://drewdevault.com">Drew DeVault's Blog</a> on Jun 12, 2020</p>
77 </div>
78
79
80
81 </div>
82 <div style="float: right">
83 <small>
84 Generated by <a href="https://github.com/icyphox/openring.py">
85 openring.py
86 </a>
87 </small>
88 </div>
89 </div>
90 </div>
91 <div class="pull-right">
92 {{ footer }}
93 </div>
94 </div>
95 </body>
96</html>