Skip to content

Commit 05b13b9

Browse files
author
Zachary Coulter
authored
remove personal names from blog site (#1)
1 parent 8ce408b commit 05b13b9

8 files changed

+52
-50
lines changed

_config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
# You can create any custom variable you would like, and they will be accessible
1515
# in the templates via {{ site.myvariable }}.
1616
title: Transparency Matters
17-
email: johnny@lockdownprivacy.com
17+
email: team@lockdownprivacy.com
1818
description: >- # this means to ignore newlines until "baseurl:"
1919
Nuanced takes on transparency, privacy, and incentives.
2020
baseurl: "" # the subpath of your site, e.g. /blog
2121
url: "https://blog.lockdownprivacy.com" # the base hostname & protocol for your site, e.g. http://example.com
2222
twitter_username: lockdown_hq
2323
github_username: confirmedcode
24-
author: Johnny Lin
24+
author: Lockdown Privacy
2525

2626
show_excerpts: true
2727
excerpt_separator: <!--more-->

_layouts/home.html

+20-19
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,31 @@
33
---
44

55
<div class="home">
6-
{%- if page.title -%}
6+
{%- if page.title -%}
77
<h1 class="page-heading">{{ page.title }}</h1>
8-
{%- endif -%}
8+
{%- endif -%}
99

10-
<p style="margin-top: 0px; padding-top: 0px; padding-bottom: 20px;">A blog about transparency, privacy, and incentives. Written by <a href="mailto:johnny@lockdownprivacy.com">Johnny Lin</a>, an ex-iCloud engineer who co-founded the <a href="https://lockdownprivacy.com/" target=_blank>Lockdown Privacy</a> app, and <a href="https://openaudit.com/lockdownprivacy" target=_blank>OpenAudit</a>, the open source auditing platform.</p>
10+
<p style="margin-top: 0px; padding-top: 0px; padding-bottom: 20px;">A blog about transparency, privacy, and
11+
incentives.</p>
1112

12-
{{ content }}
13+
{{ content }}
1314

14-
{%- if site.posts.size > 0 -%}
15+
{%- if site.posts.size > 0 -%}
1516
<ul class="post-list">
16-
{%- for post in site.posts -%}
17-
<li>
18-
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
19-
<h3 style="margin-bottom: 0px;">
20-
<a class="post-link" href="{{ post.url | relative_url }}">
21-
{{ post.title | escape }}
22-
</a>
23-
</h3>
24-
{%- if site.show_excerpts -%}
25-
<div style="color:gray;">{{ post.excerpt }}</div>
26-
{%- endif -%}
27-
</li>
28-
{%- endfor -%}
17+
{%- for post in site.posts -%}
18+
<li>
19+
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
20+
<h3 style="margin-bottom: 0px;">
21+
<a class="post-link" href="{{ post.url | relative_url }}">
22+
{{ post.title | escape }}
23+
</a>
24+
</h3>
25+
{%- if site.show_excerpts -%}
26+
<div style="color:gray;">{{ post.excerpt }}</div>
27+
{%- endif -%}
28+
</li>
29+
{%- endfor -%}
2930
</ul>
30-
{%- endif -%}
31+
{%- endif -%}
3132

3233
</div>

_layouts/post.html

+25-22
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,33 @@
33
---
44
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
55

6-
<header class="post-header" style="margin-bottom: 0px;">
7-
<h2 class="post-title p-name" itemprop="name headline" style="margin-bottom: 0px; font-size: 28px; line-height: 36px;">{{ page.title | escape }}</h2>
8-
<p class="post-meta" style="margin-top: 5px; margin-bottom: 10px;">
9-
Published on
10-
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
11-
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
12-
{{ page.date | date: date_format }}
13-
</time>
14-
by&nbsp;
15-
{%- if page.author -%}
16-
<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card" itemprop="name">{{ page.author }}</span></span>
17-
{%- else -%}
18-
<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card" itemprop="name">Johnny Lin</span></span>
19-
{%- endif -%}
20-
</p>
21-
</header>
6+
<header class="post-header" style="margin-bottom: 0px;">
7+
<h2 class="post-title p-name" itemprop="name headline"
8+
style="margin-bottom: 0px; font-size: 28px; line-height: 36px;">{{ page.title | escape }}</h2>
9+
<p class="post-meta" style="margin-top: 5px; margin-bottom: 10px;">
10+
Published on
11+
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
12+
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
13+
{{ page.date | date: date_format }}
14+
</time>
15+
by&nbsp;
16+
{%- if page.author -%}
17+
<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card"
18+
itemprop="name">{{ page.author }}</span></span>
19+
{%- else -%}
20+
<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card"
21+
itemprop="name">Lockdown Privacy</span></span>
22+
{%- endif -%}
23+
</p>
24+
</header>
2225

23-
<div class="post-content e-content" itemprop="articleBody">
24-
{{ content }}
25-
</div>
26+
<div class="post-content e-content" itemprop="articleBody">
27+
{{ content }}
28+
</div>
2629

27-
{%- if site.disqus.shortname -%}
30+
{%- if site.disqus.shortname -%}
2831
{%- include disqus_comments.html -%}
29-
{%- endif -%}
32+
{%- endif -%}
3033

31-
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
34+
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
3235
</article>

_posts/2020-11-25-how-to-make-80000.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: How to Make $80,000 Per Month on the Apple App Store
33
layout: post
44
date: '2020-11-25 00:00:00 -0800'
5-
author: Johnny Lin
5+
author: Lockdown Privacy
66
---
77

88
#### It’s far easier than you think. No luck or perseverance necessary.

_posts/2020-12-02-why-you-cant-trust.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Can You Trust the Apps and Sites You Use?
33
layout: post
44
date: '2020-12-02 00:00:00 -0800'
5-
author: Johnny Lin
5+
author: Lockdown Privacy
66
---
77

88
#### Let's hope every tech company steals this idea.

_posts/2020-12-09-heres-what-the-do-not.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: The “Do Not Sell My Personal Data” Button Makes Absolutely No Sense
33
layout: post
44
date: '2020-12-09 00:00:00 -0800'
5-
author: Johnny Lin
5+
author: Lockdown Privacy
66
---
77

88
#### Are there people who *want* their data to be sold?

_posts/2021-09-22-study-effectiveness-of-apples-app-tracking-transparency.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Study: Effectiveness of Apple''s App Tracking Transparency'
3-
author: Johnny Lin and Sean Halloran
3+
author: Lockdown Privacy
44
---
55

66
#### Does it stop third-party tracking? Or is it just an illusion of privacy?

_posts/2023-02-23-Lockdown-2-How-Were-Getting-There.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@ title: 'Lockdown 2.0: How We''re Getting There'
55
#### Scaling Privacy to the Next 10 Million Users
66
<!--more-->
77

8-
Hey— it’s Johnny and Rahul, co-founders of Lockdown Privacy.
9-
108
We’re pleased to announce that Lockdown Privacy has been acquired by Appex Group, a privacy-conscious mobile development group fully owned and operated by passionate technologists and engineers. Appex is headquartered in Boston, Massachusetts, and is led by open source veterans with extensive background in security. The Appex team was immediately attracted to Lockdown's industry-leading transparency, and saw that by prioritizing trust through transparency, Lockdown was able to grow organically to over a million users, instead of relying on invasive ads or marketing - a win for both user privacy and for Lockdown.
119

1210
Going forward, not only is the Appex team committed to operating Lockdown as open source, but they're also heavily investing in building out new privacy features and performance enhancements, such as a next-generation tracker-blocking engine that’s exponentially more efficient - updates that our two-person team didn't previously have the resources for.
1311

1412
For us as founders, we're happy that Lockdown's new operators are folks who believe in the importance of privacy, and who arguably have much deeper experience with open source than us. Of course, actions speak louder than words, so this month, Appex is completing Lockdown's fifth audit by independent security and privacy experts - the update will be posted and announced in the next few weeks on OpenAudit.
1513

16-
We look forward to continuing to work with Appex as strategic advisors - and if you have any questions, concerns, or feedback, you can reach Johnny at [johnny@lockdownprivacy.com](mailto:johnny@lockdownprivacy.com), and the Appex team at [team@lockdownprivacy.com](mailto:team@lockdownprivacy.com).
14+
We look forward to continuing to work with Appex as strategic advisors - and if you have any questions, concerns, or feedback, you can reach the Appex team at [team@lockdownprivacy.com](mailto:team@lockdownprivacy.com).
1715

1816
Best,
1917

0 commit comments

Comments
 (0)