Compare commits
53 Commits
ea5ad727b2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
de0c9f5e01
|
|||
|
c9d37811aa
|
|||
| 83b7c5f3bd | |||
|
9319d42aca
|
|||
|
9bb7fcc300
|
|||
|
d3f55b81af
|
|||
|
ad7435e9fb
|
|||
|
bc94e7b75e
|
|||
|
c5d35b7bc2
|
|||
| 80b4c2af5c | |||
| 0b10385728 | |||
|
907db96de0
|
|||
|
323fc7a02a
|
|||
| 9932fa0967 | |||
|
7c85d3d12e
|
|||
|
66e70b3a81
|
|||
|
a36e021a62
|
|||
|
089f274470
|
|||
|
e13612f9e8
|
|||
| b8be16d9f2 | |||
|
a7f649e916
|
|||
|
eacaf507e4
|
|||
|
6fd705e70e
|
|||
|
668294d5bb
|
|||
|
c356a28e6d
|
|||
|
e1f0e85f78
|
|||
|
03c7ddb955
|
|||
|
42e49897fa
|
|||
|
b3da6cdd20
|
|||
|
96db2ac021
|
|||
|
5b5035f7cd
|
|||
|
26658b1ce5
|
|||
|
a8f98b00be
|
|||
|
b3fb7d5df0
|
|||
|
6aea794dbd
|
|||
|
32a3e593ef
|
|||
|
a5680a4864
|
|||
|
3df4e58b02
|
|||
|
7bed7414c6
|
|||
|
91b3d266e8
|
|||
|
5143e4d92a
|
|||
|
213b90a191
|
|||
|
920bb21de6
|
|||
|
bc7ec2915e
|
|||
|
75f7f22c75
|
|||
|
c226b761a9
|
|||
|
e284e7ee99
|
|||
|
5d2a01c36d
|
|||
|
dbd01c8ad0
|
|||
|
297fbf41a4
|
|||
|
fb791102f7
|
|||
|
fc1969f5ac
|
|||
|
d99b4821d9
|
@@ -33,6 +33,12 @@ jobs:
|
|||||||
submodules: recursive # Get submdules
|
submodules: recursive # Get submdules
|
||||||
fetch-depth: 1 # Fetch all history for .GitInfo and .Lastmod
|
fetch-depth: 1 # Fetch all history for .GitInfo and .Lastmod
|
||||||
|
|
||||||
|
- name: Setup required tools (Hugo)
|
||||||
|
uses: https://github.com/jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
|
||||||
|
with:
|
||||||
|
cache: false # no cache on gitea
|
||||||
|
github_token: ${{ secrets.GH_TOKEN }}
|
||||||
|
|
||||||
- name: Create configuration for Matomo
|
- name: Create configuration for Matomo
|
||||||
run: |
|
run: |
|
||||||
cp themes/hugo-sustain/static/config.php.sample static/config.php
|
cp themes/hugo-sustain/static/config.php.sample static/config.php
|
||||||
@@ -40,17 +46,19 @@ jobs:
|
|||||||
sed -i "s|__PROXY_URL__|${{ secrets.MATOMO_PROXY_URL }}|" static/config.php
|
sed -i "s|__PROXY_URL__|${{ secrets.MATOMO_PROXY_URL }}|" static/config.php
|
||||||
sed -i "s|__TOKEN_AUTH__|${{ secrets.MATOMO_TOKEN_AUTH }}|" static/config.php
|
sed -i "s|__TOKEN_AUTH__|${{ secrets.MATOMO_TOKEN_AUTH }}|" static/config.php
|
||||||
|
|
||||||
- name: Setup Hugo
|
- name: Check for broken links
|
||||||
uses: https://github.com/peaceiris/actions-hugo@v3.0.0
|
run: |
|
||||||
with:
|
if [ "${{ gitea.ref }}" = "refs/heads/main" ]; then
|
||||||
hugo-version: "latest"
|
mise linkcheck --offline || true
|
||||||
extended: true
|
else
|
||||||
|
mise linkcheck --offline
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Build website with Hugo
|
- name: Build website with Hugo
|
||||||
run: hugo
|
run: mise run build
|
||||||
|
|
||||||
- name: Copy website to host
|
- name: Copy website to host
|
||||||
uses: https://github.com/appleboy/scp-action@v1.0.0
|
uses: https://github.com/appleboy/scp-action@ff85246acaad7bdce478db94a363cd2bf7c90345 # v1.0.0
|
||||||
with:
|
with:
|
||||||
host: mehl.mx
|
host: mehl.mx
|
||||||
username: maxmehl
|
username: maxmehl
|
||||||
|
|||||||
28
archetypes/blog/index.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace (replaceRE "^[0-9]{4}-[0-9]{2}-" "" .Name) "-" " " | title }}"
|
||||||
|
date: {{ now.Format "2006-01-02" }}
|
||||||
|
categories:
|
||||||
|
# Language
|
||||||
|
- english
|
||||||
|
# - deutsch
|
||||||
|
# - presentation
|
||||||
|
# - podcast
|
||||||
|
# - article
|
||||||
|
tags:
|
||||||
|
# - https://mehl.mx/tags/
|
||||||
|
# headerimage:
|
||||||
|
# src: foo.jpg
|
||||||
|
# text: bar
|
||||||
|
# summary: Visible on the listing page, but not on the article page
|
||||||
|
# video: https://link.to/video
|
||||||
|
# slides: https://link.to/slides
|
||||||
|
# audio: https://link.to/audio
|
||||||
|
# article:
|
||||||
|
# name: Media Name
|
||||||
|
# href: https://link.to/article
|
||||||
|
# event:
|
||||||
|
# name: Event Name
|
||||||
|
# href: https://link.to/event
|
||||||
|
---
|
||||||
|
|
||||||
|
Content
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
title: "{{ replace (replaceRE "^[0-9]{4}-[0-9]{2}-" "" .Name) "-" " " | title }}"
|
title: "{{ replace (replaceRE "^[0-9]{4}-[0-9]{2}-" "" .Name) "-" " " | title }}"
|
||||||
date: {{ now.Format "2006-01-02" }}
|
date: {{ now.Format "2006-01-02" }}
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
|
|||||||
40
config.toml
@@ -2,17 +2,24 @@ baseurl = "https://mehl.mx/"
|
|||||||
languageCode = "en-GB"
|
languageCode = "en-GB"
|
||||||
title = "Max Mehl"
|
title = "Max Mehl"
|
||||||
theme = [ "hugo-sustain", "hugo-cloak-email", "hugo-mastodon-comments", "hugo-snap-gallery" ]
|
theme = [ "hugo-sustain", "hugo-cloak-email", "hugo-mastodon-comments", "hugo-snap-gallery" ]
|
||||||
|
summaryLength = 50
|
||||||
|
|
||||||
[markup.highlight]
|
[markup.highlight]
|
||||||
codeFences = true
|
codeFences = true
|
||||||
style = "emacs"
|
style = "emacs"
|
||||||
|
# English quotation marks
|
||||||
|
[markup.goldmark.extensions.typographer]
|
||||||
|
leftDoubleQuote = '“'
|
||||||
|
rightDoubleQuote = '”'
|
||||||
|
|
||||||
|
[markup.goldmark.renderHooks.link]
|
||||||
|
useEmbedded = "fallback"
|
||||||
|
|
||||||
[permalinks]
|
[permalinks]
|
||||||
blog = "/blog/:year/:slug"
|
blog = "/blog/:year/:slug"
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
avatar = "profile.png"
|
avatar = "profile.png"
|
||||||
author = "Max Mehl"
|
|
||||||
description = "Open Source expert with background in tech and policy. Focused on strategy, governance, and software supply chains. Building sustainable digital environments."
|
description = "Open Source expert with background in tech and policy. Focused on strategy, governance, and software supply chains. Building sustainable digital environments."
|
||||||
keywords = "open source, free software, Deutsche Bahn, DB Systel, FSFE, management, campaign, communication, strategy, konstanz, berlin, munster, IT service, politics, administration, scouts, founder"
|
keywords = "open source, free software, Deutsche Bahn, DB Systel, FSFE, management, campaign, communication, strategy, konstanz, berlin, munster, IT service, politics, administration, scouts, founder"
|
||||||
|
|
||||||
@@ -20,8 +27,8 @@ style = "emacs"
|
|||||||
custom_css = ["comments/mastodon-comments.css"]
|
custom_css = ["comments/mastodon-comments.css"]
|
||||||
custom_js = ["comments/getcomments.js"]
|
custom_js = ["comments/getcomments.js"]
|
||||||
|
|
||||||
[params.blog]
|
[params.author]
|
||||||
headline = "Thoughts about tech, politics, and more"
|
name = "Max Mehl"
|
||||||
|
|
||||||
[params.social]
|
[params.social]
|
||||||
Github = "mxmehl"
|
Github = "mxmehl"
|
||||||
@@ -29,7 +36,7 @@ style = "emacs"
|
|||||||
Email = ""
|
Email = ""
|
||||||
# Twitter = "mxmehl"
|
# Twitter = "mxmehl"
|
||||||
LinkedIn = "mxmehl"
|
LinkedIn = "mxmehl"
|
||||||
Stackoverflow = "users/4273755/mxmehl"
|
# Stackoverflow = "users/4273755/mxmehl"
|
||||||
Mastodon = "mastodon.social/@mxmehl"
|
Mastodon = "mastodon.social/@mxmehl"
|
||||||
# Diaspora = "diasp.eu/u/mxmehl"
|
# Diaspora = "diasp.eu/u/mxmehl"
|
||||||
|
|
||||||
@@ -47,31 +54,36 @@ style = "emacs"
|
|||||||
|
|
||||||
## Main Menu
|
## Main Menu
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
name = "start"
|
name = "Start"
|
||||||
weight = 100
|
weight = 100
|
||||||
identifier = "start"
|
identifier = "start"
|
||||||
url = "/"
|
url = "/"
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
name = "blog"
|
name = "Updates"
|
||||||
identifier = "blog"
|
identifier = "blog"
|
||||||
weight = 200
|
weight = 200
|
||||||
url = "/blog/"
|
url = "/blog/"
|
||||||
[[menu.main]]
|
|
||||||
name = "links"
|
|
||||||
identifier = "links"
|
|
||||||
weight = 300
|
|
||||||
url = "/links/"
|
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
name = "IT Services"
|
name = "IT Services"
|
||||||
identifier = "it"
|
identifier = "it"
|
||||||
weight = 400
|
weight = 300
|
||||||
url = "/it/"
|
url = "/it/"
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
name = "contact"
|
name = "Contact"
|
||||||
identifier = "contact"
|
identifier = "contact"
|
||||||
weight = 500
|
weight = 400
|
||||||
url = "/contact/"
|
url = "/contact/"
|
||||||
|
|
||||||
[privacy.youtube]
|
[privacy.youtube]
|
||||||
disable = false
|
disable = false
|
||||||
privacyEnhanced = true
|
privacyEnhanced = true
|
||||||
|
|
||||||
|
# Modules
|
||||||
|
[[module.mounts]]
|
||||||
|
# Make static images available as image assets by default
|
||||||
|
source = "static/img/"
|
||||||
|
target = "assets/images/"
|
||||||
|
|
||||||
|
[imaging]
|
||||||
|
compression = 'lossy'
|
||||||
|
quality = 90
|
||||||
|
|||||||
@@ -6,14 +6,12 @@ summary: Open Source expert with background in tech and policy. Focused on strat
|
|||||||
|
|
||||||
## Hi, I'm **Max Mehl**.
|
## Hi, I'm **Max Mehl**.
|
||||||
|
|
||||||
Open Source has always been more than code to me. I deeply care about its principles such as collaboration, transparency, and pragmatic problem-solving.
|
Open Source is more than just code to me. I deeply care about its principles of collaboration, transparency, and pragmatic problem-solving.
|
||||||
|
|
||||||
I work at Deutsche Bahn on Open Source strategy, governance, and team enablement. The goal is to help the organisation use and contribute to Open Source effectively. This includes co-founding the OpenRail Association for sector-wide collaboration and advancing software supply chain practices, especially around SBOMs and Cyber Resilience Act compliance.
|
I work at **Deutsche Bahn**'s virtual Open Source Program Office (OSPO). I helped co-found the **OpenRail Association** to foster sector-wide collaboration. Another focus is on **software supply chain management** with an emphasis on SBOMs and CRA compliance.
|
||||||
|
|
||||||
With a background in political and administrative science and a strong technical foundation, my work often bridges technology and strategy. The focus is always on practical, long-term solutions that balance compliance, security, and efficiency.
|
Previously, I was with the **Free Software Foundation Europe** (FSFE), leading policy, public awareness, and legal initiatives such as *Public Money, Public Code* and *REUSE*. Before that, I founded a small, client-focused IT consultancy firm offering website development and system administration.
|
||||||
|
|
||||||
Previously, I was with the Free Software Foundation Europe, leading licensing and compliance initiatives such as *REUSE* and campaigns like *Public Money, Public Code*. Before that, I founded a small, client-focused [IT consultancy]({{< ref "it" >}}) offering website development and system administration.
|
Outside of work, I enjoy being with my family, bouldering, and maintaining some software projects.
|
||||||
|
|
||||||
Outside of work, most of my time goes into family life with two kids. As a self-taught software developer, some of the rest goes into maintaining Open Source projects — and a little less than I'd like into climbing walls without ropes.
|
On this site, I regularly share [updates]({{< relref "blog" >}}) on my work and projects. Feel free to [reach out]({{< relref "contact" >}}).
|
||||||
|
|
||||||
Once in a while [I blog]({{< ref "blog" >}}) about things that keep me busy. You can contact me via email, messenger, or any of the platforms listed below. See the [contact page]({{< ref "contact" >}}) for more details.
|
|
||||||
|
|||||||
@@ -3,11 +3,10 @@ title: Organising micro task emails in Thunderbird
|
|||||||
date: 2013-10-27T23:12:55+00:00
|
date: 2013-10-27T23:12:55+00:00
|
||||||
aliases: organising-micro-task-emails-in-thunderbird
|
aliases: organising-micro-task-emails-in-thunderbird
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- email
|
- Communication
|
||||||
- guide
|
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
The title of this post sounds very significant but to be honest, it’s a small thing.
|
The title of this post sounds very significant but to be honest, it’s a small thing.
|
||||||
|
|||||||
@@ -3,13 +3,12 @@ title: Mounting a SFTP storage in GNU/Linux
|
|||||||
date: 2014-01-13T14:42:01+00:00
|
date: 2014-01-13T14:42:01+00:00
|
||||||
aliases: /blog/2014/mounting-a-sftp-storage-in-gnu-linux
|
aliases: /blog/2014/mounting-a-sftp-storage-in-gnu-linux
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- bash
|
- Code
|
||||||
- guide
|
- Security
|
||||||
- security
|
- SystemAdministration
|
||||||
- server
|
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
This (longer than expected) post explains how to transfer files securely between your device and an external storage. The first part may be useful for you if you only have little knowledge of terms like (S)FTP(S) and want to learn something about widely used technologies. The second part will help you to mount an external storage so you can manage all files as if they are on your local device and the third, fourth and fifth part will concentrate on easing the mounting process by the help of hostnames, Private/Public Keys and a shell script.
|
This (longer than expected) post explains how to transfer files securely between your device and an external storage. The first part may be useful for you if you only have little knowledge of terms like (S)FTP(S) and want to learn something about widely used technologies. The second part will help you to mount an external storage so you can manage all files as if they are on your local device and the third, fourth and fifth part will concentrate on easing the mounting process by the help of hostnames, Private/Public Keys and a shell script.
|
||||||
|
|||||||
@@ -3,13 +3,13 @@ title: Why free choice of routers is a must
|
|||||||
date: 2014-01-14T17:47:43+00:00
|
date: 2014-01-14T17:47:43+00:00
|
||||||
aliases: why-free-choice-of-routers-is-an-unnegotiable-must
|
aliases: why-free-choice-of-routers-is-an-unnegotiable-must
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- fsfe
|
- FSFE
|
||||||
- germany
|
- Security
|
||||||
- security
|
- Policy
|
||||||
- policy
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@ title: 'I love ZNC because #ilovefs'
|
|||||||
date: 2014-02-14T05:00:14+00:00
|
date: 2014-02-14T05:00:14+00:00
|
||||||
url: /blog/2014/i-love-znc-because-ilovefs
|
url: /blog/2014/i-love-znc-because-ilovefs
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- chat
|
- Communication
|
||||||
- ilovefs
|
- ILoveFS
|
||||||
- server
|
- SystemAdministration
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -3,10 +3,11 @@ title: Wirklich sichere WhatsApp Alternativen
|
|||||||
date: 2014-02-21T09:41:54+00:00
|
date: 2014-02-21T09:41:54+00:00
|
||||||
aliases: wirklich-sichere-whatsapp-alternativen
|
aliases: wirklich-sichere-whatsapp-alternativen
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- chat
|
- Communication
|
||||||
- security
|
- Security
|
||||||
|
|
||||||
---
|
---
|
||||||
Nachdem diese Woche bekannt wurde, dass Facebook es endlich geschafft hat, WhatsApp-Gründer Jan Koum und Brian Acton mit einer stolzen Summe von rund 16 Milliarden US-Dollar [zum Verkauf ihrer Firma](http://www.sueddeutsche.de/wirtschaft/uebernahme-in-der-technikbranche-facebook-kauft-whatsapp-1.1893830) zu bewegen, fragen sich viele, was sich nun in Sachen Privatsphäre ändern wird – und wie man dem entgegenwirken kann. In diesme Artikel werde ich erläutern, was man bei der Wahl des richtigen Messengers beachten sollte, warum Threema nicht die Lösung ist und was wirklich sichere Alternativen sind.
|
Nachdem diese Woche bekannt wurde, dass Facebook es endlich geschafft hat, WhatsApp-Gründer Jan Koum und Brian Acton mit einer stolzen Summe von rund 16 Milliarden US-Dollar [zum Verkauf ihrer Firma](http://www.sueddeutsche.de/wirtschaft/uebernahme-in-der-technikbranche-facebook-kauft-whatsapp-1.1893830) zu bewegen, fragen sich viele, was sich nun in Sachen Privatsphäre ändern wird – und wie man dem entgegenwirken kann. In diesme Artikel werde ich erläutern, was man bei der Wahl des richtigen Messengers beachten sollte, warum Threema nicht die Lösung ist und was wirklich sichere Alternativen sind.
|
||||||
|
|||||||
@@ -3,11 +3,10 @@ title: Guter E-Mail-Stil
|
|||||||
date: 2014-05-19T12:56:12+00:00
|
date: 2014-05-19T12:56:12+00:00
|
||||||
aliases: guter-e-mail-stil
|
aliases: guter-e-mail-stil
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- chat
|
- Communication
|
||||||
- email
|
|
||||||
- guide
|
|
||||||
|
|
||||||
---
|
---
|
||||||
Heutzutage ist schriftlicher Stil in E-Mails ebenso wichtig wie eine angemessene Sprechweise oder standardisierte Floskeln und Höflichkeiten in Briefen. E-Mails sind trotz Short Messaging wie per SMS, WhatsApp oder Facebook weiterhin die bedeutenste digitale Kommunikationsmöglichkeit.
|
Heutzutage ist schriftlicher Stil in E-Mails ebenso wichtig wie eine angemessene Sprechweise oder standardisierte Floskeln und Höflichkeiten in Briefen. E-Mails sind trotz Short Messaging wie per SMS, WhatsApp oder Facebook weiterhin die bedeutenste digitale Kommunikationsmöglichkeit.
|
||||||
|
|||||||
@@ -3,12 +3,11 @@ title: Birthday Calendar with ownCloud via CalDAV
|
|||||||
date: 2014-09-17T22:56:46+00:00
|
date: 2014-09-17T22:56:46+00:00
|
||||||
aliases: birthday-calendar-with-owncloud-via-caldav
|
aliases: birthday-calendar-with-owncloud-via-caldav
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- email
|
- Communication
|
||||||
- guide
|
- SystemAdministration
|
||||||
- server
|
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -3,11 +3,10 @@ title: Setting Openstreetmap as default in Thunderbird’s contacts
|
|||||||
date: 2014-09-28T10:40:42+00:00
|
date: 2014-09-28T10:40:42+00:00
|
||||||
aliases: setting-openstreetmap-as-default-in-thunderbird-contacts
|
aliases: setting-openstreetmap-as-default-in-thunderbird-contacts
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- email
|
- Communication
|
||||||
- guide
|
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
If you use Thunderbird and its contact functionality, you might already have stumbled over the „show on map“ feature. If you add addresses to your contacts (no matter if directly in Thunderbird or via CalDAV) there appears a button which enabled you to open a map with the contact’s location.
|
If you use Thunderbird and its contact functionality, you might already have stumbled over the „show on map“ feature. If you add addresses to your contacts (no matter if directly in Thunderbird or via CalDAV) there appears a button which enabled you to open a map with the contact’s location.
|
||||||
|
|||||||
@@ -3,14 +3,13 @@ title: My internship at FSFE
|
|||||||
date: 2014-10-24T10:39:54+00:00
|
date: 2014-10-24T10:39:54+00:00
|
||||||
aliases: my-internship-at-fsfe
|
aliases: my-internship-at-fsfe
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- fsfe
|
- FSFE
|
||||||
- report
|
- ILoveFS
|
||||||
- germany
|
- Policy
|
||||||
- ilovefs
|
|
||||||
- policy
|
|
||||||
|
|
||||||
---
|
---
|
||||||
I recently saw that the Free Software Foundation Europe is offering [a new and very interesting internship position](https://fsfe.org/news/2014/news-20141017-01.html). That’s a great opportunity for every student interested in Free Software and political activism — and for me to write about my internship I completed from October 2013 until end of March 2014. Here’s a report I wrote some time ago:
|
I recently saw that the Free Software Foundation Europe is offering [a new and very interesting internship position](https://fsfe.org/news/2014/news-20141017-01.html). That’s a great opportunity for every student interested in Free Software and political activism — and for me to write about my internship I completed from October 2013 until end of March 2014. Here’s a report I wrote some time ago:
|
||||||
|
|||||||
@@ -3,11 +3,12 @@ title: Freie Kommunikation ist die Essenz des Menschseins
|
|||||||
date: 2014-11-10T13:15:19+00:00
|
date: 2014-11-10T13:15:19+00:00
|
||||||
aliases: freie-kommunikation-ist-essenz-des-lebens
|
aliases: freie-kommunikation-ist-essenz-des-lebens
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- chat
|
- Communication
|
||||||
- security
|
- Security
|
||||||
- policy
|
- Policy
|
||||||
|
|
||||||
---
|
---
|
||||||
*Im Folgenden werde ich – durch meinen Gemütszustand etwas angefeuert – darlegen, wieso digitale Kommunikationsüberwachung Gift für unsere Gesellschaft ist, weil sie nichts anderes als Millionen Abhörwanzen und Kameras in unseren privatesten Räumen ist.*
|
*Im Folgenden werde ich – durch meinen Gemütszustand etwas angefeuert – darlegen, wieso digitale Kommunikationsüberwachung Gift für unsere Gesellschaft ist, weil sie nichts anderes als Millionen Abhörwanzen und Kameras in unseren privatesten Räumen ist.*
|
||||||
|
|||||||
@@ -3,10 +3,10 @@ title: Sharing is caring – my Git instance
|
|||||||
date: 2014-11-28T17:16:50+00:00
|
date: 2014-11-28T17:16:50+00:00
|
||||||
aliases: sharing-is-caring-my-git-instance
|
aliases: sharing-is-caring-my-git-instance
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- server
|
- SystemAdministration
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
Some days ago I noticed another time that I have far too little knowledge about Git.
|
Some days ago I noticed another time that I have far too little knowledge about Git.
|
||||||
|
|||||||
@@ -5,9 +5,10 @@ aliases:
|
|||||||
- next-station-tanzania
|
- next-station-tanzania
|
||||||
- naechste-station-tansania
|
- naechste-station-tansania
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- tanzania
|
- Tanzania
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -52,4 +53,4 @@ Any further questions? Do not hesitate [to ask me][3]!
|
|||||||
|
|
||||||
[1]: /2015/naechste-station-tansania
|
[1]: /2015/naechste-station-tansania
|
||||||
[2]: /uploads/tanzania-map.png
|
[2]: /uploads/tanzania-map.png
|
||||||
[3]: //max.mehl.mx/contact
|
[3]: /contact
|
||||||
|
|||||||
@@ -3,10 +3,11 @@ title: Yourls URL Shortener for Turpial
|
|||||||
date: 2015-01-24T01:58:32+00:00
|
date: 2015-01-24T01:58:32+00:00
|
||||||
aliases: yourls-url-shortener-for-turpial
|
aliases: yourls-url-shortener-for-turpial
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- chat
|
- Communication
|
||||||
- server
|
- SystemAdministration
|
||||||
|
|
||||||
---
|
---
|
||||||
Maybe you know [Yourls][1], a pretty cool URL shortener which you can set up on your own server very easily. Link shorteners are nice to have because
|
Maybe you know [Yourls][1], a pretty cool URL shortener which you can set up on your own server very easily. Link shorteners are nice to have because
|
||||||
|
|||||||
@@ -3,14 +3,13 @@ title: I love Taskwarrior, therefore I love Free Software
|
|||||||
date: 2015-02-14T12:05:42+00:00
|
date: 2015-02-14T12:05:42+00:00
|
||||||
aliases: i-love-taskwarrior-therefore-i-love-free-software
|
aliases: i-love-taskwarrior-therefore-i-love-free-software
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- bash
|
- Code
|
||||||
- fsfe
|
- FSFE
|
||||||
- guide
|
- SystemAdministration
|
||||||
- server
|
- ILoveFS
|
||||||
- tools
|
|
||||||
- ilovefs
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ title: In The End Freedom Is What Matters
|
|||||||
date: 2015-02-25T02:03:04+00:00
|
date: 2015-02-25T02:03:04+00:00
|
||||||
aliases: in-the-end-freedom-is-what-matters
|
aliases: in-the-end-freedom-is-what-matters
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- fsfe
|
- FSFE
|
||||||
- policy
|
- Policy
|
||||||
- security
|
- Security
|
||||||
|
|
||||||
---
|
---
|
||||||
Yesterday I’ve been asked by a good friend of mine why I am investing so much time in the [FSFE](https://fsfe.org) (Free Software¹ Foundation Europe) instead of putting more energy in other organisations with more focus on privacy issues. The background of his question is that I’m quite concerned about governmental and commercial surveillance and the lack of really private ways to communicate with each other and the impact this has on our online and offline behaviour. With Laura Poitras‘ recent movie „Citizenfour“ awarded with an Oscar, I use the media attention as an icebreaker to talk with my friends about these topics if the situation allows it.
|
Yesterday I’ve been asked by a good friend of mine why I am investing so much time in the [FSFE](https://fsfe.org) (Free Software¹ Foundation Europe) instead of putting more energy in other organisations with more focus on privacy issues. The background of his question is that I’m quite concerned about governmental and commercial surveillance and the lack of really private ways to communicate with each other and the impact this has on our online and offline behaviour. With Laura Poitras‘ recent movie „Citizenfour“ awarded with an Oscar, I use the media attention as an icebreaker to talk with my friends about these topics if the situation allows it.
|
||||||
|
|||||||
@@ -3,9 +3,10 @@ title: Erste Eindrücke aus Tansania
|
|||||||
date: 2015-04-14T08:05:07+00:00
|
date: 2015-04-14T08:05:07+00:00
|
||||||
aliases: erste-eindruecke-aus-tansania
|
aliases: erste-eindruecke-aus-tansania
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- tanzania
|
- Tanzania
|
||||||
|
|
||||||
---
|
---
|
||||||
Pole pole – das ist die typisch tansanische Mentalität, alles etwas ruhiger und langsamer angehen zu lassen. Und wahrscheinlich ist das auch der Grund, warum ich erst einen Monat nach meiner Ankunft in Tansania dazu komme, einen ersten Blogeintrag über meine bisherigen Erfahrungen zu schreiben. Ich bin hier von Anfang März bis Ende Juli als Freiwilliger in einer Organisation tätig, die die Bildung von jungen Menschen und der ländlichen Bevölkerung durch Einsatz und Schulung von IT verbessern will. Im Folgenden möchte ich kurz einen Rundumblick über mein Leben hier und die Bedingungen geben, konkret über meinen Alltag, die Gefahren, meine Arbeit als Freiwilliger, die einheimische Bevölkerung und Kultur, Wetter und Natur sowie das liebe Geld:
|
Pole pole – das ist die typisch tansanische Mentalität, alles etwas ruhiger und langsamer angehen zu lassen. Und wahrscheinlich ist das auch der Grund, warum ich erst einen Monat nach meiner Ankunft in Tansania dazu komme, einen ersten Blogeintrag über meine bisherigen Erfahrungen zu schreiben. Ich bin hier von Anfang März bis Ende Juli als Freiwilliger in einer Organisation tätig, die die Bildung von jungen Menschen und der ländlichen Bevölkerung durch Einsatz und Schulung von IT verbessern will. Im Folgenden möchte ich kurz einen Rundumblick über mein Leben hier und die Bedingungen geben, konkret über meinen Alltag, die Gefahren, meine Arbeit als Freiwilliger, die einheimische Bevölkerung und Kultur, Wetter und Natur sowie das liebe Geld:
|
||||||
|
|||||||
@@ -3,12 +3,13 @@ title: 'Nächster Halt: Endstation.'
|
|||||||
date: 2015-05-20T08:04:10+00:00
|
date: 2015-05-20T08:04:10+00:00
|
||||||
aliases: naechster-halt-endstation
|
aliases: naechster-halt-endstation
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- germany
|
- Policy
|
||||||
- policy
|
- Tanzania
|
||||||
- tanzania
|
headerimage:
|
||||||
headerimage: /blog/weselsky-putin.jpg
|
src: /blog/weselsky-putin.jpg
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -3,10 +3,11 @@ title: Technology and Free Software in Tanzania
|
|||||||
date: 2015-05-08T07:34:19+00:00
|
date: 2015-05-08T07:34:19+00:00
|
||||||
aliases: technology-and-free-software-in-tz
|
aliases: technology-and-free-software-in-tz
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- tanzania
|
- Tanzania
|
||||||
- policy
|
- Policy
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -3,13 +3,12 @@ title: splitDL – Downloading huge files from slow and unstable internet connec
|
|||||||
date: 2015-06-26T15:59:03+00:00
|
date: 2015-06-26T15:59:03+00:00
|
||||||
aliases: splitdl-downloading-huge-files-from-slow-and-unstable-internet-connections
|
aliases: splitdl-downloading-huge-files-from-slow-and-unstable-internet-connections
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- bash
|
- Code
|
||||||
- guide
|
- SystemAdministration
|
||||||
- server
|
- Tanzania
|
||||||
- tanzania
|
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
Imagine you want install GNU/Linux but your bandwidth won’t let you…
|
Imagine you want install GNU/Linux but your bandwidth won’t let you…
|
||||||
|
|||||||
@@ -3,12 +3,12 @@ title: Weiterer Teilerfolg beim Routerzwang
|
|||||||
date: 2015-07-22T06:48:01+00:00
|
date: 2015-07-22T06:48:01+00:00
|
||||||
aliases: weiterer-teilerfolg-beim-routerzwang
|
aliases: weiterer-teilerfolg-beim-routerzwang
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- fsfe
|
- FSFE
|
||||||
- germany
|
- Policy
|
||||||
- policy
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "Der lange Weg des Routerzwangs zur Endgerätefreiheit"
|
||||||
|
date: 2015-08-27
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- RouterFreedom
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: routercat.jpg
|
||||||
|
text: Bild via maxguru.blogspot.de
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 bottom webp
|
||||||
|
summary: In einem Gastbeitrag für Netzpolitik.org dokumentiere ich den jahrelangen Kampf gegen den Routerzwang und den nahenden Erfolg für die Endgerätefreiheit. Seit Anfang 2013 begleite ich als Koordinator des deutschen FSFE-Teams die Auseinandersetzung um die freie Routerwahl, die enorme Auswirkungen auf Privatsphäre, Sicherheit und Wettbewerb hat. Der Artikel zeichnet nach, wie das Bundesministerium für Wirtschaft und Energie Ende 2014 die Sache von der zögerlichen Bundesnetzagentur übernahm und einen zufriedenstellenden Gesetzentwurf vorlegte, der nun auf die Zustimmung von Bundesrat und Bundestag wartet.
|
||||||
|
article:
|
||||||
|
name: Netzpolitik.org
|
||||||
|
href: https://netzpolitik.org/2015/der-lange-weg-des-routerzwangs-zur-endgeraetefreiheit/
|
||||||
|
---
|
||||||
|
|
||||||
|
In einem Gastbeitrag für Netzpolitik.org dokumentiere ich den jahrelangen Kampf gegen den Routerzwang und den nahenden Erfolg für die Endgerätefreiheit. Seit Anfang 2013 begleite ich als Koordinator des deutschen FSFE-Teams die Auseinandersetzung um die freie Routerwahl, die enorme Auswirkungen auf Privatsphäre, Sicherheit und Wettbewerb hat. Der Artikel zeichnet nach, wie das Bundesministerium für Wirtschaft und Energie Ende 2014 die Sache von der zögerlichen Bundesnetzagentur übernahm und einen zufriedenstellenden Gesetzentwurf vorlegte, der nun auf die Zustimmung von Bundesrat und Bundestag wartet.
|
||||||
|
|
||||||
|
Der Beitrag erklärt die Bedeutung des passiven Netzabschlusspunkts, die geplante Verpflichtung zur Herausgabe von Zugangsdaten und das vorgesehene Bußgeld von 10.000 Euro bei Verstößen. Zudem rufe ich dazu auf, Volksvertreter zu kontaktieren, damit das Gesetz ohne weitere Einschränkungen verabschiedet wird, um das Minimum an Endgerätefreiheit, Verbraucherschutz und Sicherheit zu sichern. Doch der Weg ist noch nicht zu Ende:
|
||||||
|
|
||||||
|
> Doch auch danach wird es spannend. Stellen sich Internetanbieter bei der Verwendung eigener Geräte im Support quer? Können alle Geräte problemlos an alternativen Routern eingesetzt werden? Findet trotz Gesetz eine Diskriminierung irgendeiner Art statt? Ja, wir können uns über die bisherigen Erfolge freuen. Doch in diesem Thema steckt zu viel Geld, als dass wir uns in trügerischer Sicherheit wiegen dürften.
|
||||||
|
|
||||||
|
Der [vollständige Gastbeitrag](https://netzpolitik.org/2015/der-lange-weg-des-routerzwangs-zur-endgeraetefreiheit/) ist auf Netzpolitik.org verfügbar.
|
||||||
|
After Width: | Height: | Size: 25 KiB |
@@ -3,11 +3,11 @@ title: German Government wants authorities to advertise PDFreaders
|
|||||||
date: 2015-09-19T17:27:20+00:00
|
date: 2015-09-19T17:27:20+00:00
|
||||||
aliases: german-government-wants-authorities-to-advertise-pdfreaders
|
aliases: german-government-wants-authorities-to-advertise-pdfreaders
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- fsfe
|
- FSFE
|
||||||
- germany
|
- Policy
|
||||||
- policy
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
29
content/blog/2015-10-ct-sony-rootkit-kommentar/index.md
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
title: "Kommentar: 10 Jahre Sony-Rootkit – Why we should care (c't magazin)"
|
||||||
|
date: 2015-10-31
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- DRM
|
||||||
|
- Security
|
||||||
|
- FSFE
|
||||||
|
- Privacy
|
||||||
|
# headerimage:
|
||||||
|
# src: foo.jpg
|
||||||
|
# text: bar
|
||||||
|
summary: Im c't magazin veröffentlichte ich einen Kommentar zum 10. Jahrestag des Sony-Rootkit-Skandals. Ich argumentiere, dass Digital Rights Management (DRM) nicht aus der Welt ist und seine langfristigen Folgen unsere Gesellschaft vor immense Probleme stellen – von verlorener Innovation über eingeschränkte Nutzerrechte bis zur Kriminalisierung hunderttausender Menschen.
|
||||||
|
article:
|
||||||
|
name: c't magazin
|
||||||
|
href: https://www.heise.de/ct/artikel/Kommentar-10-Jahre-Sony-Rootkit-Why-we-should-care-2865608.html
|
||||||
|
---
|
||||||
|
|
||||||
|
In meinem Kommentar zum 10. Jahrestag des Sony-Rootkit-Skandals warne ich vor den anhaltenden Gefahren durch Digitale Rechteminderung (DRM). Zehn Jahre nach dem Skandal, bei dem Sony Käufer:innen von Musik-CDs eine Schadsoftware unterjubelte, stehen wir heute vor wählerischen Kaffeemaschinen, spionierenden E-Book-Readern und Autos, die nur Ersatzteile bestimmter Hersteller akzeptieren.
|
||||||
|
|
||||||
|
> Schlimmer noch ist aber der Verlust an Innovationspotenzial, den wir durch jedes weitere Produkt mit eingebauter Rechteminderung erleiden. Software oder Hardware der Zukunft wird immer auf der Benutzung und Modifikation der Geräte der Gegenwart aufbauen. Computer, in all ihren Erscheinungsformen, sind dabei die wichtigsten Geräte. Wenn diese essentiellen Werkzeuge künstlich beschränkt werden, schrumpfen die Möglichkeiten, mit ihnen Innovationen zu produzieren. Und anstatt Bestehendes weiterzuentwickeln, können wir es oft nicht einmal mehr selbst abändern oder reparieren.
|
||||||
|
|
||||||
|
Ich fordere ein positives "Right to Tinker" – ein Recht auf uneingeschränkte Nutzung, Modifikation und Experimentieren mit allen Geräten, die wir kaufen:
|
||||||
|
|
||||||
|
> Wir benötigen also ein positives Recht auf uneingeschränkte Nutzung, Modifikation und Experimentieren mit allen Geräten, die wir kaufen ("Right to Tinker"). Uns müssen die Geräte auch tatsächlich gehören, die wir erworben haben. Das wird noch elementarer in Hinsicht auf das aufblühende Internet der Dinge, in dem noch viel mehr Computer um uns herum sein werden. Ob sie dann unsere Werkzeuge für Innovation sein werden oder solche zu unserer Einschränkung, müssen wir bald entscheiden. (mho)
|
||||||
|
|
||||||
|
Der [vollständige Kommentar](https://www.heise.de/hintergrund/Kommentar-10-Jahre-Sony-Rootkit-Noch-viel-zu-tun-2865608.html) mit weiteren Details zu den gesellschaftlichen Folgen von DRM ist im c't magazin verfügbar.
|
||||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "10 Jahre Sony-Rootkit: Schadsoftware vom Hersteller (heise online)"
|
||||||
|
date: 2015-10-31
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- DRM
|
||||||
|
- Security
|
||||||
|
- FSFE
|
||||||
|
- Privacy
|
||||||
|
headerimage:
|
||||||
|
src: broken-cd.webp
|
||||||
|
summary: Auf heise online veröffentlichte ich einen Artikel zum 10. Jahrestag des Sony-Rootkit-Skandals. Ich schildere, wie Sony mit einem Kopierschutz-Rootkit etwa 22 Millionen Computer infizierte – darunter auch militärische Systeme – und dabei massive Sicherheitslücken aufriss, Datenverluste verursachte und Nutzer:innen ihrer Kontrolle beraubte.
|
||||||
|
article:
|
||||||
|
name: heise online
|
||||||
|
href: https://www.heise.de/newsticker/meldung/10-Jahre-Sony-Rootkit-Schadsoftware-vom-Hersteller-2865426.html
|
||||||
|
---
|
||||||
|
|
||||||
|
In meinem Artikel auf heise online erinnere ich an den bahnbrechenden Sony-Rootkit-Skandal von 2005. Vor zehn Jahren entdeckte Sicherheitsforscher Mark Russinovich zufällig, dass gekaufte Musik-CDs von Sony heimlich ein Schadprogramm auf Computern installierten. Das Extended Copy Protection-Rootkit sollte Kopiervorgänge verhindern, verursachte aber massive Probleme:
|
||||||
|
|
||||||
|
> Doch durch den unsauber programmierten Treiber beklagten zahlreiche Käufer Datenverluste, Systemabstürze oder Performanceprobleme. Das Rootkit ließ sich nicht einfach deinstallieren. Löschte man die zugehörigen Dateien, sorgten veränderte Registrierungsschlüssel dafür, dass das CD-Laufwerk des Computers unbenutzbar wurde.
|
||||||
|
|
||||||
|
Die Dimension des Skandals war enorm:
|
||||||
|
|
||||||
|
> Etwa 22 Millionen Computer wurden von dieser bösartigen Software infiziert, darunter auch Tausende in militärischen Einrichtungen. Das bedeutete teilweise eine immense Gefahr, da die Software anderer Malware auf dem System ermöglichte, sich besser vor Virenscannern zu verstecken. Erst nach einigem Hin und Her und wegen des wachsenden Drucks bot Sony knapp zwei Monate später ein funktionierendes Removal Tool an und rief die CDs zurück. Etwas vergleichbares hat sich ein Unternehmen seitdem nicht mehr getraut.
|
||||||
|
|
||||||
|
Der [vollständige Artikel](http://www.heise.de/newsticker/meldung/10-Jahre-Sony-Rootkit-Schadsoftware-vom-Hersteller-2865426.html) mit technischen Details zum Rootkit ist auf heise online verfügbar.
|
||||||
@@ -3,11 +3,12 @@ title: I love Free Software (Apps)
|
|||||||
date: 2016-02-14T09:00:18+00:00
|
date: 2016-02-14T09:00:18+00:00
|
||||||
aliases: i-love-free-software-apps
|
aliases: i-love-free-software-apps
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- chat
|
- Communication
|
||||||
- ilovefs
|
- ILoveFS
|
||||||
- security
|
- Security
|
||||||
|
|
||||||
---
|
---
|
||||||
Do you know being in a restaurant and getting a menu which is longer than the average novel, and you cannot decide for a single meal because every single one sounds more delicious than the other? That’s similar to the problem I was having when writing this blog post…
|
Do you know being in a restaurant and getting a menu which is longer than the average novel, and you cannot decide for a single meal because every single one sounds more delicious than the other? That’s similar to the problem I was having when writing this blog post…
|
||||||
|
|||||||
@@ -3,10 +3,9 @@ title: Switching my code from gitweb to Gogs
|
|||||||
date: 2016-02-26T17:05:18+00:00
|
date: 2016-02-26T17:05:18+00:00
|
||||||
aliases: switching-my-code-from-gitweb-to-gogs
|
aliases: switching-my-code-from-gitweb-to-gogs
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- tools
|
|
||||||
- guide
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
|
After Width: | Height: | Size: 119 KiB |
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
title: "Routerzwang und was Aktivisten daraus lernen können"
|
||||||
|
date: 2016-03-19
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- RouterFreedom
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: clt-2026.jpg
|
||||||
|
text: Foto von der Präsentation bei den Chemnitzer Linuxtagen 2016
|
||||||
|
video: https://www.youtube.com/watch?v=P5EMZ8VFuME
|
||||||
|
event:
|
||||||
|
name: Chemnitzer Linuxtage 2016
|
||||||
|
href: https://chemnitzer.linux-tage.de/2016/de/programm/beitrag/177
|
||||||
|
---
|
||||||
|
|
||||||
|
Bei den Chemnitzer Linuxtagen 2016 hielt ich einen Vortrag über die Routerzwang-Kampagne und die Lektionen, die Aktivisten daraus ziehen können. Zu diesem Zeitpunkt war der Kampf um Router-Freiheit in Deutschland noch in vollem Gange, aber erfolgversprechend – ein guter Moment, um sowohl über den bisherigen Verlauf zu berichten als auch über die Strategien, die sich als erfolgreich erwiesen hatten. Die Chemnitzer Linuxtage ziehen ein technisch versiertes Publikum an, das oft frustriert ist über politische Prozesse, aber auch das Potenzial hat, diese zu beeinflussen.
|
||||||
|
|
||||||
|
Der Vortrag erklärte zunächst das Problem: Telekommunikationsanbieter zwangen Kunden, deren Router zu nutzen, was technische Einschränkungen, Sicherheitsrisiken und Lock-in bedeutete. Ich zeigte dann, wie es der FSFE und Partnern gelang, dieses Thema auf die politische Agenda zu bringen: durch technische Dokumentation der Probleme, Mobilisierung betroffener Nutzer, Zusammenarbeit mit Verbraucherschutzorganisationen, und direkte Arbeit mit Gesetzgebern. Besonders wichtig war die Erkenntnis, dass man nicht nur protestieren, sondern konkrete Lösungsvorschläge und Gesetzestexte liefern muss.
|
||||||
|
|
||||||
|
Die Präsentation diente als Ermutigung für technische Communities, sich politisch einzumischen. Die Diskussion konzentrierte sich auf praktische Fragen: Wie findet man Zeit für Aktivismus neben Beruf und Familie? Wie arbeitet man mit Politikern zusammen, die die technischen Details nicht verstehen? Wie baut man Koalitionen mit Nicht-Tech-Organisationen? Der Vortrag zeigte, dass effektiver Technik-Aktivismus möglich ist, wenn man strategisch vorgeht und die richtigen Verbündeten findet.
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
title: "EU Radio Directive threatens competition and user rights"
|
||||||
|
date: 2016-03-01
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- RadioLockdown
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
summary: Im Newsletter des DVTM (Deutscher Verband für Telekommunikation und Medien) erschien mein Artikel über die Bedrohung durch die EU-Funkanlagenrichtlinie. Ich analysiere, wie die Richtlinie nicht nur Wettbewerb und Innovation gefährdet, sondern auch fundamentale Nutzerrechte einschränkt und kleinere Unternehmen vom Markt ausschließen könnte.
|
||||||
|
article:
|
||||||
|
name: DVTM Newsletter
|
||||||
|
href: https://www.dvtm.net
|
||||||
|
---
|
||||||
|
|
||||||
|
In meinem Artikel für den DVTM-Newsletter warne ich vor den weitreichenden Folgen der EU-Funkanlagenrichtlinie (Radio Equipment Directive, RED) für Wettbewerb und Nutzerrechte. Die Richtlinie droht, etablierte Geschäftsmodelle zu zerstören und Innovation im Funkbereich massiv zu behindern. Besonders problematisch: Kleinere Hersteller und innovative Startups können sich die aufwendigen Zertifizierungsverfahren oft nicht leisten, was zu einer Marktkonsolidierung zugunsten großer Konzerne führen würde. Gleichzeitig werden Nutzer:innen ihrer Freiheit beraubt, eigene Software auf ihren Geräten zu installieren oder Sicherheitslücken selbst zu schließen.
|
||||||
|
|
||||||
|
Ich betone, dass die Richtlinie auch die Telekommunikationsbranche direkt betrifft: Router-Hersteller, die auf offene Ökosysteme setzen, Anbieter von Netzwerklösungen und der gesamte Markt für Funkgeräte stehen vor existenziellen Herausforderungen. Die Kombination aus technischen Anforderungen und rechtlichen Unsicherheiten schafft ein Klima, das Innovation verhindert und den Wettbewerb zugunsten etablierter Anbieter verzerrt. Der Artikel verdeutlicht die Dringlichkeit, diese unverhältnismäßige Regulierung auf europäischer Ebene zu korrigieren.
|
||||||
|
|
||||||
|
Der vollständige Artikel war im DVTM-Newsletter verfügbar.
|
||||||
@@ -3,9 +3,10 @@ title: 'Getting oldschool, oder: Wie ich uncool wurde'
|
|||||||
date: 2016-03-28T13:39:45+00:00
|
date: 2016-03-28T13:39:45+00:00
|
||||||
aliases: getting-oldschool-oder-wie-ich-uncool-wurde
|
aliases: getting-oldschool-oder-wie-ich-uncool-wurde
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- chat
|
- Communication
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
28
content/blog/2016-07-cio-german-router-freedom-law/index.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "New law lets German internet users connect with their own routers (CIO.com)"
|
||||||
|
date: 2016-07-28
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- RouterFreedom
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
# headerimage:
|
||||||
|
# src: foo.jpg
|
||||||
|
# text: bar
|
||||||
|
summary: CIO.com reported on Germany's landmark router freedom law that ended compulsory routers. I was quoted on the significance of this success after years of FSFE advocacy, explaining how users can now freely choose and configure their own network equipment – a major victory for consumer rights and digital autonomy.
|
||||||
|
article:
|
||||||
|
name: CIO.com
|
||||||
|
href: https://web.archive.org/web/20190613105440/https://www.cio.com/article/3101864/new-law-lets-german-internet-users-connect-with-their-own-routers.html
|
||||||
|
---
|
||||||
|
|
||||||
|
CIO.com covered the implementation of Germany's groundbreaking router freedom law, which ended the practice of internet service providers forcing customers to use specific routers. I was quoted on this milestone achievement after years of advocacy by the FSFE and coalition partners. The new law establishes clear rules: ISPs must provide connection credentials to customers, allowing them to use routers of their choice, while ISPs remain responsible for the connection up to the network termination point.
|
||||||
|
|
||||||
|
I explained the broader implications beyond just router choice:
|
||||||
|
|
||||||
|
> This is about control over your own equipment, security updates, privacy, and the ability to customize your home network according to your needs rather than your ISP's limitations. It sets an important precedent for consumer rights in the digital age.
|
||||||
|
|
||||||
|
The law particularly benefits technically savvy users who want to run alternative firmware like OpenWrt, configure advanced security settings, or simply use more powerful hardware than ISPs typically provide.
|
||||||
|
|
||||||
|
The [full article](https://web.archive.org/web/20190613105440/https://www.cio.com/article/3101864/new-law-lets-german-internet-users-connect-with-their-own-routers.html) with details on the law's implementation timeline and industry reactions is available on CIO.com.
|
||||||
@@ -3,12 +3,12 @@ title: Der Routerzwang fällt – Und was bringt mir das?
|
|||||||
date: 2016-07-30T11:02:38+00:00
|
date: 2016-07-30T11:02:38+00:00
|
||||||
aliases: der-routerzwang-faellt-was-bringt-mir-das
|
aliases: der-routerzwang-faellt-was-bringt-mir-das
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- fsfe
|
- FSFE
|
||||||
- policy
|
- Policy
|
||||||
- germany
|
|
||||||
|
|
||||||
---
|
---
|
||||||
_Diesen Artikel habe ich ursprünglich als [Gastbeitrag für Netzpolitik.org][1] geschrieben._
|
_Diesen Artikel habe ich ursprünglich als [Gastbeitrag für Netzpolitik.org][1] geschrieben._
|
||||||
|
|||||||
26
content/blog/2016-07-sz-routerzwang-ende/index.md
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: "Der Routerzwang endet - was Internetnutzer jetzt wissen müssen (Süddeutsche Zeitung)"
|
||||||
|
date: 2016-07-28
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- RouterFreedom
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: router.jpg
|
||||||
|
text: "Foto: Frank Rumpenhorst/dpa, Quelle: Süddeutsche Zeitung"
|
||||||
|
summary: Die Süddeutsche Zeitung veröffentlichte einen umfassenden Artikel zum Ende des Routerzwangs, in dem ich mehrfach zitiert werde. Ich erkläre die Probleme mit den Zwangsroutern -- von schlechter technischer Umsetzung über fehlende Sicherheitsupdates bis zu mangelnden Funktionen -- und gebe praktische Hinweise für Nutzer:innen zur Umstellung.
|
||||||
|
article:
|
||||||
|
name: Süddeutsche Zeitung
|
||||||
|
href: https://www.sueddeutsche.de/wirtschaft/internet-der-routerzwang-endet-was-internetnutzer-jetzt-wissen-muessen-1.3095231
|
||||||
|
---
|
||||||
|
|
||||||
|
In der Süddeutschen Zeitung erkläre ich im Rahmen eines umfassenden FAQ-Artikels die Hintergründe zum Ende des Routerzwangs ab 1. August 2016. Auf die Frage, warum freie Routerwahl besser ist, antwortete ich:
|
||||||
|
|
||||||
|
> Es waren oft Geräte, die technisch schlecht umgesetzt waren und kaum Sicherheitsfunktionen hatten. Internetanbieter haben Sicherheits-Updates der Hersteller oft nicht sofort eingespielt. Und nicht alle Router erfüllen alle Funktionen, die Kunden gerne hätten. Gewisse Telefone oder Fernseher können nicht an die vorgegebenen Router angeschlossen werden, weil diese bestimmte Funktionen nicht haben.
|
||||||
|
|
||||||
|
Für die praktische Umsetzung rate ich zur Vorsicht: "In der Umbruchszeit sollte man sich bei Kabelanschlüssen informieren, ob ein Routermodell für einen Kabelanbieter funktioniert." Um anderen Nutzer:innen bei der Umstellung zu helfen, sammle ich Erfahrungsberichte zu möglichen Schwierigkeiten in einem Wiki. Der Artikel erklärt auch wichtige Details für Bestandskund:innen, die Unterschiede zwischen Kabel- und DSL-Anbietern, sowie was zu tun ist, wenn Anbieter die Zugangsdaten nicht herausrücken wollen: Beschwerden bei der Bundesnetzagentur oder Verbraucherzentralen.
|
||||||
|
|
||||||
|
Der [vollständige FAQ-Artikel](https://www.sueddeutsche.de/wirtschaft/internet-der-routerzwang-endet-was-internetnutzer-jetzt-wissen-muessen-1.3095231) mit allen Details zur rechtlichen Situation und praktischen Umsetzung ist in der Süddeutschen Zeitung verfügbar.
|
||||||
BIN
content/blog/2016-07-sz-routerzwang-ende/router.jpg
Normal file
|
After Width: | Height: | Size: 164 KiB |
@@ -3,12 +3,11 @@ title: Erste Testgeräte für Routerfreiheit versendet
|
|||||||
date: 2016-08-08T09:11:51+00:00
|
date: 2016-08-08T09:11:51+00:00
|
||||||
aliases: erste-testgeraete-fuer-routerfreiheit-versendet
|
aliases: erste-testgeraete-fuer-routerfreiheit-versendet
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- fsfe
|
- FSFE
|
||||||
- germany
|
|
||||||
- guide
|
|
||||||
|
|
||||||
---
|
---
|
||||||
Wie Ihr vielleicht schon mitbekommen habt, ist am 1. August die Welt etwas freier geworden. Nun nämlich ist das [Gesetz für Endgerätefreiheit][1] in Kraft, welches endlich erlaubt, dass Kunden deutscher Internetanbieter einen Router oder ein Modem ihrer Wahl an ihren Anschluss klemmen dürfen. Die [FSFE][2] hat sich von Anfang an für dieses Recht eingesetzt und schlussendlich haben wir diesen großen Erfolg errungen, der den [Routerzwang][3] endgültig abschaffen soll.
|
Wie Ihr vielleicht schon mitbekommen habt, ist am 1. August die Welt etwas freier geworden. Nun nämlich ist das [Gesetz für Endgerätefreiheit][1] in Kraft, welches endlich erlaubt, dass Kunden deutscher Internetanbieter einen Router oder ein Modem ihrer Wahl an ihren Anschluss klemmen dürfen. Die [FSFE][2] hat sich von Anfang an für dieses Recht eingesetzt und schlussendlich haben wir diesen großen Erfolg errungen, der den [Routerzwang][3] endgültig abschaffen soll.
|
||||||
|
|||||||
@@ -3,14 +3,13 @@ title: FrOSCon 2016 – Ein Rückblick
|
|||||||
date: 2016-08-26T13:57:48+00:00
|
date: 2016-08-26T13:57:48+00:00
|
||||||
aliases: froscon-2016-ein-rueckblick
|
aliases: froscon-2016-ein-rueckblick
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- report
|
- FSFE
|
||||||
- fsfe
|
- RadioLockdown
|
||||||
- germany
|
- Policy
|
||||||
- radiolockdown
|
|
||||||
- policy
|
|
||||||
|
|
||||||
---
|
---
|
||||||
_For English readers: This is a short report about the last FrOSCon conference with some pictures and the talk recordings. Have a look at Polina’s talk (second video), it’s in English!_
|
_For English readers: This is a short report about the last FrOSCon conference with some pictures and the talk recordings. Have a look at Polina’s talk (second video), it’s in English!_
|
||||||
|
|||||||
|
After Width: | Height: | Size: 277 KiB |
27
content/blog/2016-08-froscon-routers-radio-lockdown/index.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: "Routerzwang und Funkabschottung - Was Aktivisten daraus lernen können"
|
||||||
|
date: 2016-08-20
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- RadioLockdown
|
||||||
|
- RouterFreedom
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: froscon-2016.jpg
|
||||||
|
text: Foto von der Präsentation bei der FrOSCon 2016
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 center webp
|
||||||
|
video: https://www.youtube.com/watch?v=CdRQtaePiIs
|
||||||
|
event:
|
||||||
|
name: FrOSCon 2016
|
||||||
|
href: https://programm.froscon.de/2016/events/1738.html
|
||||||
|
---
|
||||||
|
|
||||||
|
Bei der FrOSCon 2016 in Sankt Augustin präsentierte ich zwei Fallstudien digitalen Aktivismus: den erfolgreichen Kampf gegen den Routerzwang in Deutschland und die laufende Kampagne gegen die EU-Funkabschottungs-Richtlinie. Die FrOSCon (Free and Open Source Software Conference) bringt vorwiegend deutschsprachige Free-Software-Enthusiasten zusammen, die sowohl technisch versiert sind als auch ein Interesse an den politischen Rahmenbedingungen für Freie Software haben.
|
||||||
|
|
||||||
|
Der Vortrag analysierte den Erfolg der Routerfreiheits-Kampagne: Trotz massiven Widerstands der Telekommunikationsbranche war es gelungen, ein Gesetz durchzusetzen, das Verbrauchern die freie Wahl ihres Routers garantiert. Ich zeigte auf, welche Strategien erfolgreich waren – von der Mobilisierung breiter Unterstützung über die Zusammenarbeit mit Verbraucherschützern bis hin zur Lieferung technischer Expertise für politische Entscheidungsträger. Diese Lektionen wandte ich dann auf die drohende Funkabschottung an: Eine EU-Richtlinie, die unter dem Vorwand der Frequenzregulierung zu einem Lockdown aller funkfähigen Geräte führen könnte.
|
||||||
|
|
||||||
|
Die Präsentation war als Aktivismus-Leitfaden konzipiert: Sie zeigte nicht nur Probleme auf, sondern auch konkrete Wege, wie technische Communities politischen Einfluss nehmen können. Die Diskussion drehte sich um praktische Fragen: Wie findet man Verbündete außerhalb der Tech-Szene? Wie kommuniziert man technische Themen an Politiker? Wie baut man Druck auf, ohne in reinem Protest stecken zu bleiben? Für das FrOSCon-Publikum war dies eine Ermutigung, dass technischer Aktivismus Wirkung zeigen kann.
|
||||||
|
After Width: | Height: | Size: 154 KiB |
@@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
title: "Über die Vorteile von Freier Software und Tech-Konferenzen, die keine sind (Netzpolitik.org)"
|
||||||
|
date: 2016-08-08
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- Community
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: fsfe-summit-banner.jpg
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 left webp
|
||||||
|
summary: Netzpolitik.org veröffentlichte ein ausführliches Interview mit mir über Freie Software, Tech-Aktivismus und den FSFE Summit 2016. Ich erläutere, warum die Kontrolle über Technik immer brennender wird, wie Freie Software gerade Entwicklungsländern hilft, und warum eine nicht rein technische Konferenz zum 15-jährigen FSFE-Jubiläum genau richtig ist.
|
||||||
|
article:
|
||||||
|
name: Netzpolitik.org
|
||||||
|
href: https://netzpolitik.org/2016/interview-mit-max-mehl-ueber-die-vorteile-von-freier-software-und-tech-konferenzen-die-keine-sind/
|
||||||
|
---
|
||||||
|
|
||||||
|
Im Interview mit Netzpolitik.org erkläre ich anlässlich des 15-jährigen FSFE-Jubiläums und des bevorstehenden FSFE Summit, warum Freie Software weit über technische Aspekte hinausgeht. Die drängendsten Themen sehe ich im Internet of Things – den vielen kleinen Geräten in unseren Wohnungen – und der Frage nach Kontrolle über unsere Daten. Zur Ausrichtung des Summit als "keine Tech-Konferenz" betone ich:
|
||||||
|
|
||||||
|
> Es geht bei unserem Summit eher um die Gestaltung der Welt der Technik, nicht rein um Software an sich. [...] Wir arbeiten seit fünfzehn Jahren daran, die Bedingungen für Freie Software zu verbessern und damit elementare Rechte für alle Menschen in Europa zu schützen.
|
||||||
|
|
||||||
|
Ich schilde außerdem meine Erfahrungen aus Tansania, wo ich die Vorteile von Freier Software für Entwicklungsländer kennengelernt habe:
|
||||||
|
|
||||||
|
> Viele Lizenzkosten sind gerade für Bildungseinrichtungen in Entwicklungsländern exorbitant teuer. Der Vendor-Lock-in [...] versetzt Schulen gerne mal den finanziellen Todesstoß. Gleichzeitig ermöglicht Freie Software, dass etwa lokale Anbieter für ein Unternehmen oder eine Uni Anpassungen an der Software vornehmen können, und zwar in einem Finanzrahmen, der den dortigen Verhältnissen entspricht.
|
||||||
|
|
||||||
|
Warum ich mich für Freie Software einsetze?
|
||||||
|
|
||||||
|
> Ich habe gemerkt, dass Software ein elementarer Bestandteil unseres heutigen Lebens ist. [...] Dabei stellt sich mir die Frage, ob wir zulassen möchten, dass Software uns kontrolliert und nicht andersrum.
|
||||||
|
|
||||||
|
Das [vollständige Interview](https://netzpolitik.org/2016/interview-mit-max-mehl-ueber-die-vorteile-von-freier-software-und-tech-konferenzen-die-keine-sind/) mit weiteren Details zur FSFE-Strategie, europäischem Aktivismus und dem Summit-Programm ist auf Netzpolitik.org verfügbar.
|
||||||
|
After Width: | Height: | Size: 119 KiB |
27
content/blog/2016-09-deutschlandfunk-router-freedom/index.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: "Schluss mit dem Routerzwang - Deutschlandfunk"
|
||||||
|
date: 2016-09-01
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- podcast
|
||||||
|
tags:
|
||||||
|
- RouterFreedom
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
audio: https://up.mehl.mx/audio/20160901-dlf-routerzwang.ogg
|
||||||
|
summary: Im Deutschlandfunk-Magazin "Computer und Kommunikation" sprach ich über das Ende des Routerzwangs in Deutschland und was die neue Regelung für Verbraucher bedeutet. Nach jahrelangem Kampf war es gelungen, ein Gesetz durchzusetzen, das Kunden die freie Wahl ihres Routers garantiert – ein wichtiger Sieg für Verbraucherrechte und technische Selbstbestimmung. Der Deutschlandfunk erreicht ein breites, auch nicht-technisches Publikum, dem ich erklären konnte, warum dieses scheinbar technische Thema für jeden relevant ist.
|
||||||
|
headerimage:
|
||||||
|
src: dlf-studio.jpg
|
||||||
|
text: Die Gästerunde mit Moderator Stefan Römermann in der Sendung Marktplatz. (Deutschlandradio/ Stefan Römermann)
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 top webp
|
||||||
|
event:
|
||||||
|
name: Deutschlandfunk Computer und Kommunikation
|
||||||
|
href: https://www.deutschlandfunk.de/dsl-modem-und-kabelrouter-schluss-mit-dem-routerzwang.772.de.html?dram:article_id=362214
|
||||||
|
---
|
||||||
|
|
||||||
|
Im Deutschlandfunk-Magazin "Computer und Kommunikation" sprach ich über das Ende des Routerzwangs in Deutschland und was die neue Regelung für Verbraucher bedeutet. Nach jahrelangem Kampf war es gelungen, ein Gesetz durchzusetzen, das Kunden die freie Wahl ihres Routers garantiert – ein wichtiger Sieg für Verbraucherrechte und technische Selbstbestimmung. Der Deutschlandfunk erreicht ein breites, auch nicht-technisches Publikum, dem ich erklären konnte, warum dieses scheinbar technische Thema für jeden relevant ist.
|
||||||
|
|
||||||
|
Ich erläuterte, warum Telekommunikationsanbieter jahrelang versucht hatten, Kunden auf ihre eigenen Router zu zwingen: Kontrolle über die Heimnetzwerke, zusätzliche Einnahmequellen durch Router-Miete, und die Möglichkeit, Features zu beschränken oder zu überwachen. Die neue Regelung bedeutete nicht nur mehr Auswahl, sondern auch bessere Sicherheit (weil Kunden Updates selbst kontrollieren können), mehr Funktionalität (durch Firmware wie OpenWRT), und echte Kontrolle über das eigene Netzwerk. Für technisch Versierte war das selbstverständlich – für viele Hörer war es eine Überraschung, dass sie bisher diese Freiheit nicht hatten.
|
||||||
|
|
||||||
|
Das Interview half, ein komplexes technisches und rechtliches Thema einem Massenpublikum zugänglich zu machen und zu erklären, warum diese Regulierung ein Erfolg für digitale Selbstbestimmung war. Es zeigte auch, dass scheinbar aussichtslose Kämpfe gegen Telekommunikationsanbieter gewonnen werden können, wenn technische Expertise, Verbraucherinteressen und politischer Wille zusammenkommen.
|
||||||
@@ -3,12 +3,12 @@ title: Endgerätefreiheit testen – Es sind wieder Router verfügbar!
|
|||||||
date: 2016-09-23T09:23:09+00:00
|
date: 2016-09-23T09:23:09+00:00
|
||||||
aliases: endgeraetefreiheit-testen-es-sind-wieder-router-verfuegbar
|
aliases: endgeraetefreiheit-testen-es-sind-wieder-router-verfuegbar
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- fsfe
|
- FSFE
|
||||||
- germany
|
- Policy
|
||||||
- policy
|
|
||||||
|
|
||||||
---
|
---
|
||||||
Seit dem 1. August herrscht – auch dank der langfristigen Arbeit der FSFE – gesetzlich [Endgerätefreiheit][1] in Deutschland, sprich alle Kundinnen und Kunden eines DSL- oder Kabelanbieters sollen die Freiheit haben, ein Modem oder Router ihrer Wahl anzuschließen, ohne systematisch benachteiligt zu werden. Doch halten die Anbieter das wirklich ein? Die FSFE testet das mit Hilfe großartiger Freiwilliger, denen wir alternative Testgeräte zuschicken. Und davon sind aktuell wieder ein paar verfügbar und warten auf neue Tester!
|
Seit dem 1. August herrscht – auch dank der langfristigen Arbeit der FSFE – gesetzlich [Endgerätefreiheit][1] in Deutschland, sprich alle Kundinnen und Kunden eines DSL- oder Kabelanbieters sollen die Freiheit haben, ein Modem oder Router ihrer Wahl anzuschließen, ohne systematisch benachteiligt zu werden. Doch halten die Anbieter das wirklich ein? Die FSFE testet das mit Hilfe großartiger Freiwilliger, denen wir alternative Testgeräte zuschicken. Und davon sind aktuell wieder ein paar verfügbar und warten auf neue Tester!
|
||||||
|
|||||||
24
content/blog/2016-09-ispa-radio-lockdown-directive/index.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
title: "Funkabschottungsrichtlinie - Gefahr für Nutzerrechte und Unternehmen (ISPA News)"
|
||||||
|
date: 2016-09-01
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- RadioLockdown
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: radio-cage.jpg
|
||||||
|
summary: In den ISPA News erschien mein Artikel über die Bedrohung durch die EU-Funkanlagenrichtlinie. Ich erläutere, wie Artikel 3(3)(i) der RED nicht nur Nutzerrechte gefährdet, sondern auch für technologieorientierte Unternehmen und die Open-Source-Community existenzielle Risiken birgt – von Router-Herstellern über Funkgeräte bis hin zu IoT-Produkten.
|
||||||
|
article:
|
||||||
|
name: ISPA News
|
||||||
|
href: https://up.mehl.mx/docs/2016-03-ISPA-News.pdf
|
||||||
|
---
|
||||||
|
|
||||||
|
In meinem Artikel für die ISPA News (Internet Service Providers Austria) analysiere ich die weitreichenden Folgen der EU-Funkanlagenrichtlinie (Radio Equipment Directive, RED) für Nutzerrechte und Unternehmen. Artikel 3(3)(i) der Richtlinie verlangt, dass Hersteller sicherstellen müssen, dass nur konforme Software auf Funkgeräten läuft -- ein Regelwerk, das in der Praxis einem vollständigen Lockdown gleichkommt. Ich zeige auf, wie dies Nutzer:innen daran hindern würde, alternative Firmware auf ihren Routern, Smartphones oder anderen Funkgeräten zu installieren, und damit fundamentale Freiheitsrechte beschneidet.
|
||||||
|
|
||||||
|
Besonders problematisch: Die Richtlinie trifft nicht nur Endnutzer:innen, sondern bedroht auch zahlreiche Unternehmen und Projekte in ihrer Existenz. Router-Hersteller, die auf OpenWrt setzen, innovative Startups im IoT-Bereich, Forschungseinrichtungen und die gesamte Open-Source-Community im Funkbereich stehen vor unüberwindlichen Hürden. Die Kosten für Compliance-Verfahren würden insbesondere kleine und mittlere Unternehmen sowie Non-Profit-Projekte ausschließen. Der Artikel verdeutlicht die Notwendigkeit, diese unverhältnismäßige Regulierung zu verhindern.
|
||||||
|
|
||||||
|
Der vollständige Artikel ist in den [ISPA News](https://www.ispa.at/wissenspool/ispa-news/) 03/2026 erschienen.
|
||||||
|
After Width: | Height: | Size: 82 KiB |
@@ -3,13 +3,13 @@ title: „Schluss mit dem Routerzwang“ – Radiosendung im Deutschlandfunk
|
|||||||
date: 2016-09-01T16:44:26+00:00
|
date: 2016-09-01T16:44:26+00:00
|
||||||
aliases: schluss-mit-dem-routerzwang-radiosendung-im-deutschlandfunk
|
aliases: schluss-mit-dem-routerzwang-radiosendung-im-deutschlandfunk
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- fsfe
|
- FSFE
|
||||||
- germany
|
- Security
|
||||||
- security
|
- Policy
|
||||||
- policy
|
|
||||||
|
|
||||||
---
|
---
|
||||||
Heute war ich beim Deutschlandfunk zu einer [Radiosendung über den Routerzwang][1] eingeladen. Wir haben etwa eine Stunde lang darüber geredet, warum es so wichtig ist, dass wir seit dem 1. August endlich [Routerfreiheit][2] in Deutschland haben, was das für Verbraucher bringt und welche Fragen noch ungeklärt sind.
|
Heute war ich beim Deutschlandfunk zu einer [Radiosendung über den Routerzwang][1] eingeladen. Wir haben etwa eine Stunde lang darüber geredet, warum es so wichtig ist, dass wir seit dem 1. August endlich [Routerfreiheit][2] in Deutschland haben, was das für Verbraucher bringt und welche Fragen noch ungeklärt sind.
|
||||||
|
|||||||
@@ -3,12 +3,12 @@ title: Freie Software – Definition in Dortmund
|
|||||||
date: 2016-10-13T17:22:16+00:00
|
date: 2016-10-13T17:22:16+00:00
|
||||||
aliases: freie-software-definition-in-dortmund
|
aliases: freie-software-definition-in-dortmund
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- fsfe
|
- FSFE
|
||||||
- germany
|
- Policy
|
||||||
- policy
|
- Security
|
||||||
- security
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,11 @@ title: Build FSFE websites locally
|
|||||||
date: 2016-11-13T23:00:44+00:00
|
date: 2016-11-13T23:00:44+00:00
|
||||||
aliases: build-fsfe-websites-locally
|
aliases: build-fsfe-websites-locally
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- bash
|
- Code
|
||||||
- fsfe
|
- FSFE
|
||||||
- guide
|
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
_Note: This guide is also available [in FSFE’s wiki][1] now, and it will be the only version maintained. So please head over to the wiki if you’re planning to follow this guide._
|
_Note: This guide is also available [in FSFE’s wiki][1] now, and it will be the only version maintained. So please head over to the wiki if you’re planning to follow this guide._
|
||||||
|
|||||||
@@ -3,13 +3,12 @@ title: OpenRheinRuhr 2016 – A report of iron and freedom
|
|||||||
date: 2016-11-09T21:55:53+00:00
|
date: 2016-11-09T21:55:53+00:00
|
||||||
aliases: openrheinruhr-2016-a-report-of-iron-and-freedom
|
aliases: openrheinruhr-2016-a-report-of-iron-and-freedom
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- report
|
- FSFE
|
||||||
- fsfe
|
- RouterFreedom
|
||||||
- germany
|
- RadioLockdown
|
||||||
- routerfreedom
|
|
||||||
- radiolockdown
|
|
||||||
|
|
||||||
---
|
---
|
||||||
Last weekend, I visited Oberhausen to participate in [OpenRheinRuhr][1], a well-known Free Software event in north-western Germany. Over two days I was part of [FSFE][2]’s booth team, gave a talk, and enjoyed talking to tons of like-minded people about politics, technology and other stuff. In the next few minutes you will learn what coat hangers have to do with flat irons and which hotel you shouldn’t book if you plan to visit Oberhausen.
|
Last weekend, I visited Oberhausen to participate in [OpenRheinRuhr][1], a well-known Free Software event in north-western Germany. Over two days I was part of [FSFE][2]’s booth team, gave a talk, and enjoyed talking to tons of like-minded people about politics, technology and other stuff. In the next few minutes you will learn what coat hangers have to do with flat irons and which hotel you shouldn’t book if you plan to visit Oberhausen.
|
||||||
|
|||||||
BIN
content/blog/2016-12-33c3-routers-radio-lockdown/33c3-2016.jpg
Normal file
|
After Width: | Height: | Size: 329 KiB |
26
content/blog/2016-12-33c3-routers-radio-lockdown/index.md
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: "Routerzwang und Funkabschottung - Was Aktivisten daraus lernen können"
|
||||||
|
date: 2016-12-27
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- RouterFreedom
|
||||||
|
- RadioLockdown
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: 33c3-2016.jpg
|
||||||
|
summary: "Beim 33. Chaos Communication Congress (33c3) in Hamburg präsentierte ich zwei erfolgreiche Aktivismuskampagnen und was andere daraus lernen können: den Kampf gegen den Routerzwang in Deutschland und die laufende Kampagne gegen die EU-Funkabschottungs-Richtlinie. Der CCC bringt tausende Hacker, Aktivisten und technisch Versierte zusammen – genau die Zielgruppe, die sowohl von diesen Themen betroffen ist als auch die Fähigkeiten hat, effektiv gegen diese und ähnliche Missstände einzutreten."
|
||||||
|
video: https://media.ccc.de/v/33c3-8024-routerzwang_und_funkabschottung
|
||||||
|
slides: https://download.fsfe.org/presentations/20161227-mm-33C3-Radio+Router.de.pdf
|
||||||
|
event:
|
||||||
|
name: 33c3
|
||||||
|
href: https://fahrplan.events.ccc.de/congress/2016/Fahrplan/events/8024.html
|
||||||
|
---
|
||||||
|
|
||||||
|
Beim 33. Chaos Communication Congress (33c3) in Hamburg präsentierte ich zwei erfolgreiche Aktivismuskampagnen und was andere daraus lernen können: den Kampf gegen den Routerzwang in Deutschland und die laufende Kampagne gegen die EU-Funkabschottungs-Richtlinie. Der CCC bringt tausende Hacker, Aktivisten und technisch Versierte zusammen – genau die Zielgruppe, die sowohl von diesen Themen betroffen ist als auch die Fähigkeiten hat, effektiv gegen diese und ähnliche Missstände einzutreten.
|
||||||
|
|
||||||
|
Der Vortrag erzählte zuerst die Erfolgsgeschichte der Routerfreiheit: Wie es der FSFE und Verbündeten gelang, gegen massive Lobbying-Anstrengungen der Telekommunikationsanbieter ein Gesetz durchzusetzen, das Kunden die freie Wahl ihres Routers garantiert. Ich analysierte, welche Strategien funktionierten -- breite Koalitionen, technische Expertise trifft Politik, öffentlicher Druck -- und was weniger erfolgreich war. Dann wendete ich diese Lektionen auf die aktuell drohende Funkabschottung durch die EU Radio Equipment Directive an: eine noch größere Bedrohung, die aber mit ähnlichen Taktiken angegangen werden könnte.
|
||||||
|
|
||||||
|
Der Vortrag war bewusst als Aktivismus-Workshop konzipiert. Die Diskussion fokussierte sich darauf, wie technische Communities ihre Expertise nutzen können, um politische Prozesse zu beeinflussen, wie man effektive Koalitionen bildet, und warum es wichtig ist, nicht nur zu protestieren, sondern konstruktive Lösungsvorschläge zu entwickeln. Für das CCC-Publikum, das oft skeptisch gegenüber "Politik" ist, zeigte der Vortrag, dass technischer Einfluss auf Regulierung möglich und notwendig ist.
|
||||||
|
After Width: | Height: | Size: 509 KiB |
@@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
title: "Freie Software, Freie Gesellschaft. Warum analoge Freiheit nicht mehr ohne digitale Freiheit gedacht werden kann (Zurich Globalist)"
|
||||||
|
date: 2016-12-07
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- Policy
|
||||||
|
- Privacy
|
||||||
|
headerimage:
|
||||||
|
src: free-software-free-society.jpg
|
||||||
|
text: Free Software, Free Society
|
||||||
|
summary: Im Zurich Globalist erschien mein Artikel über die Untrennbarkeit von analoger und digitaler Freiheit. Ich argumentiere, dass Freie Software nicht nur ein technisches Thema ist, sondern fundamentale demokratische Grundrechte in der digitalen Gesellschaft schützt -- von Meinungsfreiheit über Privatsphäre bis hin zu Selbstbestimmung.
|
||||||
|
article:
|
||||||
|
name: Zurich Globalist
|
||||||
|
href: http://www.zurichglobalist.uzh.ch/dam/jcr:3576081b-18a9-4d80-95a9-fcc13071974c/Zurich%20Globalist_Freedom.pdf
|
||||||
|
---
|
||||||
|
|
||||||
|
In meinem Artikel für den Zurich Globalist argumentiere ich, dass digitale und analoge Freiheiten heute untrennbar miteinander verbunden sind. In einer Welt, in der nahezu alle Lebensbereiche von Software durchdrungen sind -- von Kommunikation über Arbeit bis hin zu staatlichen Dienstleistungen -- ist die Freiheit der Software zur Grundvoraussetzung für individuelle Freiheit geworden. Ohne die Möglichkeit, Software zu verstehen, zu teilen und zu verändern, werden fundamentale Grundrechte wie Meinungsfreiheit, Versammlungsfreiheit und das Recht auf Privatsphäre faktisch eingeschränkt.
|
||||||
|
|
||||||
|
Ich zeige auf, dass proprietäre Software uns in Abhängigkeiten zwingt und demokratische Kontrolle unmöglich macht. Freie Software hingegen ermöglicht Transparenz, Selbstbestimmung und Innovation. Sie ist nicht nur eine technische Präferenz, sondern eine politische Notwendigkeit für eine freie Gesellschaft im digitalen Zeitalter. Der Artikel verdeutlicht, warum wir analoge Freiheiten nicht mehr ohne digitale Freiheiten denken können -- und umgekehrt.
|
||||||
|
|
||||||
|
Der vollständige Artikel erschien erstmals im [Zurich Globalist #7](http://www.zurichglobalist.uzh.ch/dam/jcr:3576081b-18a9-4d80-95a9-fcc13071974c/Zurich%20Globalist_Freedom.pdf).
|
||||||
BIN
content/blog/2017-02-fosdem-radio-lockdown/firstslide.jpg
Normal file
|
After Width: | Height: | Size: 70 KiB |
24
content/blog/2017-02-fosdem-radio-lockdown/index.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
title: "Radio Lockdown Directive - Major Threat for Free Software on Radio Devices"
|
||||||
|
date: 2017-02-04
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- RadioLockdown
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: firstslide.jpg
|
||||||
|
video: https://archive.fosdem.org/2017/schedule/event/radio_lockdown_directive/
|
||||||
|
slides: https://download.fsfe.org/presentations/20170204-mm-FOSDEM-Radiolockdown.en.pdf
|
||||||
|
event:
|
||||||
|
name: FOSDEM 2017
|
||||||
|
href: https://archive.fosdem.org/2017/schedule/event/radio_lockdown_directive/
|
||||||
|
---
|
||||||
|
|
||||||
|
At FOSDEM 2017, I presented on the EU Radio Equipment Directive and its potential to become a major threat for Free Software on radio-capable devices. This talk was part of raising awareness in the Free Software community about an emerging regulatory threat that could fundamentally undermine software freedom on billions of devices. The Radio Equipment Directive (RED), ostensibly designed to ensure radio equipment compliance, contained provisions that could be interpreted to require device lockdown preventing any software modifications.
|
||||||
|
|
||||||
|
The presentation explained the technical and legal mechanisms by which this directive could be used to lock down devices containing radio hardware – essentially everything from smartphones to laptops to IoT devices. I detailed how manufacturers might interpret compliance requirements as necessitating complete software control, preventing users from installing alternative operating systems, modifying firmware, or running Free Software they choose. The talk outlined the threat not just to hobbyists and tinkerers, but to the entire Free Software ecosystem that depends on users' ability to control their computing devices.
|
||||||
|
|
||||||
|
The FOSDEM audience, as one of the largest gatherings of Free Software developers in Europe, was a critical venue for this message. Especially the discussions after the presentation focused on strategies for engaging with EU regulators, building coalitions with other affected communities (security researchers, hardware hackers, consumer rights advocates), and ensuring that compliance mechanisms preserve rather than eliminate software freedom. This talk was part of a sustained FSFE campaign that ran for more than 10 years.
|
||||||
@@ -5,12 +5,12 @@ type: post
|
|||||||
date: 2017-02-14T07:30:51+00:00
|
date: 2017-02-14T07:30:51+00:00
|
||||||
url: /blog/2017/i-love-astroid-ilovefs
|
url: /blog/2017/i-love-astroid-ilovefs
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- email
|
- Communication
|
||||||
- fsfe
|
- FSFE
|
||||||
- ilovefs
|
- ILoveFS
|
||||||
- tools
|
|
||||||
|
|
||||||
---
|
---
|
||||||
You cannot imagine how long I’ve waited to write this blog post. Normally I’m not the bragging kind of guy but for this year’s edition of my „[I love Free Software][1]“ declaration articles (after [2014][2], [2015][3] and [2016][4]) I just want to shout out to the world: I have the world’s best mail client: [astroid][5]!
|
You cannot imagine how long I’ve waited to write this blog post. Normally I’m not the bragging kind of guy but for this year’s edition of my „[I love Free Software][1]“ declaration articles (after [2014][2], [2015][3] and [2016][4]) I just want to shout out to the world: I have the world’s best mail client: [astroid][5]!
|
||||||
|
|||||||
|
After Width: | Height: | Size: 66 KiB |
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
title: "Funkabschottung - Unsere Geräte in Gefahr"
|
||||||
|
date: 2017-03-11
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- RadioLockdown
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: firstslide.jpg
|
||||||
|
video: https://chemnitzer.linux-tage.de/2017/en/programm/beitrag/266
|
||||||
|
slides: https://download.fsfe.org/presentations/20170311-mm-CLT-RadioLockdown.de.pdf
|
||||||
|
event:
|
||||||
|
name: Chemnitzer Linuxtage 2017
|
||||||
|
href: https://chemnitzer.linux-tage.de/2017/en/programm/beitrag/266
|
||||||
|
---
|
||||||
|
|
||||||
|
Bei den Chemnitzer Linuxtagen 2017 warnte ich vor der EU-Funkabschottungs-Richtlinie und ihren Auswirkungen auf die Freiheit unserer Geräte. Die Chemnitzer Linuxtage ziehen ein technisch versiertes Publikum an, das oft alternative Betriebssysteme nutzt, Router selbst konfiguriert und Wert auf Kontrolle über die eigene Hardware legt – genau die Praktiken, die durch diese Richtlinie gefährdet wurden. Der Vortrag machte deutlich, dass scheinbar abstrakte EU-Regulierung sehr konkrete Auswirkungen auf alltägliche technische Freiheiten haben kann.
|
||||||
|
|
||||||
|
Ich erklärte, wie die Radio Equipment Directive (RED) unter dem Vorwand der Frequenzregulierung genutzt werden könnte, um Geräte komplett abzuschotten. Das würde bedeuten: keine alternativen Router-Firmwares mehr, keine Custom ROMs auf Smartphones, keine Modifikation von Software auf allem, was WLAN oder Mobilfunk nutzt. Die Präsentation zeigte technische Details, wie solche Lockdowns implementiert werden könnten, welche Geräte betroffen wären, und warum die Argumente für diese Einschränkungen nicht überzeugend waren – echte Compliance ließe sich auch ohne komplette Gerätesperre erreichen.
|
||||||
|
|
||||||
|
Das Publikum reagierte mit berechtigter Sorge, denn viele Anwesende nutzen genau die Freiheiten, die bedroht waren. Die Diskussion fokussierte sich auf konkrete Schritte: wie man sich politisch engagieren kann, welche Rolle Hersteller spielen könnten, und welche technischen Gegenmaßnahmen möglich wären. Der Vortrag war Teil einer breiteren Kampagne der FSFE, um Bewusstsein für diese Bedrohung zu schaffen und politischen Druck aufzubauen.
|
||||||
BIN
content/blog/2017-04-llw-radio-lockdown/firstslide.jpg
Normal file
|
After Width: | Height: | Size: 65 KiB |
26
content/blog/2017-04-llw-radio-lockdown/index.md
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: "EU Radio Equipment Directive: Extensive Device Lockdown"
|
||||||
|
date: 2017-04-27
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- RadioLockdown
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: firstslide.jpg
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 center webp
|
||||||
|
slides: https://download.fsfe.org/presentations/20170427-mm-LLW-RadioLockdown_verbose.en.pdf
|
||||||
|
event:
|
||||||
|
name: Legal and Licensing Workshop 2017
|
||||||
|
href: https://fsfe.org/news/2017/news-20170619-01.html
|
||||||
|
---
|
||||||
|
|
||||||
|
At the exclusive Legal and Licensing Workshop 2017, I presented on the EU Radio Equipment Directive and its potential for extensive device lockdown. The Legal and Licensing Workshop brings together legal professionals, compliance officers, and policy experts working on Free Software issues, making it the right audience for a detailed legal and technical analysis of this directive's implications. The talk warned about how seemingly well-intentioned radio equipment regulations could be implemented in ways that fundamentally threaten software freedom on radio-capable devices.
|
||||||
|
|
||||||
|
The Radio Equipment Directive (RED) aimed to ensure that radio equipment doesn't interfere with networks or use spectrum inappropriately. However, the way manufacturers could implement compliance – by locking down devices to prevent any software modifications – posed serious threats. I explained how this could affect everything from WiFi routers to smartphones, preventing users from installing alternative operating systems or modifying software on devices they own. The presentation detailed the legal framework, showed how different implementation approaches would affect Free Software, and discussed what the Free Software community needed to advocate for.
|
||||||
|
|
||||||
|
The workshop audience's legal expertise was crucial for developing strategies to address this issue. The discussion explored how to engage with regulators to ensure compliance mechanisms that preserve software freedom and what legal arguments could be made for user rights to modify their own devices
|
||||||
@@ -3,11 +3,13 @@ title: 'Idee: Wiki zu gesellschaftspolitischen Positionen von Prominenten'
|
|||||||
date: 2017-05-29T10:15:45+00:00
|
date: 2017-05-29T10:15:45+00:00
|
||||||
aliases: idee-wiki-zu-gesellschaftspolitischen-positionen-von-prominenten
|
aliases: idee-wiki-zu-gesellschaftspolitischen-positionen-von-prominenten
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- deutsch
|
- deutsch
|
||||||
tags:
|
tags:
|
||||||
- policy
|
- Policy
|
||||||
headerimage: /blog/maiziere-lehmann.jpg
|
headerimage:
|
||||||
headercredits: CC-BY-SA 3.0 Sandro Halank / CC-BY 2.0 Ronnie Macdonald
|
src: /blog/maiziere-lehmann.jpg
|
||||||
|
text: CC-BY-SA 3.0 Sandro Halank / CC-BY 2.0 Ronnie Macdonald
|
||||||
|
|
||||||
---
|
---
|
||||||
_Alles begann, als mein Mitbewohner Lars und ich uns eines morgens fragten: „Mit wem würden wir lieber ein Bier trinken gehen, Thomas de Maizière oder Jens Lehmann?“._
|
_Alles begann, als mein Mitbewohner Lars und ich uns eines morgens fragten: „Mit wem würden wir lieber ein Bier trinken gehen, Thomas de Maizière oder Jens Lehmann?“._
|
||||||
|
|||||||
20
content/blog/2017-05-lwn-radio-lockdown-concerns/index.md
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
title: "Free-software concerns with Europe's radio directive (LWN.net)"
|
||||||
|
date: 2017-05-10
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- RadioLockdown
|
||||||
|
- FSFE
|
||||||
|
- FSFE
|
||||||
|
article:
|
||||||
|
name: LWN.net
|
||||||
|
href: https://lwn.net/Articles/722197/
|
||||||
|
---
|
||||||
|
|
||||||
|
Jake Edge from LWN.net wrote a comprehensive article covering my presentation at the 2017 Free Software Legal and Licensing Workshop about the EU Radio Equipment Directive (RED). The article detailed the concerns around Article 3(3)(i) of the directive, which requires manufacturers to ensure that only "compliant" software can be loaded onto radio equipment. This seemingly technical requirement threatened to mandate device lockdown across a huge range of consumer electronics containing radio transmitters.
|
||||||
|
|
||||||
|
The LWN article explained how RED could affect everything from WiFi-enabled laptops to smartphones, routers, and IoT devices. It outlined the various actors involved -- from the European Commission and ETSI (responsible for updating standards) to EU member states tasked with implementation -- and the unclear timeline for when these requirements would actually take effect. The piece also covered the FSFE's response, including our Joint Statement against Radio Lockdown signed by 48 organizations and our efforts to join the expert group on reconfigurable radio systems to help shape device classifications.
|
||||||
|
|
||||||
|
The article sparked significant discussion in the comments, with readers debating whether the directive's goals (preventing radio interference) justified the means (potential complete software lockdown), whether manufacturers or users should bear responsibility for compliance, and how the requirements compared to other safety regulations. The coverage helped raise awareness beyond the immediate Free and Open Source Software community about how radio regulations could fundamentally impact users' ability to control their own computing devices.
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
---
|
||||||
|
title: "Public Money, Public Code pushes for governments to switch to open-source software (Sharable)"
|
||||||
|
date: 2018-05-09
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- PublicCode
|
||||||
|
- OSPO
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: pmpc.jpg
|
||||||
|
summary: Shareable published an extensive interview with me about the FSFE's Public Money, Public Code campaign. I explained why publicly funded software should be released as Open Source, the benefits for transparency, security and collaboration, and how cities like Barcelona are leading with 70% of their software budget spent on Open Source.
|
||||||
|
article:
|
||||||
|
name: Shareable
|
||||||
|
href: https://www.shareable.net/blog/public-money-public-code-pushes-for-governments-to-switch-to-open-source-software
|
||||||
|
---
|
||||||
|
|
||||||
|
In an extensive interview with Shareable, I explained the goals of the FSFE's "Public Money, Public Code" campaign: All publicly funded software should be released under Free Software licenses so governments and citizens can use, study, share and improve it. Addressing technical challenges like proprietary document formats and interoperability, I emphasized:
|
||||||
|
|
||||||
|
> The more Free Software there is, the easier it gets to create and use it. It's just a matter of starting that process.
|
||||||
|
|
||||||
|
The benefits are manifold: saving time, reducing costs, more collaboration, transparency, interoperability, innovation, and independence from software vendors. On the often-cited security concerns, I explained:
|
||||||
|
|
||||||
|
> It's actually better for security if software is transparent and the source code is published, because it's easier for security experts to see what's going wrong in the software. Malicious people will figure it out anyway, but more people can review the code. We've seen this with Linux. It is stable, secure and transparent, and we don't see a disadvantage in the fact that it's Open Source.
|
||||||
|
|
||||||
|
I highlighted Barcelona as a role model, spending 70% of its software budget on Open Source and understanding it's not just about using Free Software, but procuring it in ways that allow regional and smaller vendors to participate.
|
||||||
|
|
||||||
|
The [full interview](https://www.shareable.net/blog/public-money-public-code-pushes-for-governments-to-switch-to-open-source-software) with more details on transparency, collaboration and international examples is available on Shareable.
|
||||||
BIN
content/blog/2018-05-shareable-public-money-public-code/pmpc.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
27
content/blog/2018-06-ow2con-public-code-keynote/index.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: "Keynote: Public Code with Free Software - Modernising Public Digital Infrastructure"
|
||||||
|
date: 2018-06-07
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- PublicCode
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: ow2con-2018.jpg
|
||||||
|
text: Picture of me giving the keynote at OW2con 2018 in Paris
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 top webp
|
||||||
|
video: https://www.youtube.com/watch?v=kQGw25xG_5c
|
||||||
|
slides: https://download.fsfe.org/presentations/20180607-mm-OW2Con-PMPC.en.pdf
|
||||||
|
event:
|
||||||
|
name: OW2con 2018
|
||||||
|
href: https://ow2con18.sched.com/event/EcdE/keynote-public-code-with-free-software-modernising-public-digital-infrastructure
|
||||||
|
---
|
||||||
|
|
||||||
|
I delivered the opening keynote at OW2con 2018 in Paris, presenting the "Public Money, Public Code" vision to a conference focused on Open Source middleware and enterprise solutions. OW2 is a European association fostering Open Source infrastructure software, with strong connections to both industry and public sector organizations. The keynote position reflected the growing recognition that making publicly funded code freely available isn't just an activist demand -- it's a pragmatic approach to building better public digital infrastructure.
|
||||||
|
|
||||||
|
The keynote argued that the current model, where public administrations pay vendors to develop software but then cannot share it with other public bodies, is economically inefficient and technologically counterproductive. I presented the FSFE's "Public Money, Public Code" campaign as a policy framework to address this: require that code developed with public funds be released as Free Software. The benefits extend beyond cost savings to include improved security (through transparency and auditability), reduced vendor lock-in, and the ability to build on each other's work rather than repeatedly reinventing similar solutions.
|
||||||
|
|
||||||
|
For the OW2 community, which works on exactly the kind of collaborative Open Source development that Public Code envisions at scale, the message resonated strongly. The discussion explored how policy changes could accelerate adoption of Open Source infrastructure, how public procurement could be restructured to favor Free Software, and what role organizations like OW2 could play in providing professional-grade Open Source alternatives to proprietary public sector software.
|
||||||
BIN
content/blog/2018-06-ow2con-public-code-keynote/ow2con-2018.jpg
Normal file
|
After Width: | Height: | Size: 335 KiB |
BIN
content/blog/2018-07-armed-forces-sovereignty/firstslide.jpg
Normal file
|
After Width: | Height: | Size: 83 KiB |
21
content/blog/2018-07-armed-forces-sovereignty/index.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
title: "Souveränität durch Freie Software (Bundeswehr)"
|
||||||
|
date: 2018-07-03
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- PublicCode
|
||||||
|
- Sovereignty
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: firstslide.jpg
|
||||||
|
slides: https://download.fsfe.org/presentations/20180703-mm-Jugendoffiziere-PMPC.de.pdf
|
||||||
|
---
|
||||||
|
|
||||||
|
Bei einem internen Vortrag für die deutsche Bundeswehr sprach ich über digitale Souveränität durch Freie Software. Dieser ungewöhnliche Kontext – eine Präsentation vor militärischem Personal – bot die Möglichkeit, die Bedeutung von Softwarefreiheit aus der Perspektive von IT-Sicherheit, strategischer Unabhängigkeit und operationaler Kontrolle zu beleuchten. Für Organisationen, die mit hochsensiblen Daten arbeiten und nationale Sicherheitsinteressen berücksichtigen müssen, sind die Fragen nach Souveränität und Kontrolle über die eigene IT-Infrastruktur besonders dringend.
|
||||||
|
|
||||||
|
Der Vortrag betonte, wie Abhängigkeit von proprietärer Software strategische Risiken schafft: Auslandsabhängigkeit bei kritischer Infrastruktur, mangelnde Möglichkeit zur Überprüfung auf Backdoors oder Schwachstellen, und fehlende Kontrolle über Updates und Funktionsänderungen. Freie Software bietet hingegen die Möglichkeit, Code zu auditieren, Sicherheitslücken selbst zu schließen, und unabhängig von kommerziellen Anbietern langfristige Supportstrukturen aufzubauen. Diese Argumente gelten nicht nur für militärische Organisationen, sondern für alle Bereiche der öffentlichen Verwaltung und kritischen Infrastruktur.
|
||||||
|
|
||||||
|
Die Diskussion zeigte, dass das Bewusstsein für diese Themen in der Bundeswehr durchaus vorhanden war, aber oft praktische Hürden – von Procurement-Strukturen bis zu fehlender Expertise – die Umstellung auf Freie Software erschwerten. Der Vortrag half, die strategische Bedeutung dieser Entscheidungen zu unterstreichen und Argumente zu liefern, warum Software-Souveränität eine langfristige Investition in Sicherheit und Unabhängigkeit darstellt.
|
||||||
27
content/blog/2018-07-rmll-lsm-public-code/index.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: "Public Money? Public Code! - Modernising Digital Public Infrastructure"
|
||||||
|
date: 2018-07-07
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- PublicCode
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: rmll-2018.jpg
|
||||||
|
text: Picture of me giving the presentation at RMLL 2018 in Strasbourg
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 center webp
|
||||||
|
slides: https://download.fsfe.org/presentations/20180707-mm-RMLL-PMPC.en.pdf
|
||||||
|
video: https://www.canalc2.tv/video/15191
|
||||||
|
event:
|
||||||
|
name: RMLL/LSM 2018
|
||||||
|
href: https://rmll2018.info
|
||||||
|
---
|
||||||
|
|
||||||
|
At RMLL/Libre Software Meeting 2018 in Strasbourg, I presented the "Public Money, Public Code" campaign to one of Europe's longest-running Free Software conferences. The RMLL/LSM brings together activists, developers, and public sector stakeholders who have been advocating for Free Software since the late 1990s, making it an ideal audience for discussing how to systematically transform public digital infrastructure. The talk built on decades of Free Software advocacy to argue for a new policy paradigm.
|
||||||
|
|
||||||
|
The presentation made the case that when public money pays for software development, the resulting code should be publicly available as Free Software. This isn't just good principle – it's good economics and good governance. I showed how current practices lead to wasteful redundancy, with multiple public bodies independently funding development of similar solutions while being unable to share code. The talk outlined concrete policy changes needed at European, national, and municipal levels to make Public Code the default for publicly funded software development.
|
||||||
|
|
||||||
|
For the RMLL audience, being strong FOSS advocates, the Public Money, Public Code campaign provided a rallying point and policy framework for their efforts. The discussion explored successful examples of public code initiatives, strategies for changing procurement regulations, and how to build coalitions between technical communities and policy makers to drive systemic change.
|
||||||
BIN
content/blog/2018-07-rmll-lsm-public-code/rmll-2018.jpg
Normal file
|
After Width: | Height: | Size: 128 KiB |
|
After Width: | Height: | Size: 153 KiB |
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "Android-Kontrolle: So verbannen Sie Google vom Smartphone (WELT.de)"
|
||||||
|
date: 2018-08-20
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- Android
|
||||||
|
- Privacy
|
||||||
|
headerimage:
|
||||||
|
src: android-phone.jpg
|
||||||
|
text: "Quelle: dpa-tmn, welt.de"
|
||||||
|
summary: WELT veröffentlichte einen Ratgeber, wie Android-Nutzer:innen Google-Dienste von ihren Smartphones zurückdrängen oder entfernen können. Der Artikel richtet sich an Menschen, die mehr Kontrolle über ihre Daten haben möchten, und behandelt alternative App Stores wie F-Droid, freie Android-Distributionen wie LineageOS sowie datenschutzfreundliche Alternativen zu Google-Apps.
|
||||||
|
article:
|
||||||
|
name: WELT.de
|
||||||
|
href: https://www.welt.de/wirtschaft/webwelt/article181237140/Android-Kontrolle-So-verbannen-Sie-Google-vom-Smartphone.html
|
||||||
|
---
|
||||||
|
|
||||||
|
WELT veröffentlichte einen praktischen Leitfaden für Nutzer:innen, die mehr digitale Souveränität über ihre Android-Geräte erlangen möchten. Der Artikel erklärt, wie man Google-Dienste zurückdrängen oder ganz entfernen kann – von der Nutzung alternativer App Stores wie F-Droid bis zum Einsatz freier Android-Distributionen wie LineageOS. Dabei werden auch datenschutzfreundliche Alternativen für gängige Google-Apps vorgestellt, etwa für E-Mail, Kalender und Navigation.
|
||||||
|
|
||||||
|
Ich werde im Artikel zitiert und erkläre, dass die Kontrolle über die Software auf unseren Geräten unter anderem entscheidend für den Schutz unserer Privatsphäre ist:
|
||||||
|
|
||||||
|
> Google ist gut darin, vieles Grundsätzliches anzubieten, was wir machen wollen, und das auch noch sehr komfortabel. Das Problem ist aber, dass es Google immer auch darum geht, Daten für Werbung zu sammeln. Das kann man einfach in den Nutzungsbedingungen nachschauen. Eine Umstellung passiert nicht über Nacht, das ist ein schrittweiser Prozess. Der erste Schritt ist, sich bewusst zu machen, was man bereits nutzt und was davon unerwünscht ist. Der zweite Schritt ist das Ersetzen nicht gewollter Dienste und Apps. Der dritte Schritt wäre die Installation eines Betriebssystems ganz ohne Google.
|
||||||
|
|
||||||
|
Der vollständige Artikel mit allen praktischen Anleitungen ist auf [WELT online](https://www.welt.de/wirtschaft/webwelt/article181237140/Android-Kontrolle-So-verbannen-Sie-Google-vom-Smartphone.html) verfügbar.
|
||||||
BIN
content/blog/2018-09-balccon-public-code/balccon-2018.jpg
Normal file
|
After Width: | Height: | Size: 126 KiB |
25
content/blog/2018-09-balccon-public-code/index.md
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "Public Code with Free Software: Modernising Public Digital Infrastructure"
|
||||||
|
date: 2018-09-15
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- PublicCode
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: balccon-2018.jpg
|
||||||
|
text: Picture of me giving the presentation at BalCCon 2018
|
||||||
|
video: https://www.youtube.com/watch?v=tEkCnCtoQ60
|
||||||
|
slides: https://download.fsfe.org/presentations/20180915-mm-BalCCon-PMPC.en.pdf
|
||||||
|
event:
|
||||||
|
name: BalCCon 2018
|
||||||
|
href: https://2k18.balccon.org/events/235.html
|
||||||
|
---
|
||||||
|
|
||||||
|
At BalCCon 2018 in Novi Sad (Serbia), I presented the FSFE's "Public Money, Public Code" campaign and its vision for modernising public digital infrastructure through Free Software. This was during the early, energetic phase of the campaign when we were building momentum across Europe for the principle that software developed with taxpayer money should be made available as Free Software. BalCCon's technically sophisticated audience with a focus on IT security was an interesting context to discuss how public code can enhance security, transparency, and local technological capacity.
|
||||||
|
|
||||||
|
The talk explained why public administrations' current approach -- paying for proprietary software development and then paying again for licenses to use it, while no one else can benefit from the investment -- makes no sense. I outlined how Free Software enables code reuse across municipalities and countries, reduces vendor lock-in, improves security through transparency, and turns software from a cost center into a shared resource. The presentation showcased early successes of public code initiatives and addressed common objections about support, security, and feasibility.
|
||||||
|
|
||||||
|
For the BalCCon audience, many of whom work with technology in contexts across the Balkans, the message was particularly relevant. The region faces challenges of limited IT budgets, dependency on foreign vendors, and the need to build local technological capacity – all problems that "Public Money, Public Code" directly addresses. The discussion explored how these principles could be adapted to different political and economic contexts while maintaining their core benefits.
|
||||||
21
content/blog/2018-09-drupaleurope-public-code/index.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
title: "Public Code with Free Software: Modernising Digital Public Infrastructure"
|
||||||
|
date: 2018-09-11
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- PublicCode
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
slides: https://download.fsfe.org/presentations/20180911-mm-DrupalEurope-PMPC.en.pdf
|
||||||
|
event:
|
||||||
|
name: DrupalEurope 2018
|
||||||
|
href: https://www.drupaleurope.org/index.php/session/public-code-free-software-modernising-digital-public-infrastructure.html
|
||||||
|
---
|
||||||
|
|
||||||
|
At DrupalEurope 2018 in Darmstadt, I presented the "Public Money, Public Code" initiative to an audience of Drupal developers, site builders, and digital agencies. This was a particularly relevant venue because Drupal itself is Free Software, and many in the audience work on public sector projects where the principles of Public Code directly apply. The talk connected the FSFE's campaign to the practical realities of building public digital infrastructure with content management systems like Drupal.
|
||||||
|
|
||||||
|
The presentation explained why software developed for public administrations with taxpayer money should be released as Free Software. I outlined the benefits: code reuse across different public bodies, reduced vendor lock-in, improved security through transparency, and the ability to customize solutions to local needs. For the Drupal community, which already embraces Open Source principles, the message resonated strongly – many attendees had experienced first-hand the frustration of proprietary systems or custom Drupal modules that couldn't be shared because of licensing restrictions.
|
||||||
|
|
||||||
|
The discussion explored how Drupal agencies could advocate for Public Code principles in their client relationships, how public administrations could structure procurement to require Free Software, and what role the Drupal community could play in building shared public infrastructure. This talk helped connect the broader political campaign to concrete technical communities already working in the public sector.
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
title: "Open Source Software: 20-Plus Years of Innovation (LinuxInsider)"
|
||||||
|
date: 2018-10-29
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- Community
|
||||||
|
headerimage:
|
||||||
|
src: open-source-blocks.jpg
|
||||||
|
summary: LinuxInsider published an article about 20+ years of innovation in the Open Source movement, featuring my perspectives on how collaborative development has transformed the technology landscape and the continuing influence of Open Source across industries – from operating systems to enterprise software and cloud infrastructure.
|
||||||
|
article:
|
||||||
|
name: LinuxInsider
|
||||||
|
href: https://www.linuxinsider.com/story/85646.html
|
||||||
|
---
|
||||||
|
|
||||||
|
LinuxInsider published a retrospective on over two decades of innovation through Open Source software, featuring my insights on how collaborative development has fundamentally changed the technology industry – from the early days of GNU and Linux through mainstream adoption in enterprise environments to modern success stories like Android, Kubernetes and other transformative projects.
|
||||||
|
|
||||||
|
The article covers key themes including the increasing participation of major corporations as active contributors to Open Source projects, the economic value of Open Source through services and ecosystems, and the outlook on new areas like AI/ML frameworks, IoT, Edge Computing and blockchain technologies where Open Source continues to drive innovation.
|
||||||
|
|
||||||
|
> The Free and Open Source movement has achieved successes probably no one dared to dream of when the free software movement began to take shape in the 1980s, noted Max Mehl, program manager of Free Software Foundation Europe.
|
||||||
|
>
|
||||||
|
> “Today, Free Software and Open Source are synonyms that are being used in almost every device — from remotes to washing machines, mobile phones to aircraft, and the International Space Station,” he told LinuxInsider.
|
||||||
|
>
|
||||||
|
> Large enterprises, even self-declared enemies of FOSS in the past, now recognize that the power of the community and the transparent processes benefit end users and encourage innovation, noted Mehl.
|
||||||
|
>
|
||||||
|
> “The concept of Free Software licenses and copyleft, once a legal hack, is universally accepted and legally confirmed, he added.
|
||||||
|
|
||||||
|
The full article offers a comprehensive perspective on the 2018 Open Source landscape and is available on [LinuxInsider](https://www.linuxinsider.com/story/85646.html).
|
||||||
|
After Width: | Height: | Size: 92 KiB |
@@ -3,11 +3,11 @@ title: FSFE Planet has been refurbished
|
|||||||
date: 2019-02-11T10:33:11+00:00
|
date: 2019-02-11T10:33:11+00:00
|
||||||
aliases: fsfe-planet-has-been-refurbished
|
aliases: fsfe-planet-has-been-refurbished
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- fsfe
|
- FSFE
|
||||||
- server
|
- SystemAdministration
|
||||||
- report
|
|
||||||
|
|
||||||
---
|
---
|
||||||
If you are reading these lines, you are already accessing the brand-new planet of the FSFE. While Björn, Coordinator of Team Germany, has largely improved the design in late 2017, we tackled many underlying issues this time.
|
If you are reading these lines, you are already accessing the brand-new planet of the FSFE. While Björn, Coordinator of Team Germany, has largely improved the design in late 2017, we tackled many underlying issues this time.
|
||||||
|
|||||||
@@ -3,13 +3,14 @@ title: 'Protect freedom on radio devices: raise your voice today!'
|
|||||||
date: 2019-03-01T15:09:56+00:00
|
date: 2019-03-01T15:09:56+00:00
|
||||||
aliases: protect-freedom-on-radio-devices-raise-your-voice-today
|
aliases: protect-freedom-on-radio-devices-raise-your-voice-today
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- fsfe
|
- FSFE
|
||||||
- radiolockdown
|
- RadioLockdown
|
||||||
- routerfreedom
|
- RouterFreedom
|
||||||
- security
|
- Security
|
||||||
- policy
|
- Policy
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "Radio gaga: Techies fear EU directive to stop RF device tinkering will do more harm than good (The Register)"
|
||||||
|
date: 2019-03-11
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- article
|
||||||
|
tags:
|
||||||
|
- RadioLockdown
|
||||||
|
- Policy
|
||||||
|
- FSFE
|
||||||
|
- FSFE
|
||||||
|
# headerimage:
|
||||||
|
# src: foo.jpg
|
||||||
|
# text: bar
|
||||||
|
summary: The Register reported on the controversy surrounding the EU Radio Equipment Directive (RED) that could ban installing alternative firmware on routers and other radio devices. I was quoted alongside my FSFE colleague Hauke Mehrtens, highlighting how the FSFE was excluded from the implementation working group despite our attempts to participate.
|
||||||
|
article:
|
||||||
|
name: The Register
|
||||||
|
href: https://www.theregister.com/2019/03/11/eu_directive_ban_rf_radio_firmware_tinkering/
|
||||||
|
---
|
||||||
|
|
||||||
|
The Register quoted me and my FSFE colleague Hauke Mehrtens on the growing controversy around Article 3(3)(i) of the EU Radio Equipment Directive. Hauke explained the far-reaching consequences: The ban would severely harm the OpenWrt project, wireless community networks, innovative startups, and network researchers. It would increase electronic waste, make it impossible for users to fix security vulnerabilities themselves or with the help of the community, and block research that could improve the Internet in the EU.
|
||||||
|
|
||||||
|
I was quoted on FSFE's exclusion from the implementation process: FSFE had applied to participate in the working group on implementing the law but was rejected. The article also shows that not only civil society, but also industry associations and manufacturers like Shure opposed a complete ban, arguing instead for industry self-regulation.
|
||||||
|
|
||||||
|
The [full article](https://www.theregister.com/2019/03/11/eu_directive_ban_rf_radio_firmware_tinkering/) with industry statements and further technical details is available on The Register.
|
||||||
|
After Width: | Height: | Size: 459 KiB |
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: "IT-Sicherheit? Freie Software!"
|
||||||
|
date: 2019-04-27
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- Security
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: glt-2019.jpg
|
||||||
|
text: Bild von mir bei der Keynote auf den Grazer Linuxtagen 2019
|
||||||
|
alt: Max Mehl während seiner Keynote auf den Grazer Linuxtagen 2019
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 center webp
|
||||||
|
video: https://www.youtube.com/watch?v=DOv_5ZPcFZ8
|
||||||
|
slides: https://download.fsfe.org/presentations/20190427-mm-Graz-ITSec.de.pdf
|
||||||
|
event:
|
||||||
|
name: Grazer Linuxtage 2019
|
||||||
|
href: https://pretalx.linuxtage.at/glt19/talk/K9YDDN/
|
||||||
|
---
|
||||||
|
|
||||||
|
Bei den Grazer Linuxtagen 2019 hielt ich die Keynote über den Zusammenhang zwischen IT-Sicherheit und Freier Software. Die Grazer Linuxtage sind eine der wichtigsten deutschsprachigen Veranstaltungen für GNU/Linux und Freie Software, und die Keynote bot die Möglichkeit, dem gesamten Publikum -- von Einsteigern bis zu erfahrenen Entwicklern -- zu erläutern, warum Freie und Open Source Software keine Option, sondern eine Voraussetzung für echte IT-Sicherheit ist.
|
||||||
|
|
||||||
|
Der Vortrag beleuchtete, warum proprietäre Software strukturelle Sicherheitsprobleme mit sich bringt: fehlende Transparenz verhindert unabhängige Sicherheitsanalysen, Nutzer haben keine Kontrolle darüber, was ihre Software tatsächlich macht, und Vendor-Lock-in führt dazu, dass Sicherheitsupdates von Geschäftsinteressen abhängen statt von tatsächlichen Bedrohungen. Im Gegensatz dazu ermöglicht Freie Software Überprüfbarkeit, Community-betriebene Sicherheitsforschung, und stellt sicher, dass Nutzer die Hoheit über ihre IT-Systeme behalten.
|
||||||
|
|
||||||
|
Als Keynote war der Vortrag bewusst breit angelegt, um verschiedene Aspekte des Themas zu beleuchten: von konkreten technischen Sicherheitsvorteilen über die Bedeutung offener Standards bis hin zu gesellschaftlichen Fragen digitaler Souveränität. Die Botschaft war klar: Wer IT-Sicherheit ernst nimmt, kommt an Freier Software nicht vorbei.
|
||||||
25
content/blog/2019-07-pass-the-salt-it-security/index.md
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "No IT security without Free Software"
|
||||||
|
date: 2019-07-03
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- Security
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: pass-the-salt-2019.jpg
|
||||||
|
text: Picture of me giving the presentation at Pass the SALT 2019 in Lille
|
||||||
|
alt: Max Mehl during his presentation at Pass the SALT 2019 in Lille
|
||||||
|
video: https://www.youtube.com/watch?v=B0qxm331Q8Q
|
||||||
|
slides: https://download.fsfe.org/presentations/20190703-mm-SALT-ITSec.en.pdf
|
||||||
|
event:
|
||||||
|
name: Pass the SALT 2019
|
||||||
|
href: https://2019.pass-the-salt.org/talks/102.html
|
||||||
|
---
|
||||||
|
|
||||||
|
At Pass the SALT 2019 in Lille, France, I presented on the essential connection between IT security and Free Software. Pass the SALT (Security And Libre Talks) is a security conference with a specific focus on Free and Open Source Software security tools and practices, making it the ideal venue for this topic. The conference brings together security professionals who both develop and use Free Software security tools, and understand the value of transparency in security work.
|
||||||
|
|
||||||
|
The talk examined why proprietary software creates fundamental security problems that cannot be solved through patches or better practices alone. Without access to source code, security researchers cannot fully audit systems, users cannot verify what their software actually does, and the community cannot collaborate on security improvements. I presented case studies of security issues that persisted in proprietary systems precisely because of their closed nature, contrasted with Free Software projects where transparency enabled rapid community response to vulnerabilities.
|
||||||
|
|
||||||
|
The presentation also addressed common misconceptions: that disclosure of source code helps attackers (when research shows the opposite), that commercial vendors provide better security than community projects (when evidence suggests otherwise), and that security and usability require proprietary approaches (when Free Software demonstrates both are achievable). For the Pass the SALT audience, this reinforced their work developing and promoting Free Software security tools as not just technically sound, but philosophically necessary for genuine security.
|
||||||
|
After Width: | Height: | Size: 170 KiB |
BIN
content/blog/2019-09-balccon-it-security/balccon-2019.jpg
Normal file
|
After Width: | Height: | Size: 217 KiB |
27
content/blog/2019-09-balccon-it-security/index.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: "No IT security without Free Software"
|
||||||
|
date: 2019-09-14
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- Security
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: balccon-2019.jpg
|
||||||
|
text: Picture of me giving the presentation at BalCCon 2019 in Novi Sad
|
||||||
|
alt: Max Mehl during his presentation at BalCCon 2019 in Novi Sad, Serbia
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 bottom webp
|
||||||
|
video: https://www.youtube.com/watch?v=8SWijSFbMhg
|
||||||
|
slides: https://download.fsfe.org/presentations/20190914-mm-BalCCon-ITSec.en.pdf
|
||||||
|
event:
|
||||||
|
name: BalCCon 2019
|
||||||
|
href: https://2k19.balccon.org/events/325.html
|
||||||
|
---
|
||||||
|
|
||||||
|
At BalCCon 2019 in Novi Sad, Serbia, I delivered a talk arguing that real IT security is fundamentally impossible without Free and Open Source Software. BalCCon (Balkan Computer Congress) brings together security researchers, hackers, and technology enthusiasts from across the Balkans and beyond, making it a perfect audience for examining the deep connections between software freedom and security. The talk challenged the common assumption that security and openness are somehow in tension, arguing instead that transparency is a prerequisite for trustworthy security.
|
||||||
|
|
||||||
|
The presentation examined multiple dimensions of this argument: the security benefits of source code transparency, the danger of security through obscurity in proprietary systems, the importance of independent security audits, the problem of backdoors and undisclosed vulnerabilities, and the critical role of user control over their computing environment. I showed concrete examples where Open Source can resolve an ongoing tension between economic incentives and security needs without sacrificing either.
|
||||||
|
|
||||||
|
For the BalCCon audience, many of whom work directly in information security, this argument resonated strongly. The discussion explored how Open Source principles align with security best practices like defense in depth, least privilege, and verifiable trust. The talk reinforced that advocating for Free Software isn't just about philosophy or licensing -- it's about building secure systems in a fundamentally insecure world.
|
||||||
BIN
content/blog/2019-10-osseu-reuse-licensing/firstslide.jpg
Normal file
|
After Width: | Height: | Size: 32 KiB |
25
content/blog/2019-10-osseu-reuse-licensing/index.md
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "REUSE: Make licensing easy for everyone"
|
||||||
|
date: 2019-10-28
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- REUSE
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: firstslide.jpg
|
||||||
|
alt: Title slide of my presentation at Open Source Summit Europe 2019 in Lyon
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 center webp
|
||||||
|
slides: https://download.fsfe.org/presentations/20191028-mm-OSSEU-REUSE.en.pdf
|
||||||
|
event:
|
||||||
|
name: Open Source Summit Europe 2019
|
||||||
|
href: https://osseu19.sched.com/event/05a3272287d3def1bcb0a62ace00b730
|
||||||
|
---
|
||||||
|
|
||||||
|
At the Open Source Summit Europe 2019 in Lyon, I presented REUSE to an audience of enterprise Open Source professionals, developers, and decision-makers. The Open Source Summit, organized by the Linux Foundation, brings together the commercial and community sides of Open Source, making it an ideal venue to discuss how REUSE addresses licensing challenges that affect both worlds. The talk emphasized how REUSE makes licensing straightforward for everyone: from individual contributors to large organizations managing complex Open Source portfolios.
|
||||||
|
|
||||||
|
The presentation focused on the practical solutions to typical problems with licensing information: unclear licensing and copyright of individual files, conflicting best practices, and loss of such information during use and re-use of files and components. I explained the three core REUSE rules and showed how the tooling integrates with existing development workflows and CI/CD pipelines. For the enterprise-focused audience, I highlighted how REUSE helps organizations that both consume and contribute to Open Source software, providing clear documentation that satisfies legal teams while remaining developer-friendly.
|
||||||
|
|
||||||
|
The discussion revealed strong interest from companies dealing with complex multi-license scenarios and those seeking to improve their Open Source practices. REUSE offered a solution that bridges the gap between legal requirements and development realities -- exactly what many organizations were looking for as Open Source became increasingly central to their technology stacks.
|
||||||
@@ -2,14 +2,15 @@
|
|||||||
title: The 3rd FSFE System Hackers hackathon
|
title: The 3rd FSFE System Hackers hackathon
|
||||||
date: 2019-10-22
|
date: 2019-10-22
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- fsfe
|
- FSFE
|
||||||
- report
|
- SystemAdministration
|
||||||
- server
|
headerimage:
|
||||||
headerimage: /blog/system-chaos.jpg
|
src: /blog/system-chaos.jpg
|
||||||
headercredits: Fortunately not how the FSFE's infrastructure looks like
|
text: Fortunately not how the FSFE's infrastructure looks like
|
||||||
|
mastodon_toot_url: "https://mastodon.social/@mxmehl/103010490628830773"
|
||||||
---
|
---
|
||||||
|
|
||||||
On 10 and 11 October, the FSFE System Hackers met in person to tackle
|
On 10 and 11 October, the FSFE System Hackers met in person to tackle
|
||||||
|
|||||||
|
After Width: | Height: | Size: 131 KiB |
27
content/blog/2020-02-fosdem-reuse-license-your-code/index.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: "Go REUSE to license your code"
|
||||||
|
date: 2020-02-02
|
||||||
|
categories:
|
||||||
|
- english
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- REUSE
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: fosdem-2020.jpg
|
||||||
|
text: Picture of me giving the presentation at FOSDEM 2020 in Brussels
|
||||||
|
alt: Max Mehl during his presentation at FOSDEM 2020 in Brussels
|
||||||
|
processes:
|
||||||
|
- fill 1000x440 bottom webp
|
||||||
|
video: https://www.youtube.com/watch?v=vyAYKROvTO8
|
||||||
|
slides: https://download.fsfe.org/presentations/20200202-mm-FOSDEM-REUSE.en.pdf
|
||||||
|
event:
|
||||||
|
name: FOSDEM 2020
|
||||||
|
href: https://fosdem.org/2020/schedule/event/reuse_code_licensing/
|
||||||
|
---
|
||||||
|
|
||||||
|
At FOSDEM 2020, I presented "Go REUSE to license your code" in the Legal and Policy Issues Devroom. This talk marked an important milestone in the REUSE initiative's evolution, as we were seeing increasing adoption across diverse projects and growing recognition of licensing clarity as a critical aspect of software quality. The presentation encouraged developers to adopt REUSE practices for their own projects, showing that proper licensing doesn't have to be complicated or time-consuming.
|
||||||
|
|
||||||
|
The talk walked through the three simple REUSE rules and demonstrated hands-on how developers could implement them in their projects. I showcased the REUSE helper tool which automates compliance checking, the REUSE API for displaying compliance badges, and showed real examples from projects that had successfully adopted REUSE. A key message was that REUSE is not only about legal compliance but respect for maintainers, clarity for users, and building a sustainable Free Software ecosystem where licensing information is always clear and accessible.
|
||||||
|
|
||||||
|
The discussion after the talk focused on practical questions about edge cases, integration with existing workflows, and how to gradually improve licensing in legacy codebases. This was exactly the kind of community-driven conversation that helps initiatives like REUSE evolve to meet real-world needs.
|
||||||
@@ -2,14 +2,16 @@
|
|||||||
title: I love the hidden champions
|
title: I love the hidden champions
|
||||||
date: 2020-02-14
|
date: 2020-02-14
|
||||||
categories:
|
categories:
|
||||||
|
- blog
|
||||||
- english
|
- english
|
||||||
tags:
|
tags:
|
||||||
- ilovefs
|
- ILoveFS
|
||||||
- fsfe
|
- FSFE
|
||||||
- bash
|
- Code
|
||||||
headerimage: /blog/hidden-street.jpg
|
headerimage:
|
||||||
headercredits: The unknown Free Software contributors. Photo by Kaique Rocha
|
src: /blog/hidden-street.jpg
|
||||||
|
text: The unknown Free Software contributors. Photo by Kaique Rocha
|
||||||
|
mastodon_toot_url: "https://mastodon.social/@mxmehl/103656218613382198"
|
||||||
---
|
---
|
||||||
|
|
||||||
A few days ago I've sent an announcement email for today's [I Love Free Software Day](https://ilovefs.org) to a large bunch of people. Most of the remarkably many replies have been positive and a pure joy to read, but some were a bit sceptical and critical. These came from Free Software contributors who are maintaining and helping projects that they think nobody knows and sees – not because these software projects are unused, but because they are small, a building block for other, more popular applications.
|
A few days ago I've sent an announcement email for today's [I Love Free Software Day](https://ilovefs.org) to a large bunch of people. Most of the remarkably many replies have been positive and a pure joy to read, but some were a bit sceptical and critical. These came from Free Software contributors who are maintaining and helping projects that they think nobody knows and sees – not because these software projects are unused, but because they are small, a building block for other, more popular applications.
|
||||||
|
|||||||
23
content/blog/2020-02-winterkongress-it-security/index.md
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
title: "Keine IT-Sicherheit ohne Freie Software"
|
||||||
|
date: 2020-02-22
|
||||||
|
categories:
|
||||||
|
- deutsch
|
||||||
|
- presentation
|
||||||
|
tags:
|
||||||
|
- Security
|
||||||
|
- FSFE
|
||||||
|
headerimage:
|
||||||
|
src: winterkongress-2020.jpg
|
||||||
|
text: Bild von mir bei der Präsentation auf dem Winterkongress Digitale Gesellschaft Schweiz
|
||||||
|
alt: Max Mehl während seiner Präsentation auf dem Winterkongress Digitale Gesellschaft Schweiz 2020
|
||||||
|
video: https://www.youtube.com/watch?v=6MW9a5fPX-k
|
||||||
|
slides: https://download.fsfe.org/presentations/20200222-mm-Winterkongress-ITSec.de.pdf
|
||||||
|
event:
|
||||||
|
name: Winterkongress Digitale Gesellschaft CH
|
||||||
|
href: https://www.winterkongress.ch/2020/talks/keine_it-sicherheit_ohne_freie_software/
|
||||||
|
---
|
||||||
|
|
||||||
|
Beim Winterkongress der Digitalen Gesellschaft Schweiz hielt ich einen Vortrag über den fundamentalen Zusammenhang zwischen IT-Sicherheit und Freier Software/Open Source. Die Kernthese war provokant formuliert, aber technisch begründet: Echte IT-Sicherheit ist ohne Freie Software nicht möglich. In einer Zeit, in der Cybersecurity zunehmend als kritisches Thema für Gesellschaft, Wirtschaft und Staat wahrgenommen wurde, argumentierte ich, dass proprietäre Software strukturelle Sicherheitsprobleme mit sich bringt, die nicht einfach durch bessere Praktiken gelöst werden können.
|
||||||
|
|
||||||
|
Der Vortrag beleuchtete mehrere Dimensionen dieses Arguments: Transparenz als Voraussetzung für Vertrauen, die Notwendigkeit unabhängiger Sicherheitsüberprüfungen, das Problem von Hintertüren und nicht offengelegten Schwachstellen in Closed-Source-Software, sowie die Bedeutung von Vendor-Unabhängigkeit für langfristige Sicherheitsupdates. Für das Publikum beim Winterkongress, das sich für digitale Bürgerrechte und eine demokratische digitale Gesellschaft einsetzt, war diese Verbindung zwischen Freiheit und Sicherheit besonders relevant. Der Vortrag zeigte, dass es kein Widerspruch ist, gleichzeitig für Softwarefreiheit und für Sicherheit einzutreten. Ganz im Gegenteil: das eine setzt das andere voraus.
|
||||||