Post
Topic
Board Project Development
Re: List of all Bitcoin addresses ever used - currently UNavailable on temp location
by
LoyceV
on 26/05/2021, 08:15:51 UTC
I can suggest sharing files via torrent. Technically you'd have to upload a lot less since a lot of data will be transferred between people downloading.
I haven't tried that yet for these reasons: I don't want to upload from my desktop, so I still need a VPS. I don't expect many simultaneous downloads, so most of the uploads will still come from me. Every update will make an existing torrent useless again (and I don't want to keep posting new magnet links).

Quote
Linux question

what is the benefit of two directional syntax -
Code:
cat <(gunzip -c addresses_sorted.txt.gz) > secondgunzip
instead of just
Code:
gunzip addresses_sorted.txt.gz
or
Code:
gunzip -c addresses_sorted.txt.gz > out.txt
?
I was isolating a part from the longer code:
Code:
This:
<(gunzip -c addresses_sorted.txt.gz)
Came from:
....t -f2) <(comm -13 <(gunzip -c addresses_sorted.txt.gz) <(s....
I didn't edit it so it's clear where it came from.

Quote
or another exmple:
Same reason Smiley