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="#222" 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 <section style="float: right">
33 view in <a href="/txt/{{ url }}.txt">plain-text</a>
34 </section>
35 <section style="float: left">
36 {{ date }}
37 </section>
38 <article style="clear: both" align="left">
39 <h1>{{ title }}</h1>
40 <h2 class="subtitle">{{ subtitle }}</h2>
41 {{ body }}
42 </article>
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/gripes_with_go/">Gripes With Go</a></h4>
52 <p>You’ve read a lot of posts about the shortcomings of the Go programming language, so what’s one more.
53
54Lack of sum types
55Type assertions
56Date and Time
57Statements over Expressions
58Erroring out on unused variables
59Error handling
60
61Lack of Sum types
62A “Sum” ty…</p>
63
64 <p>via <a href="https://peppe.rs">nerdypepper's μblog</a> on Aug 01, 2020</p>
65 </div>
66
67
68 <div class="openring-feed">
69 <h4><a href="https://gru.gq/2020/07/17/propaganda-harder-than-it-looks/">Propaganda, harder than it looks</a></h4>
70 <p>A poor effort at “black propaganda” The success or failure of black propaganda depends on the receiver’s willingness to accept the credibility of the source and the content of the message. Care has to be taken to place the sources and messages within a soc…</p>
71
72 <p>via <a href="https://gru.gq">grugq’s domain</a> on Jul 17, 2020</p>
73 </div>
74
75
76 <div class="openring-feed">
77 <h4><a href="https://www.bellingcat.com/news/2020/08/21/who-director-general-attacked-on-twitter-with-ccp-related-memes/">WHO Director-General Attacked on Twitter with CCP-Related Memes</a></h4>
78 <p>Tedros Adhanom Ghebreyesus, the Director-General of the World Health Organization (WHO), tweets daily out of WHO headquarters in Geneva, Switzerland. But within minutes of many of his tweets going live, he is flooded with personal attacks, memes, and slurs…</p>
79
80 <p>via <a href="https://www.bellingcat.com">bellingcat</a> on Aug 21, 2020</p>
81 </div>
82
83
84
85 </div>
86 <div style="float: right">
87 <small>
88 Generated by <a href="https://github.com/icyphox/openring.py">
89 openring.py
90 </a>
91 </small>
92 </div>
93 </div>
94 </div>
95 <div class="pull-right">
96 {{ footer }}
97 </div>
98 </div>
99 </body>
100</html>