Bitcoin Forum
May 24, 2024, 02:06:57 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 ... 1351 »
1  Bitcoin / Bitcoin Technical Support / Re: [May 2024] Fees are low, use this opportunity to Consolidate your small inputs on: May 23, 2024, 06:52:29 PM
What stops you from creating a channel with a well-connected node (like Kraken for example)?
It's been years since I tried, but back then (not with Kraken) the well-connected nodes still didn't solve the problem.
2  Bitcoin / Bitcoin Technical Support / Re: [May 2024] Fees are low, use this opportunity to Consolidate your small inputs on: May 23, 2024, 01:30:04 PM
The biggest problem, in my view, is routing failures. It's extremely annoying, speaking out of personal experience. When I want to make a transaction, I want to be certain it will finish, and it's almost certainly the case that at least a quarter of my lightning payments fail. You can only reduce the failure probability by opening more and more channels
This is another reason why I like custodial LN wallets (for small amounts): in my experience, they're much better connected than my own channels.
3  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: I would like to sell my TIA on: May 23, 2024, 08:47:00 AM
'This is not a scam.'
What an odd thing to say!
4  Economy / Services / Re: LoyceV's Bitcoin Fork claiming guide (and service) on: May 23, 2024, 08:44:19 AM
Bump
5  Bitcoin / Bitcoin Technical Support / Re: John the Ripper and partially known password bruteforce on: May 23, 2024, 08:34:33 AM
The disk image obviously is not something that should go in a password manager
I actually did that once (at work!): I stored the password to an encrypted container inside that encrypted container. Luckily I had a backup of the data.
And you'll still have to remember the password to the password manager Wink
6  Economy / Reputation / Re: [self-moderated] Report unmerited good posts to Merit Source on: May 23, 2024, 08:30:10 AM
I'm not sure which posts I should show you for review.
~
I'm not going to ask anyone to review my posts directly to the profile, especially since I'm not sure which posts you deserve.
So you're posting just to share that you're not going to post anything?
7  Other / Meta / Re: Artificial Intelligence on the Forum on: May 23, 2024, 08:17:22 AM
What you did is actually the correct way to use AI on the forum:

You announced that you were using AI, named the source, and then proceeded to post the material.
You're right, this makes it faster to stop reading, and click Ignore on the user. I don't get the need so many people seem to feel to share whatever a computer spits out. If I wanted to know that, I'd ask that computer myself.
8  Other / Meta / Re: Why is this guy allowed to constantly break the rules? on: May 23, 2024, 07:58:20 AM
Multiple threads in the gambling section along with tons of b2b posts
Does the One thread per site ONLY rule also apply to the Gambling discussion child board? If so: he's breaking it.
9  Other / Meta / Re: Is this forum getting worse and worse? on: May 23, 2024, 07:41:35 AM
Facebook is always changing stuff. Changing the UI, changing-adding-removing features etc. bitcointalk has only made a few minimal additions
Facebook and other social media have only one goal: earning money. It's safe to assume every change they make it designed to keep people hooked, not to actually improve the user experience.
I blocked social media from my hosts file years ago, and don't regret it.
10  Other / Meta / Re: Is this a bugs on: May 23, 2024, 07:13:34 AM
Did you also use the browsers which did not work on your PC? I would also suggest checking your anti-virus [on your PC], perhaps it was falsely flagging some stuff -- some AVs offer protection on browsers afaik. I agree with Jerome too on extensions, they could also break some stuff so try to toogle them and do sum trial and error.
This is one of the reasons I prefer to install as little stuff as possible. I don't like extensions that read or even alter my data.

In addition, the user DM and the link he/she provided for the task work on my mobile phone but are not shown on some browsers on my computer.
I'd stop trusting this computer. Something is messing with your data.
11  Bitcoin / Bitcoin Technical Support / Re: i need to know the private keys for my bitcoin core descriptor wallet on: May 23, 2024, 06:57:30 AM
i think bitcoin core is not very good because it doesn't even have a seed phrase. but apparently one backup at the very beginning is all you need. but you can't even read the backup because it is in binary. i dont get it. i want to be able to see things. trust but verify. i don't trust something if i can't verify it.
Is this a rant or a serious question?

Format a computer. Reinstall Bitcoin Core. Restore your backup. Verify if you get the same wallet.
If you don't want descriptors, create a non-descriptor wallet.
12  Economy / Services / Re: LoyceV's Avatar for Rent [🦊🦊🦊🦊🦊 5 YEARS 🦊🦊🦊🦊🦊 (270 weeks) rented out] on: May 22, 2024, 06:20:01 PM
Thanks again for your flawless timing!
13  Bitcoin / Development & Technical Discussion / Re: Best way to find batches of Base58 addresses on: May 22, 2024, 04:14:14 PM
Is there a way or command you could recommend to sort or isolate Base58 (legacy) addresses from the TSV sheet > to a data.txt file?
Use grep:
Code:
grep "^1" blockchair_bitcoin_addresses_and_balance_May_22_2024.tsv > legacy_and_balance.tsv
I did it for you: legacy_and_balance.tsv (file will be deleted in 24h).
14  Bitcoin / Development & Technical Discussion / Re: Best way to find batches of Base58 addresses on: May 22, 2024, 01:26:37 PM
It's great suggestion. Although LoyceV website seems to be down where my browser shows ERR_CONNECTION_RESET or PR_IO_TIMEOUT_ERROR.
It works for me:
Code:
wget  -O- http://addresses.loyce.club/blockchair_bitcoin_addresses_and_balance_LATEST.tsv.gz
~
100%[==============================================================================================>]   1.47G  27.6MB/s    in 55s
Just in case, I restarted Apache2. That took a lot longer than I expected, I don't know why. Maybe it needed a good kick Wink

The DNS lookup fails which is weird.
Try without "http://", that made it work here.

what is the best way to find loads of them and inquire into their TXs and balance?
For "loads" of addresses, I recommend this:
How to use
The most likely use is to check a long list of Bitcoin addresses for a remaining balance.
On Linux, use this to find matching addresses (after extrating the compressed .gz file of course):
Code:
comm -12 Bitcoin_addresses_LATEST.txt <(cat mylist.txt | sort | uniq)
  • Bitcoin_addresses_LATEST.txt: the extracted latest version downloaded from addresses.loyce.club.
  • mylist.txt: your own list of addresses, one address per line.
This takes only seconds to check millions of addresses. If your text file has Microsoft formatting, you may need to use this instead:
Code:
comm -12 Bitcoin_addresses_LATEST.txt <(cat mylist.txt | fromdos | sort | uniq)

If you want the balances of many addresses:
Code:
grep -f mylist.txt blockchair_bitcoin_addresses_and_balance_LATEST.tsv
This is a bit slower and eats RAM: 500,000 input addresses uses 1.5 GB RAM and took 50 seconds. You could mix it with the earlier command to only search the balance for addresses that aren't empty.
Click the quote to download the files.
15  Bitcoin / Project Development / Re: List of all Bitcoin addresses with a balance on: May 22, 2024, 01:14:34 PM
I get this data from Blockchair.com, and their last update is from April 19. Their other data is still being updated, so it looks like something is stuck with updating the Bitcoin addresses.
The daily updates are back to normal Smiley
16  Other / Meta / Re: Is this forum getting worse and worse? on: May 22, 2024, 11:27:30 AM
We're dealing with uninteresting topics.
Isn't that because topics are created to reach post quota, instead of because someone's genuinely interested?

Ranking up/Merit: This started as a technical forum - not a social media circle jerk like Twitter et al. I think at its core it should remain a technical forum.
This makes it all the more annoying to see more and more AI verbal diarrhea on the tech boards. The less than 100% bans for this isn't helping.
17  Other / Meta / Re: How would the forum feel/react if Casinos were banned like Mixers? on: May 22, 2024, 11:14:27 AM
I'm not much into gambling, so I don't mind. It would actually stop a lot of spam from being posted.

I've always liked EV+ contests, but that's mostly a thing from the past. When it's EV-, doing the math behind it is enough to lose my interest. I'm not going to tell myself: "I can win", while I realize: "I'm more likely to lose". So I don't do it.

I don't expect casinos to be banned though. They've changed their business to be more compliant. When I joined Bitcointalk, casinos were "no KYC, anyone can join". Now, those casinos ban users from many countries to comply with local law.
18  Other / Meta / Re: TalkImg.com - Image hosting for BitcoinTalk on: May 22, 2024, 10:02:56 AM
The point is that the forum proxy disconnects from the server if it does not receive a response after x seconds. I believe the problem occurs if you are loading 100 images from the same host at the same time.
Maybe. I don't know how long the forum tries. But I would have expected the see the "image proxy failed" image instead of <nothing>.

Quote
I will try to see what I can do on my server, to try to minimize this situation.
That's all I can ask for, thanks Smiley
19  Bitcoin / Wallet software / Re: Unstoppable wallet {User experiences} on: May 22, 2024, 09:34:48 AM
Yet the wallet shows non - in fact all the time „synchronizing“ ist at 0%.
If you used the correct address, all you an do it wait for it to synchronize. There are different settings though (Settings > Blockchain Settings > Bitcoin): API is fast, Privacy is slow.
20  Bitcoin / Bitcoin Technical Support / Re: John the Ripper and partially known password bruteforce on: May 22, 2024, 09:32:30 AM
I entered the password mostly from muscle memory, because it was 28 or more random characters, upper and lower case, numbers and special symbols. As it turns out the brain is unreliable storage medium.
That's how I enter most of my passwords too: I wouldn't be able to write them down, but I can easily enter them on a keyboard. And that brings me to my next question (small chance): have you tried a different keyboard? Or enter it 100 times in a text document, and see where you make common mistakes?
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 ... 1351 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!