diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-18 18:19:47 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-18 18:19:47 +0200 |
| commit | 46779476a570346661a2741607265caed42829b2 (patch) | |
| tree | 40ceae59ea6733fbd4dcce41d9ff6e5b24fc3d4e /content | |
| parent | c1407fa9fb558e42588aa194a53e78a087f045f0 (diff) | |
| download | danixxyz-46779476a570346661a2741607265caed42829b2.tar.gz danixxyz-46779476a570346661a2741607265caed42829b2.zip | |
consolidated duplicated shortcodes. Initial fix of the content files. Manual review needed
Diffstat (limited to 'content')
| -rw-r--r-- | content/en/articles/cad-designing-in-gnu-linux/index.md | 7 | ||||
| -rw-r--r-- | content/en/articles/gify-back-to-bash-scripting/index.md | 2 | ||||
| -rw-r--r-- | content/en/articles/git-setup-own-server/index.md | 4 | ||||
| -rw-r--r-- | content/en/articles/imagine/index.md | 2 | ||||
| -rw-r--r-- | content/en/articles/katsushika-hokusai/index.md | 28 | ||||
| -rw-r--r-- | content/en/articles/le-email-queste-sconosciute/index.md | 4 | ||||
| -rw-r--r-- | content/en/articles/nerdness/index.md | 4 | ||||
| -rw-r--r-- | content/en/articles/playing-with-colors/index.md | 2 | ||||
| -rw-r--r-- | content/en/articles/sunset-in-siderno/index.md | 2 |
9 files changed, 27 insertions, 28 deletions
diff --git a/content/en/articles/cad-designing-in-gnu-linux/index.md b/content/en/articles/cad-designing-in-gnu-linux/index.md index cd65afe..2323b34 100644 --- a/content/en/articles/cad-designing-in-gnu-linux/index.md +++ b/content/en/articles/cad-designing-in-gnu-linux/index.md @@ -7,6 +7,7 @@ excerpt = "" image = "/uppies/2021/05/PXL_20210501_114542849.jpg" categories = ["3D Printing", "diy"] tags = ["3D printing", "cad", "cura", "fusion360", "slicer", "solvespace"] +typora-root-url = "../../static" +++ {{< quote source="semicit. Eminem" >}} @@ -28,7 +29,7 @@ I’ve had it for a few months now and I’m pretty happy I purchased it The software you mainly use with a 3D printer is a slicer, which is a piece of software that takes a 3D rendering of the item you want to print and slice it into many layers, stacked one on top of the other, you can manipulate the layers in various ways in order to alter the properties of the final printed item. -{{< image class="max-w-m mx-auto" caption="Ultimaker Cura 4.9 main interface" src="2021-04-25-183336_1366x768_scrot.png" alt="Screenshot from Ultimaker Cura 4.9 main interface" >}} +{{< image class="max-w-md mx-auto" caption="Ultimaker Cura 4.9 main interface" src="/uppies/2021/05/2021-04-25-183336_1366x768_scrot.png" alt="Screenshot from Ultimaker Cura 4.9 main interface" >}}{{< /image >}} I’ve chosen [Ultimaker Cura](https://ultimaker.com/software/ultimaker-cura) as my main slicer, I started with it and I found it’s easy enough for a noob like me, but manages to give the user a lot of room for customization when you start understanding how it works. @@ -50,11 +51,11 @@ Another very good reason for not using Fusion, is the fact that all of your file ## Meet SolveSpace -{{< image class="max-w-m mx-auto" caption="solvespace interface" src="2021-04-25-190246_1366x768_scrot.png" alt="Screenshot from solvespace interface" >}} +{{< image class="max-w-md mx-auto" caption="solvespace interface" src="/uppies/2021/05/2021-04-25-190246_1366x768_scrot.png" alt="Screenshot from solvespace interface" >}}{{< /image >}} [SolveSpace](https://solvespace.com/index.pl) is a 2D/3D parametric cad Software, it’s totally free, licensed under the GPLv3 and available for windows, mac and of course GNU/Linux. -{{< video class="max-w-m mx-auto" autoplay="false" loop="false" src="/solvespace_demo.webm" alt="Solvespace video demo" >}} +{{< video class="max-w-md mx-auto" src="/uppies/2021/05/solvespace_demo.webm" >}} I’ve watched this introductory video and was able to pick it up and start designing in a matter of minutes, it’s very straightforward and even if it does things a bit differently than Fusion, it’s still very comfortable to use. diff --git a/content/en/articles/gify-back-to-bash-scripting/index.md b/content/en/articles/gify-back-to-bash-scripting/index.md index ee47220..7841895 100644 --- a/content/en/articles/gify-back-to-bash-scripting/index.md +++ b/content/en/articles/gify-back-to-bash-scripting/index.md @@ -7,7 +7,7 @@ image = "/uppies/2016/01/G0092546.jpg" categories = ["code", "diy", "fotografia"] tags = ["bash", "convert", "gif", "imagemagik", "mogrify", "script"] +++ -{{< image class="max-w-lg mx-auto" src="piscaturi.gif" alt="piccoli pescatori crescono" caption="gif image created using gify.sh" >}} +{{< image class="max-w-lg mx-auto" src="/uppies/2016/01/piscaturi.gif" alt="piccoli pescatori crescono" caption="gif image created using gify.sh" >}}{{< /image >}} Today I'll present you a useful script that will help you create amazing gifs from your still photos using a couple tools from the [IMAGEMAGIK](https://www.imagemagick.org) suite, so without further ado, here it is, straight from github's gists. diff --git a/content/en/articles/git-setup-own-server/index.md b/content/en/articles/git-setup-own-server/index.md index 0ba09c1..5fa9186 100644 --- a/content/en/articles/git-setup-own-server/index.md +++ b/content/en/articles/git-setup-own-server/index.md @@ -32,12 +32,12 @@ Installing a git server is quite simple once you know how it works, on my server I've added a new user and group to my server but before doing so I added /usr/bin/git-shell to /etc/shells in order to use it as login shell for my git user. -{{< highlight bash >}} +```bash echo "/usr/bin/git-shell" >> /etc/shells groupadd git mkdir /var/git useradd -d /var/git -g git -M -s /usr/bin/git-shell -{{< /highlight >}} +``` now the user is all set and ready to be used. Next step will be to create the .ssh directory and the authorized_keys file to hold the keys for the developers that have to access the git server. Here's how I did it: diff --git a/content/en/articles/imagine/index.md b/content/en/articles/imagine/index.md index e1c6e69..eb357b1 100644 --- a/content/en/articles/imagine/index.md +++ b/content/en/articles/imagine/index.md @@ -8,7 +8,7 @@ categories = ["freedom", "musica"] tags = ["imagine", "john lennon"] format = "image" +++ -{{< figure class="align-center" src="https://danix.xyz/wp-content/uploads/2020/10/imagine_colors.jpg" />}} +{{< image src="https://danix.xyz/wp-content/uploads/2020/10/imagine_colors.jpg" alt="Imagine by John Lennon as a comic strip" >}}{{< /image >}} via [http://www.filmsforaction.org/articles/john-lennons-imagine-made-into-a-comic-strip/](http://www.filmsforaction.org/articles/john-lennons-imagine-made-into-a-comic-strip/) diff --git a/content/en/articles/katsushika-hokusai/index.md b/content/en/articles/katsushika-hokusai/index.md index af58658..1b0d96e 100644 --- a/content/en/articles/katsushika-hokusai/index.md +++ b/content/en/articles/katsushika-hokusai/index.md @@ -17,20 +17,20 @@ I just wanted to share a few images by one of my favourite artists with you. Enjoy. -{{< gallery >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Boy-on-Mount-Fuji-large.jpg" alt="Boy on Mount Fuji" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Choshi-in-Shimosa-Province-Soshu-Choshi-large.jpg" alt="Choshi in Shimosa Province" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Hibiscus-and-Sparrow-large.jpg" alt="Hibiscus and Sparrow" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Mt.-Fuji-in-the-Sunset-large.jpg" alt="Mt. Fuji in the Sunset" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Yoro-Waterfall-in-Mino-Province-Mino-no-kuni-Yoro-no-taki-large.jpg" alt="Yoro Waterfall in Mino Province Mino no kuni Yoro no taki" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/White-Shell-Shiragai-large.jpg" alt="White Shell Shiragai" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Waterfall-where-Yoshitsune-Washed-his-Horse-at-Yoshino-in-Yamato-Province-Washu-Yoshino-Yoshitsune-uma-arai-no-taki-large.jpg" alt="Waterfall where Yoshitsune Washed his Horse at Yoshino in Yamato Province Washu Yoshino Yoshitsune uma arai no taki" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/The-Great-Wave-Off-Kanagawa-1823-large.jpg" alt="The Great Wave Off Kanagawa" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/The-dragon-on-Smoke-Escaping-from-Mt-Fuji-large.jpg" alt="The dragon on Smoke Escaping from Mt Fuji" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Surimono-Totsuka-large.jpg" alt="Surimono Totsuka" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/South-Wind-at-Clear-Dawn-Gaifu-kaisei-large.jpg" alt="South Wind at Clear Dawn Gaifu kaisei" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Shower-Below-the-Summit-Sanka-hakuu-large.jpg" alt="Shower Below the Summit Sanka hakuu" >}} - {{< gal-img divClass="col-3 gtr-uniform" src="/uploads/2011/07/Plum-Blossom-and-the-Moon-large.jpg" alt="Plum Blossom and the Moon" >}} +{{< gallery cols="3" >}} + + + + + + + + + + + + + {{< /gallery >}} I hope you liked them. I'll see you on the next one. diff --git a/content/en/articles/le-email-queste-sconosciute/index.md b/content/en/articles/le-email-queste-sconosciute/index.md index 556b697..8fd5231 100644 --- a/content/en/articles/le-email-queste-sconosciute/index.md +++ b/content/en/articles/le-email-queste-sconosciute/index.md @@ -12,7 +12,7 @@ Prendo spunto da un simpatico quanto tristemente reale [articolo pubblicato][1] <!--more--> -{{< figure src="/uploads/2010/11/email-at1-300x211.gif" class="align-left" />}} +{{< image src="/uploads/2010/11/email-at1-300x211.gif" alt="Email at symbol illustration" >}}{{< /image >}} Già vi immagino, voi fedeli (3) lettori, subito pronti a dire: "_ma cosa vorrai mai insegnarci sulle email che già non sappiamo?_" beh, iniziamo dalla prima cosa che colpisce l'occhio di chi riceve una mail, l'**oggetto**. Eh già, si chiama oggetto perchè serve a descrivere ciò di cui l'email parla, l'oggetto del messaggio appunto. Non ha quindi senso lasciare il campo in bianco o scrivere cose senza senso tipo "email da tizio:, "comunicazione da sempronio: eccetera, per sapere chi è il mittente dell'email c'è il campo "From: o "Da: oppure indovinate un po', "Mittente:, l'avreste mai detto?! :) @@ -21,7 +21,7 @@ Un'altra cosa piuttosto bruttina da vedere è il corpo del messaggio vuoto con t Un altro problema che affligge spesso chi riceve email è l'invio di foto! Su questo punto potremmo spendere fiumi di parole parlando del fatto che al giorno d'oggi con le adsl super veloci che ci ritroviamo non sia più un problema ricevere allegati pesanti, ma non capisco perchè io debba stare a scaricare una foto da 12 megapixel a 300 <acronym title="dot per inches (punti per pollice)">dpi</acronym> se non dovrò nemmeno stamparla, ma al massimo condividerla sul blog o su facebook; perdete un attimino del vostro <span style="text-decoration: line-through">prezioso</span> tempo anche voi e riducete le dimensioni delle foto che inviate, già ridurre la risoluzione da 300 a 72 [dpi][4] aiuterà notevolmente chi dovrà ricevere la mail oltre che farvi risparmiare molto tempo in invio.. Un altro appunto relativo alle dimensioni delle foto, se state mandando una foto di un tenero cucciolo che dovrà fare da sfondo al piccì del vostro/a amato/a, che senso ha che misuri 4000 pixel sul lato corto?! Una risoluzione decente potrebbe essere 1600 pixel sul lato lungo e il lato corto dimensionato in proporzione, in questo modo le dimensioni scenderanno ulteriormente senza che si perda la qualità del vostro pregevolissimo scatto! ;) -{{< figure class="align-right" src="/uploads/2010/11/url-300x197.jpg" />}} +{{< image src="/uploads/2010/11/url-300x197.jpg" alt="URL structure illustration" >}}{{< /image >}} [5]Il punto successivo di questa carrellata potrebbe avere un titolo e un articolo a se, "_come inviare link. Il modo corretto di condividere i famigerati [URL][6]_"; fin dagli albori di internet si è avvertita infatti la necessità di condividere link interessanti con i nostri contatti, e sopratutto negli ultimi tempi i link sono diventati sempre più lunghi e complessi, cose tipo: ``` diff --git a/content/en/articles/nerdness/index.md b/content/en/articles/nerdness/index.md index c1312b1..80623cb 100644 --- a/content/en/articles/nerdness/index.md +++ b/content/en/articles/nerdness/index.md @@ -7,9 +7,7 @@ excerpt = "We are nerds, Resistance is futile" categories = ["blogging"] tags = ["john green", "nerds"] +++ -{{< figure class="align-center" caption="We are nerds. Resistance is futile" >}} -{{< img src="/uploads/2011/08/nerdslikeus.png" alt="nerds like us" >}} -{{< /figure >}} +{{< image src="/uploads/2011/08/nerdslikeus.png" alt="nerds like us" caption="We are nerds. Resistance is futile" figure-class="text-center" >}}{{< /image >}} via [ipstenu.org][1] diff --git a/content/en/articles/playing-with-colors/index.md b/content/en/articles/playing-with-colors/index.md index 9a11089..d447790 100644 --- a/content/en/articles/playing-with-colors/index.md +++ b/content/en/articles/playing-with-colors/index.md @@ -7,7 +7,7 @@ image = "/uppies/2016/02/palette.jpg" categories = ["code", "diy"] tags = ["colors", "github", "html5", "palette", "php", "viewer"] +++ -{{< figure src="https://danix.xyz/wp-content/uploads/2016/02/palette-1.jpg" class="image fit" link="https://github.com/danixland/palette-viewer" caption="palette-viewer on github" />}} +{{< image src="https://danix.xyz/wp-content/uploads/2016/02/palette-1.jpg" alt="palette-viewer screenshot" link="https://github.com/danixland/palette-viewer" caption="palette-viewer on github" >}}{{< /image >}} {{< dropcap >}} Today I decided I wanted to have a little "old school" fun, so instead of working on some WordPress theme/plugin, I went for the "lemme write some php from scratch" approach. diff --git a/content/en/articles/sunset-in-siderno/index.md b/content/en/articles/sunset-in-siderno/index.md index daa312f..e59bd47 100644 --- a/content/en/articles/sunset-in-siderno/index.md +++ b/content/en/articles/sunset-in-siderno/index.md @@ -9,7 +9,7 @@ tags = ["gopro", "kdenlive", "siderno", "sunset", "timelapse", "youtube"] format = "video" +++ -{{< youtube ku9JVNK6rLU >}} +{{< video id="ku9JVNK6rLU" title="Sunset in Siderno - GoPro timelapse" >}} my first video, an experiment with a GoPro Hero+ LCD and Kdenlive. |
