carlus review

This commit is contained in:
Tommi 2021-02-01 19:07:20 +01:00
parent 442a27005f
commit 675da754be
23 changed files with 760 additions and 191 deletions

View File

@ -1,8 +1,61 @@
{% capture headingsWorkspace %}
{% comment %}
Copyright (c) 2018 Vladimir "allejo" Jimenez
{% assign minHeader = 2 %}
{% assign maxHeader = 6 %}
{% assign beforeHeading = 1 %}
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
{% endcomment %}
{% comment %}
Version 1.0.9
https://github.com/allejo/jekyll-anchor-headings
"Be the pull request you wish to see in the world." ~Ben Balter
Usage:
{% include anchor_headings.html html=content anchorBody="#" %}
Parameters:
* html (string) - the HTML of compiled markdown generated by kramdown in Jekyll
Optional Parameters:
* beforeHeading (bool) : false - Set to true if the anchor should be placed _before_ the heading's content
* headerAttrs (string) : '' - Any custom HTML attributes that will be added to the heading tag; you may NOT use `id`;
the `%heading%` and `%html_id%` placeholders are available
* anchorAttrs (string) : '' - Any custom HTML attributes that will be added to the `<a>` tag; you may NOT use `href`, `class` or `title`;
the `%heading%` and `%html_id%` placeholders are available
* anchorBody (string) : '' - The content that will be placed inside the anchor; the `%heading%` placeholder is available
* anchorClass (string) : '' - The class(es) that will be used for each anchor. Separate multiple classes with a space
* anchorTitle (string) : '' - The `title` attribute that will be used for anchors
* h_min (int) : 1 - The minimum header level to build an anchor for; any header lower than this value will be ignored
* h_max (int) : 6 - The maximum header level to build an anchor for; any header greater than this value will be ignored
* bodyPrefix (string) : '' - Anything that should be inserted inside of the heading tag _before_ its anchor and content
* bodySuffix (string) : '' - Anything that should be inserted inside of the heading tag _after_ its anchor and content
Output:
The original HTML with the addition of anchors inside of all of the h1-h6 headings.
{% endcomment %}
{% assign minHeader = include.h_min | default: 1 %}
{% assign maxHeader = include.h_max | default: 6 %}
{% assign beforeHeading = include.beforeHeading %}
{% assign nodes = include.html | split: '<h' %}
{% capture edited_headings %}{% endcapture %}
@ -44,8 +97,10 @@
{% capture anchor %}{% endcapture %}
{% if html_id and headerLevel >= minHeader and headerLevel <= maxHeader %}
{% assign escaped_header = header | strip_html %}
{% if include.headerAttrs %}
{% capture _hAttrToStrip %}{{ _hAttrToStrip | split: '>' | first }} {{ include.headerAttrs | replace: '%heading%', header | replace: '%html_id%', html_id }}>{% endcapture %}
{% capture _hAttrToStrip %}{{ _hAttrToStrip | split: '>' | first }} {{ include.headerAttrs | replace: '%heading%', escaped_header | replace: '%html_id%', html_id }}>{% endcapture %}
{% endif %}
{% capture anchor %}href="#{{ html_id }}"{% endcapture %}
@ -54,14 +109,15 @@
{% capture anchor %}{{ anchor }} class="{{ include.anchorClass }}"{% endcapture %}
{% endif %}
{% capture anchor %}{{ anchor }} title="{{ header }}"{% endcapture %}
{% if include.anchorAttrs %}
{% capture anchor %}{{ anchor }} {{ include.anchorAttrs | replace: '%heading%', header | replace: '%html_id%', html_id }}{% endcapture %}
{% if include.anchorTitle %}
{% capture anchor %}{{ anchor }} title="{{ include.anchorTitle | replace: '%heading%', escaped_header }}"{% endcapture %}
{% endif %}
{% capture anchor %}<a {{ anchor }}>{{ '<svg class="anchor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.29 9.29l-4 4a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l4-4a1 1 0 0 0-1.42-1.42z" fill="var(--text)"/><path d="M12.28 17.4L11 18.67a4.2 4.2 0 0 1-5.58.4 4 4 0 0 1-.27-5.93l1.42-1.43a1 1 0 0 0 0-1.42 1 1 0 0 0-1.42 0l-1.27 1.28a6.15 6.15 0 0 0-.67 8.07 6.06 6.06 0 0 0 9.07.6l1.42-1.42a1 1 0 0 0-1.42-1.42z" fill="var(--text)"/><path d="M19.66 3.22a6.18 6.18 0 0 0-8.13.68L10.45 5a1.09 1.09 0 0 0-.17 1.61 1 1 0 0 0 1.42 0L13 5.3a4.17 4.17 0 0 1 5.57-.4 4 4 0 0 1 .27 5.95l-1.42 1.43a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l1.42-1.42a6.06 6.06 0 0 0-.6-9.06z" fill="var(--text)"/></svg>
' | replace: '%heading%', header | default: '' }}</a>{% endcapture %}
{% if include.anchorAttrs %}
{% capture anchor %}{{ anchor }} {{ include.anchorAttrs | replace: '%heading%', escaped_header | replace: '%html_id%', html_id }}{% endcapture %}
{% endif %}
{% capture anchor %}<a {{ anchor }}>{{ include.anchorBody | replace: '%heading%', escaped_header | default: '' }}</a>{% endcapture %}
<!-- In order to prevent adding extra space after a heading, we'll let the 'anchor' value contain it -->
{% if beforeHeading %}
@ -93,4 +149,4 @@
{% capture edited_headings %}{{ edited_headings }}{{ new_heading }}{% endcapture %}
{% endfor %}
{% endcapture %}{% assign headingsWorkspace = '' %}{{ edited_headings | strip }}
{% endcapture %}{% assign headingsWorkspace = '' %}{{ edited_headings | strip }}

View File

@ -1,4 +1,4 @@
<footer>
<footer id="0">
<div class="row">
<p>{% if page.lang == 'it' %}Questo sito è stato ideato e creato da <a href="https://tommi.space/about" target="_blank" title="About Tommi">Tommi</a> con ❤️ e impegno.{% else %}This website was created by <a href="https://tommi.space/about" target="_blank" title="About Tommi">Tommi</a> with ❤️ and commitment.{% endif %}</p>
</div>
@ -14,9 +14,6 @@
<!-- GitHub -->
<a rel="me" class"u-url" href="https://github.com/xplosionmind/quitsocialmedia.club" target="_blank" rel="noopener noreferrer" title="{% if page.lang == 'it' %}Il codice sorgente di questo sito{% else %}Source code of this website{% endif %}"><svg class="button" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="var(--primary)" style="background:0"><path d="m0 0v24l8.36-7e-3c0.602 0.11 0.821-0.252 0.821-0.569v-2c-3.35 0.712-4.06-1.58-4.06-1.58-0.223-0.718-0.697-1.33-1.34-1.73-1.09-0.723 0.0876-0.712 0.0876-0.712 0.767 0.103 1.44 0.55 1.84 1.22 0.707 1.23 2.27 1.66 3.5 0.975 0.0612-0.6 0.333-1.16 0.767-1.58-2.67-0.296-5.47-1.3-5.47-5.83-0.0239-1.18 0.412-2.32 1.22-3.19-0.366-1.01-0.323-2.13 0.12-3.11 0 0 1.02-0.318 3.28 1.2 1.97-0.526 4.05-0.526 6.02 0 2.3-1.52 3.28-1.2 3.28-1.2 0.443 0.981 0.486 2.1 0.12 3.11 0.822 0.848 1.28 1.98 1.28 3.16 0 4.53-2.83 5.53-5.47 5.83 0.588 0.57 0.889 1.37 0.821 2.19v3.23c0 0.383 0.219 0.69 0.821 0.569l7.99 0.0179v-24"/></svg></a>
<!-- Telegram -->
<a class="u-url" href="https://t.me/quitsocialmedia" target="_blank" rel="me noopener noreferrer" title="{% if page.lang == 'it' %}Canale Telegram{% else %}Telegram channel{% endif %}"><svg class="button" width="128" height="128" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m20.1 54.1c26.3-11.5 43.9-19 52.7-22.7 25.1-10.4 30.3-12.3 33.7-12.3 0.748-0.0126 2.42 0.173 3.5 1.05 0.914 0.742 1.17 1.74 1.29 2.45 0.12 0.703 0.27 2.31 0.151 3.56-1.36 14.3-7.25 49-10.2 65-1.27 6.77-3.76 9.04-6.18 9.27-5.25 0.483-9.23-3.47-14.3-6.8-7.95-5.21-12.4-8.46-20.2-13.5-8.92-5.88-3.14-9.11 1.95-14.4 1.33-1.38 24.5-22.4 24.9-24.3 0.056-0.239 0.108-1.13-0.421-1.6-0.528-0.47-1.31-0.309-1.87-0.181-0.798 0.181-13.5 8.58-38.1 25.2-3.61 2.48-6.87 3.68-9.8 3.62-3.23-0.0697-9.43-1.82-14-3.32-5.66-1.84-10.2-2.81-9.77-5.94 0.204-1.63 2.45-3.29 6.72-4.99z" fill="var(--background)"/></svg></a>
</div>
</div>
<div id="license" class="row">
@ -26,4 +23,4 @@
<p>Everything in this website, including its source code, is licensed under a <a rel="license noopener noreferrer" href="http://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>, except where otherwise specified.</p>
{% endif %}
</div>
</footer>
</footer>

View File

@ -2,7 +2,7 @@
<div class="banner red box">
<h3>🚧 {% if page.lang == 'it' %}Traduzione in corso{% else %}Work in progress{% endif %} 🏗</h3>
{% if page.lang == 'it' %}
Il contenuto di questa pagina non è stato completamente tradotto; tutti gli articoli e le note con traduzione in sospeso sono contraddistinte dal tag <a href="/development-roadmap#l10n" title="tutte le traduzioni in corso"><em>l10n</em></a>.<br />Per visualizzare il contenuto aggiornato, <a {% for p in site.pages %}{% if p.ref == page.ref and p.lang == 'en' %}href="{{ p.url }}" title="{{ p.title }}"{% endif %}{% endfor %}>visualizza questa pagina in inglese</a>
Il contenuto di questa pagina non è stato completamente tradotto; tutti gli articoli e le note con traduzione in sospeso sono contraddistinte dal tag <a href="/development#l10n" title="tutte le traduzioni in corso"><code>l10n</code></a>.<br />Per visualizzare il contenuto aggiornato, <a {% for p in site.pages %}{% if p.ref == page.ref and p.lang == 'en' %}href="{{ p.url }}" title="{{ p.title }}"{% endif %}{% endfor %}>visualizza questa pagina in inglese</a>
{% else %}
Content of this page is not complete.
{% endif %}

View File

@ -22,7 +22,7 @@ layout: wrapper
<div class="row">
<article class="note">
{% include anchor-parser.html html=content %}
{% include anchor-parser.html html=content h_max=4 anchorBody="#" anchorClass="anchor" anchorTitle="%heading%" %}
</article>
</div>

View File

@ -8,9 +8,23 @@ layout: compress
<body>
{% include theme-toggle.html %}
<a href="#">
<a id="scroll-to-top" href="#" title="scroll to top">
<svg class="top button tool" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="background:var(--background)"><path d="M18 15a1 1 0 0 1-.64-.23L12 10.29l-5.37 4.32a1 1 0 0 1-1.41-.15 1 1 0 0 1 .15-1.41l6-4.83a1 1 0 0 1 1.27 0l6 5a1 1 0 0 1 .13 1.41A1 1 0 0 1 18 15z" fill="var(--text)"/></svg>
</a>
<a id="scroll-to-bottom" href="#0" title="scroll to bottom">
<svg class="bottom button tool" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="background:var(--background)"><path d="M18 15a1 1 0 0 1-.64-.23L12 10.29l-5.37 4.32a1 1 0 0 1-1.41-.15 1 1 0 0 1 .15-1.41l6-4.83a1 1 0 0 1 1.27 0l6 5a1 1 0 0 1 .13 1.41A1 1 0 0 1 18 15z" fill="var(--text)"/></svg>
</a>
<script>
scrollbottom = document.getElementById("scroll-to-bottom");
window.onscroll = function() {scroll()};
function scroll() {
if (document.body.scrollTop > 1000 || document.documentElement.scrollTop > 1000) {
scrollbottom.style.display = "none";
} else {
scrollbottom.style.display = "block";
}
}
</script>
<input id="search" rel="search" type="search" class="tool" />
{% include nav.html %}

View File

@ -1,43 +0,0 @@
:root {
--black-ish: #222;
--white-ish: #F1FAEE;
--dark-grey: #555;
--light-grey: #AAA;
--yellow: #FCC920;
--dark-yellow: #D0A00E;
--light-blue: #A8DADC;
--blue: #1D3557;
--red: #E63946;
--green: #20CE88;
--razzmatazz: #EC0868;
--purple: #884EE1;
--dark: #533066;
color-scheme: dark light;
--yellow-gradient: linear-gradient(145deg, #DAAE1B, #FFD23E);
--blue-gradient: linear-gradient(145deg, #4c96ff, #226dd7);
--tiny: .2rem;
--tinyem: .2em;
--small: .5rem;
--smallem: .5em;
--regular-less: .9rem;
--regular: 1.1rem;
--regular-em: 1.1em;
--regular-more: 1.3rem;
--regular-more-em: 1.3em;
--big: 1.6rem;
--bigger: 1.8rem;
--twice: 2.2rem;
--height: 3.1rem;
--mastodon: 4.4rem;
--margin: 6.5rem;
--trans: .5s;
--quicktrans: .2s;
--radius-s: .4rem;
--radius-m: .6rem;
--radius-l: 1rem;
--title-text-shadow-hover: none;
}

21
pages/Delete.md Normal file
View File

@ -0,0 +1,21 @@
---
title: "Delete your Social Media accounts"
description: "You are now certain it is time to delete your accounts. What does it imply? How do you do it?"
tag: wip
permalink: /delete
redirect_from: ["/delete-accounts", "/delete-your-accounts"]
toc: false
---
## Backup
Before deleting any account, it would not be a bad idea to back up all of your data. This would also be a great opportunity to realize how much information Social Media have on you.
- [JustGetMyData](https://justgetmydata.com "JustGetMyData"), a directory of direct links for you to obtain your data from web services.
<br>
<br>
## Delete
- [JustDeleteMe](https://justdeleteme.xyz "JustDeleteMe"), a directory of direct links to delete your account from web services.
- [How to Delete Your Facebook, Twitter, Instagram, and TikTok](https://www.wired.com/story/how-to-delete-your-facebook-instagram-twitter-snapchat/ "How to Delete Your Facebook, Twitter, Instagram, and TikTok"), a [WIRED](https://wired.com "WIRED") guide

View File

@ -9,43 +9,70 @@ toc: true
---
## Coherence
- *It's incoherent: you are promoting [quitsocialmedia.club](/) **on** social media. If you promote the idea of abandoning social media and you use them to share your perspective, you go against the very idea of quitting them!*
Not quite so. Think about this: if I love the strawberry flavour of the ice cream, I won't speak about how much strawberries are delicious with a friend who is eating a strawberry ice cream, I'll try to let my friend who is eating a chocolate ice cream taste a spoon of my strawberry one. Similarly, it makes no sense to quit Social Media and share this choice *off* social media: people who may quit are the ones who didn't quit yet, and, guess what, they can be reached by social media exclusively, since there is no other valid alternative.
##### *It's incoherent: <u>you are sharing <cite><a href="/">quitsocialmedia.club</a></cite> <b>on</b> Social Media</u>. If you promote the idea of abandoning social media and you use them to share your perspective, you go against the very idea of quitting them!*
Not quite so. Think about this: if I love the strawberry flavour of the ice cream, I won't speak about how much strawberries are delicious with a friend who is eating a strawberry ice cream, I'll try to make my friend who is eating a chocolate ice cream taste a spoon of my strawberry one. Similarly, it makes no sense to quit Social Media and share this choice *off* Social Media: people who may quit are the ones who didn't quit yet, and, guess what, they can be reached by social media exclusively, since there is no other valid alternative.
This apparently incoherent decision conceals in itself one of the very reasons of quitting: you have no way (or if you do, it's very unlikely) of being noticed or reaching some audience unless it's done through those platforms.
- *If you quit social media, you should quit *all* social media*. Why do you consider only the big platforms?
Mainly, because the vast majority of the problems derives from the fact that the most famous social media are owned by corporations which make profit by managing unethically their platforms. Strictly speaking, by definition social media are not something which is mainly bad, and as a shorthand it's quicker to consider “Social Media” as “Social Media owned by for-profit companies that make money from activities users do for free”, even if it's not exactly so.
##### *If you quit social media, you should quit **all*** Social Media. *Why do you consider only the big platforms?*
Mainly, because the vast majority of the problems derives from the fact that the most famous social media are owned by corporations which make profit by managing unethically their platforms. Strictly speaking, by definition social media are not something which is mainly bad, and as a shorthand it's quicker and simpler to write “Social Media” instead of “Social Media owned by for-profit companies that make money from activities users do for free”, or, as [Jaron Lanier](http://jaronlanier.com "Jaron Lanier") calls them, [BUMMER](https://thefourthrevolution.org/wordpress/archives/6262 "How BUMMER Became a New Acronym for Social Media").
Please refer to [what](/what) for further info.
<br>
<br>
## Name
- *Why <cite>Quit Social Media</cite> and not <cite>Tommi quits Social Media</cite>?*
- *Why the `.club` domain?*
##### *Why <cite>Quit Social Media</cite> and not <cite>Tommi quits Social Media</cite>?*
Even if I somewhat already answered these questions in the [About page](/about "About - quitsocialmedia.club"), it's important to specify that I did not want to build a whole website to explain why *I* quit Social Media, or I would've done this on [my personal website](https://tommi.space "tommi.space"); I couldn't find a comprehensive list of [why](/why "Why Quit Social Media") Social Media are bad anywhere on the web: there were articles (which I linked), videos and papers, but they all focused on very few points, never providing the whole picture. Since making this website has been a stressful, long and intense work, I believe it's not about me or my personal reasons for quitting, but it extensively covers all of the possible negative arguments which would make someone quit.\
I chose the `.club` domain because it was among the cheapest and it also makes sense: [as I pointed out](/about "About - quitsocialmedia.club"), quitting Social Media alone is not a deeply meaningful action.
I thoroughly explain the main reasons in the [About page](/about "About - quitsocialmedia.club"), but it's important to specify that I did not want to build a whole website to explain why *I* quit Social Media, or I would've done this on [my personal website](https://tommi.space "tommi.space"); I did this because I couldn't find a comprehensive list of reasons [why](/why "Why Quit Social Media") Social Media are bad anywhere on the web: there were articles (which I linked), videos and papers, but they all focused on very few points, never providing the whole picture. Since making this website has been a stressful, long and intense work, I believe it's not about me or my personal reasons for quitting, but it extensively covers all of the possible negative arguments which would make someone quit.
##### *Why the `.club` domain?*
I chose the `.club` domain because it was among the cheapest, but it also makes sense: [as I pointed out](/about "About - quitsocialmedia.club"), quitting Social Media alone and it makes very little sense.
<br>
<br>
## Why
- *Why did you spend all of this time and effort creating this website?*
- *Is someone paying you?*
- *What's your gain in all of this?*
##### *Why did you spend all of this time and effort creating this website?*
I have absolutely **no personal gain** in creating this website and in spamming it everywhere. On the contrary, I invested so much time in writhing these words and building this virtual place (Im not a developer) that I became very tired and stressed and I came close to giving up. Few months ago, I was so sleepy that by mistake I deleted the working directory of this website, irremediably losing months of hard work.\
If you appreciate what I did, please [consider contributing](/contribute "Contribute")
Deep inside me, to be honest, I do not know; I just feel I need this, as strongly as I feel that I need to delete my Social Media accounts. Nevertheless, of course I devoted so many resources to this website because I frimly beliese in what is written here.
<br>
##### *Is someone paying you? What's your gain in all of this?*
I have absolutely **no personal earnings** in creating this website and in spamming it everywhere. On the contrary, I invested so much time in writing these words and building this virtual place (Im not a developer) that I became very tired and stressed and I came close to giving up. Few months ago, I was so sleepy that by mistake I completely deleted the working directory of this website, irremediably losing months of hard work (Im dumb, yes).\
If you appreciate what I did, please [consider contributing](/contribute "Contribute").\
My personal gain is being happy of doing my part in trying to leave the world a little better than I found it, [as the great Baden Powell said](https://www.brainyquote.com/quotes/robert_badenpowell_753084 "“Try and leave this world a little better than you found it”"); of course, I will not deny that becoming famous, being inteviewed and followed by crowds of people, regardless of how unlikely it may be, is something I sincerely [hope](#expectations) deep inside me.
<br>
<br>
## Expectations
- *Once the website will be completed, what will you do?*
- *Why should I share this website?*
- *What do you expect it happens?*
- *Do you want everybody in the world to quit Social Media?*
##### *Once the website will be completed, what will you do?*
I dont expect for this website to become viral, but, deep inside me, I strongly hope so. Please help me by [sharing this](/share "Share")!
A premise: this website, as everything on the internet, will never be **completely finished**. Anything which happens on the web is *a never-ending process*.\
I will spam it everywhere, talk about this in any chat with my friends. Aside from this, I am a [structured procrastinator](http://structuredprocrastination.com "Structured Procrastination") and I am [too busy](https://tommi.space/now "Tommis Now page") a ton of other stuff, so it's very unlikely that I will be able to keep this website updated and continue adding new content; however, if you are keen to improve and keep *quitsocialmedia.club* up to date, [you can do it by yourself](/contribute "Contribute")! About the technical aspects: if someone helps me paying for it, the `.club` domain will continue to be available, while the hosting is offered for free by [Netlify](https://netlify.com "Netlify"), therefore it's no problem.
<br>
##### *Why should I share this website?*
It's not my place to say, but I would be very grateful if you do it.
<br>
##### *What do you expect it will happen?*
Honestly, not much. Probably this website will be read by few friends, university colleagues and my relatives. Nonetheless, I profoundly hope that this website will become viral and that more and more people become aware of the problem, but it is not going to happen.
<br>
##### *Do you want everybody in the world to quit Social Media?*
Yes, and I believe it would be great, but I am very aware that it cannot and will never happen.

View File

@ -14,7 +14,7 @@ permalink: /home
<div class="red box row">
<h2 class="title">WTF is this website?</h2>
<p>
<b>Short answer</b>: a place where all the reasons why social media are harmful are listed and several resources to deepen knowledge on the topic are provided.
<b>Short answer</b>: a place where all the reasons why social media are harmful are listed and several resources to deepen knowledge on the topic are provided, together with valid solutions and alternatives.
<br />
<b>Long answer</b>: read the <a href="/about">About page</a>
</p>
@ -63,7 +63,7 @@ permalink: /home
<ul>
{% for p in site.pages %}
{% if p.lang == page.lang %}
{% unless p.url contains '.json' or p.url contains '.csv' or p.url contains '.css' or p.url contains '.txt' or p.title contains '404' or p.url contains '.xml' or p.title == nil or p.title == 'Home' %}
{% unless p.url contains '.json' or p.url contains '.csv' or p.url contains '.css' or p.url contains '.txt' or p.title contains '404' or p.url contains '.xml' or p.title == nil or p.title == 'Home' %}
<li><a href="{{ p.url }}" title="{{ p.title }}">{{ p.title }}</a> - {{ p.description }}</li>
{% endunless %}
{% endif %}
@ -71,4 +71,4 @@ permalink: /home
</ul>
</div>
</div>
</div>

156
pages/Links.md Normal file
View File

@ -0,0 +1,156 @@
---
title: Links
permalink: /links
redirect_from: ["/bibliography", "/resources", "/link"]
layout: page
description: "Links to related topics"
tags: wip
toc: true
---
<div>
If you are a podcast lover, please notice that audio content is <mark>highlighted in blue</mark>, while if you prefer to watch to talks or documentaries, look for <mark>what is highlighted in red</mark>
</div>
## General
- Check out the [**Center for Humane Technology**s website](https://www.humanetech.com "Center for Humane Technology") and its podcast, <cite><a href="https://www.humanetech.com/podcast" rel="noopener noreferrer" target="_blank" title="Your Undivided Attention">Your Undivided Attention</a></cite>.
Go back to the [homepage](/ "Home")
<br>
## Anger
<br>
## Hate
Go back to [Why > Hate](/why#hate "Hate")
- [Content Moderation on the Fediverse vs on Big Social media](https://conf.tube/videos/watch/d8c8ed69-79f0-4987-bafe-84c01f38f966 "Decentralized Social Networks vs. The Trolls"), a <mark>video</mark> by [Derek Caelin](https://mastodon.technology/@Argus "[Derek Caelin on Mastodon") on conf.tube
- [Facebook cant fix itself](https://www.newyorker.com/magazine/2020/10/19/why-facebook-cant-fix-itself "Facebook cant fix itself"), an article by [Andrew Marantz](https://en.wikipedia.org/wiki/Andrew_Marantz "Andrew Marantz on Wikipedia") on [<cite>The New Yorker</cite>]
- [Facebook Executives Shut Down Efforts to Make the Site Less Divisive](https://www.wsj.com/articles/facebook-knows-it-encourages-division-top-executives-nixed-solutions-11590507499 "Facebook Executives Shut Down Efforts to Make the Site Less Divisive"), an article on [The Wall Street Journal](https://www.wsj.com "The Wall Street Journal")
- [Facebook admits it was used to 'incite offline violence' in Myanmar](https://www.bbc.com/news/world-asia-46105934 "Facebook admits it was used to 'incite offline violence' in Myanmar") on BBC News
- [YouTubes algorithm seems to be funneling people to alt-right videos](https://www.technologyreview.com/2020/01/29/276000/a-study-of-youtube-comments-shows-how-its-turning-people-onto-the-alt-right/ "YouTubes algorithm seems to be funneling people to alt-right videos") on MIT Technology Review
- [Why the right wing has a massive advantage on Facebook](https://www.politico.com/news/2020/09/26/facebook-conservatives-2020-421146 "Why the right wing has a massive advantage on Facebook") on Politico
- [A Decade After the Arab Spring, Platforms Have Turned Their Backs on Critical Voices in the Middle East and North Africa](https://www.eff.org/deeplinks/2020/12/decade-after-arab-spring-platforms-have-turned-their-backs-critical-voices-middle "A Decade After the Arab Spring, Platforms Have Turned Their Backs on Critical Voices in the Middle East and North Africa")
<br>
## Polarization
Go back to [Why > Polarization](/why#polarization "Polarization")
<br>
## Misinformation
Go back to [Why > Misinformation](/why#disinformation "Disinformation")
- [Mark Zuckerberg Is an Arbiter of Truth—Whether He Likes It or Not](https://www.wired.com/story/mark-zuckerberg-is-an-arbiter-of-truth-whether-he-likes-it-or-not/ "Mark Zuckerberg Is an Arbiter of Truth—Whether He Likes It or Not"), by Steven Levy on [WIRED](https://wired.com "WIRED")
<br>
## Bubble
Go back to [Why > Bubble](/why#bubble "Bubble")
<br>
## Quality
Go back to [Why > Quality](/why#quality "Quality")
<br>
## Addiction
Go back to [Why > Addiction](/why#addiction "Addiction")
<br>
## Distraction
Go back to [Why > Distraction](/why#distraction "Distraction")
<br>
## Data
Go back to [Why > Data](/why#data "Data")
<br>
## Profilation
Go back to [Why > Profilation](/why#profilation "Profilation")
<br>
## Monopolization
Go back to [Why > Monopolization](/why#monopolization "Monopolization")
- [Facebook is a social network monopoly that buys, copies or kills competitors, antitrust committee finds](https://www.cnbc.com/2020/10/06/house-antitrust-committee-facebook-monopoly-buys-kills-competitors.html "Facebook is a social network monopoly that buys, copies or kills competitors, antitrust committee finds"), by Salvador Rodriguez on CNBC
<br>
## Sociality
Go back to [Why > Sociality](/why#sociality "Sociality")
<br>
## Standardization
Go back to [Why > Standardization](/why#standardization "Standardization")
- [The internet didnt kill counterculture—you just wont find it on Instagram](https://www.documentjournal.com/2021/01/the-internet-didnt-kill-counterculture-you-just-wont-find-it-on-instagram/ "The internet didnt kill counterculture—you just wont find it on Instagram")
<br>
## Content ownership
Go back to [Why > Content ownership](/why#content-ownership "Content Ownership")
<br>
## Hurry
Go back to [Why > Hurry](/why#hurry "Hurry")
<br>
## Simplicity vs simplification
Go back to [Why > Simplicity vs Simplification](/why#simplicity-vs-simplification "Simplicity vs Simplification")
<br>
## Being always connected
Go back to [Why > Being always connected](/why#being-always-connected "Being Always Connected")
<br>
## Environment
Go back to [Why > Environment](/why#environment "Environment")
<br>
## Closed
Go back to [Why > Closed](/why#closed "Closed")
<br>
## Saturation
Go back to [Why > Saturation](/why#saturation "Saturation")
<br>
## Being used
Go back to [Why > Being used](/why#being-used "Being used")

View File

@ -1,17 +0,0 @@
---
title: Resources
ref: resources
lang: en
permalink: /resources
redirect_from: ["/bibliography", "/bibliografia", "/risorse"]
layout: page
description: "Every link posted in this website"
tags: wip
---
<ul>
{% for resource in site.data.resources %}
<li>
{% if resource.lang == 'it' %}&#127470;&#127481; {% endif %}<a href="{{ resource.link }}" title="{{ resource.name }}">{{ resource.name }}</a>- referenced <a href="{{ resource.where }}">here</a>{% unless resource.where2 == '0' %} and <a href="{{ resource.where2 }}">here</a>{% endunless %}
</li>
{% endfor %}
</ul>

View File

@ -46,23 +46,33 @@ You are welcome to test and use the RSS-Bridge instance I host on my server by v
## Alternatives
We already covered [the reasons](/why "Why") why Social Media platforms as we know them are bad. Nevertheless, there are plenty of platforms which solve most, if not all, of Social Media greatest issues. The key features which all of them share is that they have **no ads**, user data collected are **the minimum** needed to make the service work, and they are open source: they will never die. Furthermore, since the software is open and anyone can use it, there are several different instances
We already covered [the reasons](/why "Why") why Social Media platforms as we know them are bad. Nevertheless, there are plenty of platforms which solve most, if not all, of Social Media greatest issues. The key features which all of them share is that they have **no ads**, user data collected are **the minimum** needed to make the service work, and they are open source: they will never die.
All of these platforms are free not only to subscribe to, but also to actually use! Anyone could take the code and install it on her/his own server. Imagine having a whole Facebook, completely owned by you. How cool would it be?
All of these platforms are free not only to subscribe to, but also to actually use! Anyone could take the code and [install it on her/his own server](#run-your-own). Imagine having a whole Facebook, completely owned by you. How cool would it be?
- [Mastodon](https://joinmastodon.org "Join Mastodon") is the most famous one. Think of it as a healthier version of Twitter.
- [Mastodon](https://joinmastodon.org "Join Mastodon"), with more than **four active million users** all around the world, is by far the most popular and developed one; its structure and functioning make it very similar to Twitter.
- [Pixelfed](https://pixelfed.org "Pixelfed official website") is almost identical to Instagram. It has stories, too!
- [Friendica](https://friendi.ca "Friendica official website") it something like Facebook.
- [PeerTube](https://joinpeertube.org "PeerTube") is a great paltform built by the French Framasoft. As the name suggests, it's like YouTube, but it relies on peer-to-peer video sharing to avoid stressing the servers which host the existing instances.
- [Alternative Social Networks](https://github.com/redecentralize/alternative-internet#social-networks "Alternative Internet repository on GitHub"), the section of the [Alternative Internet](https://github.com/redecentralize/alternative-internet#social-networks "“Alternative Internet” repository on GitHub") GitHub repository by [Redecentralize](https://github.com/redecentralize "Redecentralize on GitHub")
The most awesome thing is that all of these platforms are connected among each other: I can follof from my mastodon account someone on PixelFed, as well as a PeerTube channel. This is possible because these healthier alternative Social Media platforms are based on the same protocol, [ActivityPub](https://en.wikipedia.org/wiki/ActivityPub "“ActivityPub„ on Wikipedia"). Thanks to this federation, all of these platforms can interact with each other and together they composed what is wonderfully called the [*Fediverse*](https://www.wikiwand.com/en/Fediverse "“Fediverse„ on Wikipedia") (which stands for *Federated (Social Media) Universe*)
### Further reading
- [Redecentralize blog](https://redecentralize.org/blog "Redecentralizes blog"), an independent, volunteer-driven organisation promoting the decentralisation of our digital technology.
- [Internet of People](https://iop.global "Internet of People")
<br>
<br>
## Run your own
Run your own social networking platform! It's awesome and, in the end, it's not so hard. About this topic, everything is perfectly explained in [runyourown.social](https://runyourown.social "Run Your Own Social"); once you get to the end of that quite long (yet super interesting and insightful) page, you'll want nothing more than starting your own platform.
Run your own social networking platform! It is awesome and, in the end, it is not so complicated. Literally everything about this topic is perfectly explained in [runyourown.social](https://runyourown.social "Run Your Own Social"); once you get to the end of that quite long (yet super interesting and insightful) page, you will want nothing more than starting your own platform.
<div class="blue box">
<strong>Note</strong>: one thing which has to be pointed out in advance is that running your own social <u>does not mean</u> at all that you have to build one from scratch or that it will be “yet another social media platform” where the user base is so tiny that the social platform itself is useless. Instead, one of the most awesome features of running your own social is that your platform can connect to all of the other Fediverse platforms in the world, hence making your potential connections everything but limited!
<strong>Note</strong>: one thing which has to be pointed out in advance is that running your own social <u>does not mean</u> at all that you have to build one from scratch or that it will be “yet another social media platform” where the user base is so tiny that the social platform itself is useless. Instead, one of the most awesome features of running your own social is that <u>your platform can connect to all of the other Fediverse platforms in the world</u>, hence making your potential connections everything but limited!
</div>
<br>

View File

@ -27,4 +27,12 @@ By “Social Media”, we mean Facebook, Twitter, TikTok, YouTube, Snapchat and
So, which platforms should be abandoned and which ones not?
The answer is not definite and clear, but it's easy to have an idea of how bad a networking platform is by confronting the [Why](/why) page with the Privacy Policy of the service you are interested in.
The answer is not definite and clear, but it's easy to have an idea of how bad a networking platform is by confronting the [Why](/why) page with the Privacy Policy of the service you are interested in.
<br>
<br>
## Further reading
- [Social Media statistics](https://chrissniderdesign.com/blog/resources/social-media-statistics/ "Social Media statistics"): active users, revenue, data about the main Social Media platforms
- [Facebook ads library](https://www.facebook.com/ads/library/ "Facebook ads Library"), look for ads and advertisers

View File

@ -7,22 +7,38 @@ toc: true
layout: page
description: "The heart of the matter: all of the reasons why we should quit Social Media"
---
I haven't found yet a place on the web where all of these reasons for why Social Media are bad were listed. You might not believe in one or two of them, and even a handful of them won't be sufficient to make you realize the gravity of the problem. Nevertheless, after going through all of the arguments, it's hard to negate that something has to be done. The most effective something we can do as individuals, before government actions, lawsuits and reports, is quitting.
## Introduction
Up to now, I could not find a place on the web where **all** of the reasons why Social Media are bad are listed; therefore, I decided to create one.\
Among the arguments presented below, you might not believe in one or two or them, and even a handful of them may not be sufficient to make you realize the gravity of the problem. Nevertheless, after going through all of the following points, it's hard to negate that you cannot continue to go on using Social Media as they were no problem.\
<u>The most effective “something„ we can do</u>, as individuals, without waiting for government actions, lawsuits and reports, <u>is quitting</u>.
<br>
<br>
## Anger
It's scientifically proven that negative emotions engage users way more than positive emotions. Feed composition algorithms are tailored to maximize engagement and interaction, they don't actually care about how users feel. Our emotions are governed by a machine: you get angry for something you see, you react to it, and you'll start seeing more of it. The more anger, the more engagement, the better.
<u>It is scientifically proven that negative emotions engage users way more than positive emotions</u>. Algorithms which compose our feeds are tailored to maximize engagement and interaction, they do not actually care about how users feel. Our emotions are governed by a machine: some gets angry for something you see, she reacts to it, and she will start seeing more of it. <u>The more anger, the more engagement</u>, the better it is.
### Further reading
- [more](/links#anger "More resources about anger and Social Media")
<br>
<br>
## Hate
Strictly connected with [anger](#anger "Anger"). When you get angry, you do something about it. This is exactly what Social Media platforms wait for. It doesn't matter how much the debate is fired up, as long as you're interacting a lot, it's good. The problem is you get more hateful: you can't discuss with people who have a different idea without judging them.
Social Media allow us to report content which contains hate or insults, but one thing which can't be reported are **emotions**.
[Hate](#hate "Hate") is strictly connected with [anger](#anger "Anger"): when you get angry, you do something about it. This is exactly what Social Media platforms wait for. It doesn't matter how much the debate is fired up. As long as you're interacting a lot, everything is good. The problem is users get more hateful: the cannot discuss anymore with who has a different idea without judging her.
Social Media allow us to report content which contains hate or insults, but the one thing which cannot be reported is a **feeling**. Social Media owners can attempt to moderate their posts, but they do not always do it, and, most importantly, they practically are unable to: there are too many publications, and it is virtually impossible to check all of them!
### Further reading
- [Facebook cant fix itself](https://www.newyorker.com/magazine/2020/10/19/why-facebook-cant-fix-itself "Facebook cant fix itself"), an article by [Andrew Marantz](https://en.wikipedia.org/wiki/Andrew_Marantz "Andrew Marantz on Wikipedia") on [<cite>The New Yorker</cite>]
- [Facebook Executives Shut Down Efforts to Make the Site Less Divisive](https://www.wsj.com/articles/facebook-knows-it-encourages-division-top-executives-nixed-solutions-11590507499 "Facebook Executives Shut Down Efforts to Make the Site Less Divisive"), an article on [The Wall Street Journal](https://www.wsj.com "The Wall Street Journal")
- [more](/links#hate "More resources related to hate and Social Media")
<br>
<br>
@ -30,7 +46,12 @@ Social Media allow us to report content which contains hate or insults, but one
## Polarization
It goes without saying that hateful speech and anger lead to a strong polarization in society.\
“Polarization” is a word we are hearing a lot in these days, but the surprising fact is that it isn't linked to one bad side only; division and extremism are fostered by people with different ideas who can't listen to each other. Social Media platforms don't do much to allow a more peaceful way of sharing ideas and a greater openness to different positions.
“Polarization” is a word we are hearing a lot in these days, but the surprising fact is that it is not linked to one bad side only; division and extremism are fostered by people with different ideas who are unable listen to each other. Social Media platforms do not do much to allow a more peaceful way of sharing ideas and a greater openness to different positions.
### Further reading
- <cite><a href="https://thesocialdilemma.com" rel="noopener noreferrer" target="_blank" title="The Social Dilemma">The Social Dilemma</a></cite>, a <mark class="red">documentary</mark> by [Jeff Orlowski](https://en.wikipedia.org/wiki/Jeff_Orlowski "Jeff Orlowski")
- [more](/links#polarization "More resources on Polarization and Social Media")
<br>
<br>
@ -42,6 +63,7 @@ This is one of the key points of 2020, and of the last months in general: Social
### Further reading
- [Dont Blame Section 230 for Big Techs Failures. Blame Big Tech.](https://www.eff.org/deeplinks/2020/11/dont-blame-section-230-big-techs-failures-blame-big-tech "Dont Blame Section 230 for Big Techs Failures. Blame Big Tech. - EFF") by Elliot Harmon on [EFF](https://eff.org "EFF official website")
- [more](/links#misinformation "More resources about misinformation and Social Media")
<br>
<br>
@ -50,6 +72,11 @@ This is one of the key points of 2020, and of the last months in general: Social
Since algorithms which govern Social Media aim to keep users hooked to their platform the more they can, they attempt to show us content they know users will like. We're not talking about advertisements alone, we're talking about suggestions inside the platform. “You may also like”, “similar to this” … are just other ways of telling you “keep browsing more, stay here!”. The problem isn't only being [hooked](#addiction "Addiction"), but also ending up living in a bubble, where the vast majority of the content is likeable to you or in line with your ideas, while other things are a remote, unimportant matter. Think about a political election you voted to in the last few years: if you get informed about politics through social media, you probably believed that your side, whatever it was, was gonna win, even if it didn't. This is the simplest example of living in a bubble: you perceive a distorted view of reality.
### Further reading
- [The Future of Privacy](https://philosophy247.org/podcasts/the-future-of-privacy/ "Philosophy 24/7 The Future of Privacy"), a <mark class="blue">podcast</mark> interview to [Carissa Véliz](https://carissaveliz.com "Carissa Véliz"), specifically speaking about “the bubble” at minute `4:00`
- [more](/links#bubble "External links about “Bubble”")
<br>
<br>
@ -81,6 +108,10 @@ Again: it's not that if someone isn't focused it's because of Social Media, but
Whether we want this or not, even by passively using Social Media, so by browsing around, whatcing videos and pictures or reading posts, we give Social Media platforms owners a huge amount of data about us and about what we like, for free. Such data, even if it's “deliberately” shared, are piled up day after day, month after month and year after year. The result is scary… what all of this information about us is used for? The answer is [user profilation](#profilation "Profilation").
### Further reading
- [How tech companies deceive you into giving up your data and privacy](https://www.ted.com/talks/finn_lutzow_holm_myrstad_how_tech_companies_deceive_you_into_giving_up_your_data_and_privacy "How tech companies deceive you into giving up your data and privacy"), a <mark class="red">TED Talk</mark> by [Finn Lützow-Holm Myrstad](https://www.ted.com/speakers/finn_myrstad "Finn Lützow-Holm Myrstad")
<br>
<br>
@ -90,6 +121,11 @@ Probably this is one of the main reasons why people delete their social media ac
It's not a secret: our identity is sold to addvertisers to show (or better, flood our feed) with ads “of our interest”. This may be even good if it was used solely for marketing purposes, but, unfortunately, it's not: we may be (and probably we are) targeted by political ads, which don't aim to sell us something, but their purpose is to condition our behavior and distort our view of the world, further enforcing the [bubble](#bubble "Bubble") we are uncounsciously trapped in.
### Further reading
- [The Cambridge Analytica Story, Explained](https://www.wired.com/amp-stories/cambridge-analytica-explainer/ "The Cambridge Analytica Story, Explained"), by [WIRED](https://wired.com)
- [Facebook's role in Brexit — and the threat to democracy](https://www.ted.com/talks/carole_cadwalladr_facebook_s_role_in_brexit_and_the_threat_to_democracy "Facebook's role in Brexit — and the threat to democracy"), a <mark class="red">TED Talk</mark> by [Carole Cadwalladr](https://en.wikipedia.org/wiki/Carole_Cadwalladr "Carole Cadwalladr on Wikipedia")
<br>
<br>
@ -99,6 +135,13 @@ Is there any way to become an influencer, to promore a product, to share a polit
Facebook is now being sued in the US by the government and by several states, exactly with the accusation of unlawfully acquiring and avoiding competitors.
### Further reading
- [FTC Sues Facebook for Illegal Monopolization](https://www.ftc.gov/news-events/press-releases/2020/12/ftc-sues-facebook-illegal-monopolization "FTC Sues Facebook for Illegal Monopolization"), the press release in which the Federal Trade Commission announces to sue Facebook
- [WIREDs Guide to Net Neutrality](https://www.wired.com/story/guide-net-neutrality/ "WIREDs Guide to Net Neutrality")
- [Facebook's 'monopoly power' hurts user privacy, finds Congress](https://mashable.com/article/house-antitrust-report-facebook-privacy-misinformation/ "“Facebook's 'monopoly power' hurts user privacy, finds Congress” on Mashable"), an article on [Mashable](https://mashable.com "Mashable")
- [more](/links#monopolization "More resources related to the Monopolization and Social Media")
<br>
<br>
@ -247,4 +290,17 @@ It's impossible for us to change Social Media and stop being used by them, unles
In our hand we have the power to say no, to stop the trend, to give back diversity, empathy, calm, peace, meaning, art, and authentic feelings to the world.
It's not easy, and it's quite painful at the beginning, but you can do it, we can do it, if we're not alone.
It's not easy, and it's quite painful at the beginning, but you can do it, we can do it, if we're not alone.
### Further reading
- [<cite>Who does that server really serve?</cite>](https://www.gnu.org/philosophy/who-does-that-server-really-serve.html "Who does that server really serve?"), by [Richard Stallman](https://richardstallman.org "Richard Stallmans personal website") on [GNU.org](https://gnu.org "GNU official website")
<br>
<br>
<br>
## What to do now?
Probably, it is about time.\
[Delete](/delete "Delete your Social Media accounts") your Social Media accounts.

View File

@ -5,7 +5,7 @@ lang: en
permalink: /about
redirect_from: ["/who", "/purpose"]
layout: page
description: "What quitsocialmedia.club is, how it's born and what its purposes are"
description: "What <cite>quitsocialmedia.club</cite> is, how it's born and what its purposes are"
---
Hi, I'm Tommi, and I created this website. Let's skip the part [about me](https://tommi.space/about "About - tommi.space"), you can read it [on my website](https://tommi.space/ "tommi.space, Tommi's personal website").
@ -42,8 +42,6 @@ Quitting Social Media might be a great start.
<br />
## Notes
## Something is missing?
- I chose the `.club` domain because it was among the cheapest and, in the end, it makes sense.
- I want to point out I have absolutely **no personal gain** in creating this website and in spamming it everywhere. On the contrary, I invested so much time in writhing these words and building this virtual place (Im not a developer) that I became very tired and stressed and I came close to giving up (few months ago, I was so sleepy that by mistake I deleted the working directory of this website, irremediably losing months of hard work). If you appreciate what I did, please [consider contributing](/contribute "Contribute")
- I dont expect for this website to become viral, but, deep inside me, I strongly hope so. Please help me by [sharing this](/share "Share")!
If you have some questions or doubts which this page could not answer, please check the [Objections and Replies](/faq "Objections and Replies") (<abbr title="Also Known As">a.k.a.</abbr> <abbr title="Frequently Asked Questions">FAQ</abbr>).

View File

@ -1,48 +0,0 @@
---
title: Info
ref: about
lang: it
permalink: /info
redirect_from: ["/about-it", "/it/about", "/informazioni", "/it/l00", "/it/l0", "/it/level-0", "/it/level0"]
layout: page
description: "Cos'è <cite>quitsocialmedia.club</cite>, come e perché è nato ed il suo fine"
level: "0"
---
Sono Tommi, ho creato questo sito. Saltiamo la parte su di me, che si può leggere sul mio [sito web](https://tommi.space/about-it "Tommi").
Dopo svariati tormentati mesi trascorsi a crucciarmi sui pregi e difetti dei social media, non ce la facevo più. Ero così stressato e ossessionato dai problemi etici che i social network pongono, così ossessionato da letture e documentari per capirne il funzionamento, da concludere che <strong>abbandonarli</strong> è l'unico modo per stare meglio</u>.
Mi sono reso conto, tuttavia, che semplicemente abbandonarli senza fare altro è totalmente inutile. Quante altre persone nel mondo condividono i miei stessi pensieri e preoccupazioni? Come posso condividere nel migliore modo possibile l'importanza cruciale di dubitare del funzionamento dei social network con i miei amici? Come far crescere curiosità, necessità di conoscenza e consapevolezza riguardo il modo in cui hanno luogo la maggior parte delle nostre relazioni online, oggi?
Solamente abbandonare i Social Media non cambia nulla.
<br>
## Perché
Ho deciso di creare quesot sito fondamentalmente perché mi sono accorto che ogni articolo, video o documento che attacca per qualche motivo i *Social Media* menziona sempre <u>solamente una parte dei problemi conseguenti all'esistenza ed al loro utilizzo</u>. Per quanto sia difficile abbracciare completamente ogni aspetto della questione, ritengo sia importante mostrare una visione globale del problema, lasciando che siano i singoli a prendere le proprie decisioni. <u><a href="/it/why" target="_blank" title="Perché">I motivi</a> per abbandonare i <i>social</i> sono molti</u>, credo non possano né debbano essere ignorati.
<br>
## Fine
Questo sito web ha tre principali scopi:
- <u>Riunire ed elencare in un unico luogo</u> tutti gli articoli, le ricerche, i documentari, le interviste e materiale di ogni sorta che provi come i rischi e i danni dei Social Media superino di gran lunga i loro (pur fantastici) vantaggi.
- Essere <u>un punto di riferimento per tutti i “Social Media quitters”</u>, una comunità globale sempre crescente, per permettere loro condividere ed esprimere chiaramente ed efficecemente le loro motivazioni
- Permettere agli utenti scettici e indifferenti dei Social Media di capire come <u>le scelte individuali e personali siano cruciali</u> e fondamentali per migliorare l'esperienza online di tutti e rendere internet un posto migliore.
Conosco e seguo con passione innumerevoli grandiose e fantastiche *communities* che promuovono la libertà e l'apertura di internet e l'indipendenza dalle colossali, ricchissime e chiuse aziende che ci forniscono [la maggioranza](/it/what "Cosè un Social Media") dei servizi di social networking. Nonostante questo, sento ci sia un elemento fondamentale che non è abbastanza spinto e promosso: **le decisioni e le azioni di ognuno di noi sono la chiave per il cambiamento globale**. Non dovremmo aspettare che vengano promosse regolamentazioni e leggi; allo stesso modo, non possiamo credere che un giorno qualcuno arriverà e renderà tutto migliore.
**!!** Non intendo assolutamente costringervi ad abbandonare e uscire dai social media, né convincervi che sia la migliore cosa da fare, anche se ne sono assolutamente certo. Vorrei che chiunque arrivi qui <u>analizzi attentamente i contenuti del sito</u> e tutto il materiale riportato, per decidere autonomamente cosa fare.
Dobbiamo comprendere, leggere, informarci e studiare quello che sta accadendo.
<br>
## Note
- Ho scelto il dominio `.club` perché era fra i più economici e, alla fine, ha senso.
- Ci tengo a sottolineare che non traggo assolutamente alcun tipo di vantaggio nel creare questo sito e nell'inviarlo ovunque. Al contrario, ho investito così tanto tempo a costruire questo luogo virtuale che svariate volte sono arrivato vicino al mollare tutto. (Per dire: una volta ero così addormentato che per errore ho eliminato la cartella contenente tutto il materiale del sito, perdendo irrimediabilmente mesi di studio e lavoro, dovendo ricominciare da capo)
- Non mi aspetto che questo sito diventi virale, ma, in fondo in fondo, spero fortemente di sì
- Non mi aspetto che questo sito diventi virale, ma, in fondo in fondo, spero fortemente di sì.

View File

@ -13,4 +13,4 @@ Ci sono diversi modi per contribuire a *quitsocialmedia.club*; ognuno di essi sa
- [**Traduci**](/l10n "Localization page") i contenuti del sito
- **Aggiungi conoscenza**: suggerisci video, conferenze, ricerche, articoli, ecc. da aggiungere qui
- **Migliora i contenuti**: correggi errori grammaticali e di battiturafix typos, suggerisci migliori espressioni per spiegare qualcosa, segnala dati non corretti o fonti non affidabili
- [Tommi](https://tommi.space "Tommi's personal website") (il creatore di questo coso) è uno studente, non è pagato da nessuno e nonostante questo <u>ha speso ore ed ore, per diversi mesi</u> a [studiare](/perché "Perché") l'argomento, sviluppare l'idea, costruire questo sito, e curarne i contenuti. Potresti considerare di **[fare una donazione](https://liberapay.com/tommi/donate "fai una donazione tramite Liberapay")** per il tempo che ha dedicato a realizzare questo progetto.
- [Tommi](https://tommi.space "Tommi's personal website") (il creatore di questo coso) è uno studente, non è pagato da nessuno e nonostante questo <u>ha speso ore ed ore, per diversi mesi</u> a [studiare](/perché "Perché") l'argomento, sviluppare l'idea, costruire questo sito, e curarne i contenuti. Potresti considerare di **[fare una donazione](https://it.liberapay.com/tommi/donate "fai una donazione tramite Liberapay")** per il tempo che ha dedicato a realizzare questo progetto.

84
pages/it/FAQ.md Normal file
View File

@ -0,0 +1,84 @@
---
title: Obiezioni e risposte
ref: faq
permalink: /it/faq
redirect_from: ["/risposte-e-obiezioni"]
layout: page
description: "Come fanno gli scrittori seri, ho inviato in anteprima questo sito a persone particolarmente informate su questi temi e di cui valuto molto l'opinione affinché condividessero con me le loro impressioni. In stile pseudo-filosofico, affronto alcune delle loro domande ed obiezioni qui di seguito."
toc: true
lang: it
---
## Coerenza
##### *Non è coerente: <u>stai condividendo <cite><a href="/">quitsocialmedia.club</a></cite> **sui** Social Media</u>. Se promuovi l'idea di abbandonare i* Social *e li usi per condividere questa prospettiva, vai contro l'idea stessa di abbandonarli!*
Non proprio. Pensa a questo: se io amo il gelato alla fragola, non parlerò di quanto sono gustose le fragole con un mio amico che sta addentando un cono alla fragola; piuttosto, proverò a far assaggiare un cucchiaio del mio gelato alla fragola ad un mio amico che sta mangiando il gelato al cioccolato. Allo stesso modo, non ha senso abbandonare i *Social Media* e condividere questa idea **fuori** dalle piattaforme interessate: le persone che *possono* eliminare i propri account sono quelle che non l'hanno ancora fatto e, conseguentemente, sono coloro che possono essere raggiunti unicamente tramite *Social Media*.
Questo metodo di condivisione apparentemente incoerente nasconde in realtà al suo interno proprio una delle ragioni per cui si dovrebbe abbandonare i *Social*: non esiste un modo (e, se c'è, è molto poco considerato) per essere notato o ascoltato se non attraverso le piattaforme in questione.
<br>
##### *Abbandonare i* Social Media *implica abbandonare **tutti** i* Social Media. *Perché consideri solo le più grandi piattaforme?*
Fondamentalmente, perché la maggior parte dei problemi deriva dal fatto che i *Social Media* più comuni e diffusi sono posseduti da *corporations* che guadagnano somme ingenti di denaro gestendo in maniera non etica le proprie piattaforme. Strettamente parlando, per definizione i *Social Media* non sono qualcosa di brutto con connotazione negativa, e per semplicità scrivo “Social Media” per intendere “Social Media posseduti da società che traggono profitto da attività che noi facciamo gratis”, o, come li definisce [Jaron Lanier](http://jaronlanier.com "Jaron Lanier"), [BUMMER](https://thefourthrevolution.org/wordpress/archives/6262 "How BUMMER Became a New Acronym for Social Media").
Per un ulteriore approfondimento di questo aspetto, si prega di leggere [cosa](/cosa "Cosa sono i Social Media?").
<br>
<br>
## Name
##### *Perché <cite>Quit Social Media</cite> e non <cite>Tommi quits Social Media</cite>?*
Spiego più approfonditamente le ragioni di questa scelta nelle [info](/info "Info - quitsocialmedia.club"), ma è importante sottolineare che non ho costruito un intero sito web per spiegare perché *io* ho abbandonato i *Social Media*, altrimenti avrei scritto a proposito unicamente [sul mio sito personale](https://tommi.space "tommi.space"); non sono riuscito a trovare da nessuna parte un elenco completo di ragioni per cui i *Social Media* sono un problema: esistono innumerevoli articoli (alcuni dei quali sono stati qui riportati), video e ricerche, ma tutti si concentrano unicamente su alcuni punti, senza mai fornire un quadro completo delle problematiche. Poiché creare questo sito è stato un lavoro lungo, intenso e stressante, non penso si tratti del mio personale punto di vista quanto della mia necessità di aprire gli occhi a chi non vuole o non ha mai saputo riconoscere i pericoli delle piattaforme che ogni essere umano utilizza almeno una volta al giorno, e affrontare tutto questo spiegando perché sarebbe utile [eliminare tutto](/elimina) ed [essere liberi](/soluzioni).
<br>
##### *Perché il dominio `.club`?*
Ho scelto questo dominio, in tutta sincerità, perché era fra i più economici, ma in fondo ha senso. [Come ho scritto](/info "Quit Social Media Info") abbandonare individualmente i *Social Media* e basta non ha molto senso.
<br>
<br>
## Perché
##### *Perché hai messo tutto questo impegno e investito così tanto tempo a creare questo sito?*
In fondo, ad essere onesto, non ne ho idea; sento unicamente che ne ho bisogno, con la stessa forza con cui sento che devo abbandonare i miei account sui *social*. Cionondimeno, chiaramente ho fatto tutto questo perché credo fortemente in quanto ho scritto e riportato qui.
<br>
##### *Qualcuno ti sta pagando? Cosa ci guadagni?*
Non ho assolutamente **alcun guadagno pecuniario** nel creare questo sito web, né nel condividerlo ovunque. Al contrario, ho speso così tanto tempo a scrivere queste pagine e costruire questo luogo virtuale (non sono uno sviluppatore) che sono diventato molto stanco e in più occasioni sono arrivato vicino ad abbandonare tutto.\
Alcuni mesi fa, ero così addormentato che per errore ho eliminato da terminale la cartella contenente questo sito, perdendo irrimediabilmente mesi di lavoro (sono scemo, sì).\
Se hai apprezzato ciò che ho fatto, potresti [considerare di contribuire](/contribuisci "Contribuisci") anche tu.\
Il mio guadagno è strettamente personale e corrisponde alla felicità di fare la mia parte nel lasciare il mondo un po' migliore di come l'ho trovato, [come dice il sommo Baden Powell](https://hyp.is/LrTvBopgEeqMqF-McSiwCw/it.scoutwiki.org/Citazioni_di_Baden-Powell "Cercate di lasciare questo mondo un po migliore di quanto non lavete trovato"); naturalmente, non negherò che diventare famoso, essere intervistato e seguito da folle di persone, indipendentemente da quanto possa essere probabile, è qualcosa in cui fortemente [spero](#aspettative "Aspettative") dentro di me.
<br>
<br>
## Aspettative
##### *Una volta completato il sito, cosa farai?*
Una premessa: questo sito web, come ogni antra cosa su internet, non potrà mai essere **completamente terminato**. Tutto ciò che esiste su internet, è in realtà un *processo infinito*.
Lo spammerò ovunque e ne parlerò in qualunque conversazione con chiunque. A parte questo, sono uno [*structured procrastinator*](http://structuredprocrastination.com "Structured Procrastination") e sono troppo distratto da altre mille questioni per riuscire a mantenere questo sito aggiornato e aggiungere nuovi contenuti; tuttavia, se fossi desideroso di migliorare e aggiornare *quitsocialmedia.club*, [puoi farlo tu stesso](/contribuisci "Contribuisci")!\
Per quanto riguarda gli aspetti tecnici: se qualcuno fosse così gentile da aiutaemi a pagarlo, il dominio `.club` continuerà ad essere utilizzato, mentre l'*hosting* è offerto gratis da [Netlify](https://netlify.com "Netlify"), quindi non cè problema.
<br>
##### *Perché dovrei condividere questo sito?*
Non sta a me dirlo, ma ti sarei molto grato se decidessi di farlo.
<br>
##### *Cosa ti aspetti succederà?*
In tutta sincerità, non molto. Probabilmente questo sito web sarà letto da alcuni amici, compagni di corso e parenti. Ciononostante, spero fortemente che questo sito diventi virale e che sempre più persone diventino consapevoli del problema, che io venga ospitato da [Gramellini su Rai Tre](https://www.raiplay.it/programmi/leparoledellasettimana "Le Parole della Settimana su Rai Play") e che l'Italia e il mondo intero mi acclamino come colui che ha risolto i problemi di internet, ma non succederà, anche perché non è affatto così: io offro una semplice [soluzione](/soluzioni "Soluzioni") a un insieme indefinito e immenso di problemi, ma non sono sicuro che funzionerà.
<br>
##### *Vorresti che tutte le persone nel mondo eliminassero i Social Media?*
Sì, credo anche che sarebbe grandioso, ma sono molto consapevole che non può succedere e non accadrà mai.

View File

@ -3,7 +3,7 @@ title: Home
lang: it
ref: home
permalink: /it/home
redirect_from: ["/home-it", "/it-home", "/home/it"]
redirect_from: ["/home-it", "/it-home", "/home/it", "/tuffo"]
---
<div class="one column">
<div class="row">
@ -11,18 +11,18 @@ redirect_from: ["/home-it", "/it-home", "/home/it"]
<h1>Quit Social Media</h1>
<p>Tuttle le ragioni per cui i Social Media come li conosciamo ora sono pericolosi e tutte le possibili soluzioni per vivere una vita felice sul web.</p>
</div>
</div>
</div>
<div class="red box row">
<h2 class="title">Cosa cavolo è questo sito?</h2>
<p>
<b>Risposta breve</b>: un luogo in cui sono esposte tutte le ragioni per cui i Social Media sono un gran problema, con diverse risorse che ne spiegano il perché.
<b>Risposta breve</b>: un luogo in cui sono esposte tutte le ragioni per cui i Social Media sono un gran problema, con diverse risorse che ne spiegano il perché, insieme a valide soluzioni e alternative.
<br />
<b>Risposta lunga</b>: leggi le <a href="/info">info</a>.
</p>
<h3 class="title">Da dove partire</h3>
<p>
Probabilmente sarai una persona impegnata che non ha tempo da perdere per queste sciocchezze. Ok, ti capisco: ho scritto <a href="/veloce">un veloce riassunto</a> per te.
Probabilmente sarai una persona impegnata e non avrai tempo da perdere per queste sciocchezze. Ok, ti capisco: ho scritto <a href="/veloce">un veloce riassunto</a> per te.
</p>
<p>
Se dedicare un po' più del tuo tempo all'argomento non ti spaventa, io posso assicurarti che ne vale la pena. Ti consiglio di seguire <a href="/percorso" title="/percorso" title="Percorso">questo percorso</a>.

43
pages/it/Info.md Normal file
View File

@ -0,0 +1,43 @@
---
title: Info
ref: about
lang: it
permalink: /info
redirect_from: ["/about-it", "/it/about", "/informazioni", "/it/l00", "/it/l0", "/it/level-0", "/it/level0"]
layout: page
description: "Cos'è <cite>quitsocialmedia.club</cite>, come e perché è nato ed il suo fine"
level: "0"
---
Sono Tommi, ho creato questo sito. Saltiamo la parte su di me, che si può leggere sul mio [sito web](https://tommi.space/about-it "Tommi").
Dopo svariati tormentati mesi trascorsi a crucciarmi sui pregi e difetti dei *Social Media*, non ce la facevo più. Ero così stressato e ossessionato dai problemi etici che i social network pongono, così ossessionato da letture e documentari per capirne il funzionamento, da concludere che <u><strong>abbandonarli</strong> sarebbe stato l'unico modo per stare meglio</u>.
Mi sono reso conto, tuttavia, che semplicemente <u>eliminare i miei account senza fare altro è totalmente inutile</u>. Quante altre persone nel mondo condividono i miei stessi pensieri e preoccupazioni? Come posso condividere nel migliore modo possibile l'importanza cruciale di dubitare del funzionamento dei social network con i miei amici? Come far crescere curiosità, necessità di conoscenza e consapevolezza riguardo il modo in cui hanno luogo la maggior parte delle nostre relazioni online, oggi?
Tentando di rispondere a queste domande, ho deciso di creare <cite>quitsocialmedia.club</cite>
<br>
## Perché
Mi sono accorto che ogni articolo, video o documento che critica i *Social Media* menziona sempre <u>solamente una parte dei problemi conseguenti alla loro esistenza ed al loro utilizzo</u>. Per quanto sia difficile abbracciare completamente ogni aspetto della questione, ritengo sia importante mostrare una visione globale del problema, lasciando che siano i singoli a prendere le proprie decisioni. <u><a href="/it/why" target="_blank" title="Perché">I motivi</a> per abbandonare i <i>social</i> sono molti</u>, credo non possano né debbano essere ignorati. <cite>quitsocialmedia.club</cite> intende raccogliere diversi punti di vista in forme differenti e mostrare come uscire dai *Social Media* sia la soluzione migliore.
<br>
## Fine
Questo sito web ha tre principali scopi:
- <u>Riunire ed elencare in un unico luogo</u> tutti gli articoli, le ricerche, i documentari, le interviste e materiale di ogni sorta che provi come i rischi e i danni dei *Social Media* superino di gran lunga i loro (pur fantastici) vantaggi.
- Essere <u>un punto di riferimento per tutti coloro che eliminano i propri account</u> sulle piattaforme *social*, una comunità globale sempre crescente, per permettere loro condividere ed esprimere chiaramente ed efficecemente le loro motivazioni
- Fornire agli utenti scettici e indifferenti la possibilità di capire come <u>le scelte individuali e personali siano cruciali</u> per migliorare l'esperienza online di tutti e rendere internet un posto migliore.
Conosco e seguo con passione innumerevoli fantastiche *communities* che promuovono la libertà e l'apertura di internet e l'indipendenza dalle colossali, ricchissime e chiuse aziende che ci forniscono [la maggioranza](/it/what "Cosè un Social Media") dei servizi di *social networking*. Nonostante questo, sento ci sia un elemento fondamentale che non viene sufficientemente sottolineato: **<u>le decisioni e le azioni di ognuno di noi sono la chiave per il cambiamento globale</u>**. Non dovremmo aspettare che vengano promosse regolamentazioni e leggi; allo stesso modo, non possiamo credere che un giorno qualcuno arriverà e renderà tutto migliore.
**!!** Non intendo assolutamente costringervi ad abbandonare e uscire dai *Social Media*, né convincervi che sia la migliore cosa da fare, anche se ne sono assolutamente certo. Vorrei che chiunque arrivi qui <u>analizzi attentamente i contenuti del sito</u> e tutto il materiale riportato, per decidere autonomamente cosa fare.
<br>
## Manca qualcosa?
Se hai qualche domanda a cui questa pagina non ha dato riposta, potresti leggere le [Obiezioni e Risposte](/it/faq "Obiezioni e risposte") (<abbr title="Also Known As">a.k.a.</abbr> <abbr title="Frequently Asked Questions">FAQ</abbr>).

145
pages/it/Links.md Normal file
View File

@ -0,0 +1,145 @@
---
title: Link
permalink: /it/links
redirect_from: ["/bibliografia", "/risorse", "/it/link"]
layout: page
description: "Link a risorse citate o utilizzate."
lang: it
---
<div class="blue box">
I link a <strong>tutte le risorse</strong> sono in <a href="/links"><em>Links</em></a>. Qui di seguito sono elencate esclusivamente quelle in italiano.
</div>
## General
Torna alla [home](/it/home "Home")
<br>
## Anger
<br>
## Hate
Torna a [Perché > Hate](/perché#hate "Hate")
<br>
## Polarization
Torna a [Perché > Polarization](/perché#polarization "Polarization")
<br>
## Misinformation
Torna a [Perché > Misinformation](/perché#disinformation "Disinformation")
<br>
## Bubble
Torna a [Perché > Bubble](/perché#bubble "Bubble")
<br>
## Quality
Torna a [Perché > Quality](/perché#quality "Quality")
<br>
## Addiction
Torna a [Perché > Addiction](/perché#addiction "Addiction")
<br>
## Distraction
Torna a [Perché > Distraction](/perché#distraction "Distraction")
<br>
## Data
Torna a [Perché > Data](/perché#data "Data")
<br>
## Profilation
Torna a [Perché > Profilation](/perché#profilation "Profilation")
- [Gli algoritmi non sono cose, ma disposizioni di potere che riorganizzano la nostra società](http://www.vita.it/it/interview/2021/01/26/gli-algoritmi-non-sono-cose-ma-disposizioni-di-potere-che-riorganizzan/397/ "Gli algoritmi non sono cose, ma disposizioni di potere che riorganizzano la nostra società"), di Marco Dotti su [Vita](https://www.vita.it)
<br>
## Monopolization
Torna a [Perché > Monopolization](/perché#monopolization "Monopolization")
<br>
## Sociality
Torna a [Perché > Sociality](/perché#sociality "Sociality")
<br>
## Standardization
Torna a [Perché > Standardization](/perché#standardization "Standardization")
<br>
## Content ownership
Torna a [Perché > Content ownership](/perché#content-ownership "Content Ownership")
<br>
## Hurry
Torna a [Perché > Hurry](/perché#hurry "Hurry")
<br>
## Simplicity vs simplification
Torna a [Perché > Simplicity vs Simplification](/perché#simplicity-vs-simplification "Simplicity vs Simplification")
<br>
## Being always connected
Torna a [Perché > Being always connected](/perché#being-always-connected "Being Always Connected")
<br>
## Environment
Torna a [Perché > Environment](/perché#environment "Environment")
<br>
## Closed
Torna a [Perché > Closed](/perché#closed "Closed")
<br>
## Saturation
Torna a [Perché > Saturation](/perché#saturation "Saturation")
<br>
## Being used
Torna a [Perché > Being used](/perché#being-used "Being used")
- [Who does that server really serve?](https://www.gnu.org/philosophy/who-does-that-server-really-serve.html "Who does that server really serve?"), by [Richard Stallman](https://stallman.org "Richard Stallmans personal website") on [GNU.org](https://gnu.org "GNU")

View File

@ -6,20 +6,21 @@ ref: sol
toc: true
layout: page
redirect_from: ["/sol-it", "/it/sol", "/soluzione", "/it/solutions"]
description: "Essere “social” senza “Social Media” sembra impossibile. Tuttavia, è veramente una nuova vita, straordinaria, piena di sorprese, scoperte, autenticità ed eccitazione, ma, soprattutto, <strong>libera</strong>. Esistono alcune favolose soluzioni talmente perfette che danno apparire i Social Media quasi inutili e stupidi."
description: "Essere “social” senza “<i>Social Media</i>” sembra impossibile. Tuttavia, quella senza <em>Social Media</em> una nuova vita, straordinaria, piena di sorprese, scoperte, autenticità ed eccitazione, ma, soprattutto, <strong>libera</strong>. Esistono alcune favolose soluzioni talmente perfette che danno apparire i <i>Social Media</i> quasi inutili e stupidi."
tags: l10n
---
## Brevemente
In sintesi: dopo aver abbandonato i *Social Media*, non diventerai un misantropo che vive nella foresta ed è isolato dal resto del mondo. Tutt'altro: abbandonare i *Social Media* non significa abbandonare il web per sempre, ma sfruttare <u>i suoi reali valori di indipendenza e apertura</u> in maniera diversa. Potrebbe essere difficile crederci, ma esistono **molti** grandiosi e semplici strumenti che possono facilmente rimpiazzare i *Social Media*.
Il concetto fondamentale è: per essere aggiornato e seguire l'attività di persone ed enti, puoi iscriverti al [feed RSS ](#rss-feed) del loro sito web, con [qualche passo in più](#usare-i-social-senza-essere-sui-social), puoi generare un feed RSS anche per canali YouTube, pagine Facebook, profili Instagram e Twitter… <u><strong>qualunque cosa</strong> si trovi su internet</u>. even to Social Media pages and profiles, YouTube channels… anything. To publish content, instead, the best way is to [**create your own website**](#website), start a newsletter, or consider [healthier Social Media platforms](#alternatives).
Il concetto fondamentale è: per essere aggiornato e seguire l'attività di persone ed enti, è possibile iscriversi al [feed RSS ](#rss-feed) del loro sito web, con [qualche passo in più](#usare-i-social-senza-essere-sui-social), si può addirittura generare un feed RSS anche per canali YouTube, pagine Facebook, profili Instagram e Twitter… <u>per <strong>qualunque cosa</strong> si trovi su internet</u>. Per pubblicare contenuti propri, invece, è molto semplice [**creare il proprio sito web**](#sito-web), esordire con una newsletter, o considerare [piattaforme alternative più sane](#alternative)
<br>
<br>
## RSS feed
Potresti on avere idea di [cosa sia un feed RSS feed](https://it.wikipedia.org/wiki/RSS "“RSS” su Wikipedia"), o potresti averne sentito parlare come di qualcosa di vecchio e obsoleto. Tuttavia, è uno strumento semplicissimo che preserva l'anonimato, non è posseduto da nessuno e non necessita di alcun server dedicato per funzionare. Non è governato da algoritmi e nessuno può sapere chi segui, cosa leggi, ascolti o credi, tantomeno è possibile utilizzare dati per [fini commerciali](/perché#profilazione), dato che non vengono raccolte informazioni su di te (nella maggior parte dei casi).
Potresti on avere idea di [cosa sia un feed RSS feed](https://it.wikipedia.org/wiki/RSS "“RSS” su Wikipedia"), o potresti averne sentito parlare come di qualcosa di vecchio e obsoleto. Tuttavia, è uno strumento semplicissimo che preserva l'anonimato, non è posseduto da nessuno e non necessita di alcun server dedicato per funzionare. Non è governato da algoritmi e nessuno può sapere chi segui, cosa leggi, ascolti o credi, tantomeno è possibile utilizzare dati per [fini commerciali](/perché#profilazione "Profilazione"), dato che non vengono raccolte informazioni su di te (nella maggior parte dei casi).
Alcuni dicono che i feed RSS sono morti, uccisi dai *Social Media*. In realtà, sono imperituri, e sono tuttora **ovunque** sul web. Per fare un esempio, tutti i podcast del mondo sfruttano i feed RSS per apparire su diverse piattaforme e per essere condivisi e riprodotti.
@ -37,24 +38,24 @@ Utilizzare RSS è molto semplice. Come sottolineato nelle [info](/info "Informaz
Dopo un po', è facile finire per essere piuttosto malinconici e rendersi conto che i *Social Media*, utilizzati da quasi ogni persona si conosca, sono l'unico modo per mantenere contatti con amici lontani ed essere aggiornati su cosa succede nelle vite di coloro a cui si vuole bene. È comprensibile, anche se l'ideale sarebbe che tutti si convertissero e abbandonassero i *Social*. Tuttavia, se non si avessero alternative, anche in questo caso, esiste uno strumento favoloso per <u>convertire in feed RSS le timeline dei social network</u>.
Gli strumenti esistendi sono più di uno, ma il più celebre è [RSS-Bridge](https://github.com/RSS-Bridge/rss-bridge "RSS-Bridge si GitHub").
Gli strumenti esistenti sono più di uno, il più celebre di questi è [RSS-Bridge](https://github.com/RSS-Bridge/rss-bridge "RSS-Bridge si GitHub").
È possibile <u>utilizzare gratuitamente quello ospitato sul mio server</u>, visitando <https://rss-bridge.tommi.space>. (mantenere un server non costa poco. Sono felice di offrire il mio RSS-Bridge, ma se ne faceste un utilizzo intensivo apprezzerei [un piccolo contributo](https://it.liberapay.com/tommi/donate "Dona a Tommi su Liberapay"))
È possibile <u>utilizzare gratuitamente <a href="https://rss-bridge.tommi.space" rel="noopener noreferrer" target="_blank" title="RSS-Bridge di Tommi">quello ospitato sul mio server</a></u>.\
(mantenere un server non costa poco: sono felice di offrire il mio RSS-Bridge, ma se ne faceste un utilizzo intensivo apprezzerei [un piccolo contributo](https://it.liberapay.com/tommi/donate "Dona a Tommi su Liberapay"))
<br>
<br>
## Alternative
Ho già trattato [le ragioni](/perché "Perché") per cui i *Social Media* così come noi li conosciamo siano preoccupantemente dannosi. Peraltro, esistono innumerevoli piattaforme che risolvono molti, se non tutti, i più importanti problema dei grandi e antipatici *Social*. Le caratteristiche distintive di tali piattaforme è che <u>non contengono pubblicità</u>, di nessun tipo, i dati personali raccolti sono il minimo indispensabile e <u>non vengono sfruttati per profilare gli utenti</u>, ma, soprttutto, sono liberi, aperti e indipendenti, anche se tutti connessi fra loro. Ogni piattaforma ha le proprie regole.
Ho già trattato [le ragioni](/perché "Perché") per cui i *Social Media* così come noi li conosciamo siano preoccupantemente dannosi. Peraltro, esistono innumerevoli piattaforme che ne risolvono molti, se non tutti, i più importanti problemi. Le caratteristiche distintive di tali piattaforme sono <u>la totale assenza di pubblicità</u>, la minima raccolta di dati personali, <u>non sfruttati per profilare gli utenti</u>, ma, soprttutto, <u>sono liberi, aperti e indipendenti</u>.
Queste piattaforme non sono solo gratis da utilizzare, ma anche liberamente replicabili e facilmente connesse fra loro.
All of these platforms are free not only to subscribe to, but also to actually use! Anyone could take the code and install it on her/his own server. Imagine having a whole Facebook, completely owned by you. How cool would it be?
Questi *Social Network* alternativi non sono solo gratis da utilizzare, ma anche liberamente replicabili: chiunque può [installarli sul proprio server](#crea-il-tuo) e facilmente connesse fra loro. Immagina di avere il tuo proprio Facebook. Quanto sarebbe favoloso?
- [Mastodon](https://joinmastodon.org "Join Mastodon") is the most famous one. Think of it as a healthier version of Twitter.
- [Pixelfed](https://pixelfed.org "Pixelfed official website") is almost identical to Instagram. It has stories, too!
- [Mastodon](https://joinmastodon.org "Mastodon"), con più di **quattro milioni di utenti** in tutto il mondo, è di gran lunga la piattaforma più diffusa e conosciuta; il suo funzionamento e la sua struttura sono molto simili a quelli di Twitter.
- [Pixelfed](https://pixelfed.org "Pixelfed") is almost identical to Instagram. It has stories, too!
- [Friendica](https://friendi.ca "Friendica official website") it something like Facebook.
- [PeerTube](https://joinpeertube.org "PeerTube") is a great paltform built by the French Framasoft. As the name suggests, it's like YouTube, but it relies on peer-to-peer video sharing to avoid stressing the servers which host the existing instances.
- [PeerTube](https://joinpeertube.org "PeerTube official website") is a great paltform built by the French Framasoft. As the name suggests, it's like YouTube, but it relies on peer-to-peer video sharing to avoid stressing the servers which host the existing instances.
The most awesome thing is that all of these platforms are connected among each other: I can follof from my mastodon account someone on PixelFed, as well as a PeerTube channel. This is possible because these healthier alternative Social Media platforms are based on the same protocol, [ActivityPub](https://en.wikipedia.org/wiki/ActivityPub "ActivityPub on Wikipedia"). Thanks to this federation, all of these platforms can interact with each other and together they composed what is wonderfully called the [*Fediverse*](https://www.wikiwand.com/en/Fediverse "Fediverse on Wikipedia") (which stands for *Federated (Social Media) Universe*)

View File

@ -4,11 +4,54 @@
@import "../_sass/search";
@import "../_sass/highlight";
@import "../_sass/nav";
@import "../_sass/root";
@import "{{ site.fonts }}/inter/inter.css";
@import "{{ site.fonts }}/ubuntu-mono/ubuntu-mono.css";
@import "{{ site.fonts }}/eb-garamond/eb-garamond.css";
:root {
--black-ish: #222;
--white-ish: #F1FAEE;
--dark-grey: #555;
--light-grey: #AAA;
--yellow: #FCC920;
--dark-yellow: #D0A00E;
--light-blue: #A8DADC;
--blue: #1D3557;
--red: #E63946;
--green: #20CE88;
--razzmatazz: #EC0868;
--purple: #884EE1;
--dark: #533066;
color-scheme: dark light;
--yellow-gradient: linear-gradient(145deg, #DAAE1B, #FFD23E);
--blue-gradient: linear-gradient(145deg, #4c96ff, #226dd7);
--tiny: .2rem;
--tinyem: .2em;
--small: .5rem;
--smallem: .5em;
--regular-less: .9rem;
--regular: 1.1rem;
--regular-em: 1.1em;
--regular-more: 1.3rem;
--regular-more-em: 1.3em;
--big: 1.6rem;
--bigger: 1.8rem;
--twice: 2.2rem;
--height: 3.1rem;
--mastodon: 4.4rem;
--margin: 6.5rem;
--trans: .5s;
--quicktrans: .2s;
--radius-s: 5px;
--radius-m: .6rem;
--radius-l: 1rem;
--title-text-shadow-hover: none;
}
html {
box-sizing: border-box;
cursor: url(https://assets.tommi.space/logos/red-cursor.svg) 16 16, crosshair;
@ -102,6 +145,8 @@ mark {
background: var(--primary);
color: var(--background);
font-weight: 500;
padding: 0 4px;
border-radius: var(--radius-s)
}
::selection {
@ -109,8 +154,14 @@ mark {
background: var(--primary);
}
.top {
right: 3%;
.top,
.bottom {
right: 3vw;
}
.bottom {
transform: rotate(.5turn);
box-shadow: none !important;
}
.theme-toggle {
@ -177,9 +228,11 @@ article li,
content: "💻 ";
}
}
&[href*="link" i],
&[href*="resources" i] {
&::before {
content: "📚 ";
/* content: "🔗 "; */
}
}
&[href*="/path" i],
@ -250,6 +303,12 @@ article li,
content: "📢 ";
}
}
&[href^="/ob" i],
&[href*="/faq" i] {
&::before {
content: "🤔 ";
}
}
}
}
@ -367,10 +426,6 @@ hr {
}
}
.anchor {
height: var(--regular-more);
}
pre,
code {
font: 400 1.1em 'Ubuntu Mono', 'Roboto Mono', 'Fira Code', mono, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
@ -572,11 +627,11 @@ h1, h2, h3, h4, h5, h6 {
text-transform: uppercase;
&:hover {
.anchor {
display: inline-block;
opacity: 1;
}
}
.anchor {
display: none;
opacity: 0;
}
}
@ -697,6 +752,12 @@ footer {
.stuff-logo {
margin-top: var(--bigger)
}
.column > .row {
& > p,
& > ul > li {
margin: var(--regular) 10%;
}
}
}
audio {
@ -840,4 +901,4 @@ button,
background: transparent;
color: var(--text);
border: 3px solid var(--text);
}
}