From 675da754becb0f4d38102f5f59b6cc2868e9723a Mon Sep 17 00:00:00 2001 From: Tommi Date: Mon, 1 Feb 2021 19:07:20 +0100 Subject: [PATCH] carlus review --- _includes/anchor-parser.html | 78 +++++++++++++++--- _includes/footer.html | 7 +- _includes/l10n.html | 2 +- _layouts/page.html | 2 +- _layouts/wrapper.html | 16 +++- _sass/_root.scss | 43 ---------- pages/Delete.md | 21 +++++ pages/FAQ.md | 63 ++++++++++---- pages/Home.html | 6 +- pages/Links.md | 156 +++++++++++++++++++++++++++++++++++ pages/Resources.html | 17 ---- pages/Solutions.md | 20 +++-- pages/What.md | 10 ++- pages/Why.md | 68 +++++++++++++-- pages/about.md | 8 +- pages/it/About.md | 48 ----------- pages/it/Contribuisci.md | 2 +- pages/it/FAQ.md | 84 +++++++++++++++++++ pages/it/Home.html | 8 +- pages/it/Info.md | 43 ++++++++++ pages/it/Links.md | 145 ++++++++++++++++++++++++++++++++ pages/it/Soluzioni.md | 23 +++--- style.scss | 81 +++++++++++++++--- 23 files changed, 760 insertions(+), 191 deletions(-) delete mode 100644 _sass/_root.scss create mode 100644 pages/Delete.md create mode 100644 pages/Links.md delete mode 100644 pages/Resources.html delete mode 100644 pages/it/About.md create mode 100644 pages/it/FAQ.md create mode 100644 pages/it/Info.md create mode 100644 pages/it/Links.md diff --git a/_includes/anchor-parser.html b/_includes/anchor-parser.html index c6f77f0..95c2343 100644 --- a/_includes/anchor-parser.html +++ b/_includes/anchor-parser.html @@ -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 `` 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: '= 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 %}{{ ' -' | replace: '%heading%', header | default: '' }}{% endcapture %} + {% if include.anchorAttrs %} + {% capture anchor %}{{ anchor }} {{ include.anchorAttrs | replace: '%heading%', escaped_header | replace: '%html_id%', html_id }}{% endcapture %} + {% endif %} + + {% capture anchor %}{{ include.anchorBody | replace: '%heading%', escaped_header | default: '' }}{% endcapture %} {% 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 }} \ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html index e2078c2..8aa6237 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,4 +1,4 @@ - \ No newline at end of file diff --git a/_includes/l10n.html b/_includes/l10n.html index d50954f..b8ad183 100644 --- a/_includes/l10n.html +++ b/_includes/l10n.html @@ -2,7 +2,7 @@ + \ No newline at end of file diff --git a/pages/Links.md b/pages/Links.md new file mode 100644 index 0000000..6e7c9ad --- /dev/null +++ b/pages/Links.md @@ -0,0 +1,156 @@ +--- +title: Links +permalink: /links +redirect_from: ["/bibliography", "/resources", "/link"] +layout: page +description: "Links to related topics" +tags: wip +toc: true +--- +
+ If you are a podcast lover, please notice that audio content is highlighted in blue, while if you prefer to watch to talks or documentaries, look for what is highlighted in red +
+ +## General + +- Check out the [**Center for Humane Technology**’s website](https://www.humanetech.com "Center for Humane Technology") and its podcast, Your Undivided Attention. + +Go back to the [homepage](/ "Home") + +
+ +## Anger + +
+ +## 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 video by [Derek Caelin](https://mastodon.technology/@Argus "[Derek Caelin on Mastodon") on conf.tube +- [Facebook can’t fix itself](https://www.newyorker.com/magazine/2020/10/19/why-facebook-cant-fix-itself "Facebook can’t fix itself"), an article by [Andrew Marantz](https://en.wikipedia.org/wiki/Andrew_Marantz "Andrew Marantz on Wikipedia") on [The New Yorker] +- [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 +- [YouTube’s 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/ "YouTube’s 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") + +
+ +## Polarization + +Go back to [Why > Polarization](/why#polarization "Polarization") + +
+ +## 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") + +
+ +## Bubble + +Go back to [Why > Bubble](/why#bubble "Bubble") + +
+ +## Quality + +Go back to [Why > Quality](/why#quality "Quality") + +
+ +## Addiction + +Go back to [Why > Addiction](/why#addiction "Addiction") + +
+ +## Distraction + +Go back to [Why > Distraction](/why#distraction "Distraction") + +
+ +## Data + +Go back to [Why > Data](/why#data "Data") + +
+ +## Profilation + +Go back to [Why > Profilation](/why#profilation "Profilation") + +
+ +## 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 + +
+ +## Sociality + +Go back to [Why > Sociality](/why#sociality "Sociality") + +
+ +## Standardization + +Go back to [Why > Standardization](/why#standardization "Standardization") + +- [The internet didn’t kill counterculture—you just won’t find it on Instagram](https://www.documentjournal.com/2021/01/the-internet-didnt-kill-counterculture-you-just-wont-find-it-on-instagram/ "The internet didn’t kill counterculture—you just won’t find it on Instagram") + +
+ +## Content ownership + +Go back to [Why > Content ownership](/why#content-ownership "Content Ownership") + +
+ +## Hurry + +Go back to [Why > Hurry](/why#hurry "Hurry") + +
+ +## Simplicity vs simplification + +Go back to [Why > Simplicity vs Simplification](/why#simplicity-vs-simplification "Simplicity vs Simplification") + +
+ +## Being always connected + +Go back to [Why > Being always connected](/why#being-always-connected "Being Always Connected") + +
+ +## Environment + +Go back to [Why > Environment](/why#environment "Environment") + +
+ +## Closed + +Go back to [Why > Closed](/why#closed "Closed") + +
+ +## Saturation + +Go back to [Why > Saturation](/why#saturation "Saturation") + +
+ +## Being used + +Go back to [Why > Being used](/why#being-used "Being used") \ No newline at end of file diff --git a/pages/Resources.html b/pages/Resources.html deleted file mode 100644 index 824579a..0000000 --- a/pages/Resources.html +++ /dev/null @@ -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 ---- - diff --git a/pages/Solutions.md b/pages/Solutions.md index 284c5cb..32594f5 100644 --- a/pages/Solutions.md +++ b/pages/Solutions.md @@ -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 "Redecentralize’s blog"), an independent, volunteer-driven organisation promoting the decentralisation of our digital technology. +- [Internet of People](https://iop.global "Internet of People") + + +
+
+ ## 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.
- Note: one thing which has to be pointed out in advance is that running your own social does not mean 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! + Note: one thing which has to be pointed out in advance is that running your own social does not mean 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!

diff --git a/pages/What.md b/pages/What.md index c7a3ddf..b4d3912 100644 --- a/pages/What.md +++ b/pages/What.md @@ -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. \ No newline at end of file +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. + +
+
+ +## 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 \ No newline at end of file diff --git a/pages/Why.md b/pages/Why.md index edad148..ac3d20d 100644 --- a/pages/Why.md +++ b/pages/Why.md @@ -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.\ +The most effective “something„ we can do, as individuals, without waiting for government actions, lawsuits and reports, is quitting.

## 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. +It is scientifically proven that negative emotions engage users way more than positive emotions. 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. The more anger, the more engagement, the better it is. + +### Further reading + +- [more](/links#anger "More resources about anger and Social Media")

## 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 can’t fix itself](https://www.newyorker.com/magazine/2020/10/19/why-facebook-cant-fix-itself "Facebook can’t fix itself"), an article by [Andrew Marantz](https://en.wikipedia.org/wiki/Andrew_Marantz "Andrew Marantz on Wikipedia") on [The New Yorker] +- [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") + +

@@ -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 + +- The Social Dilemma, a documentary by [Jeff Orlowski](https://en.wikipedia.org/wiki/Jeff_Orlowski "Jeff Orlowski") +- [more](/links#polarization "More resources on Polarization and Social Media")

@@ -42,6 +63,7 @@ This is one of the key points of 2020, and of the last months in general: Social ### Further reading - [Don’t Blame Section 230 for Big Tech’s Failures. Blame Big Tech.](https://www.eff.org/deeplinks/2020/11/dont-blame-section-230-big-techs-failures-blame-big-tech "Don’t Blame Section 230 for Big Tech’s 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")

@@ -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 podcast 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”") +

@@ -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 TED Talk by [Finn Lützow-Holm Myrstad](https://www.ted.com/speakers/finn_myrstad "Finn Lützow-Holm Myrstad") +

@@ -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 TED Talk by [Carole Cadwalladr](https://en.wikipedia.org/wiki/Carole_Cadwalladr "Carole Cadwalladr on Wikipedia") +

@@ -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 +- [WIRED’s Guide to Net Neutrality](https://www.wired.com/story/guide-net-neutrality/ "WIRED’s 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") +

@@ -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. \ No newline at end of file +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 + +- [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://richardstallman.org "Richard Stallman’s personal website") on [GNU.org](https://gnu.org "GNU official website") + +
+
+
+ +## What to do now? + +Probably, it is about time.\ +[Delete](/delete "Delete your Social Media accounts") your Social Media accounts. \ No newline at end of file diff --git a/pages/about.md b/pages/about.md index 02cf4ca..5dace56 100644 --- a/pages/about.md +++ b/pages/about.md @@ -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 quitsocialmedia.club 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.
-## 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 (I’m 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 don’t 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") (a.k.a. FAQ). \ No newline at end of file diff --git a/pages/it/About.md b/pages/it/About.md deleted file mode 100644 index 84b7200..0000000 --- a/pages/it/About.md +++ /dev/null @@ -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'è quitsocialmedia.club, 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 abbandonarli è l'unico modo per stare meglio. - -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. - -
- -## 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 solamente una parte dei problemi conseguenti all'esistenza ed al loro utilizzo. 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. I motivi per abbandonare i social sono molti, credo non possano né debbano essere ignorati. - -
- -## Fine - -Questo sito web ha tre principali scopi: - -- Riunire ed elencare in un unico luogo 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 un punto di riferimento per tutti i “Social Media quitters”, 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 le scelte individuali e personali siano cruciali 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 analizzi attentamente i contenuti del sito e tutto il materiale riportato, per decidere autonomamente cosa fare. - -Dobbiamo comprendere, leggere, informarci e studiare quello che sta accadendo. - -
- -## 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ì. diff --git a/pages/it/Contribuisci.md b/pages/it/Contribuisci.md index 2be56f4..ff1d455 100644 --- a/pages/it/Contribuisci.md +++ b/pages/it/Contribuisci.md @@ -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 ha speso ore ed ore, per diversi mesi 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. \ No newline at end of file +- [Tommi](https://tommi.space "Tommi's personal website") (il creatore di questo coso) è uno studente, non è pagato da nessuno e nonostante questo ha speso ore ed ore, per diversi mesi 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. \ No newline at end of file diff --git a/pages/it/FAQ.md b/pages/it/FAQ.md new file mode 100644 index 0000000..8904407 --- /dev/null +++ b/pages/it/FAQ.md @@ -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: stai condividendo quitsocialmedia.club **sui** Social Media. 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. + +
+ +##### *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?"). + +
+
+ +## Name + +##### *Perché Quit Social Media e non Tommi quits Social Media?* + +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). + +
+ +##### *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. + +
+
+ +## 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. + +
+ +##### *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 l’avete 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. + +
+
+ +## 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. + +
+ +##### *Perché dovrei condividere questo sito?* + +Non sta a me dirlo, ma ti sarei molto grato se decidessi di farlo. + +
+ +##### *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à. + +
+ +##### *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. \ No newline at end of file diff --git a/pages/it/Home.html b/pages/it/Home.html index 1a59c51..f593db5 100644 --- a/pages/it/Home.html +++ b/pages/it/Home.html @@ -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"] ---
@@ -11,18 +11,18 @@ redirect_from: ["/home-it", "/it-home", "/home/it"]

Quit Social Media

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.

-
+

Cosa cavolo è questo sito?

- Risposta breve: 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é. + Risposta breve: 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.
Risposta lunga: leggi le info.

Da dove partire

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

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 questo percorso. diff --git a/pages/it/Info.md b/pages/it/Info.md new file mode 100644 index 0000000..5dec6ba --- /dev/null +++ b/pages/it/Info.md @@ -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'è quitsocialmedia.club, 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 abbandonarli sarebbe stato l'unico modo per stare meglio. + +Mi sono reso conto, tuttavia, che semplicemente eliminare i miei account 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? + +Tentando di rispondere a queste domande, ho deciso di creare quitsocialmedia.club + +
+ +## Perché + +Mi sono accorto che ogni articolo, video o documento che critica i *Social Media* menziona sempre solamente una parte dei problemi conseguenti alla loro esistenza ed al loro utilizzo. 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. I motivi per abbandonare i social sono molti, credo non possano né debbano essere ignorati. quitsocialmedia.club intende raccogliere diversi punti di vista in forme differenti e mostrare come uscire dai *Social Media* sia la soluzione migliore. + +
+ +## Fine + +Questo sito web ha tre principali scopi: + +- Riunire ed elencare in un unico luogo 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 un punto di riferimento per tutti coloro che eliminano i propri account 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 le scelte individuali e personali siano cruciali 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: **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 analizzi attentamente i contenuti del sito e tutto il materiale riportato, per decidere autonomamente cosa fare. + +
+ +## 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") (a.k.a. FAQ). \ No newline at end of file diff --git a/pages/it/Links.md b/pages/it/Links.md new file mode 100644 index 0000000..dc6edbb --- /dev/null +++ b/pages/it/Links.md @@ -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 +--- +

+ I link a tutte le risorse sono in Links. Qui di seguito sono elencate esclusivamente quelle in italiano. +
+ +## General + +Torna alla [home](/it/home "Home") + +
+ +## Anger + +
+ +## Hate + +Torna a [Perché > Hate](/perché#hate "Hate") + + +
+ +## Polarization + +Torna a [Perché > Polarization](/perché#polarization "Polarization") + +
+ +## Misinformation + +Torna a [Perché > Misinformation](/perché#disinformation "Disinformation") + + +
+ +## Bubble + +Torna a [Perché > Bubble](/perché#bubble "Bubble") + +
+ +## Quality + +Torna a [Perché > Quality](/perché#quality "Quality") + +
+ +## Addiction + +Torna a [Perché > Addiction](/perché#addiction "Addiction") + +
+ +## Distraction + +Torna a [Perché > Distraction](/perché#distraction "Distraction") + +
+ +## Data + +Torna a [Perché > Data](/perché#data "Data") + +
+ +## 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) + +
+ +## Monopolization + +Torna a [Perché > Monopolization](/perché#monopolization "Monopolization") + +
+ +## Sociality + +Torna a [Perché > Sociality](/perché#sociality "Sociality") + +
+ +## Standardization + +Torna a [Perché > Standardization](/perché#standardization "Standardization") + +
+ +## Content ownership + +Torna a [Perché > Content ownership](/perché#content-ownership "Content Ownership") + +
+ +## Hurry + +Torna a [Perché > Hurry](/perché#hurry "Hurry") + +
+ +## Simplicity vs simplification + +Torna a [Perché > Simplicity vs Simplification](/perché#simplicity-vs-simplification "Simplicity vs Simplification") + +
+ +## Being always connected + +Torna a [Perché > Being always connected](/perché#being-always-connected "Being Always Connected") + +
+ +## Environment + +Torna a [Perché > Environment](/perché#environment "Environment") + +
+ +## Closed + +Torna a [Perché > Closed](/perché#closed "Closed") + +
+ +## Saturation + +Torna a [Perché > Saturation](/perché#saturation "Saturation") + +
+ +## 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 Stallman’s personal website") on [GNU.org](https://gnu.org "GNU") \ No newline at end of file diff --git a/pages/it/Soluzioni.md b/pages/it/Soluzioni.md index 865c2ca..087cc60 100644 --- a/pages/it/Soluzioni.md +++ b/pages/it/Soluzioni.md @@ -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, libera. Esistono alcune favolose soluzioni talmente perfette che danno apparire i Social Media quasi inutili e stupidi." +description: "Essere “social” senza “Social Media” sembra impossibile. Tuttavia, quella senza Social Media una nuova vita, straordinaria, piena di sorprese, scoperte, autenticità ed eccitazione, ma, soprattutto, libera. Esistono alcune favolose soluzioni talmente perfette che danno apparire i Social Media 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 i suoi reali valori di indipendenza e apertura 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… qualunque cosa si trovi su internet. 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… per qualunque cosa si trovi su internet. 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)

## 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 convertire in feed RSS le timeline dei social network. -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 utilizzare gratuitamente quello ospitato sul mio server, visitando . (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 utilizzare gratuitamente quello ospitato sul mio server.\ +(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"))

## 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 non contengono pubblicità, di nessun tipo, i dati personali raccolti sono il minimo indispensabile e non vengono sfruttati per profilare gli utenti, 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 la totale assenza di pubblicità, la minima raccolta di dati personali, non sfruttati per profilare gli utenti, ma, soprttutto, sono liberi, aperti e indipendenti. -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*) diff --git a/style.scss b/style.scss index dc08f6b..6f0f088 100644 --- a/style.scss +++ b/style.scss @@ -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); -} +} \ No newline at end of file