From 6bc444ac007e5000115b7347ecd169add151db06 Mon Sep 17 00:00:00 2001 From: Tommi Date: Thu, 11 Feb 2021 09:59:35 +0100 Subject: [PATCH] added podcast and last fixes --- _includes/footer.html | 2 +- _includes/toc.html | 59 ++++++++++++++++++++++++++++++++-- _layouts/page.html | 12 +++++++ _layouts/wrapper.html | 2 +- _sass/_search.scss | 74 +++++++++++++++++++++---------------------- pages/Home.html | 19 ++++++++--- pages/Links.md | 7 ++-- pages/Solutions.md | 2 +- pages/Why.md | 1 + pages/it/Ascolta.md | 6 +++- pages/it/Home.html | 17 ++++++++-- pages/it/Links.md | 23 +++++++++----- pages/it/Perché.md | 34 ++++++++++++-------- pages/it/Soluzioni.md | 2 +- style.scss | 28 ++++++++++++---- 15 files changed, 204 insertions(+), 84 deletions(-) diff --git a/_includes/footer.html b/_includes/footer.html index 61de14d..9461935 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -3,7 +3,7 @@

{% if page.lang == 'it' %}Questo sito è stato ideato e creato da Tommi con ❤️ e dedizione.{% else %}This website was created by Tommi with ❤️ and commitment.{% endif %}

-

{% if page.lang == 'it' %}Ultimo aggiornamento di questa pagina:{% else %}This page was last updated on:{% endif %}
{{ page.last_modified_at }}

+

{% if page.lang == 'it' %}Ultimo aggiornamento di questa pagina:{% else %}This page was last updated on:{% endif %}

diff --git a/_includes/toc.html b/_includes/toc.html index 9612513..85f3f62 100644 --- a/_includes/toc.html +++ b/_includes/toc.html @@ -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: '{{ nodes | shift | join: '>' }}>{% endcapture %} {% endif %} {% endif %} -{% endcapture %}{% assign tocWorkspace = '' %}{{ deprecation_warnings }}{{ jekyll_toc }} +{% endcapture %}{% assign tocWorkspace = '' %}{{ deprecation_warnings }}{{ jekyll_toc }} \ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html index 6005444..832fef9 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -19,6 +19,18 @@ layout: wrapper {% include toc.html html=content sanitize=true %}
{% endif %} + {% if page.ref == 'why' %} +
+

+ {% if page.lang == 'it' %} + Indice + {% else %} + Table of contents + {% endif %} +

+ {% include toc.html html=content sanitize=true h_max=2 %} +
+ {% endif %}
diff --git a/_layouts/wrapper.html b/_layouts/wrapper.html index 5b5e395..aeaa093 100644 --- a/_layouts/wrapper.html +++ b/_layouts/wrapper.html @@ -49,4 +49,4 @@ layout: compress {{ content }} {% include footer.html %} - + \ No newline at end of file diff --git a/_sass/_search.scss b/_sass/_search.scss index c792051..d3db816 100644 --- a/_sass/_search.scss +++ b/_sass/_search.scss @@ -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*/ diff --git a/pages/Home.html b/pages/Home.html index 79c4ea6..2fa7efe 100644 --- a/pages/Home.html +++ b/pages/Home.html @@ -13,6 +13,8 @@ toc: false
+
+

WTF is this website?

@@ -20,12 +22,12 @@ toc: false
Long answer: read the About page

-

Where to start

+

Where to start

- 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 quick summary + 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 quick summary

- 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 this path + If devoting a bit more of your time to the topic does not bother you, I can assure you it’s definitely worth it. I suggest you to follow this path

@@ -45,11 +47,15 @@ toc: false {% else %} {% endfor %} +
+

Get in touch!

If you have any questions or suggestions, please don't hesitate to write me an email (PGP key).

+
+

Contribute

{% for contrib in site.pages %} @@ -59,7 +65,9 @@ toc: false {% endfor %}
-
+
+ +

Website pages

An overview of all the pages in the website:

    @@ -73,4 +81,7 @@ toc: false
+
+
+
\ No newline at end of file diff --git a/pages/Links.md b/pages/Links.md index 607d0ee..1200cd3 100644 --- a/pages/Links.md +++ b/pages/Links.md @@ -27,7 +27,8 @@ ref: links ### Books -- [Ten Arguments for Deleting Your Social Media Accounts Right Now](https://jaronlanier.com/tenarguments.html "Ten Arguments on Jaron Lanier’s official website"), by the legendary [Jaron Lanier](https://jaronlanier.com "Jaron Lanier") +- [Ten Arguments for Deleting Your Social Media Accounts Right Now](https://jaronlanier.com/tenarguments.html "Ten Arguments on Jaron Lanier’s official website"), a book by the legendary [Jaron Lanier](https://jaronlanier.com "Jaron Lanier") +- [The Age of Surveillance Capitalism](https://shoshanazuboff.com/book/about/ "The Age of Surveillance Capitalism"), a book by [Shoshana Zuboff](https://shoshanazuboff.com "Shoshana Zuboff")
@@ -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 TED Talk by dr. Cal Newport +- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media - Dr. Cal Newport - TEDxTysons"), a TED Talk 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 - [Together, we can rebuild the system](https://www.humanetech.com/rebuild "Together, we can align technology with humanity’s best interests"), on the website of the [Center for Humane Technology](https://www.humanetech.com/ "Center for Humane Technology") - [Okuna](https://about.okuna.io "Okuna"), an ethical social network for a brighter tomorrow. @@ -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 Washington’s 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 %}
diff --git a/pages/Solutions.md b/pages/Solutions.md index 51088d6..aba7ca6 100644 --- a/pages/Solutions.md +++ b/pages/Solutions.md @@ -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 TED Talk by dr. Cal Newport +- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media - Dr. Cal Newport - TEDxTysons"), a TED Talk by dr. Cal Newport - [Together, we can rebuild the system](https://www.humanetech.com/rebuild "Together, we can align technology with humanity’s best interests"), on the website of the [Center for Humane Technology](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"), an ethical social network for a brighter tomorrow. \ No newline at end of file diff --git a/pages/Why.md b/pages/Why.md index 03ba417..d38aa22 100644 --- a/pages/Why.md +++ b/pages/Why.md @@ -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 diff --git a/pages/it/Ascolta.md b/pages/it/Ascolta.md index 860e070..03dcb0e 100644 --- a/pages/it/Ascolta.md +++ b/pages/it/Ascolta.md @@ -5,4 +5,8 @@ description: "Invece di leggere o guardare contemuti sull’argomento, 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 evidenziati in blu. \ No newline at end of file +Per ascoltare podcast che trattano di *Social Media*, si prega di recarsi alla sezione [link](/it/links "Link") e cercare i contenuti evidenziati in blu. + +Per ascoltare l’episodio di Sconnesso in cui viene raccontata la creazione di questo sito e letta la pagina “[Perché](/perché "Perché")„, cliccare di seguito. + +Ascolta Sconnesso \ No newline at end of file diff --git a/pages/it/Home.html b/pages/it/Home.html index 56b3b19..e4d0805 100644 --- a/pages/it/Home.html +++ b/pages/it/Home.html @@ -15,6 +15,8 @@ description: "Tutte le ragioni per cui i Social Media, per come li cono +
+

Cosa cavolo è questo sito?

@@ -22,7 +24,7 @@ description: "Tutte le ragioni per cui i Social Media, per come li cono
Risposta lunga: leggi le info.

-

Da dove partire

+

Da dove partire

Probabilmente sarai una persona impegnata e non avrai tempo da perdere per queste sciocchezze. Ok, ti capisco: ho scritto un veloce riassunto per te.

@@ -47,11 +49,15 @@ description: "Tutte le ragioni per cui i Social Media, per come li cono {% else %} {% endfor %} +
+

Contatti

-

Se hai domande o suggerimenti, non esitare a scrivermi (PGP key).

+

Se hai domande o suggerimenti, non esitare a scrivermi (PGP key).

+
+

Contribuisci

{% for contrib in site.pages %} @@ -61,7 +67,9 @@ description: "Tutte le ragioni per cui i Social Media, per come li cono {% endfor %}
-
+
+ +

Pagine

Un'anteprima di tutte le pagine del sito in italiano:

    @@ -75,4 +83,7 @@ description: "Tutte le ragioni per cui i Social Media, per come li cono
+
+
+
diff --git a/pages/it/Links.md b/pages/it/Links.md index 3e44391..754a7d2 100644 --- a/pages/it/Links.md +++ b/pages/it/Links.md @@ -12,10 +12,17 @@ lang: it ## Generale -- [Un’intervista 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 Rai Play - Torna alla [home](/it/home "Home") +- [Un’intervista 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 Rai Play + +
+ +### Libri + +- Cronofagia, un libro di Davide Mazzocco + +

{% comment %} @@ -74,9 +81,9 @@ Torna a [Perché > Data](/perché#data "Data")
-## 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")
-## 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")
-## 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 %}
diff --git a/pages/it/Perché.md b/pages/it/Perché.md index a505b80..fa08e3e 100644 --- a/pages/it/Perché.md +++ b/pages/it/Perché.md @@ -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 Social Media?" --- -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, è difficile negare che ci sia qualcosa che non va e che sia necessario agire. Prima di cause e processi, regolamentazioni e leggi, l’azione più importante, urgente ed efficace che possiamo intraprendere come individui è **abbandonare** le piattaforme che non hanno una giusta morale.

+
+

Ascolta il podcast!

+

Se questa pagina è troppo noiosa e lunga da leggere, puoi ascoltare l’episodio di Sconnesso, il mio pseudo-podcast, in cui viene letta. La trovi di seguito.

+
+ Ascolta +
+
+ +
+
+ ## Rabbia È scientificamente provato che le emozioni negative coinvolgano le persone molto più di quelle positive. 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. -
- -### Maggiori informazioni - -+++ -

@@ -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 - -
- -### 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
@@ -217,6 +217,12 @@ Non sei spaventato da quanto tempo passi a fissare uno schermo? Guarda le statistiche di utilizzo dei tuoi dispositivi. +
+ +### Maggiori informazioni + +- Cronofagia, un libro di Davide Mazzocco +

@@ -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. diff --git a/pages/it/Soluzioni.md b/pages/it/Soluzioni.md index 7730f17..8f43608 100644 --- a/pages/it/Soluzioni.md +++ b/pages/it/Soluzioni.md @@ -109,7 +109,7 @@ All’inizio, sarà sicuramente dura, ma a lungo termine sarà un immenso guadag Alcuni altri link a soluzioni ed alternative dopo l’abbandono dei Social Media: -- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media | Dr. Cal Newport | TEDxTysons"), un TED Talk di dr. Cal Newport +- [Living without Social Media](https://youtu.be/3E7hkPZ-HTk "Quit social media - Dr. Cal Newport - TEDxTysons"), un TED Talk 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 - [Together, we can rebuild the system](https://www.humanetech.com/rebuild "Together, we can align technology with humanity’s best interests"), sul sito deb del [Center for Humane Technology](https://www.humanetech.com/ "Center for Humane Technology") - [Okuna](https://about.okuna.io "Okuna"), an ethical social network for a brighter tomorrow. \ No newline at end of file diff --git a/style.scss b/style.scss index 08e981f..d865cdf 100644 --- a/style.scss +++ b/style.scss @@ -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;