added podcast and last fixes

This commit is contained in:
Tommi 2021-02-11 09:59:35 +01:00
parent 25b86fa735
commit 6bc444ac00
15 changed files with 204 additions and 84 deletions

View File

@ -3,7 +3,7 @@
<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 dedizione.{% 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>
<div class="flex row">
<p>{% if page.lang == 'it' %}Ultimo aggiornamento di questa pagina:{% else %}This page was last updated on:{% endif %}<br />{{ page.last_modified_at }}</p>
<p class="time">{% if page.lang == 'it' %}Ultimo aggiornamento di questa pagina:{% else %}This page was last updated on:{% endif %}<br /><time>{{ page.last_modified_at }}</time></p>
<!--<a href="{% if page.lang == 'it' %}https://it.liberapay.com/tommi/donate{% else %}https://liberapay.com/tommi/donate{% endif %}" title="Donate to Tommi using Liberapay">
<img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg" />
</a>-->

View File

@ -1,4 +1,57 @@
{% capture tocWorkspace %}
{% comment %}
Copyright (c) 2017 Vladimir "allejo" Jimenez
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.1.0
https://github.com/allejo/jekyll-toc
"...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe
Usage:
{% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %}
Parameters:
* html (string) - the HTML of compiled markdown generated by kramdown in Jekyll
Optional Parameters:
* sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC
* class (string) : '' - a CSS class assigned to the TOC
* id (string) : '' - an ID to assigned to the TOC
* h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored
* h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored
* ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list
* item_class (string) : '' - add custom class(es) for each list item; has support for '%level%' placeholder, which is the current heading level
* submenu_class (string) : '' - add custom class(es) for each child group of headings; has support for '%level%' placeholder which is the current "submenu" heading level
* base_url (string) : '' - add a base url to the TOC links for when your TOC is on another page than the actual content
* anchor_class (string) : '' - add custom class(es) for each anchor element
* skip_no_ids (bool) : false - skip headers that do not have an `id` attribute
Output:
An ordered or unordered list representing the table of contents of a markdown block. This snippet will only
generate the table of contents and will NOT output the markdown given to it
{% endcomment %}
{% capture newline %}
{% endcapture %}
@ -18,8 +71,8 @@
{% assign orderedList = include.ordered | default: false %}
{% assign baseURL = include.base_url | default: include.baseurl | default: '' %}
{% assign skipNoIDs = include.skip_no_ids | default: include.skipNoIDs | default: false %}
{% assign minHeader = 2 %}
{% assign maxHeader = 6 %}
{% assign minHeader = include.h_min | default: 1 %}
{% assign maxHeader = include.h_max | default: 6 %}
{% assign nodes = include.html | strip | split: '<h' %}
{% assign firstHeader = true %}
@ -126,4 +179,4 @@
{% capture jekyll_toc %}<{{ listModifier }}{{ rootAttributes }}>{{ nodes | shift | join: '>' }}>{% endcapture %}
{% endif %}
{% endif %}
{% endcapture %}{% assign tocWorkspace = '' %}{{ deprecation_warnings }}{{ jekyll_toc }}
{% endcapture %}{% assign tocWorkspace = '' %}{{ deprecation_warnings }}{{ jekyll_toc }}

View File

@ -19,6 +19,18 @@ layout: wrapper
{% include toc.html html=content sanitize=true %}
</div>
{% endif %}
{% if page.ref == 'why' %}
<div class="row toc">
<h2>
{% if page.lang == 'it' %}
Indice
{% else %}
Table of contents
{% endif %}
</h2>
{% include toc.html html=content sanitize=true h_max=2 %}
</div>
{% endif %}
<div class="row">
<article class="note">

View File

@ -49,4 +49,4 @@ layout: compress
{{ content }}
{% include footer.html %}
</body>
</html>
</html>

View File

@ -1,8 +1,8 @@
.clearfix {
clear: both;
clear: both;
}
.algolia-autocomplete {
width: 94% !important;
width: 94% !important;
position: fixed !important;
bottom: calc(3.1rem + 3.7rem) !important;
right: 3%;
@ -11,12 +11,12 @@
.aa-input {
right: calc(3% + 4rem + 4rem);
margin: var(--tiny);
width: var(--height);
width: var(--height);
padding: 0 var(--small);
height: var(--height);
line-height: var(--height);
color: var(--background);
outline: 0;
outline: 0;
border: 0;
border-radius: var(--radius-m);
box-shadow: var(--button-shadow);
@ -43,20 +43,20 @@
opacity: 1;
}
.aa-hint {
width: 100%;
color: var(--grey);
width: 100%;
color: var(--grey);
}
.aa-dropdown-menu {
border-radius: var(--radius-m);
box-shadow: var(--button-shadow);
border-radius: var(--radius-m);
box-shadow: var(--button-shadow);
background: var(--background);
}
.aa-suggestion {
padding: var(--small) var(--regular);
padding: var(--small) var(--regular);
border-radius: var(--radius-m);
}
/*.aa-suggestion~.aa-suggestion{
border-top:1px solid #e8e8e8;
border-top:1px solid #e8e8e8;
}*/
.aa-suggestion.aa-cursor {
box-shadow: var(--inner-shadow);
@ -65,53 +65,53 @@
display: none;
}
.aa-hit--title {
font-size: 1.1em;
font-weight: 700;
font-size: 1.1em;
font-weight: 700;
}
.aa-hit--title .aa-hit--highlight {
position: relative;
z-index: 1;
position: relative;
z-index: 1;
}
.aa-hit--highlight {
color: var(--primary) !important;
}
.aa-hit--title .aa-hit--highlight::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: .1;
z-index: -1;
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: .1;
z-index: -1;
}
.aa-hit__sm .aa-hit--title,.aa-hit__xs .aa-hit--title {
font-size: 1em;
line-height: 1.25em;
display: block;
font-size: 1em;
line-height: 1.25em;
display: block;
}
.aa-hit__xs .aa-hit--title {
font-weight: 400;
padding: 8px 0;
font-weight: 400;
padding: 8px 0;
}
/*.aa-suggestion:first-child .aa-hit--title{
border:none
border:none
} */
.aa-hit--description {
font-size: 13px;
color: var(--text);
margin-top: 4px;
line-height: 1.25em;
font-size: 13px;
color: var(--text);
margin-top: 4px;
line-height: 1.25em;
}
.aa-hit--description .aa-hit--highlight {
color: var(--primary);
font-weight: 700;
color: var(--primary);
font-weight: 700;
}
/*.aa-hit__xs .aa-hit--description {
display: none;
display: none;
} */
.aa-hit__sm .aa-hit--description {
font-size: .9em;
line-height: 1.25em;
font-size: .9em;
line-height: 1.25em;
}
/*# sourceMappingURL=algoliasearchNetlify.css.map*/

View File

@ -13,6 +13,8 @@ toc: false
</div>
</div>
<br />
<div class="red box row">
<h2 class="title">WTF is this website?</h2>
<p>
@ -20,12 +22,12 @@ toc: false
<br />
<b>Long answer</b>: read the <a href="/about">About page</a>
</p>
<h3 class="title">Where to start</h3>
<h3 class="title" style="margin-top:var(--twice)">Where to start</h3>
<p>
You probably are a busy person who doesn't have time to go through all of the stuff that's on here. Ok, I got you: just read this <a href="/quick">quick summary</a>
You probably are a busy person who does not have time to go through all of the stuff that is on here. Ok, I got you: just read this <a href="/quick">quick summary</a>
</p>
<p>
If devoting a bit more of your time to the dopic does not bother you, I ca assure you it's definitely worth it. I suggest you to follow <a href="/path" title="Path">this path</a>
If devoting a bit more of your time to the topic does not bother you, I can assure you its definitely worth it. I suggest you to follow <a href="/path" title="Path">this path</a>
</p>
</div>
@ -45,11 +47,15 @@ toc: false
{% else %}
{% endfor %}
<br />
<div class="row">
<h2 class="title">Get in touch!</h2>
<p>If you have any questions or suggestions, please don't hesitate to <a href="mailto:{{ site.email | encode_email }}" target="_blank" rel="noopener noreferrer" title="Send me an email">write me an email</a> (<a href="https://keys.openpgp.org/vks/v1/by-fingerprint/D435660C86733BA1C4C22F4D922BA2D96336049E" title="PGP Key hello@quitsocialmedia.club">PGP key</a>).</p>
</div>
<br />
<div class="blue box row">
<a href="/contribute"><h2 class="title">Contribute</h2></a>
{% for contrib in site.pages %}
@ -59,7 +65,9 @@ toc: false
{% endfor %}
</div>
<div class="row">
<br />
<div class="margin row">
<h2 class="title">Website pages</h2>
<p>An overview of all the pages in the website:</p>
<ul>
@ -73,4 +81,7 @@ toc: false
</ul>
</div>
<br />
<br />
</div>

View File

@ -27,7 +27,8 @@ ref: links
### Books
- [<cite>Ten Arguments for Deleting Your Social Media Accounts Right Now</cite>](https://jaronlanier.com/tenarguments.html "Ten Arguments on Jaron Laniers official website"), by the legendary [Jaron Lanier](https://jaronlanier.com "Jaron Lanier")
- [<cite>Ten Arguments for Deleting Your Social Media Accounts Right Now</cite>](https://jaronlanier.com/tenarguments.html "Ten Arguments on Jaron Laniers official website"), a <mark class="purple">book</mark> by the legendary [Jaron Lanier](https://jaronlanier.com "Jaron Lanier")
- [<cite>The Age of Surveillance Capitalism</cite>](https://shoshanazuboff.com/book/about/ "The Age of Surveillance Capitalism"), a <mark class="purple">book</mark> by [Shoshana Zuboff](https://shoshanazuboff.com "Shoshana Zuboff")
<br>
@ -57,7 +58,7 @@ Go back to the [homepage](/home "Home")
- [Internet of People](https://iop.global "Internet of People")
- [runyourown.social](https://runyourown.social "Run Your Own Social")
- [Get a Website Now! Don't be a Web Peasant!](https://youtu.be/bdKZVIGRAKQ "Get a Website Now! Don't be a Web Peasant!"), a YouTube video by [Luke Smith](https://lukesmith.xyz "Luke's personal website")
- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media | Dr. Cal Newport | TEDxTysons"), a <mark class="red">TED Talk</mark> by dr. Cal Newport
- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media - Dr. Cal Newport - TEDxTysons"), a <mark class="red">TED Talk</mark> by dr. Cal Newport
- [My personal wishlist for a decentralized social network](https://carter.sande.duodecima.technology/decentralized-wishlist/ "My personal wishlist for a decentralized social network"), by Carter Sande
- [<cite>Together, we can rebuild the system</cite>](https://www.humanetech.com/rebuild "Together, we can align technology with humanitys best interests"), on the website of the [<cite>Center for Humane Technology</cite>](https://www.humanetech.com/ "Center for Humane Technology")
- [Okuna](https://about.okuna.io "Okuna"), <q>an ethical social network for a brighter tomorrow</q>.
@ -169,7 +170,7 @@ 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
- [The end of the Facebook crime spree](https://mattstoller.substack.com/p/the-end-of-the-facebook-crime-spree "The end of the Facebook crime spree"), by [Matt Stoller](https://mattstoller.substack.com/people/759128-matt-stoller "Matt Stoller on Substack")
- [Behind Washingtons one-eighty on Facebook: A rethink of monopoly power](https://www.politico.com/news/2020/12/13/facebook-antitrust-flip-flop-444652), an article by [Leah Nylen](https://www.politico.com/staff/leah-nylen "Leah Nylen") on [Politico](https://www.politico.com "Politico")
- [U.S. and States Say Facebook Illegally Crushed Competition](https://www.nytimes.com/2020/12/09/technology/facebook-antitrust-monopoly.html?smid=url-share "U.S. and States Say Facebook Illegally Crushed Competition | New York Times") by Cecilia Kang and Mike Isaac on [The New York Times](https://nytimes.com "New York Times")
- [U.S. and States Say Facebook Illegally Crushed Competition](https://www.nytimes.com/2020/12/09/technology/facebook-antitrust-monopoly.html?smid=url-share "U.S. and States Say Facebook Illegally Crushed Competition - New York Times") by Cecilia Kang and Mike Isaac on [The New York Times](https://nytimes.com "New York Times")
{% comment %}
<br>

View File

@ -120,7 +120,7 @@ At first, it's going to be quite hard, but on the long run it's going to be a gr
Some more links on alternatives and solutions to Social Media.
- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media | Dr. Cal Newport | TEDxTysons"), a <mark class="red">TED Talk</mark> by dr. Cal Newport
- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media - Dr. Cal Newport - TEDxTysons"), a <mark class="red">TED Talk</mark> by dr. Cal Newport
- [<cite>Together, we can rebuild the system</cite>](https://www.humanetech.com/rebuild "Together, we can align technology with humanitys best interests"), on the website of the [<cite>Center for Humane Technology</cite>](https://www.humanetech.com/ "Center for Humane Technology")
- [My personal wishlist for a decentralized social network](https://carter.sande.duodecima.technology/decentralized-wishlist/ "My personal wishlist for a decentralized social network"), by Carter Sande
- [Okuna](https://about.okuna.io "Okuna"), <q>an ethical social network for a brighter tomorrow</q>.

View File

@ -3,6 +3,7 @@ title: Why
permalink: /why
redirect_from: ["/arguments", "/reasons", "/l1", "/l01", "/l-01", "/level01", "/level1", "/level-1", "/level-01"]
ref: why
toc: false
description: "The heart of the matter: all of the reasons why we should quit Social Media"
---
## Introduction

View File

@ -5,4 +5,8 @@ description: "Invece di leggere o guardare contemuti sullargomento, potresti
permalink: /ascolta
redirect_from: ["/it/listen"]
---
Per ascoltare podcast che trattano di Social Media, si prega di recarsi alla sezione [link](/it/links "Link") e cercare i contenuti <mark class="blue">evidenziati in blu</mark>.
Per ascoltare podcast che trattano di *Social Media*, si prega di recarsi alla sezione [link](/it/links "Link") e cercare i contenuti <mark class="blue">evidenziati in blu</mark>.
Per ascoltare lepisodio di <cite><a href="https://sconnesso.link" rel="noopener" target="_blank" title="Sconnesso">Sconnesso</a></cite> in cui viene raccontata la creazione di questo sito e letta la pagina “[Perché](/perché "Perché")„, cliccare di seguito.
<a href="https://quitsocialmedia.sconnesso.link" target="_blank" title="Sconnesso - Abbandonare i Social Media">Ascolta <em>Sconnesso</em></a>

View File

@ -15,6 +15,8 @@ description: "Tutte le ragioni per cui i <em>Social Media</em>, per come li cono
</div>
</div>
<br />
<div class="red box row">
<h2 class="title">Cosa cavolo è questo sito?</h2>
<p>
@ -22,7 +24,7 @@ description: "Tutte le ragioni per cui i <em>Social Media</em>, per come li cono
<br />
<b>Risposta lunga</b>: leggi le <a href="/info">info</a>.
</p>
<h3 class="title">Da dove partire</h3>
<h3 class="title" style="margin-top:var(--twice)">Da dove partire</h3>
<p>
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>
@ -47,11 +49,15 @@ description: "Tutte le ragioni per cui i <em>Social Media</em>, per come li cono
{% else %}
{% endfor %}
<br />
<div class="row">
<h2 class="title">Contatti</h2>
<p>Se hai domande o suggerimenti, non esitare a <a href="mailto:{{ site.email | encode_email }}" target="_blank" rel="noopener noreferrer" title="Send me an email">scrivermi</a> (<a href="https://keys.openpgp.org/vks/v1/by-fingerprint/D435660C86733BA1C4C22F4D922BA2D96336049E" title="PGP Key hello@quitsocialmedia.club">PGP key</a>).</p>
<p class="center">Se hai domande o suggerimenti, non esitare a <a href="mailto:{{ site.email | encode_email }}" target="_blank" rel="noopener noreferrer" title="Send me an email">scrivermi</a> (<a href="https://keys.openpgp.org/vks/v1/by-fingerprint/D435660C86733BA1C4C22F4D922BA2D96336049E" title="PGP Key hello@quitsocialmedia.club">PGP key</a>).</p>
</div>
<br />
<div class="blue box row">
<a href="/contribuisci"><h2 class="title">Contribuisci</h2></a>
{% for contrib in site.pages %}
@ -61,7 +67,9 @@ description: "Tutte le ragioni per cui i <em>Social Media</em>, per come li cono
{% endfor %}
</div>
<div class="row">
<br />
<div class="margin row">
<h2 class="title">Pagine</h2>
<p>Un'anteprima di tutte le pagine del sito in italiano:</p>
<ul>
@ -75,4 +83,7 @@ description: "Tutte le ragioni per cui i <em>Social Media</em>, per come li cono
</ul>
</div>
<br />
<br />
</div>

View File

@ -12,10 +12,17 @@ lang: it
## Generale
- [Unintervista a Jaron Lanier di *Codice*](https://www.raiplay.it/video/2019/08/Codice-intervista-esclusiva-a-Jaron-Lanier-pioniere-della-realta-virtuale-98a38fd9-6fa9-46d6-9b49-f9deccc7d1c6.html "Intervista a Jaron Lanier | Codice | Rai Play"), su <mark class="red">Rai Play</mark>
Torna alla [home](/it/home "Home")
- [Unintervista a Jaron Lanier di *Codice*](https://www.raiplay.it/video/2019/08/Codice-intervista-esclusiva-a-Jaron-Lanier-pioniere-della-realta-virtuale-98a38fd9-6fa9-46d6-9b49-f9deccc7d1c6.html "Intervista a Jaron Lanier - Codice - Rai Play"), su <mark class="red">Rai Play</mark>
<br>
### Libri
- <cite><a href="https://deditore.com/prodotto/cronofagia/" rel="noopener noreferrer" target="_blank" title="Cronofagia">Cronofagia</a></cite>, un libro di Davide Mazzocco
<br>
<br>
{% comment %}
@ -74,9 +81,9 @@ Torna a [Perché > Data](/perché#data "Data")
<br>
## Profilation
## Profilazione
Torna a [Perché > Profilation](/perché#profilation "Profilation")
Torna a [Perché > Profilazione](/perché#profilazione "Profilazione")
- [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)
{% comment %}
@ -90,9 +97,9 @@ Torna a [Perché > Monopolization](/perché#monopolization "Monopolization")
<br>
## Sociality
## Socialità
Torna a [Perché > Sociality](/perché#sociality "Sociality")
Torna a [Perché > Socialità](/perché#socialità "Socialità")
- [Don Alberto Ravagnani su Muschio Selvaggio](https://youtu.be/aZ2pn0tNoGQ?t=3625 "Ep.33 Don Alberto - Muschio Selvaggio Podcast") che racconta quanto sia pericoloso per i più piccoli avere spesso il telefono in mano
{% comment %}
@ -118,9 +125,9 @@ Torna a [Perché > Hurry](/perché#hurry "Hurry")
<br>
## Simplicity vs simplification
## Semplicità vs semplificazione
Torna a [Perché > Simplicity vs Simplification](/perché#simplicity-vs-simplification "Simplicity vs Simplification")
Torna a [Perché > Semplicità vs semplificazione](/perché#semplicità-vs-semplificazione "Semplicità vs semplificazione")
{% comment %}
<br>

View File

@ -4,17 +4,28 @@ permalink: /perché
redirect_from: ["/it/why", "/why-it", "/perche", "/motivi", "/perchè", "/it/l1", "/it/l01", "/it/l-01", "/it/level01", "/it/level1", "/it/level-1", "/it/level-01"]
lang: it
ref: why
toc: true
layout: page
toc: false
description: "Perché abbandonare i <i>Social Media</i>?"
---
Non ho ancora trovato un luogo su internet in cui siano riportate e riassunte *tutte* le diverse ragioni per cui i Social Media sono pericolosi e dannosi. È facile non fidarsi e non credere ad alcuni di questi, oppure perfino la maggioranza non saranno sufficienti per convincere chi leggerà.
Non ho ancora trovato un luogo su internet in cui siano riportate e riassunte *tutte* le diverse ragioni per cui i *Social Media* sono pericolosi e dannosi. Fra quelli di seguito, sarà facile non fidarsi e non credere ad alcuni di questi, oppure perfino la maggioranza non saranno sufficienti per convincere chi leggerà.
Tuttavia, dopo aver analizzato ogni singola spiegazione, <u>è difficile negare che ci sia qualcosa che non va</u> e che sia necessario agire.
Prima di cause e processi, regolamentazioni e leggi, lazione più importante, urgente ed efficace che possiamo intraprendere come individui è **abbandonare** le piattaforme che non hanno una giusta morale.
<br>
<br>
<div class="blue box" style="margin:0">
<h2 style="hyphens:none" id="ascolta-il-podcast">Ascolta il podcast!</h2>
<p>Se questa pagina è troppo noiosa e lunga da leggere, puoi ascoltare lepisodio di <em><a href="https://sconnesso.link" target="_blank" title="Sconnesso">Sconnesso</a></em>, il mio pseudo-podcast, in cui viene letta. La trovi di seguito.</p>
<div class="flex row">
<a class="red smaller button" href="https://tommi.space/sconnesso/quitsocialmedia" target="_blank" title="Sconnesso - Abbandonare i Social Media">Ascolta</a>
</div>
</div>
<br>
<br>
## Rabbia
<u>È scientificamente provato che le emozioni negative coinvolgano le persone molto più di quelle positive</u>. Gli algoritmi che compongono i *feed* sui *social* sono programmati specificamente per massimizzare il coinvolgimento e le interazioni, senza curarsi veramente di come gli utenti possano sentirsi (anche perché un algoritmo, per adesso, non sa provare emozioni).
@ -109,12 +120,6 @@ In che proporzione il nostro feed sui *Social Media* è popolato da contenuti si
Nota: non sto criticando l'intrattenimento di basso livello, i contenuti trash o video e immagini stupidi e divertenti; tuttavia, sono sempre più preoccupato di come questi stiano soppiantando contenuti dal maggiore valore emotivo e conoscitivo.
<br>
### Maggiori informazioni
+++
<br>
<br>
@ -201,11 +206,6 @@ Perché non possiamo socializzare, scambiare idee, confrontarci con amici e cono
### Maggiori informazioni
- [Don Alberto Ravagnani su Muschio Selvaggio](https://youtu.be/aZ2pn0tNoGQ?t=3625 "Ep.33 Don Alberto - Muschio Selvaggio Podcast") che racconta quanto sia pericoloso per i più piccoli avere spesso il telefono in mano
<br>
### Maggiori informazioni
- [Do virtual social networks destroy the social fabric?](https://medium.com/swlh/do-virtual-social-networks-destroy-the-social-fabric-b1e96de514db "Do virtual social networks destroy the social fabric?") un articolo di Jürgen Derlath
<br>
@ -217,6 +217,12 @@ Non sei spaventato da quanto tempo passi a fissare uno schermo?
Guarda le statistiche di utilizzo dei tuoi dispositivi.
<br>
### Maggiori informazioni
- <cite><a href="https://deditore.com/prodotto/cronofagia/" rel="noopener noreferrer" target="_blank" title="Cronofagia">Cronofagia</a></cite>, un <mark class="purple">libro</mark> di Davide Mazzocco
<br>
<br>
@ -325,7 +331,7 @@ Una nota personale: chiunque non sia un imbecille riconosce che il più grande e
Immaginiamo che io sia un influencer (lo so, improbabile assai) e che io voglia spostarmi su un'altra piattaforma di *social networking* meno conosciuta (come potrebbero essere Mastodon, Friendica, Pixelfed, Diaspora…) e minuscola, se comparata alle piattaforme che tutti conosciamo. Come posso farlo? Al di fuori dei miei profili sui *Social Media* (se ho basato solo su di essi la mia celebrità) nonostante io possa avere una vasta *fanbase*, non avrei followers, nessun pubblico, nessuno strumento al di fuori delle piatteforme che ho usato finora, e che scelgo di lasciare. L'unico modo per continuare a lavorare è ricostruire da capo la mia *fanbase* altrove.\
I *Social Media* agiscono fuori dall'etica anche perché non riconoscono un mondo al di fuori di sé: tutto è in funzione di essi e cambiare prospettiva appare confuso e complicato.
C'è un piccolo interessante esperimento mentale per rendere l'idea di quanto i *Social Media* sono chiusi. Se, improvvisamente, per qualche misteriosa ragione, Twitter si spegnesse ovunque, per sempre, non esiste un modo per continuare ad utilizzarlo. Il software che lo fa funzionare è chiuso e inaccessibile a chi non lavora per l'azienda. Questo non potrebbe mai accadere, ad esempio, con [Social Network federati](/soluzioni#alternative).\
C'è un piccolo interessante esperimento mentale per rendere l'idea di quanto i *Social Media* sono chiusi. Se, improvvisamente, per qualche misteriosa ragione, Twitter si spegnesse ovunque, per sempre, non esiste un modo per continuare ad utilizzarlo. Il software che lo fa funzionare è chiuso e inaccessibile a chi non lavora per l'azienda. Questo non potrebbe mai accadere, ad esempio, con [Social Network federati](/soluzioni#alternative).
I *Social Media* che noi conosciamo sono limitati a e da coloro che li possiedono e li governano, ed è come se un mondo senza di essi non esistesse.\
Noi possiamo provare il contrario.

View File

@ -109,7 +109,7 @@ Allinizio, sarà sicuramente dura, ma a lungo termine sarà un immenso guadag
Alcuni altri link a soluzioni ed alternative dopo labbandono dei Social Media:
- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media | Dr. Cal Newport | TEDxTysons"), un <mark class="red">TED Talk</mark> di dr. Cal Newport
- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media - Dr. Cal Newport - TEDxTysons"), un <mark class="red">TED Talk</mark> di dr. Cal Newport
- [My personal wishlist for a decentralized social network](https://carter.sande.duodecima.technology/decentralized-wishlist/ "My personal wishlist for a decentralized social network"), by Carter Sande
- [<cite>Together, we can rebuild the system</cite>](https://www.humanetech.com/rebuild "Together, we can align technology with humanitys best interests"), sul sito deb del [<cite>Center for Humane Technology</cite>](https://www.humanetech.com/ "Center for Humane Technology")
- [Okuna](https://about.okuna.io "Okuna"), <q>an ethical social network for a brighter tomorrow</q>.

View File

@ -20,8 +20,7 @@
--red: #E63946;
--green: #20CE88;
--razzmatazz: #EC0868;
--purple: #884EE1;
--dark: #533066;
--purple: #592176;
color-scheme: dark light;
@ -767,6 +766,12 @@ footer {
& > .row {
justify-content: space-between;
}
time {
font-family: 'Ubuntu Mono', 'Roboto Mono', 'Fira Code', mono, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.time {
line-height: 1.1em;
}
}
@media only screen and (max-width: 950px) {
@ -779,11 +784,11 @@ footer {
.stuff-logo {
margin-top: var(--bigger)
}
.column > .row {
& > p,
& > ul > li {
margin: var(--regular) 10%;
}
.margin {
margin: 0 10%;
}
article {
padding: var(--twice) 7% var(--mastodon);
}
}
@ -897,6 +902,15 @@ button,
}
}
.purple {
background: var(--purple);
color: var(--white-ish) !important;
border-color: var(--purple) !important;
a {
color: var(--light-blue);
}
}
.yellow {
background: var(--yellow);
color: var(--black-ish) !important;