[-] ClusterBomb 8 points 12 hours ago

There's nothing badass stealing jewelry from public museum in order to sell them to billionaires locking them in their mansion tbh.

[-] ClusterBomb 3 points 1 day ago

There is no coolguides about color contrast I guess.

[-] ClusterBomb 4 points 2 days ago

J'ai le sentiment d'avois raté un sacré truc dis-donc ! Bizarrement, ça ne va pas alimenter mon FOMO. 😅

[-] ClusterBomb 4 points 2 days ago

Je m'attendais à cette réponse car je dirais ça aussi mais je me suis diteque c'était la formulation la plus simple pour la question. Et comme je ne m'imagine pas rien faire et juste manger/dormir, il fallait bien formuler simplement ma question.

[-] ClusterBomb 6 points 2 days ago

Je n'ai pas faut m'expliquer 😭

[-] ClusterBomb 9 points 3 days ago

Je ferais commentateur-rice esport, personnellement.

18
submitted 3 days ago by ClusterBomb to c/forumlibre@jlai.lu
[-] ClusterBomb 4 points 4 days ago

Ça doit être le problème de beaucoup de collections 😅

Ma copine collectionne à nouveau les Diddl avec la sortie récente. C'est le même esprit capitaliste derrière je pense.

[-] ClusterBomb 2 points 4 days ago

When you read technical stuff about this protocol, you understand it is a great one and it should not die.

[-] ClusterBomb 4 points 4 days ago

Je l'ai justement regardée ce soir ! C'était chouette, j'aime bien sa chaîne. Je dois regarder la vidéo sur le sucre depuis un moment maintenant.

13
submitted 4 days ago by ClusterBomb to c/forumlibre@jlai.lu

Ça peut être des petites collections, peu importe ! Ça peut aussi être "rien" ! 😊

41
submitted 2 weeks ago by ClusterBomb to c/piracy@lemmy.dbzer0.com

I watch shows in streaming on links found in the megathread and suddenly subtitles aren't working anymore? How does it work behind the scenes? Is there anything I can do to fix it?

Thanks 🙏

2
submitted 3 months ago by ClusterBomb to c/finances@jlai.lu

Je découvre un peu les RWA et je découvre Brickken, j'ai l'impression que c'est un projet solide mais je ne pense pas être expert-e du sujet. Qu'en pensez-vous ?

3
submitted 3 months ago by ClusterBomb to c/finances@jlai.lu

La question est dans le titre. J'investis dans 2 EFT de BNP PARIBAS ASSET MANAGEMENT Europe : le S&P 500 et l'Eurostox 600 mais je ne sais pas si ça me fait bénéficier des intérêts composés ? Comment le savoir ?

21
submitted 4 months ago* (last edited 4 months ago) by ClusterBomb to c/forumlibre@jlai.lu

J'ai vu un commentaire sur Lemmy disant qu'il n'y a rien à voir comme contenu sur Peertube. Je suis plutôt d'accord. À part quelques vidéos destinées à des tech, des vieilles vidéos politiques dans des qualités pas ouf, il n'y a pas grand chose à voir. Mais je me suis demandé-e : qu'est-ce que les utilisateur-rices souhaiteraient y voir ? Des let's play de jeux vidéo ? Des stream de programmation ? Des dégustations ? Des "j'ai acheté ces objets des pubs TikTok" ?

Alors, je vous le demande, que voudriez-vous voir sur Peertube ?

Edit: je parle bien de type de contenu et non de chaînes en particulier qui pourraient être mirrorées (ou transférées, soyons rêveur-euses) sur Peertube.

25
submitted 4 months ago* (last edited 4 months ago) by ClusterBomb to c/forumlibre@jlai.lu

Je suis tellement content-e du résultat ! La représentation n'est pas issue de la série mais du clip de "Ma Meilleure Ennemie".

Photo de mon mur avec Jinx et Ekko peint-es sur un fond vert foncé avec quelques confettis. La scène est triste. Ekko est derrière Jinx, un bras autour d'elle, la tête contre la sienne, les yeux fermés, alors qu'elle est les bras ballants, yeux fermés avec le fard à paupière qui a coulé.

2
submitted 4 months ago by ClusterBomb to c/finances@jlai.lu

Bonjour,

J'ai une question simple, j'ai un PEA à la BNP. Je l'ai ouvert là-bas car c'est ma banque où j'ai mon emprunt immobilier et mes comptes mais je crois qu'il y a des différences d'un établissements à un autre, que sur certaines banque en ligne il y a moins de frais.

Y a-t-il des recommandations de où détenir son PEA ?

Merci par avance !

[-] ClusterBomb 44 points 4 months ago
  1. Supervise command (run every 2s)
watch "ls -larth"
  1. Kill program using one port
sudo fuser -k 8000/tcp
  1. Limit memory usage for following commands
ulimit -Sv 1000       # 1000 KBs = 1 MB
ulimit -Sv unlimited  # Remove limit
  1. Rename selected files using a regular expression
rename 's/\.bak$/.txt/' *.bak
  1. Get full path of file
readlink -f file.txt
  1. List contents of tar.gz and extract only one file
tar tf file.tgz
tar xf file.tgz static
  1. List files by size
ls -lS
  1. Nice trace route
mtr google.com
  1. Find files tips
find . -size 20c             # By file size (20 bytes)
find . -name "*.gz" -delete  # Delete files
find . -exec echo {} \;      # One file by line
./file1
./file2
./file3
find . -exec echo {} \+      # All in the same line
./file1 ./file2 ./file3
  1. Print text ad infinitum
yes
yes hello
  1. Who is logged in?
w
  1. Prepend line number
ls | nl
  1. Grep with Perl like syntax (allows chars like \t)
grep -P "\t"
  1. Cat backwards (starting from the end)
tac file
  1. Check permissions of each directory to a file

It is useful to detect permissions errors, for example when configuring a web server.

namei -l /path/to/file.txt
  1. Run command every time a file is modified
while inotifywait -e close_write document.tex
do
    make
done
  1. Copy to clipboard
cat file.txt | xclip -selection clipboard
  1. Spell and grammar check in Latex
detex file.tex | diction -bs

You may need to install the following: sudo apt-get install diction texlive-extra-utils.

  1. Check resources' usage of command
/usr/bin/time -v ls
  1. Randomize lines in file
cat file.txt | sort -R
cat file.txt | sort -R | head  # Pick a random sambple

# Even better (suggested by xearl in Hacker news):

shuf file.txt
  1. Keep program running after leaving SSH session

If the program doesn't need any interaction:

nohup ./script.sh &

If you need to enter some input manually and then want to leave:

./script.sh
<Type any input you want>
<Ctrl-Z>          # send process to sleep
jobs -l           # find out the job id
disown -h jobid   # disown job
bg                # continue running in the background

Of course, you can also use screen or tmux for this purpose.

  1. Run a command for a limited time
timeout 10s ./script.sh

# Restart every 30 minutes

while true; do timeout 30m ./script.sh; done
  1. Combine lines from two sorted files
comm file1 file2

Prints these three columns:

Lines unique to file1.
Lines unique to file2.
Lines both in file1 and file2.

With options -1, -2, -3, you can remove each of these columns.

  1. Split long file in files with same number of lines
split -l LINES -d file.txt output_prefix
  1. Flush swap partition

If a program eats too much memory, the swap can get filled with the rest of the memory and when you go back to normal, everything is slow. Just restart the swap partition to fix it:

sudo swapoff -a
sudo swapon -a
  1. Fix ext4 file system with problems with its superblock
sudo fsck.ext4 -f -y /dev/sda1
sudo fsck.ext4 -v /dev/sda1
sudo mke2fs -n /dev/sda1
sudo e2fsck -n <first block number of previous list> /dev/sda1
  1. Create empty file of given size
fallocate -l 1G test.img
  1. Manipulate PDFs from the command line

To join, shuffle, select, etc. pdftk is a great tool:

pdftk *.pdf cat output all.pdf        # Join PDFs together
pdftk A=in.pdf cat A5 output out.pdf  # Extract page from PDF

You can also manipulate the content with cpdf:

cpdf -draft in.pdf -o out.pdf      # Remove images
cpdf -blacktext in.pdf -o out.pdf  # Convert all text to black color
  1. Monitor the progress in terms of generated output

# Write random data, encode it in base64 and monitor how fast it is being sent to /dev/null

cat /dev/urandom | base64 | pv -lbri2 > /dev/null

# pv options:
#   -l,  lines
#   -b,  total counter
#   -r,  show rate
#   -i2, refresh every 2 seconds
  1. Find packages that have a given file in Ubuntu
apt-file update
apt-file search dir/file.h
13
submitted 5 months ago by ClusterBomb to c/forumlibre@jlai.lu

Je sais qu'ici on n'est pas efficace sur la planification des repas et donc on va souvent en courses car on décide ce qu'on mange 2h avant de manger ou la veille.

15
submitted 5 months ago by ClusterBomb to c/forumlibre@jlai.lu

Moi c'est médicaments, Posca, de quoi prodiguer des premiers soins, une clef USB, un stylo, du gel hydroalcoolique.

Je pense rajouter des bouchons d'oreille et un éventail l'été.

15
submitted 7 months ago by ClusterBomb to c/selfhost@lemmy.ml

It's been a while since I noticed that but I can't find the reason. I selfhost :

  • a linkding with docker
  • a writefreely
  • a bludit blog
  • a CalDav (radicale)

There is a syncthing running for backups done with borg at night (automated with a crontab).

When I htop, I don't see anything to hint me to what is causing the heating.

Any ideas of what I could do to investigate that?

Thanks a lot.

12
submitted 8 months ago by ClusterBomb to c/technologie@jlai.lu

Je me demandais si on avait fait des applications utiles sur la blockchain hors finance décentralisée. On parlait de traçabilité, de preuve d'identité, de preuve de possession. Au final est-ce que ça sert vraiment ? Quels exemples a-t-on d'applications sur la blockchain qui fonctionnent ?

[-] ClusterBomb 57 points 10 months ago

Ending capitalism to embrace a system where we end poverty, consumerism and discriminations.

[-] ClusterBomb 79 points 2 years ago

Intersting how we can "undress any girl" but I have not seen a tool to "undress any boy" yet. 😐

I don't know what it says about people developing those tools. (I know, in fact)

view more: next ›

ClusterBomb

joined 2 years ago