updates and fixes
parent
54e004ed3b
commit
1724433e0a
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
date: 2023-03-01T11:35:23+01:00
|
||||
updated: 2023-03-06T12:13:25+01:00
|
||||
location: home
|
||||
tags:
|
||||
- history
|
||||
- uni/thesis
|
||||
- wip
|
||||
- reading/book
|
||||
---
|
||||
|
||||
p. 15:
|
||||
|
||||
> Baran was suggesting combining two previously isolated technologies: computers and communications. Odd as it might appear to readers in the digital age, these were disciplines so mutually distinct that Baran worried his project could fail for lack of staff capable of working in both areas.
|
||||
|
||||
Splitting information and communications in small, fragmented <q>packets</q> of data.
|
||||
|
||||
page 16:
|
||||
|
||||
> Baran’s concept had the same centrifugal character that defines the Internet today. At its most basic, what this book calls the <q>centrifugal</q> approach is to flatten established hierarchies and put power and responsibility at the nodal level so that each node is equal. Baran’s network focused on what he called <q>user to user rather than … centre-to-centre operation</q>.
|
||||
|
||||
Even if it was economically extremely convenient (60M$ instead of 2B$ per year), AT&T refused to invest in digital communication technologies.
|
||||
|
||||
Scientific advancement and research perceived as the new frontier for modern warfare, at which the Soviets succeeded way more than the US up to the late 50s. RAND comes into play: <q>a degree of intellectual freedom which is … unique</q>.
|
||||
|
||||
In February 1958 <abbr title='Advanced Research Projects Agency'>ARPA</abbr> was born:
|
||||
|
||||
> It would be a small operation that would issue contracts for research and development to other organizations.
|
||||
|
||||
In 1962, Licklider hired by ARPA to focus on command and control of behavioral sciences. Licklider believed that <q>improving the usability of computer systems would lay the foundations for improved command and control</q>.
|
||||
|
||||
> At the core of Licklider’s thinking was <u>an emphasis on collaboration</u>. Licklider posited a future scenario in which a researcher at one research centre could find a useful computer resource over the network from a research centre elsewhere. This, in a world of incompatible machines and jealously guarded computing resources, was far-sighted talk indeed.
|
||||
|
||||
What in the 60s was strongly and <q>jealously guarded</q>, computing resources, now is abundant. It is now software and algorithms the platforms provided.
|
||||
|
||||
> Licklider’s influence was felt further afield through his support of large research programmes in universities that stimulated the early computer studies departments and <u>attracted the new generation of students</u> to the new field.
|
|
@ -16,80 +16,75 @@ layout: default.html
|
|||
rel: places
|
||||
---
|
||||
<div class='row'>
|
||||
<div class='one column'>
|
||||
<article>
|
||||
{% renderTemplate 'md' %}
|
||||
This page does not merely a lists places I have been to, rather it is an ever growing and evolving record of corners of the world I carry in my heart.
|
||||
<div class='one column'>
|
||||
<article>
|
||||
{% renderTemplate 'md' %}
|
||||
This page does not merely a lists places I have been to, rather it is an ever growing and evolving record of corners of the world I carry in my heart.
|
||||
|
||||
<cite>[Around the World](https://youtube.com/watch?v=a9eNQZbjpJk 'Red Hot Chili Peppers - Around The World')</cite>
|
||||
is a song that I love by Red Hot Chili Peppers. It talks about the beauty of all the different and astounding places that exist on our planet. It perfectly
|
||||
<cite>[Around the World](https://youtube.com/watch?v=a9eNQZbjpJk 'Red Hot Chili Peppers - Around The World')</cite>
|
||||
is a song that I love by Red Hot Chili Peppers. It talks about the beauty of all the different and astounding places that exist on our planet. It perfectly
|
||||
|
||||
{% endrenderTemplate %}
|
||||
</article>
|
||||
</div>
|
||||
{% endrenderTemplate %}
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe
|
||||
class='dark'
|
||||
width='100%'
|
||||
height='400px'
|
||||
frameborder='0'
|
||||
allowfullscreen
|
||||
src='https://umap.openstreetmap.fr/en/map/favorites_593427?scaleControl=false&miniMap=false&scrollWheelZoom=false&zoomControl=true&allowEdit=false&moreControl=true&searchControl=null&tilelayersControl=null&embedControl=null&datalayersControl=true&onLoadPanel=undefined&captionBar=false'></iframe>
|
||||
class='dark'
|
||||
width='100%'
|
||||
height='400px'
|
||||
frameborder='0'
|
||||
allowfullscreen
|
||||
src='https://umap.openstreetmap.fr/en/map/favorites_593427?scaleControl=false&miniMap=false&scrollWheelZoom=false&zoomControl=true&allowEdit=false&moreControl=true&searchControl=null&tilelayersControl=null&embedControl=null&datalayersControl=true&onLoadPanel=undefined&captionBar=false'></iframe>
|
||||
|
||||
<div class='large grid'>
|
||||
{% for place in places %}
|
||||
<div class='vertical flex box'>
|
||||
{% if place.img != '' %}<img src='{{ place.img }}' alt='{{ place.name }}'>{% endif %}
|
||||
<h3>{{ place.name }}</h3>
|
||||
{% if place.city != '' %}
|
||||
<h4>{{ place.city }}</h4>
|
||||
{% endif %}
|
||||
{% if place.description %}
|
||||
<p>{{ place.description | markdownify | truncatewords: 30 }}</p>
|
||||
{% endif %}
|
||||
<div class='flex row'>
|
||||
{% if place.plot != '' %}
|
||||
<a
|
||||
class='tiny yellow button'
|
||||
href='{{ place.plot }}'
|
||||
target='_blank'
|
||||
title='What I wrote about {{ place.name }}'>My story</a>
|
||||
{% endif %}
|
||||
{% if place.url != '' %}
|
||||
<a
|
||||
class='tiny red button'
|
||||
href='{{ place.url }}'
|
||||
title='{{ place.name }}’s website'>Website</a>
|
||||
{% endif %}
|
||||
<a
|
||||
class='tiny green button'
|
||||
href='{%- if place.osm != '' -%}{{ place.osm }}{%- else -%}https://osm.org?mlat={{ place.lat }}&mlon={{ place.lon }}&zoom=18{%- endif -%}'
|
||||
title='{{ place.name }} on the map'>View on map</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% for place in places %}
|
||||
<div class='vertical flex box'>
|
||||
{% if place.img != '' %}<img src='{{ place.img }}' alt='{{ place.name }}'>{% endif %}
|
||||
<h3>{{ place.name }}</h3>
|
||||
{% if place.city != '' %}
|
||||
<h4>{{ place.city }}</h4>
|
||||
{% endif %}
|
||||
{% if place.description %}
|
||||
<p>{{ place.description | markdownify | truncatewords: 30 }}</p>
|
||||
{% endif %}
|
||||
<div class='flex row'>
|
||||
{% if place.plot != '' %}
|
||||
<a
|
||||
class='tiny yellow button'
|
||||
href='{{ place.plot }}'
|
||||
target='_blank'
|
||||
title='What I wrote about {{ place.name }}'>My story</a>
|
||||
{% endif %}
|
||||
{% if place.url != '' %}
|
||||
<a
|
||||
class='tiny red button'
|
||||
href='{{ place.url }}'
|
||||
title='{{ place.name }}’s website'>Website</a>
|
||||
{% endif %}
|
||||
<a
|
||||
class='tiny green button'
|
||||
href='{%- if place.osm != '' -%}{{ place.osm }}{%- else -%}https://osm.org?mlat={{ place.lat }}&mlon={{ place.lon }}&zoom=18{%- endif -%}'
|
||||
title='{{ place.name }} on the map'>View on map</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class='row'>
|
||||
<div class='one column'>
|
||||
<article>
|
||||
{% renderTemplate "md" %}
|
||||
https://youtu.be/a9eNQZbjpJk
|
||||
## More
|
||||
|
||||
More info on how I manage my location data in the [[OpenStreetMap]] page, while in [[Travel|Travelling]] I collect some notes of useful resources and tips.
|
||||
|
||||
### Resources
|
||||
|
||||
There are also some very nice non-mainstream online resources to discover non-mainstream places:
|
||||
|
||||
-
|
||||
<cite>[The Treasure Map](https://the-treasure-map.herokuapp.com 'The Treasure Map')</cite>
|
||||
-
|
||||
<cite>[Atlas Obscura](https://www.atlasobscura.com 'Atlas Obscura')</cite>
|
||||
<div class='row'><div class='one column'><article>
|
||||
{% renderTemplate 'md' %}
|
||||
|
||||
{% endrenderTemplate %}
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
https://youtu.be/a9eNQZbjpJk
|
||||
|
||||
## More
|
||||
|
||||
More info on how I manage my location data in the [[OpenStreetMap]] page, while in [[Travel|Travelling]] I collect some notes of useful resources and tips.
|
||||
|
||||
### Resources
|
||||
|
||||
There are also some very nice non-mainstream online resources to discover non-mainstream places:
|
||||
|
||||
- <cite>[The Treasure Map](https://the-treasure-map.herokuapp.com 'The Treasure Map')</cite>
|
||||
- <cite>[Atlas Obscura](https://www.atlasobscura.com 'Atlas Obscura')</cite>
|
||||
{% endrenderTemplate %}
|
||||
</article></div></div>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
---
|
||||
date: 2020-08-04T02:00:00+02:00
|
||||
updated: 2022-10-17T10:43:02+02:00
|
||||
tags: geek
|
||||
permalink: /bugs/
|
||||
redirect_from: [/feature-requests/, /bugs-and-feature-requests/]
|
||||
tags: geek
|
||||
image: https://tommi.space/bugs.svg
|
||||
description: Bugs and Feature requests for the apps I use
|
||||
redirect_from: [/feature-requests/, /bugs-and-feature-requests/]
|
||||
---
|
||||
Most the [[Apps]] I use the are open source and in active development. Often, I notice bugs or I have ideas of possible improvements but I rarely have time to file a proper issue for every bug or a exhaustive post for a feature request. Thus, in this list I quickly note all the thoughts which pop up in my mind, hoping some day I will have enough time to effectively share my reports.
|
||||
|
||||
|
@ -136,25 +136,4 @@ Improvements and bugs of iOS which I notice while using my iPhone. [iPhone feedb
|
|||
|
||||
### Bugs
|
||||
|
||||
- `cmd + E` works only to switch external editing on, not to turn it off
|
||||
|
||||
## Zettlr
|
||||
|
||||
[Zettlr](https://www.zettlr.com) is the best Markdown editor out there.
|
||||
|
||||
<div class='red box'>Since November 2020 I stopped using Zettlr because its work could be made by <a href='https://obsidian.md' target='_blank' title='Obsidian official website'>Obsidian</a></div>
|
||||
|
||||
- Implement split view: two different notes side by side
|
||||
|
||||
## WBO
|
||||
|
||||
- importing, not only exporting SVGs
|
||||
|
||||
## Fediverse
|
||||
|
||||
- Standard import/export/migration protocol
|
||||
- Select language before posting
|
||||
|
||||
## YunoHost
|
||||
|
||||
![[YunoHost#Feature requests]]
|
||||
- `cmd + E` works only to switch external editing on, not to turn it off
|
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
date: 2023-02-10T12:14:03+01:00
|
||||
updated: 2023-02-11T12:28:39+01:00
|
||||
location: home
|
||||
tags:
|
||||
- geek/wip
|
||||
---
|
||||
I finally got my lovely Lenovo ThinkPad P14s Gen 3 (AMD), and I love it! I was only surprised to find out that the glorious 4K screen has touch support, which makes it a bit more reflective, but it is to
|
||||
|
||||
1. Disabling Secure Boot in the BIOS
|
||||
2. installing Vanilla OS
|
||||
1. Updating all firmware
|
||||
3. Copying my KeePassXC database on a USB drive
|
||||
4. Nextcloud system login
|
||||
5. ==Install GNOME extensions==
|
||||
6. Setup fingerprint reader
|
||||
7. +++
|
||||
8. `sudo abroot exec apt install gnome-tweaks`
|
||||
1. to autostart applications
|
||||
2. to swap caps lock and esc keys
|
||||
9. Copy Obsidian environment
|
||||
10. clone tommi.space
|
||||
11. install custom scripts
|
||||
- installing custom scripts dependencies
|
||||
1. git config
|
||||
|
||||
---
|
||||
|
||||
1. Neovim plugins
|
||||
2. zsh config + plugins
|
||||
1. dotfiles repo and config
|
||||
- private stuff:
|
||||
- GitHub token
|
||||
- .ssh
|
||||
1. Configure Gradient
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
date: 2023-02-24T11:46:34+01:00
|
||||
updated: 2023-02-24T11:49:58+01:00
|
||||
tags:
|
||||
- geek/server
|
||||
toc: false
|
||||
description: Notes and insights about running an amateur DYI server in my home
|
||||
---
|
||||
Currently, [[Server|Xplosion Server]] is running in a VPS hosted by Contabo. I am exploring here various ideas, solutions and resources about running a server in my own house, instead.
|
||||
|
||||
- <https://youtu.be/DlQNciGVgbQ>
|
||||
- <https://youtu.be/ohkMRA74MB4>
|
||||
- <https://youtu.be/GeDo8mjB5oU>
|
||||
- [Set Up a Home Server](https://www.wired.com/2010/02/set-up-a-home-server/ 'Set Up a Home Server - WIRED')
|
||||
- [Make Your Computer Into a Server in 10 Minutes](https://www.instructables.com/id/Make-Your-Computer-Into-A-Server-in-10-Minutes-fr/)
|
||||
|
||||
## Raspberry Pi
|
||||
|
||||
- [Several guides](https://pimylifeup.com/category/projects/server/ 'Server - Pimpmylifeup')
|
||||
- [Nextcloud Server](https://lonewolfonline.net/raspberry-pi-personal-cloud-server/ 'Raspberry Pi Personal cloud server')
|
||||
- [Instructables](https://www.instructables.com/id/Ultimate-Pi-Based-Home-Server/ 'Ultimate Pi-Based Home Server')
|
|
@ -36,7 +36,7 @@ Domain names I am using:
|
|||
- [`tommasomarmo.com`][tommasomarmo.com], which redirects to `tommi.space`
|
||||
- [`gitmi.dev`][gitmi.dev], where [[GiTMI]] is hosted
|
||||
- ~~`pise-notes.club`, where I used to host my [[PISE]] notes~~
|
||||
- ~~`matto.club`, general purpose domain I bought for [[YunoHost]]~~
|
||||
- ~~`matto.club`, general purpose domain I bought for [[Server|Xplosion Server]]~~
|
||||
|
||||
<br>
|
||||
|
||||
|
|
|
@ -1,40 +1,42 @@
|
|||
---
|
||||
date: 2020-12-27T06:40:14+01:00
|
||||
updated: 2023-02-09T14:05:56+01:00
|
||||
updated: 2023-02-28T12:52:06+01:00
|
||||
tags: [geek, todo, geek/idea]
|
||||
description: Computer related tasks tracking
|
||||
---
|
||||
1. [[Switching to Linux]]
|
||||
2. Expose PW publicly with a stronger password
|
||||
1. GitHub education verification renewal
|
||||
1. Use Samsung tablet as graphic table
|
||||
1. Scambi Festival 2022 + LNS 2023 videos upload on Internet Archive
|
||||
1. Backup/storage/hosting with Cubbit’s Object Storage [Cubbit Cloud-to-cloud](https://cubbit.io/cloud-to-cloud)
|
||||
1. [Server fallback](https://yunohost.org/en/app_fallback)
|
||||
1. [Using YunoHost as a Tor Hidden Service](https://yunohost.org/en/torhiddenservice)
|
||||
1. [[GiTMI]]
|
||||
1. Git in-depth learning via video
|
||||
1. why does server.tommi.space backup script throws an error anyways?
|
||||
4. [[Switching to Linux]]
|
||||
5. Expose PW publicly with a stronger password
|
||||
6. GitHub education verification renewal
|
||||
7. Use Samsung tablet as graphic table
|
||||
8. Scambi Festival 2022 + LNS 2023 videos upload on Internet Archive
|
||||
9. Open source STT software + library, for automated workflow
|
||||
10. Backup/storage/hosting with Cubbit’s Object Storage [Cubbit Cloud-to-cloud](https://cubbit.io/cloud-to-cloud)
|
||||
11. [Server fallback](https://yunohost.org/en/app_fallback)
|
||||
12. [Using YunoHost as a Tor Hidden Service](https://yunohost.org/en/torhiddenservice)
|
||||
13. [[GiTMI]]
|
||||
14. Git in-depth learning via video
|
||||
- Configure [git email sending](https://git-send-email.io 'git-send-email.io')
|
||||
- <https://github.com/MichaelMure/git-bug>
|
||||
1. @stream.tommi.space -> @tommi.space
|
||||
1. [[Images]] and [[Storage]]
|
||||
1. [[Automations]]
|
||||
1. Integrate audios, albums and images in log/daily Zettelkasten system (unique images and audios links to be opened)
|
||||
1. [Setup Matrix server](https://github.com/matrix-org/synapse#id5 'Install Synapse')
|
||||
1. [[Scripts]]
|
||||
15. @stream.tommi.space -> @tommi.space
|
||||
16. [[Images]] and [[Storage]]
|
||||
17. [[Automations]]
|
||||
18. Integrate audios, albums and images in log/daily Zettelkasten system (unique images and audios links to be opened)
|
||||
19. [Setup Matrix server](https://github.com/matrix-org/synapse#id5 'Install Synapse')
|
||||
20. [[Scripts]]
|
||||
- get location/coordinates from CLI (and use them in espanso for `:fm` command)
|
||||
1. Consistent resume creation ([HackMyResume](https://github.com/hacksalot/HackMyResume 'HackMyResume on GitHub'))
|
||||
2. [[Linuxplosion#To do]]
|
||||
3. Update [[Storage]] and [[Backup checklist]]
|
||||
4. Cross-environment **[[Tags]] integration**
|
||||
21. Consistent resume creation ([HackMyResume](https://github.com/hacksalot/HackMyResume 'HackMyResume on GitHub'))
|
||||
22. [[Linuxplosion#To do]]
|
||||
23. Update [[Storage]] and [[Backup checklist]]
|
||||
24. Cross-environment **[[Tags]] integration**
|
||||
- **audios**: notes containing shared links of files in Cubbit?
|
||||
- **images**: consider collecting shared links of albums in a private *[Giri](https://tommi.space/giri 'Giri')*, or integrate some sort of authentication wall (as with Flickr currently) in the public one. Does it make sense? Not too much of a waste of time?
|
||||
5. Configure and install [sensible.vim](https://github.com/tpope/vim-sensible 'sensible.vim on GitHub'), to associate keybindings to commands on Vim
|
||||
7. Create a CSS framework
|
||||
8. MacBook Pro color profile
|
||||
9. #geek/idea s
|
||||
10. TMI Pics custom CSS
|
||||
11. [[tommi.space#page-specific to-dos]]
|
||||
12. [[Road to Internet Freedom]]
|
||||
13. [[Bugs and Feature Requests]]
|
||||
14. [[Missing Knowledge#Geek|Learn]]
|
||||
25. Configure and install [sensible.vim](https://github.com/tpope/vim-sensible 'sensible.vim on GitHub'), to associate keybindings to commands on Vim
|
||||
26. Create a CSS framework
|
||||
27. MacBook Pro color profile
|
||||
28. #geek/idea s
|
||||
29. TMI Pics custom CSS
|
||||
30. [[tommi.space#page-specific to-dos]]
|
||||
31. [[Road to Internet Freedom]]
|
||||
32. [[Bugs and Feature Requests]]
|
||||
33. [[Missing Knowledge#Geek|Learn]]
|
|
@ -0,0 +1,155 @@
|
|||
---
|
||||
author: Ippolita
|
||||
date: 2023-03-02T14:54:42+01:00
|
||||
updated: 2023-03-04T15:36:46+01:00
|
||||
lang: it
|
||||
location: CFZ
|
||||
permalink: /rete-democratica/
|
||||
tags:
|
||||
- reading/book
|
||||
- uni/thesis
|
||||
- wip
|
||||
description: Un libro che sottolinea l’intrinseco fattore anarchico all’interno della rete e le sue problematiche, da un punto di vista sia ontologico che epistemologico.
|
||||
image: https://covers.openlibrary.org/b/id/13348461-L.jpg
|
||||
---
|
||||
|
||||
> Ma le esternalità negative dell’adozione di tecnologie di massa sono molto più profonde dei meri effetti sociali immediatamente esperibili nella vita quotidiana, e sono incalcolabili per il semplice fatto che nessuno conosce il futuro.
|
||||
|
||||
> Questi movimenti sono fortemente connotati dalla feticizzazione autoritaria dell’efficienza e vedono nel proceduralismo «oggettivo» dell’informatica una possibile garanzia di trasparenza e partecipazione. \[…\] Per quanto questi movimenti si dicano reticolari, ricalcano pedissequamente modelli di organizzazione gerarchica.
|
||||
|
||||
> La democrazia non è un codice, né tantomeno un software. Non c’è un programma, né un programmatore capace di far funzionare meglio e risolvere i *bug* del sistema.
|
||||
|
||||
> Occorre invece sapere che la forza di una rete, sia essa anche di tipo centralizzato, sta nei margini, nei territori di frontiera, poiché solo in una dimensione locale, che abbandoni ogni logica di scala, è possibile avviare una nuova *paidèia tecnologica* che ricomponga la frattura fra conoscenza e capacità tecnica. \[…\] Solo attraverso pratiche micro-politiche quotidiane gli individui possono raggiungere un’intesa basata sulla fiducia reciproca, anziché delegarla a un sistema tecnico-burocratico. Ciascun individuo dev poter mantenere in ogni momento una personalità multidimensionale che non può essere ridotta al segno di una particolare prassi.
|
||||
|
||||
Foucault ↑
|
||||
|
||||
Poiché il capitalismo della sorveglianza agisce nei contesti micro-politici influenzando la percezione psico-sociologica dell’individuo, è proprio limitandone l’influenza in questa sfera che diviene possibile coltivare una maggiore awareness.
|
||||
|
||||
> Occorre una risposta politica capace di contrapporre al sistema dominante dei *social networks* la costruzione di <em lang='en'>trusted networks</em>.
|
||||
|
||||
XVI: la ricerca immediata di alternative è vana; <q>l’alternativa non esiste</q>
|
||||
|
||||
> l’alternativa a Facebook, ma che funzioni come Facebook, può essere solo un altro Facebook
|
||||
|
||||
L’importanza del DMA ↑
|
||||
|
||||
---
|
||||
|
||||
pagina 4:
|
||||
|
||||
> \[l’informatica\] non è semplicemente una tecnica per gestire l’informazione in maniera automatica, come suggerirebbe il termine, ma possiede una logica propria e lavora e modifica continuamente le sue stesse fondamenta. È fisica teorica e sperimentale insieme: studia la formalizzazione del linguaggio (dunque formalizza la conoscenza), la applica ai componenti fisici dell’elettronica, ne ricava linguaggi che a loro volta influenzano le teorie della conoscenza. Si regge, cioè, su una dimensione ricorsiva del tutto particolare.
|
||||
|
||||
Per via della sua natura completamente artificiale, l’informatica è arbitrariamente creata e modificata, mentre ai profani di questi processi appare come una tecnica pura e assiomatica.
|
||||
|
||||
---
|
||||
|
||||
pagina 8: dove sta il cloud? Mancanza di un’educazione critica alla comprensione dell’architettura digitale + data ownership: <q>non possediamo più nulla</q>
|
||||
|
||||
> L’informatica, per un utente comune, sfuma nell’insostenibile leggerezza del <em lang='en'>Cloud computing</em>.
|
||||
|
||||
pag. 9: lock-in services, che non solo possiedono gli strumenti ed i mezzi, ma influenzano la mentalità definendo il mainstream, il corretto ed il falso.
|
||||
|
||||
pag. 10-11: freedom to seek
|
||||
|
||||
pag. 12: subjective objectivity
|
||||
|
||||
pag. 13: determinare il valore di una pagina in base al numero di collegamenti che portano ad essa, come una forma surrogata di <em lang='en'>peer reviewing</em> per citazioni accademiche. La qualità viene considerata quantitativamente.
|
||||
|
||||
> questo meccanismo ci illude che la libertà consista nell’ottenere una qualità totale a costo zero, immediata, perché ci *sentiamo fortunati*. Sappiamo invece che in un sistema reticolare complesso come quello delle reti digitali non esistono verità assolute, ma solo autorità distribuite a seconda del percorso che si desidera affrontare \[…\]. La qualità dipende interamente dalla nostra soggettiva percezione dell’accettabilità del risultato, che rimarrà comunque relativo e parziale.
|
||||
|
||||
> è curioso che ci si preoccupi così tanto del controllo esercitato da parte dello Stato e delle sue agenzie, a partire da quelle fiscali, e così poco del controllo applicato dai nuovi padroni digitali.
|
||||
|
||||
> la trasparenza vale per la massa, non per i sistemi di potere, e l’<u>ingegneria sociale</u> sottesa alla piattaforma rimarrà dissimulata, negata, materia per la tecnocrazia.
|
||||
|
||||
pagina 20: l’inconsapevolezza dell’utente è la componente fondamentale del mercato digitale che il capitalismo della sorveglianza domina
|
||||
|
||||
pagina 21: behavior manipulation
|
||||
|
||||
pagina 23: l’illusione che l’intero social network racchiuda tutte le <q>informazioni utili</q>. <q>Non esiste più, dunque, un vero e proprio esterno, ma la percezione che possa esistere in Rete solo un grande spazio pubblico interno e interconnesso.</q> Cos’è uno spazio pubblico? Vedi inizio dell’[articolo sul DMA](https://tommi.space/dma)
|
||||
|
||||
> il social network trasforma l’idea di opinione pubblica nella convinzione che molte opinioni soggettive \[…\] si trasformino per incanto nell’esatto opposto, in verità rivelata
|
||||
|
||||
> In quasi tutte le analisi si tace sul fatto che le piattaforme social sono state create con l’obiettivo del profitto, non con l’idea di creare un contesto democratico globale di dibattito interculturale.
|
||||
|
||||
La natura profondamente economica e finanziaria dei social network centralizzati pone un limite fondamentale a qualunque tentativo di “umanizzazione” di sistemi e infrastrutture che sono concepite per funzionare come macchine da soldi.
|
||||
|
||||
pagina 26: omofilia ed <em lang='en'>echo chambers</em>
|
||||
|
||||
<div class='yellow box'>
|
||||
C’è un problema del Fediverse collegato a questo: se le istanze si auto-moderano e si de-federano da ciò che non accettano o non tollerano, non si rischia di degenerare in un sistema di bolle che, seppur non create da un algoritmo, aumentano comunque l’incomunicabilità con il diverso?<br>D’altra parte, sarebbe eticamente corretto programmare ed inserire <em lang='en'>by design</em> un confronto con il differente? Possiamo applicare un concetto di <em>invisible hand</em> nel sociale?
|
||||
</div>
|
||||
|
||||
pagina 27: l’individuo non conosce la propria profilazione e la propria posizione all’interno del framework collettivo
|
||||
|
||||
pagina 34:
|
||||
|
||||
> lo sconcertante risultato è il dilagare di una pornografia emotiva: foto di bambini uccisi in una qualche sporca guerra, postate da cittadini coscienziosi e attivi, vengono accolte da salve accorate di «mi piace».
|
||||
|
||||
> La democrazia del «mi piace» non conosce negatività, né tanto meno il pudore del silenzio, la dignità della sofferenza.
|
||||
|
||||
p. 34-36 <em lang='en'>long tail theory</em>
|
||||
|
||||
p. 38 uno spazio privato for-profit come standard per una comunicazione pubblica e presumibilmente democratica
|
||||
|
||||
p. 40-41 *analogia* <b class='wtf'>???</b>
|
||||
|
||||
pagina 52:
|
||||
|
||||
> Non bisogna in nessun caso abbassare i consumi, perché moderare l’ansia di partecipazione a suon di <q>mi piace</q> equivarrebbe a una minore libertà. L’argomentazione pseudo-politica dello sviluppo automatico della democrazia, della sua emergenza dai flutti dell’Oceano di Dati, novella Venere meccanizzata, è necessaria a giustificare l’avidità, l’accumulo fine a se stesso della crescita illimitata come Primo Motore Immobile.
|
||||
|
||||
pagine 56-57: il pancoinvolgimento del digitale:
|
||||
|
||||
> non appena si formula un’obiezione alla diffusione massiva di una soluzione tecnologica digitale, si viene tacciati di oscurantismo, di essere reazionari contrari al progresso, luddisti o primitivisti. Attacchi furibondi di questo genere sono probabilmente dovuti al carattere messianico, di buona novella, con cui le tecnologie digitali si presentano spesso in maniera esplicita: mettere in discussione la digitalizzazione autoritaria del mondo equivale allora a un’eresia.
|
||||
|
||||
> Per ricomporre la frattura fra conoscenza e capacità tecnica occorre, quindi, innanzitutto riconoscere che <q>il piccolo è bello</q>. Bisogna concedersi il tempo di imparare e ricordare che <u>la libertà non è produttiva</u>. \[…\] È possibile costruire tecnologie conviviali, ma questi strumenti sono alternativi a quelli prodotti dall’ipertrofia industriale
|
||||
|
||||
pagina 58: gerarchia tecnocratica:
|
||||
|
||||
> Chi controllerà gli intermediari? Se ci affidiamo a strumenti-intermediari troppo grandi per creare un mondo più libero e democratico, dobbiamo accettare l£instaurarsi di una gerarchia tecnocratica.
|
||||
|
||||
> In conclusione, le conoscenze immagazzinate all’esterno dei nostri corpi, in quelli che vengono chiamati Big Data, sono una chimera, perché le conoscenze di cui gli esseri viventi possono godere non sono esternalizzabili né intercambiabili. <u>I Big Data non sono autocoscienti, non sono il codice del benessere sociale</u>. Nicholas Carr ha sostenuto che Internet ci rende stupidi. Diremo piuttosto che <u>l’abuso di tecnologie commerciali atrofizza le nostre capacità cognitive</u>, fornendoci protesi con cui sostituiamo arti sani.
|
||||
|
||||
pagina 59: partire dalla conoscenza e la costruzione del sé per approcciare correttamente le tecnologie
|
||||
|
||||
> Le Megamacchine implicano delle relazioni di causa-effetto (concatenazioni) di tipo capitalista o dispotico, generano dipendenza, sfruttamento, impotenza degli individui ridotti a consumatori e servi.
|
||||
|
||||
> <u>è una questione di scala, non di proprietà</u>, perché la
|
||||
> > proprietà collettiva dei mezzi di produzione a questo livello non muta nulla, e si limita ad alimentare un’organizzazione dispotica stalinista. Perciò Illic vi oppone il diritto di ciascuno a utilizzare i mezzi di produzione in una <q>società conviviale</q>, ossia desiderante e non-epidica. Ciò significa: l’utilizzazione più estesa delle macchine da parte del maggior numero di persone, la moltiplicazione delle piccole macchine da parte del maggior numero di persone, la moltiplicazione delle piccole macchine e l£adattamento delle grandi macchine alle piccole unità, la vendita esclusiva di elementi macchinici che devono essere assemblati dagli stessi utilizzatori-produttori, la distribuzione della specializzazione del sapere e del monopolio professionale.
|
||||
|
||||
<p class='cite'>G. Deluze, F. Guattari, <cite>Bilancio-programma per macchine desideranti</cite>, in <cite>Macchine desideranti</cite>, Ombre corte, Roma 2004, p. 114</p>
|
||||
|
||||
pagine 62-63 fattore consumistico-ecologico
|
||||
|
||||
> Nella visione turbocapitalista il tema dello spreco è connesso al rifiuto del limite, associato all’impotenza. La leggerezza impalpabile dei *bit* va di pari passo con la pesantezza dei *data center* sparsi in giro per il pianeta
|
||||
|
||||
pagine 66-67: democrazia come discussione che tende a una sintesi, piuttosto che una procedura di voto
|
||||
|
||||
pagine 68-69: la dimensione delle società contemporanee come limite della democrazia diretta
|
||||
|
||||
pagine 71-72: uguaglianza e *isonomìa*
|
||||
|
||||
pagina 75:
|
||||
|
||||
> la Rete viene invocata a garante dell’orizzontalità democratica, ma, tuttavia, è comunque nelle mani di aziende private, non degli Stati.
|
||||
|
||||
> Il modello sociale sino-americano ha in comune la pressione sempre più forte alla trasparenza radicale
|
||||
|
||||
pagina 76:
|
||||
|
||||
> Il capitalismo autoritario cinese non è incompatibile con il capitalismo democratico americano; anzi, i due sistemi si sostengono a vicenda.
|
||||
|
||||
pagina 77:
|
||||
|
||||
> Questa Rete crea insomma una sorta di cortocircuito antidemocratico, una sorta di *stato d’eccezione di massa*.
|
||||
|
||||
pagina 78:
|
||||
|
||||
> Le gerarchie dirigenti, i tanto vituperati padroni analogici, sono talmente impegnate a sviluppare il modello sino-americano a livello globale da avere una visione assai limitata del futuro. Tirano a campare, sempre sull’orlo del baratro. Chi invece ha visioni grandiose sono gli anarco-capitalisti, un ossimoro quanto mai calzante per descrivere la frangia più estremista dei cosiddetti :<em lang='en'>right libertarians</em>.
|
||||
|
||||
pagina 81:
|
||||
|
||||
> L’impero dei Big Data è una sorta di algocrazia nella quale la libertà è realizzabile senza sforzo per chiunque. Le società sono viste dall’alto, come gruppi di individui atomizzati ed egoisti per natura, masse il cui compito è rendersi radicalmente trasparenti alle tecnologie, condividere ogni cosa, per diventare «automagicamente» libere.
|
||||
|
||||
pagina 84: il problema dei minori
|
||||
|
||||
pagina 86: l’elemento lombrosiano della profilazione digitale
|
|
@ -29,6 +29,10 @@ As a result, *Nolan* makes a huge CSV or JSON database with a **timeline** of *e
|
|||
|
||||
The existing software closest to what Nolan does is [personal-management-system](https://github.com/Volmarg/personal-management-system 'personal-management-system’s source code on GitHub')
|
||||
|
||||
<time datetime='2023-01-28T23:14:02+01:00'>Saturday 28 January 2023</time>
|
||||
<p class='date'><time datetime='2023-01-28T23:14:02+01:00'>Saturday 28 January 2023</time></p>
|
||||
|
||||
I have just stumbled upon [datasette](https://datasette.io), which does not have very much to do with life management per se, but it shares the fundamental concept of valuing little datasets and connecting them in the best possible way, reciprocally integrating them.
|
||||
I have just stumbled upon [datasette](https://datasette.io), which does not have very much to do with life management per se, but it shares the fundamental concept of valuing little datasets and connecting them in the best possible way, reciprocally integrating them.
|
||||
|
||||
<p class='date'><time datetime='2023-02-13T07:49:40+01:00'>Monday 13 February 2023</time></p>
|
||||
|
||||
- https://github.com/Richardsl/heatmap-calendar-obsidian
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
date: 2023-02-17T18:34:11+01:00
|
||||
updated: 2023-02-24T17:37:13+01:00
|
||||
lang: it
|
||||
location: home
|
||||
tags:
|
||||
- topic
|
||||
- word
|
||||
- zen
|
||||
---
|
||||
Mi sono imbattuto per la prima volta in questo termine leggendolo da Luca Sofri, che lo utilizzò per descrivere [il suo rapporto con i Pet Shop Boys](https://hyp.is/_DglLK7qEe2RhAOk02ADIg/www.ilpost.it/pet-shop-boys-opera 'la frase in cui Luca Sofri ha utilizzato l’aggettivo “onanistico”, in “Due notti all’Opera').
|
||||
|
||||
Lo uso spesso da quel momento per descrivere il mio rapporto con l’[[Astronomia]] durante le superiori, e con l’[[Informatica]]/[[Internet Freedom]] negli ultimi anni.
|
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
date: 2023-02-23T09:31:18+01:00
|
||||
updated: 2023-02-28T12:55:19+01:00
|
||||
location: Portorož
|
||||
permalink: /pyhf/
|
||||
tags:
|
||||
- event
|
||||
- wip
|
||||
toc: false
|
||||
---
|
||||
## Final speech
|
||||
|
||||
**Discomfort**, how to address this odd and difficult to explain feeling
|
||||
|
||||
Wondering what was the reason of all that rumbling in my belly and weird pounding in my chest
|
||||
|
||||
Why a four stars hotel and not a youth hostel or a school gym, all together in sleeping bags?
|
||||
|
||||
The problem is not who is not in the room or who is there, but rather how *we* got here.
|
||||
|
||||
**priviledge**
|
||||
|
||||
What should we do? I would start by acknowledging that the vast majority of the problems we brought forward does not tackle the fundamental problems, but rather attempts to put patches to a sinking boat.
|
||||
|
||||
the average wealth of the world might have grown, but the difference among the poorest and the richest widened terribly.
|
||||
|
||||
## Absurd affirmations
|
||||
|
||||
- <q>not all inequalities are bad</q>
|
||||
- <q>rich people should not exist</q> <q>why not? You would be violating a right</q>
|
||||
- alcool should cost more to reduce consumption
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
date: 2021-02-04T13:30:10+01:00
|
||||
updated: 2022-03-14T14:50:40+01:00
|
||||
updated: 2023-02-24T13:16:41+01:00
|
||||
tags: geek
|
||||
aliases: Referral Codes
|
||||
permalink: /referral/
|
||||
|
@ -9,4 +9,5 @@ redirect_from:
|
|||
- /referral-links/
|
||||
description: All of the referral links and codes linked to me for various services
|
||||
---
|
||||
- [Gandi](https://gandi.link/f/14c4e7ea 'Gandi referral link')
|
||||
- [Gandi](https://gandi.link/f/14c4e7ea 'Gandi referral link')
|
||||
- [Proton](https://pr.tn/ref/R56T9VBRMT90 'Tommi’s Proton referral link')
|
|
@ -1,103 +1,20 @@
|
|||
---
|
||||
date: 2020-03-21T01:00:00+01:00
|
||||
updated: 2022-10-16T14:08:17+02:00
|
||||
tags: geek/server
|
||||
aliases: Xplosion Server
|
||||
updated: 2023-03-06T17:02:30+01:00
|
||||
redirect_from: [/xplosion-server/,/xplosionserver/]
|
||||
tags:
|
||||
- geek/server
|
||||
- todo
|
||||
- wip
|
||||
description: Information and insights concerning the configuration and manteinance of Tommi’s server
|
||||
aliases: Xplosion Server
|
||||
---
|
||||
<div class='red box'>
|
||||
Everything in this page is out of date, since I am using <a href='https://yunohost.org' target='_blank' title='YunoHost'>YunoHost</a> to manage my server now. On <a href='https://server.tommi.space' target='_blank' title='Tommi’s server'>server.tommi.space</a> there is the public front-end of the administration panel.
|
||||
</div>
|
||||
Xplosion Server is running [YunoHost](https://yunohost.org 'YunoHost') and I am collecting here various info about it.
|
||||
|
||||
My server is a surprisingly powerful (considered how much I pay for it) <abbr title='Virtual Private Server'>VPS</abbr> hosted in Germany by [Contabo](https://contabo.com 'Contabo official website'). It runs [Ubuntu 20.04](https://releases.ubuntu.com/20.04/ 'Ubuntu 20.04 release page').
|
||||
## tommi.space
|
||||
|
||||
<div class='box'>
|
||||
In [[Server setup]] I collected step-by-step walkthroughs of my server setup and configuration.
|
||||
</div>
|
||||
Nginx configuration is in `/etc/nginx/conf.d/tommi.space.d/my_webapp.conf`
|
||||
|
||||
## Installed
|
||||
|
||||
- [Nextcloud](https://nextcloud.com 'Nextcloud official website')
|
||||
- Installation walk-through: [[Server setup#Nextcloud]]
|
||||
- Mantainance cheat sheet: [[Server setup#Nextcloud Cheat Sheet]]
|
||||
- [Jitsi Meet](https://jitsi.org 'Jitsi Meet official website')
|
||||
- [[Server setup#Jitsi Meet|Jitsi Meet configuration and installation walk-through]]
|
||||
- [OpenVPN](https://openvpn.net 'OpenVPN official website') - ✅ 2020.01.01
|
||||
- to install it, I followed this super simple and quick [guide](https://dev.to/phiilu/host-your-own-openvpn-server-in-a-few-seconds-73l 'Host Your own OpenVPN Server in a few seconds - DEV')
|
||||
- ~~[PolitePol](https://github.com/taroved/pol), transform any webpage in a RSS feed - ✅ 2020.01.01~~.
|
||||
- it doesn't work on Twitter or Instagram
|
||||
- **It’s stupid**: [RSS bridge](https://github.com/RSS-Bridge/rss-bridge 'RSS Bridge on GitHub') is much more stable, cool, and effective.
|
||||
- **uninstalled**
|
||||
- [RSS bridge](https://github.com/RSS-Bridge/rss-bridge 'RSS Bridge on GitHub'), apparently, a more common, effective and popular alternative to PolitePol. It’s now running at <http://167.86.82.148:3001> ✅ 2021.01.24, [[Server setup#RSS-Bridge|setup]]
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## Mail server
|
||||
|
||||
- Mail-in-a-box [hardware specs requirements](https://discourse.mailinabox.email/t/minimal-server-performance/6997)
|
||||
- A [Reddit post](https://www.reddit.com/r/selfhosted/comments/6h88qf/on_selfhosted_mail_servers/)
|
||||
- A [Meduim post](https://medium.com/@stoyanov.veseline/self-hosting-a-mail-server-in-2019-6d29542dadd4)
|
||||
|
||||
### options
|
||||
|
||||
- [A script](https://github.com/LukeSmithxyz/emailwiz 'emailwiz repository on GitHub') by Luke Smith
|
||||
- [Mail-in-a-Box](https://mailinabox.email 'Mailinabox official website') (requires a fresh server completely devoted to it)
|
||||
- [Mailcow](https://mailcow.email/ 'Mailcow official website'), simple, dockerized, feature-packed.
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## Wishlist
|
||||
|
||||
Useful server apps or services I haven’t installed yet, in order of urgency and importance.
|
||||
|
||||
1. [Firefly III](https://www.firefly-iii.org 'Firefly III'), a personal finance management tool
|
||||
- [Docker installation guide](https://docs.firefly-iii.org/firefly-iii/installation/docker/ 'FIrefly III Docker installation guide')
|
||||
1. [Mailtrain](https://github.com/Mailtrain-org/mailtrain 'Mailtrain on GitHub') or, alternatively, [listmonk](https://listmonk.app), newsletter managers
|
||||
1. [twtxt](https://github.com/buckket/twtxt 'twtxt on GitHub')
|
||||
2. [Huginn](https://github.com/huginn/huginn 'Huginn repository on GitHub'), an IFTTT Alternative
|
||||
3. [Linkding](https://github.com/sissbruecker/linkding 'Linkding on GitHub')
|
||||
4. [Mail server](#mail-server)
|
||||
5. ~~[Feedbin](https://feedbin.com 'Feedbin official website'), arguably, the best RSS reader ou there~~. I wrote an email to them and they offered me a student free account, hosted by them.
|
||||
1. [Miniflux](https://miniflux.app/ 'Miniflux')
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## General knowledge
|
||||
|
||||
- [Apache for beginners](https://web.archive.org/web/20161227005904/https://www.wired.com/2010/02/Apache_for_Beginners 'Apache for Beginners on WIRED')
|
||||
- [Be Your Own Open ID Provider](https://web.archive.org/web/20161227023027/https://www.wired.com/2010/02/Be_Your_Own_OpenID_Provider 'Be Your Own Open ID Provider - WIRED')
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
![[Cron Jobs]]
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## Docker
|
||||
|
||||
I hate Docker. Probably, it is because I don’t get it. I believe that if one day I will finally learn how it works, my life is going to change and everything will become easier. For this reason, I am keeping at hand useful stuff which work and integrate with it.
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## DIY Home Server
|
||||
|
||||
- <https://youtu.be/DlQNciGVgbQ>
|
||||
- <https://youtu.be/ohkMRA74MB4>
|
||||
- <https://youtu.be/GeDo8mjB5oU>
|
||||
- [Set Up a Home Server](https://www.wired.com/2010/02/set-up-a-home-server/ 'Set Up a Home Server - WIRED')
|
||||
- [Make Your Computer Into a Server in 10 Minutes](https://www.instructables.com/id/Make-Your-Computer-Into-A-Server-in-10-Minutes-fr/)
|
||||
|
||||
<br>
|
||||
|
||||
### Raspberry Pi
|
||||
|
||||
- [Several guides](https://pimylifeup.com/category/projects/server/ 'Server - Pimpmylifeup')
|
||||
- [Nextcloud Server](https://lonewolfonline.net/raspberry-pi-personal-cloud-server/ 'Raspberry Pi Personal cloud server')
|
||||
- [Instructables](https://www.instructables.com/id/Ultimate-Pi-Based-Home-Server/ 'Ultimate Pi-Based Home Server')
|
||||
- [Custom 404 page](https://tecmint.com/create-custom-nginx-error-page 'How to Create Custom 404 Error Page in NGINX - Tecmint')
|
||||
- [Cache-Control Headers](https://howtogeek.com/devops/how-to-configure-cache-control-headers-in-nginx 'How to Configure Cache-Control Headers in NGINX')
|
||||
- [Configure gzip compression](https://techrepublic.com/article/how-to-configure-gzip-compression-with-nginx 'How to configure gzip compression with NGINX | TechRepublic')
|
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
date: 2023-02-27T10:57:07+01:00
|
||||
updated: 2023-03-04T11:01:39+01:00
|
||||
location: Portorož
|
||||
permalink: /stickstory/
|
||||
tags:
|
||||
- topic
|
||||
toc: false
|
||||
description: The stickers sticked on your laptop should tell the story of your life.
|
||||
aliases: Stickers on laptops
|
||||
image: https://tommi.space/stickers-mac.webp
|
||||
---
|
||||
During [[Portorož Youth Health Forum 2023]], while having a chat with [Batool](https://linkedin.com/in/batool-alwahdani-246307137 'Batool Alwahdani on Linkedin'), she noticed the back of my laptop being completely covered by stickers. Mindlessly, I told her <q>the stickers on the back of your laptop should tell the story of your life</q>. Without intending to, I conceived an important [[Living|life]] statement.
|
||||
|
||||
Thus, I am hereby founding the artistic political philosophical scientific transcendental current of Stickstory.
|
||||
|
||||
<figure>
|
||||
<img src='https://tommi.space/stickers-mac.webp' alt='A picture of my MacBook’s back, filled with stickers'>
|
||||
<figcaption>My laptop’s back as of the <time datetime='2023-03-04T10:57:37+01:00'>3 March 2023</time></figcaption>
|
||||
</figure>
|
||||
|
||||
## Manifesto
|
||||
|
||||
1. The back of people’s laptops should be filled with stickers
|
||||
2. The stickers on the back of a laptop should tell the story of its owner
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
date: 2023-01-03T17:17:30+01:00
|
||||
updated: 2023-01-24T23:13:56+01:00
|
||||
updated: 2023-02-15T09:15:58+01:00
|
||||
tags:
|
||||
- geek
|
||||
- log
|
||||
|
@ -15,8 +15,12 @@ tags:
|
|||
|
||||
## On fresh device
|
||||
|
||||
1. First setup steps, specifically needed for [[Vanilla OS]]
|
||||
2. Install Firefox
|
||||
1. [Configure BIOS/UEFI to prioritize external devices](https://debian.org/releases/stable/amd64/ch03s06.en.html)
|
||||
1. [Disable fast boot](https://debian.org/releases/stable/amd64/ch03s06.en.html)
|
||||
1. Handle partitions correctly
|
||||
2. <b class='missing'>+++</b> [Debian installation guide from chapter 5](https://debian.org/releases/stable/amd64/index.en.html)
|
||||
3. First setup steps, specifically needed for [[Vanilla OS]]
|
||||
4. Install Firefox
|
||||
|
||||
## Firefox
|
||||
|
||||
|
@ -24,33 +28,42 @@ The best way to install Firefox is to do so via PPA, since this way it is better
|
|||
|
||||
1. Follow <q>Firefox from Mozilla builds</q> from [Install Firefox on Linux in Firefox Help](https://support.mozilla.org/kb/install-firefox-linux 'install Firefox on Linux — Firefox Help'), with a few differences:
|
||||
5. `ln -s /opt/firefox/firefox ~/.local/bin/firefox`
|
||||
6. `wget [https://raw.githubusercontent.com/mozilla/sumo-kb/main/install-firefox-linux/firefox.desktop](https://raw.githubusercontent.com/mozilla/sumo-kb/main/install-firefox-linux/firefox.desktop) -P ~/.local/share/applications`
|
||||
6. `wget https://raw.githubusercontent.com/mozilla/sumo-kb/main/install-firefox-linux/firefox.desktop -P ~/.local/share/applications`
|
||||
2. Copy-paste Firefox profile
|
||||
|
||||
|
||||
---
|
||||
|
||||
|
||||
1. Neovim. Installation, plugins, various
|
||||
- Plugins
|
||||
- ale
|
||||
- deoplete
|
||||
1. zsh + oh my zsh [+ plugins](https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins)
|
||||
1. zsh + oh my zsh [+ plugins](https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins)
|
||||
1. Installing Thunderbird
|
||||
1. copy-paste Thunderbird profile from previous device
|
||||
2. Install Nextcloud Desktop
|
||||
3. Install Obsidian
|
||||
1. Install KeePassXC
|
||||
2. configure SSH and GPG keys
|
||||
3. Setup KeePassXC SSH agent
|
||||
4. Clone git repos
|
||||
1. remember to clone and manage git modules, too
|
||||
5. espanso
|
||||
6. keys remapping
|
||||
7. install fonts
|
||||
5. Set global environment variables
|
||||
6. espanso
|
||||
7. keys remapping
|
||||
8. install fonts
|
||||
1. Inter
|
||||
1. EB Garamond
|
||||
1. auto OCR in PDFs and images
|
||||
1. [Apps for GNOME](https://apps.gnome.org/)
|
||||
8. Simple and basic video player
|
||||
9. Simple and basic video player
|
||||
- [Shotcut](https://www.shotcut.org)
|
||||
- [OpenShot Video Editor](https://www.openshot.org)
|
||||
9. Manage dotfiles. See [awesome-dotfiles](https://github.com/webpro/awesome-dotfiles)
|
||||
- [chezmoi](https://chezmoi.io) / [Dotdrop](https://deadc0de.re/dotdrop) / mackup
|
||||
10. Manage dotfiles. See [awesome-dotfiles](https://github.com/webpro/awesome-dotfiles)
|
||||
- [chezmoi](https://chezmoi.io) / [Dotdrop](https://deadc0de.re/dotdrop) / mackup
|
||||
11. Run [MacOS stuff in Linux](https://darlinghq.org)
|
||||
|
||||
## Trouble
|
||||
|
||||
- Camera not recognized
|
||||
- Display glitches
|
||||
- Keyboard backlight controls
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
date: 2023-02-17T18:31:19+01:00
|
||||
updated: 2023-02-17T18:31:19+01:00
|
||||
location: IUAV Tolentini
|
||||
tags:
|
||||
- uni/thesis
|
||||
- wip
|
||||
---
|
||||
As traditional capitalism bases its evaluation process on the potential future value of something in the market, surveillance capitalism does so with future value of personal individual information.
|
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
author: Martin Heidegger
|
||||
date: 2023-02-14T09:58:01+01:00
|
||||
updated: 2023-02-16T11:09:23+01:00
|
||||
location: home
|
||||
tags:
|
||||
- wip
|
||||
- uni/thesis
|
||||
---
|
||||
Heidegger’s analysis of technology in The Question Concerning Technology consists of three main ‘claims’:
|
||||
|
||||
- technology is “not an instrument”, it is a way of understanding the world;
|
||||
- technology is “not a human activity”, but develops beyond human control;
|
||||
- technology is “the highest danger”, risking us to only see the world through technological thinking.
|
||||
|
||||
---
|
||||
|
||||
> Technology is not equivalent to the essence of technology. When we are seeking the essence of “tree,” we have to become aware that that which pervades every tree, as tree, is not itself a tree that can be encountered among all the other trees.
|
||||
|
||||
> Likewise, the essence of technology is by no means anything technological. Thus we shall never experience our relationship to the essence of technology so long as we merely conceive and push forward the technological, put up with it, or evade it. Everywhere we remain unfree and chained to technology, whether we passionately affirm or deny it. But <u>we are delivered over to it in the worst possible way when we regard it as something neutral</u>; for this conception of it, to which today we particularly like to do homage, makes us utterly blind to the essence of technology.
|
||||
|
||||
> According to ancient doctrine, the essence of a thing is considered to be *what* the thing is. We ask the question concerning technology when we ask what it is. Everyone knows the two statements that answer our question. One says: Technology is a means to an end. The other says: Technology is a human activity. The two definitions of technology belong together. For to posit ends and procure and utilize the means to them is a human activity. The manufacture and utilization of equipment, tools, and machines, the manufactured and used things themselves, and the needs and ends that they serve, all belong to what technology is. The whole complex of these contrivances is technology. Technology itself is a contrivance, or, in Latin, an *instrumentum*.
|
||||
|
||||
> The current conception of technology, according to which it is a means and a human activity, can therefore be called the instrumental and anthropological definition of technology.
|
||||
|
||||
> Who would ever deny that it is correct? It is in obvious conformity with what we are envisioning when we talk about technology. The instrumental definition of technology is indeed so uncannily correct that it even holds for modern technology, of which, in other respects, we maintain with some justification that it is, in contrast to the older handwork technology, something completely different and therefore new. Even the power plant with its turbines and generators is a man-made means to an end established by man. Even the jet aircraft and the high-frequency apparatus are means to ends. A radar station is of course less simple than a weather vane. To be sure, the construction of a high-frequency apparatus <u>requires the interlocking of various processes of technical-industrial production</u>. And certainly a sawmill in a secluded valley of the Black Forest is a primitive means compared with the hydroelectric plant in the Rhine River.
|
||||
|
||||
> But this much remains correct: <u>modern technology too is a means to an end</u>. That is why the instrumental conception of technology conditions every attempt to bring man into the right relation to technology. <u>Everything depends on our manipulating technology in the proper manner as a means</u>. We will, as we say, “get” technology “spiritually in hand.” We will master it. <u>The will to mastery becomes all the more urgent the more technology threatens to slip from human control</u>.
|
||||
|
||||
> But suppose now that technology were no mere means, how would it stand with the will to master it? Yet we said, did we not, that the instrumental definition of technology is correct? To be sure. The correct always fixes upon something pertinent in whatever is under consideration. However, in order to be correct, this fixing by no means needs to uncover the thing in question in its essence. Only at the point where such an uncovering happens does the true come to pass. For that reason the merely correct is not yet the true. Only the true brings us into a free relationship with that which concerns us from out of its essence. Accordingly, the correct instrumental definition of technology still does not show us technology’s essence. In order that we may arrive at this, or at least come close to it, we must seek the true by way of the correct. We must ask: What is the instrumental itself? Within what do such things as means and end belong?”
|
||||
|
||||
### Reference
|
||||
|
||||
Heidegger, Martin. “The question concerning technology (W. Lovitt, Trans.) The question concerning technology: and other essays (pp. 3-35).” (1977).
|
||||
|
||||
---
|
||||
|
||||
Mastering technology does not mean being capable of determining and understanding its essence.
|
||||
|
||||
Heidegger proves that rather than the much discussed popular worry of an artificial intelligence becoming sentient and overthrowing humanity, the risk posed by technology is in the way it could potentially cause a great enhancement of inequalities, and the exacerbation of social issues that already exist.
|
||||
|
||||
## Technology ≠ Essence of Technology
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
date: 2023-03-06T11:13:44+01:00
|
||||
updated: 2023-03-06T11:23:18+01:00
|
||||
location: BAUM
|
||||
permalink: /semantic-web/
|
||||
tags:
|
||||
- uni/thesis
|
||||
- wip
|
||||
- topic
|
||||
---
|
||||
> The Semantic Web is specifically a web of machine-readable information whose meaning is well-defined by standards: it absolutely needs the <u>interoperable infrastructure</u> that only global standard protocols can provide.
|
||||
|
||||
<p class='cite'>Tim Berners Lee, <cite>Spinning the Semantic Web</cite>, Foreword</p>
|
||||
|
||||
> There was a second goal for the Web, which was dependent on the first: if one could imagine a project (company, whatever) that used the Web in its work, then there would be a map, in cyberspace, of all the dependencies and relationships that defined how the project was going.
|
||||
|
||||
page XV:
|
||||
|
||||
it was never favored and stimulated the development of <u><q>the Web as a collaborative medium</q></u>.
|
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
date: 2023-02-12T11:47:40+01:00
|
||||
updated: 2023-02-12T13:21:46+01:00
|
||||
permalink: /thesis-log/
|
||||
tags:
|
||||
- zen
|
||||
- log
|
||||
---
|
||||
Up to this morning I was completely lost, confused, and bummed up by my total inability of figuring out my [[Thesis]]: I knew the general topics I intended to address, but I was totally clueless about the framework within which I should have placed all of this stuff.
|
||||
|
||||
This morning I woke up with a slight but persistent and itchy headache, typical of a light kindahangover. Yet, I grabbed my marker and started to fill the poster-sized blank paper I proudly bought for this purpose.
|
||||
|
||||
In a sort of ephiphanic miracle, laying down and visualizing together all of my thoughts, made sudden sense. It is nothing special, it is rather a cliché and obvious process. Still, the way I lived it made me super pumped.
|
||||
|
||||
Of course I still have many question marks, I fear I have too much stuff and I need to get more specific, but it makes me so relieved and committed to have a general scheme, a loose outline of the thesis' flow.
|
||||
|
||||
<figure class='half column'>
|
||||
<img src='https://tommi.space/thesis-poster-blank.webp' alt='a photo of the blank poster'>
|
||||
<figcaption>Before</figcaption>
|
||||
<figure>
|
||||
<figure class='half column'>
|
||||
<img src='https://tommi.space/thesis-poster-filled.webp' alt='a photo of the blank poster'>
|
||||
<figcaption>After one hour of mental wandering</figcaption>
|
||||
<figure>
|
|
@ -1,14 +1,14 @@
|
|||
---
|
||||
title: Thesis notes
|
||||
date: 2022-05-19T19:14:54+02:00
|
||||
updated: 2022-12-24T10:30:37+01:00
|
||||
updated: 2023-02-28T18:33:10+01:00
|
||||
tags:
|
||||
- uni
|
||||
- wip
|
||||
description: Notes concerning my thesis on Philosophy and Computer Sciences
|
||||
toc: false
|
||||
description: Notes concerning my thesis on Philosophy and Computer Sciences
|
||||
---
|
||||
{{ description }}
|
||||
I am collecting here mostly random inputs and resources for my bachelor thesis, whose main topic is addressing philosophically and sociologically the internet; broadly put, its main and fundamental claim is: <q>Computer Sciences are Social Sciences</q>.
|
||||
|
||||
## Inputs
|
||||
|
||||
|
@ -18,20 +18,48 @@ Some random inputs:
|
|||
- [[Internet Freedom]]
|
||||
- [Articles around the Web](https://inputs.tommi.space/tag/list/thesis 'Entries tagged `thesis` in Tommi’s inputs')
|
||||
- [Max Horkheimer](https://en.wikipedia.org/wiki/Max_Horkheimer)
|
||||
- <cite>The Dictatorship of no alternatives</cite>, Mangabeira (2006)
|
||||
|
||||
## People
|
||||
|
||||
- [Marco Gui](https://www.unimib.it/marco-gui 'Prof. Marco Gui - Università Milano Bicocca')
|
||||
- [@gprimiero](https://scholar.social/@gprimiero)
|
||||
- [Sigmoid Social](https://sigmoid.social/@sethlazar)
|
||||
- [Mastodon](https://mastodon.social/@ethicistforhire)
|
||||
- [Site Unreachable](https://mastodon.social/@ShannonVallor)
|
||||
|
||||
## Insights
|
||||
|
||||
- Parallelismo no oil legislation, no social media legislation: a <q>grey matter</q>. In both cases, legislation only curbs the problem, does not avoid it. The problem lies in the roots, namely exploitation of resources at the espense of locals for what concerns oil, and centralized control of super-national platforms for what concerns social media.
|
||||
- La considerazione dello switching cost.
|
||||
- considering the switching cost
|
||||
- Minoranze potrebbero tendere ad essere isolate
|
||||
- see [[Logic and Philosophy of Science II#The notion of Rationality in Economics]]: social media do not necessarily influence preferences, but completeness.
|
||||
- from [[Political Philosophy I]]: ask to Azzolini for insights concerning Weber’s position in light of <q>surveillance based on mathematical calculus which is extending in more and more spheres of society</q>
|
||||
- Technocratic degeneration of society
|
||||
- Consider the effects related to PA and public digital infrastructures
|
||||
- Bernard Stiegler
|
||||
|
||||
### Educated insights
|
||||
|
||||
- Surveillance Capitalism
|
||||
- decentralization
|
||||
- ≠ blockchain
|
||||
- forcing interoperability by design.
|
||||
- Philosophy *in* Science, rather than Philosophy *of* Science
|
||||
- digital spaces ownership
|
||||
- digital anarchism
|
||||
- intersectionality: internet as a political actor
|
||||
- oil industry comparison
|
||||
- social media are of critical relevance because they are not mere services, but the medium through which virtually anything is conveyed
|
||||
- content responsibility, freedom, regulation
|
||||
- balance normativity, utopism, phenomenology
|
||||
|
||||
### Potential case studies
|
||||
|
||||
- Gab
|
||||
- Hong Kong
|
||||
- Olivetti
|
||||
- Musk's Twitter
|
||||
|
||||
## Title
|
||||
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
---
|
||||
date: 2023-01-17T13:12:41+01:00
|
||||
updated: 2023-01-17T13:53:40+01:00
|
||||
updated: 2023-02-09T23:02:32+01:00
|
||||
location: home
|
||||
tags:
|
||||
- geek
|
||||
- wip
|
||||
---
|
||||
[Vanilla OS Handbook](https://handbook.vanillaos.org)
|
||||
|
||||
- Applications that have to do with hardware like that should be installed on host: `sudo abroot exec apt install testdisk`
|
||||
- Flatpaks are installed in your home directory so why would you need to access the root profile directory (there shouldn’t be one in the first place). The `/bin` directory is read-only, I recommend you move your own installed bins to `~/.local/bin/` instead and add it to PATH. You can add it to PATH by putting `export PATH="$HOME/.local/bin:$PATH"` in your `.bashrc`
|
||||
- Prefer Podman over Docker
|
||||
|
|
|
@ -1,75 +1,46 @@
|
|||
---
|
||||
date: 2021-04-17T09:58:58+02:00
|
||||
updated: 2021-05-10T07:43:50+02:00
|
||||
description: Random notes on VeUMEU issues of the 2021 edition
|
||||
image: https://www.comune.venezia.it/sites/comune.venezia.it/files/immagini/EuropeDirect/VeUMEU.png
|
||||
description: Random notes on VeUMEU issues of the 2021 edition
|
||||
link: https://univiu.org/viu-life/veumeu-2021
|
||||
location: VIU
|
||||
---
|
||||
Topics of [VeUMEU 2021]:
|
||||
- [Right to disconnect]
|
||||
- [European Climate Law]
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## Right to disconnect
|
||||
|
||||
A workers’ right to disengage from their work even when reached by virtual communications such email.
|
||||
[The right to disconnect](https://europarl.europa.eu/doceo/document/TA-9-2021-0021_EN.html 'The right to disconnect') is workers’ right to disengage from their work even when reached by virtual communications such email.
|
||||
|
||||
There is currently no European regulative framework to assess the Right to Disconnect.
|
||||
|
||||
<br>
|
||||
|
||||
### The problem
|
||||
|
||||
Even if the use of digital tools at work drastically improved some aspects of employees’ work, several are the drawbacks, specially on the worker’s health.
|
||||
|
||||
<br>
|
||||
|
||||
### Urgency
|
||||
|
||||
COVID-19 sped up the digitalization process of work; this was
|
||||
|
||||
COVID-19 sped up the digitalization process of work; this was
|
||||
|
||||
The first country to implement the right to disconnect were the Philippines in 2017.
|
||||
|
||||
What if I am a journalist and I do not pick up the phone when there is an emergency to cover?
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## Rules of procedure
|
||||
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
---
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
> How different institutions have different approaches to the same problem
|
||||
|
||||
<p class="cite">Fabrizio Marrella</p>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<p class='cite'>Fabrizio Marrella</p>
|
||||
|
||||
---
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
Honourable Presidency and fellow MEPs, the MEP of Portugal Social Democratic Party would like to remind all of you that preserving member states independence and freedom is a core value of the European Union.
|
||||
Honorable Presidency and fellow MEPs, the MEP of Portugal Social Democratic Party would like to remind all of you that preserving member states independence and freedom is a core value of the European Union.
|
||||
In order to preserve such independence, it is our duty to ensure that no state enforces legislation which is more flexible than in other countries of the Union.
|
||||
Therefore, we cannot permit single states to implement legislation which could encourage firms to move their registered offices where the Right to Disconnect is not equally enforced.
|
||||
In the long run, the disadvantages for smaller countries that in particular the ID group are so strongly fighting for
|
||||
In the long run, the disadvantages for smaller countries that in particular the ID group are so strongly fighting for
|
||||
|
||||
we stress that both employers’ and employees’ rights should be guaranteed, and we support an amendment to art. 7 which allows employees’ to sign in to flexible working hours
|
||||
|
||||
Amending greater state sovereignty would create great inequality from the economical point of view, in the long run.
|
||||
|
||||
Amending greater state sovreignity would create great inequality from the economical point of view, in the long run.
|
||||
## European Climate Law
|
||||
|
||||
[VeUMEU 2021]: https://www.univiu.org/viu-life/veumeu-2021 ' Venice Universities’ Model European Union 2021'
|
||||
[Right to disconnect]: https://www.europarl.europa.eu/doceo/document/TA-9-2021-0021_EN.html 'The right to disconnect'
|
||||
[European Climate Law]: https://eur-lex.europa.eu/legal-content/EN/TXT/?qid=1584961581830&uri=CELEX:52020PC0080&cookies=disabled 'Proposal for a REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL establishing the framework for achieving climate neutrality and amending Regulation (EU) 2018/1999'
|
||||
The [European Climate Law](https://eur-lex.europa.eu/legal-content/EN/TXT/?qid=1584961581830&uri=CELEX:52020PC0080&cookies=disabled 'Proposal for a REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL establishing the framework for achieving climate neutrality and amending Regulation (EU) 2018/1999') aims at getting to the European objective of reduced emissions by 2030.
|
|
@ -2,7 +2,14 @@
|
|||
date: 2022-04-22T10:45:09+02:00
|
||||
updated: 2022-05-16T10:15:51+02:00
|
||||
location: VIU
|
||||
tags:
|
||||
- event
|
||||
description: Random notes from VeUMEU 2022
|
||||
link: https://univiu.org/viu-life/veumeu-2022-venice-universities-model-european-union
|
||||
image: https://tommi.space/veumeu.webp
|
||||
---
|
||||
This page contains random notes and points from [VeUMEU 2022](https://univiu.org/viu-life/veumeu-2022-venice-universities-model-european-union 'Venice Universities’ Model European Union 2022').
|
||||
|
||||
## Questions
|
||||
|
||||
- why is Hungary still in the EU if Fidesz is Euro-skeptic and it holds the majority?
|
||||
|
@ -11,12 +18,10 @@ location: VIU
|
|||
|
||||
Aiming at evenly distributing the cost to sustain in order to carry out the <q>green transition</q>. Ensuring that all of the EU goes towards carbon neutrality at the same pace.
|
||||
|
||||
- Not a stable and permanent measure, temporary tool, from 2025-2032 (**Art. 1**)
|
||||
- Its use by member states depends by each country Social Climate Plan
|
||||
- Not a stable and permanent measure, temporary tool, from 2025-2032 (**Art. 1**)
|
||||
- Its use by member states depends by each country Social Climate Plan
|
||||
- It works complementarily with the <abbr title='Emission Trading System'>ETS</abbr> directive and the Energy Efficiency Directive
|
||||
|
||||
<br>
|
||||
|
||||
### Fidesz’s points
|
||||
|
||||
- we already have our [Climate Protection Law](https://hungarytoday.hu/parlt-passes-climate-protection-law/ 'Parliament Passes Climate Protection Law - Hungary Today'), proving that Europe is strong-arming its own terms on a regulatory change that states originally intend to pursue in the first place
|
||||
|
@ -26,22 +31,14 @@ Aiming at evenly distributing the cost to sustain in order to carry out the <q>g
|
|||
- States as Hungary, towards which the EU clearly has a negative bias, are more likely to see their Social Climate Plans rejected. This legislation assumes all Plans will be good. The conditionality determined by the unclear requirements of the Plans make this regulation all but actually useful.
|
||||
- Member stated should not carry the burden of as much as 50% of their plan. If the EU wants to add regulations, it should assume the economical responsibility of making it true, too.
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
## Artificial Intelligence
|
||||
|
||||
Comprehensive legal framework for the use of AI in the Union.
|
||||
|
||||
**Artificial Intelligence**: technologies able to reach a pre-defined result through human-like autonomy and capacity.
|
||||
|
||||
|
||||
<br>
|
||||
|
||||
---
|
||||
|
||||
<br>
|
||||
|
||||
## Press conference
|
||||
|
||||
- Have you ever been to Budapest? It is one of the most beautiful countries in the Union. You breathe Europe by walking down its streets.
|
||||
|
|
|
@ -5,7 +5,8 @@ tags: geek/web
|
|||
aliases: Website bloating, Making the web lighter
|
||||
description: Notes about website bloating and thoughts about the need for a lighter, simpler web.
|
||||
toc: false
|
||||
permalink: /web-bloating/
|
||||
permalink: /web-bloat/
|
||||
redirect_from: [/light/,/web-bloating/,/light-web/]
|
||||
---
|
||||
- [The website obesity crisis](https://idlewords.com/talks/website_obesity.htm 'The website obesity crisis')
|
||||
- [About web bloating](https://danluu.com/web-bloat/ 'The modern web on a slow connection')
|
|
@ -4,7 +4,7 @@ updated: 2022-07-17T19:05:21+02:00
|
|||
tags:
|
||||
- draft
|
||||
- politics
|
||||
premalink: /when-how/
|
||||
redirect_from: [/when-how/,/how-when/,/how-and-when/]
|
||||
---
|
||||
There is no actual meaning for what happens in the world right now. There is no what, there is no real why, everything, anything, is reduced to a matter of timing and exposition.
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ date: 2020-07-17
|
|||
updated: 2023-01-19T11:20:10+01:00
|
||||
image: https://tommi.space/wishlist.svg
|
||||
description: Stuff I need and things I just would love to have
|
||||
redirect_from: [/desideri/,/regali/]
|
||||
toc: false
|
||||
main: true
|
||||
tag: track
|
||||
|
|
|
@ -1,17 +1,15 @@
|
|||
---
|
||||
date: 2021-05-24T12:20:52+02:00
|
||||
updated: 2023-01-29T12:49:28+01:00
|
||||
lang: it
|
||||
location: Xplosion Attic
|
||||
permalink: /attic/
|
||||
updated: 2021-12-15T22:41:31+01:00
|
||||
tags: diy
|
||||
image: https://images.tommi.space/i?/uploads/j/b/u/jbuqxznr00//2021/01/15/20210115115209-67743c90-me.jpg
|
||||
description: La mia inimitabile soffitta da sogno, affacciata sul mare di Riva Ligure
|
||||
location: Xplosion Attic
|
||||
toc: false
|
||||
lang: it
|
||||
image: https://images.tommi.space/i?/uploads/j/b/u/jbuqxznr00//2021/01/15/20210115115209-67743c90-me.jpg
|
||||
main: true
|
||||
redirect_from: [/xplosion-attic/]
|
||||
---
|
||||
Sin da quando avevo 10 anni sognavo di trasferire la mia cameretta nella soffitta della mia casa a Riva Ligure, dove sono cresciuto. Riuscii a convincere i miei genitori ad appena 16 anni, mentre solamente nel *lockdown* del fui in grado di trasformarla in uno spazio veramente **mio**, costruendo le mie amate <cite>[[Gianna]]</cite> e <cite>[[Aida]]</cite>.
|
||||
Sin da quando avevo 10 anni sognavo di trasferire la mia cameretta nella soffitta della mia casa a Riva Ligure, dove sono cresciuto. Riuscii a convincere i miei genitori ad appena 16 anni, mentre solamente nel *lockdown* del fui in grado di trasformarla in uno spazio veramente **mio**, costruendo le mie amate <cite>[[Gianna]]</cite> e <cite>[[Aida]]</cite>.
|
||||
|
||||
Purtroppo le immagini testimoni dell’evoluzione di <cite>Xplosion Attic</cite> negli anni si sono smarrite fra miriadi di files e traumatici [*data loss*](https://tommi.space/storage#data-loss 'Narrazione dei miei data loss'), ma quelle che sono riuscito a salvare sono conservate in [questo album][Xplosion Attic Pictures].
|
||||
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
date: 2021-11-10T16:20:16+01:00
|
||||
updated: 2023-02-08T23:13:17+01:00
|
||||
tags: geek/server
|
||||
description: The easiest and arguably the best way to self-host almost anything
|
||||
image: https://yunohost.org/_images/ynh_logo_black_300dpi.png
|
||||
toc: false
|
||||
---
|
||||
{{ description }}, which I run on my [[Server]].
|
||||
|
||||
## Customizations
|
||||
|
||||
- Custom theme
|
||||
- Custom banner in `/etc/issue.net`
|
||||
- Custom Nginx for my_webapp on tommi.space
|
||||
- [Automatic backup script](https://tommi.space/scripts/backup) that runs in Crontab
|
|
@ -6,7 +6,7 @@ tags:
|
|||
- geek/idea
|
||||
description: A social network based on personal and historical events
|
||||
aliases: Timeline development, Timeline, Aby
|
||||
redirect_from: [/timeline/]
|
||||
redirect_from: [/timeline/,/timeline-development/]
|
||||
---
|
||||
Who I am is also, or mostly, defined by the events which marked my life even before my birth:
|
||||
*Zig* is a social network where people share dates which are significant to them. It is named in honor of [Zigmunt Bauman](https://en.wikipedia.org/wiki/Zigmunt_Bauman 'Zigmunt Bauman on Wikipedia'), great historian and sociologist.
|
||||
|
|
|
@ -28,6 +28,7 @@ Gumroad,https://gumroad.com/xplosionmind,,,
|
|||
HumaneTech Community,https://community.humanetech.com/u/xplosionmind,,,
|
||||
Hype Machine,https://hypem.com/xplosionmind,,,
|
||||
Hypothesis,https://hypothes.is/users/tommi,,,
|
||||
iFixit,https://ifixit.com/User/About/4274840/Tommi,,,2023-02-28T09:19:29+01:00
|
||||
Instructables,https://www.instructables.com/member/xplosionmind,,2022-09-16T15:53:22+02:00,
|
||||
Inventaire,https://inventaire.io/inventory/tommi,,2022-09-16T16:06:33+02:00,
|
||||
Kagi Forum,hhttps://kagifeedback.org/u/tommi,,,
|
||||
|
|
|
|
@ -1,4 +1,5 @@
|
|||
added,title,url,tags,description
|
||||
2023-03-06T13:54:13+01:00,Linus Bohman,https://linusbohman.se,personal geek odd,a personal website that allows the user to customize appearance and functionalities. So cool!
|
||||
2023-02-03T13:30:20+01:00,distrochooser,https://distrochooser.de,geek linux,distrochooser.de attempts to help Linux beginners to choose a Linux distribution suited to their needs.
|
||||
2022-12-12T14:55:03+01:00,cheat.sh,https://cheat.sh/,tool geek,The only cheat sheet you need. Unified access to the best community driven documentation repositories of the world.
|
||||
2022-12-05T23:32:12+01:00,Ploum,https://ploum.net,,
|
||||
|
|
|
|
@ -4,6 +4,7 @@ Alloisio,Il Mio amico Giorgio Gaber,9788851149680,Attic 2R,2018,gift by dad,,pau
|
|||
"Ambrosini, Cardone, Cuccu",Introduzione al linguaggio del film,9788843075775,Attic 2R,,,,,
|
||||
Andreoli,Il Rumore delle Parole,9788817109291,Attic 2R,2019-12-25,Christmas gift by Meggie,,,
|
||||
Arnold,"Aerei, mongolfiere, dirigibili",8884515866,Attic,,,,,
|
||||
Assange,"Cypherpunks, Freedom, and the Future of the Internet",9781944869083,Venice,2023-03-02T15:53:40+01:00,Amazon,2023-03-04T15:54:00+01:00,,
|
||||
Baccalario,Century – L’Anello di Fuoco,9788856617405,given away,,,,,
|
||||
Baccalario,Century – La Stella di Pietra,9788856619638,given away,,,,,
|
||||
Baccalario,Lo spacciatore di fumetti,9788879268936,Attic,,,,,messaggio
|
||||
|
|
|
|
@ -73,3 +73,4 @@ date,word,lang,note,url
|
|||
2022-11-09T10:19:38+01:00,claque,fr,en écuotant France info à la radio,
|
||||
2022-12-01T20:21:43+01:00,banane,fr,pas l’une qu’on mange,
|
||||
2022-12-01T20:22:25+01:00,tiède,fr,,
|
||||
2023-03-02T15:27:15+01:00,autopoièsi,it,leggendo <cite>[La rete è libera e democratica (falso)](https://openlibrary.org/isbn/9788858111826)<cite> per la [tesi](/thesis),https://tommi.space/rete-democratica
|
||||
|
|
|
|
@ -23,4 +23,5 @@ Bibliothèque Droit-Lettres,Grenoble,Nessuna sala relax potrà mai eguagliare qu
|
|||
La Bastille,Grenoble,"La bastiglia di Grenoble, a cui si arriva con una favolosa passeggiata.",https://bastille-grenoble.fr,https://tommi.space/grenoble,https://osm.org/node/2876574205,45.1989532,5.7252736,trekking nature bar pano,La Bastille de Grenoble,https://tommi.space/grenoble-bastille.webp,2022-09-01T19:28:20+02:00
|
||||
Pas du Serpaton,Grenoble,La meta della mia prima <em lang='fr'>randonnée</em> a Grenoble.,,https://tommi.space/grenoble,https://osm.org/node/4213600598,44.9097825,5.5903902,trekking nature pano,Col du Serpaton,https://tommi.space/serpaton.webp,2022-09-17T13:56:51+02:00
|
||||
La Bobine,Grenoble,Un locale molto stiloso e alternativo nel parco principale di Grenoble,https://labobine.net,,https://osm.org/node/2716675483,45.1831033,5.7358653,bar music,,https://tommi.space/la-bobine.webp,2022-11-10T23:08:19+01:00
|
||||
Club Tenco,Sanremo,"La vecchia stazione di Sanremo è ora la sede del Club Tenco, un luogo magico dove il cantautorato trasuda in ogni angolo",https://clubtenco.it,,https://osm.org/way/201489156,43.81427,7.77314,music,"Sede Club Tenco,Tenco",https://tommi.space/tenco-sede.webp,2017-10-30
|
||||
Club Tenco,Sanremo,"La vecchia stazione di Sanremo è ora la sede del Club Tenco, un luogo magico dove il cantautorato trasuda in ogni angolo",https://clubtenco.it,,https://osm.org/way/201489156,43.81427,7.77314,music,"Sede Club Tenco,Tenco",,2017-10-30
|
||||
Biblioteca IUAV,Venezia,Uno dei luoghi scoperti nei miei ultimi mesi di triennale a [Venezia](/venezia),https://iuav.it/BIBLIOTECA/CHI-SIAMO/storia-e-m,,https://osm.org/way/129299891,45.4376,12.32277,library,IUAV Tolentini,https://tommi.space/iuav-biblio.webp,2023-02-17T14:51:48+01:00
|
||||
|
|
|
|
@ -10,6 +10,7 @@
|
|||
"url": "https://tommi.space/about",
|
||||
"cv": "https://cv.tommi.space"
|
||||
},
|
||||
"encoded_mailto": "mailto:%73u%72f%69n%67@t%6Fmm%69%2Espace",
|
||||
"primary": "#FCC920",
|
||||
"description": "The virtual representation of the mess inside Tommi’s mind",
|
||||
"favicon": "https://tommi.space/favicon.png",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
added,title
|
||||
2023-03-02T02:34:37+01:00,Amsterdam
|
||||
2022-12-15T22:58:06+01:00,La belle verte
|
||||
2022-10-18T14:23:41+02:00,La vie commence demain
|
||||
2022-07-10T23:32:10+01:00,The Billion Dollar Code
|
||||
|
|
|
Loading…
Reference in New Issue