A mirror of my website's source code.

Important notice; please read: You are being "sold" telescreens!

You are not the customer of Google or Apple, but rather their slave.

With recent announcements such as developer verification, Android is no longer an open platform. Plus, Samsung Android devices have turned into telescreens, now that bootloader unlocking is impossible! Google can refuse to verify developers they don't agree with! And you will have no way to run your own choice of software on these devices!

Similarly, to Apple the EU's DMA is nothing more than a formality, the apps still have to be verified! Remember that these changes are not for privacy or security, they are simply anti-competitive! You are never private or secure from the American company supplying one of these OSes!

When you can, refuse "buying" certified Androids or iThings! What is happening it is not normal, it ought to be illegal, and you do not own these devices! I am outraged, and you should be too!

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 blog-post.html

View raw Download
text/html • 2.3 kiB
HTML document, ASCII text
        
            
1
{% extends "_layout.html" %}
2
{% block title %}{{ Title }}{% endblock %}
3
{% block Head %}
4
{{super()}}
5
<link rel="stylesheet" href="/src/code-blocks.css" />
6
<link rel="stylesheet" href="/src/blog.css" />
7
<link rel="alternate" href="/blog/{{PlaintextPath}}" type="text/plain" title="Post source" />
8
<meta property="og:title" content="{{ Title }}" />
9
<meta property="og:type" content="article" />
10
<meta property="article:published_time" content="{{ OpenGraphDate }}T00:00:00Z" />
11
<meta property="article:author" content"https://steve0greatness.github.io" />
12
{% if Revised %}<meta property="article:modified_time" content="{{ post["opengraph-update"] }}T00:00:00Z" />{% endif %}
13
<meta property="profile:first_name" content="Steve0Greatness" />
14
<meta property="profile:username" content="Steve0Greatness" />
15
<meta property="profile:gender" content="male" />
16
<meta property="og:url" content="https://steve0greatness.github.io/blog/{{PostPath}}" />
17
{% endblock %}
18
{% from "_macros.html" import GenerateBreadcrumbs %}
19
{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/blog","title": "Blog Index" }, {"href": "/blog/" + PostPath, "title": Title}]) }}{% endblock %}
20
{% block content %}
21
<h1>{{ Title }}</h1>
22
<article>
23
<header>
24
<div role="toolbar" class="toolbar">
25
<a href="https://toot.kytta.dev/?text=Take a look at this article by @S0G@mastodon.social: https://steve0greatness.github.io/blog/{{PostPath}}" title="Share to Mastodon">
26
<img src="/toot-kytta-dev-icon.png" width="16" height="16" aria-hidden="true" title="Share to Mastodon" />
27
</a>
28
<a href="/blog/{{PostPath}}" title="Direct link">
29
<img src="/link-icon.png" width="16" height="16" aria-hidden="true" title="Direct link" />
30
</a>
31
<a href="/blog/{{PlaintextPath}}" title="Markdown source">
32
<img src="/md-src.png" width="16" height="16" aria-hidden="true" />
33
</a>
34
</div>
35
<time datetime="{{ OpenGraphDate }}T00:00:00-08:00">{{PostDate}} PST</time>
36
{% if Revised %}- <span aria-hidden="true" style="font-style:italic">Revision as of: </span> <time datetime="{{ post["opengraph-update"] }}T00:00:00-08:00" aria-label="Revision">{{Revised}} PST</time>{% endif %}
37
{% if IsDraft %}<i>Draft</i>{% endif %}
38
</header>
39
{{ Content }}
40
</article>
41
{% endblock %}
42