miércoles, 8 de mayo de 2024

DDD - Design Domain Driven

 This is draft about DDD, starting with this article

I learn the coding with DDD approch implies that every stakeholders need to understand each other, starting from strategic design and thinkg in domains in order to classify them like core and the others.

 

to be continued ...

lunes, 6 de mayo de 2024

flatpak package manager

 I've been reported by debian system to upgrade Brave browser, but no able to find the app to removed with apt, I was forgot how I installed, so surfing for internet I found the package manager I used.

Per my understanding:

apt is the default package manager of debian OS

snap is another P.M.

flatpak is another one.


So I found in flatpak using this post

 esteban@ASUS-AMD-ROG:~$ flatpak list
Name                         Application ID                        Version    Branch      Installation
Brave Software               com.brave.Browser                     1.65.126   stable      system
Enes Hecan                   com.github.eneshecan.WhatsAppForLinux 1.6.5      stable      system


Thanks and see you then

sábado, 4 de mayo de 2024

Installing rclone and rclone browser in debian 12

 let's start pointing out to source of steps https://rclone.org/install/


1. step 1, get the shell script 

sudo -v ; curl https://rclone.org/install.sh | sudo bash

setup your accout with

rclone config

 

2. install rclone browser

Pre steps

Install appimage from deb as in this tutorial

Download appimagelauncher_2.2.0-travis995.0f91801.bionic_amd64.deb

Get rclone browser installer appimage

https://kapitainsky.github.io/RcloneBrowser/


rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage

No errors, it looks like

miércoles, 1 de mayo de 2024

Merge images into pdf file with img2pdf

In order to join images from a book for my child to read he took the photos and I merged into 1 pdf, in below stackoverflow post I found the way to do it.

  • convert command didnt work for me
  • img2pdf did the work


So I state here the steps

1 .padded file names - i  think it is no needed if we use ls -v

2. run img2pdf

img2pdf $(ls -v *.jpg) -o aidan-sasquatch-v2.pd

3. done.