Bitcoin Forum
June 20, 2024, 11:31:53 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 »
2081  Bitcoin / Development & Technical Discussion / Re: How would it be know if a segwit thieft actually happened? on: February 13, 2018, 03:57:34 AM
So, Mircea Popescu argues against Segwit with death bounties.  This is how his followers make their case:


The post which evidently set “Last of the V8s” off his rocker was in a PGP-related thread, wherein I briefly quoted myself from this thread.  An interesting portion of Mr. V8s’ signature is here presented with my addition of red boldface:

I have (much) more to say about PGP keys.
Did you follow the phuctorings?


I do not accept segwit outputs as payment, nor send them.
~14 easy tricks to save bitcoin http://trilema.com/2013/how-to-airgap-a-practical-guide/
The auditable hardware RNG https://archive.is/CGQkR


Last I checked, the “phuctor” page had disappeared and was a redirect to the author’s homepage.  I didn’t bother digging, given that said author is one whom I’ve found to eviscerate his own credibility:

N.b. that unlike most of the anti-Segwit crowd, Popescu is against P2SH, too.  He really means it when he claims that the only valid Bitcoin addresses start with a “1”.

Caveat lector.  Generally, Popescu states many truths, including a few controversial ones; he liberally mixes that with half-truths, innuendo, bare assertions of questionable factuality (or worse), and occasionally, outright nonsense.  He is obviously intelligent.  He excels at showmanship.  He is probably effective at overawing and brainwashing many readers.  I have no idea what his game is, and he is not sufficiently important for me to attempt divining his motives.

Anyway, this is off-topic on this thread.  If you care to take it up elsewhere, feel free to start a new thread in an appropriate forum and PM me the link.  I’ll reply if (and only if) it’s interesting.

Any more questions about M.P., cellard?  Don’t take that the wrong way.  I’ve read Trilema; I know that its author knows how to speak very persuasively.

(Aside, MPEx (Mircea Popescu’s stock Exchange) still demands a 50 BTC registration fee despite that its homepage currently advertises a 30-day total volume of 1.19999520 BTC.  That’s for the entire exchange—while the homepage also advertises, “Providing nucleation in the superheated fluid of Bitcoin.”  Popescu’s forum spokeswoman has been silent since 18 April 2016.  Popescu is evidently not a man who can keep a big-money project going for more than a few years.  Too bad for all the people who paid 50 BTC for that.)
2082  Bitcoin / Development & Technical Discussion / Re: segvan: Segwit vanity address & bulk address generator on: February 13, 2018, 02:57:20 AM
You want this code:  https://github.com/bitcoin-core/secp256k1/pull/507  it will be astronomically faster than your current code.

I believe when I previously implemented the techniques in this code my result was faster than vanitygen on a GPU.

Thank you.  Yes, I want that code!  I will promptly set this as a priority feature; I can’t wait to measure the speedup.  secp256k1 already beat OpenSSL about 7x when I tried them head-to-head in my same code; looking at the description in the code, I am guessing that “astronomically” will mean “orders of magnitude”.

FWIW, the code checked into the tree is copied from Bitcoin Core v0.15.1.  I intended to mention that in my commit log, but forgot.  Of course, I follow the secp256k1 repository; but I know it does not yet have any releases, and I wanted to be just a tiny bit conservative when using software I know is marked experimental.

It could also be made faster still with some improvements.  E.g. it doesn't actually need to compute the y coordinate of the points, so several field multiplications could be avoided in the gej_to_ge batch conversion.   It could also avoid computing the scalar for any given point unless you found a match. (E.g. by splitting the scalar construction part into another function which you don't bother calling unless there is a match).


Another advantage of this code is that it is setup to allow an arbitrary base point.  This means you could use untrusted computers to search for you.

Excellent.  I see it.  That may call for going back to the drawing board, and performing some daemonology.  I’ll see what ideas I can cook up for a client/server generator.  It may be be a higher priority than full Windows port, if I can work out an easy way for Windows-only users to submit their requests to a “cloud” machine and then do the tweak multiplication on their own machines.

Sipa also has AVX2 8-way sha2 and ripemd160 that he might post somewhere if you asked.  An 8-way bech32 checksum generator should be really easy to do,

Will ask.  Actually, I think I may have this mentioned somewhere in GH discussions; I didn’t pay attention, because I don’t yet own any machines with AVX2.  Not quite as rich as people think I am. <g>

I myself will not try implementing such things, even the “really easy” ones.  I don’t have the CS background.  After tinkering for years, I learned programming by reading FreeBSD kernel code until I thoroughly understood almost everything except the CS-heavy subsystems (vm, scheduler, etc.).  I think you see that my code reflects the style you’d expect from that experience.  Otherwise, as in all else, I take pride in knowing enough to know the limits of my own knowledge.

though if your expression doesn't match on the final 6 characters you should avoid even running the checksum.

Of course.  Avoiding unnecessary checksums is an easy optimization all around, though it will require some refactoring to open up a code path for that.  Also, I want to at least optionally support expressions such as 'qqqqqq$'.  I’ve had fun generating a few neat addresses that way.

Time to go code...
2083  Bitcoin / Development & Technical Discussion / Re: mingw cross compilation (Re: segvan) on: February 13, 2018, 01:18:39 AM
I just tried to use the makefile and deal with the errors in order, I didn't get there

The "Makefile" is for FreeBSD (and probably other BSD); the "GNUmakefile" is for Linux, and should automatically take precedence with gmake.  I assume you are using a GNU toolchain on Windows?  I could try to produce a makefile which makes isolating errors easier; let me add a no-libcrypto build option first.

Edit:  I thought tossing in the hash implementation C files would be a quick fix.  Oops.  This may take a few minutes.
2084  Bitcoin / Development & Technical Discussion / Re: mingw cross compilation (Re: segvan) on: February 13, 2018, 12:57:59 AM
Head meets wall repeatedly with mingw cross-compiling.

I found a regex library for Windows at PCRE, but now I need to go find a way to get openssl in there too because that's not on Windows either.

Thanks for your response.

I am under the impression that PCRE has wrappers for POSIX regex functionality (#include <regex.h>); so that should work.  I’ve also found a bunch of different links and discussions (mostly on Stackoverflow) leading me to believe there’s also a mingw regex package without PCRE.  I did not yet sort it all out.

I had forgotten about the OpenSSL libcrypto dependency.  Thanks for reminding me.  It is only used for hash functions, SHA-256 and RIPEMD-160.  If it would help, I could easily copy portable C code from FreeBSD’s libmd, and eliminate the -lcrypto entirely.

The biggest question to me is getting secp256k1’s build system to work with a mingw cross-compile.  The code is portable; it’s part of Bitcoin, which I will take as proof that it runs on Windows.  But the trick is to get it to cross-build the right way.  Have you tried this part on your Windows machine?
2085  Other / Meta / Re: Rejoice! Actmyname is soon to be demoted on: February 12, 2018, 11:57:38 PM
[$@§!]

As a rule, you always know you hit just the right spot when the vulgarity meter pegs.


Once upon a time, I seduced a beauteous lady of arts and letters with a running erotic joke about commas, interspersed with intercourse on Byron.  Thence ensued a story more appropriate for /u/GirlsGoneBitcoin than here, wherein she confirmed my reputation as “mad, bad, and dangerous to know”.  Thus, I do understand why you’re jealous of my way with words; you should be.

Discourse, you fucking cretin, DISCOURSE.

Do you seriously think that response had anything useful in it? A little "intercourse" (DISCOURSE YOU PRICK) about your own stats?

I enjoy being hypercorrected by pretentious morons who neither grasp (not-so-)subtle double entendre, nor even know the definitions of basic English words:

Quote from: Dictionary.com Unabridged
intercourse

noun

1. dealings or communication between individuals, groups, countries, etc.

2. interchange of thoughts, feelings, etc.

3. sexual relations or a sexual coupling, especially coitus.

(Aside:  The sense of sexual coupling is actually a euphemism; the denotations of “dealings, communication; interchange of thoughts” are original.  Source:  My own knowledge of etymology.  Go get your own education, you degenerate anti-intellectual.)

(with associated almost-german words)

Actually, it is German.  Per the mighty Duden:

Quote from: Der Duden
Skla­ven­mo­ral, die

Wortart: Substantiv, feminin
Gebrauch: Philosophie

[...]

Herkunft
nach dem deutschen Philosophen F. Nietzsche (1844–1900)

Let's fuck some weird Neitzschie foolishness in there as well, so that the easily-intimidated will back off in the face of your overpowering intellectualism.

The correct spelling is “Nietzsche”.  And what did I say about the vulgarity meter?  It shows that I hit where it hurts:  Directly upon your own sense of jealous inferiority.  The Sklavenmoral does suit you, after all.  No wonder you are such a zealot for empathy.  You need it, and also its incestuous twin:  Pity.

For not only are you anti-intellectual, but you are also a classless boor.  The two qualities (or lacks thereof) do seem so oft coincident.

[extended anti-intellectual mouth-frothing]

Beneath reply.  Please try not to lose your cool so badly when bossing your alleged 20 direct reports and 500 indirect peons.  They need for you to keep your job, so that you can continue shoving them around.  But nobody here needs that.
2086  Bitcoin / Development & Technical Discussion / mingw cross compilation (Re: segvan) on: February 12, 2018, 11:19:40 PM
Head meets wall repeatedly with mingw cross-compiling.  This is actually my first time ever attempting such a thing; the last time I needed a Windows binary, a significant number of years ago, I used MSVC on a Windows machine.

I want to help Windows users get spiffy new Segwit addresses; but I think I’ve spent enough time on that for now, whereas I should be writing documentation and improving the code.  If anybody who has a working mingw setup (including a POSIX regex package) on any platform could at least confirm that it compiles that way, I’d appreciate knowing that such a thing is possible without significant code changes before I spend more time trying.

If I can successfully produce a Windows binary myself, I will distribute it on Github PGP-signed using the ECC key identified in my signature.
2087  Economy / Reputation / Re: The BCT PGP/GPG Public Key Database: Stake Your PGP Key Here on: February 12, 2018, 10:23:28 PM
I have (much) more to say about PGP keys.
Did you follow the phuctorings?


I do not accept segwit outputs as payment, nor send them.
~14 easy tricks to save bitcoin http://trilema.com/2013/how-to-airgap-a-practical-guide/
The auditable hardware RNG https://archive.is/CGQkR


Last I checked, the “phuctor” page had disappeared and was a redirect to the author’s homepage.  I didn’t bother digging, given that said author is one whom I’ve found to eviscerate his own credibility:

N.b. that unlike most of the anti-Segwit crowd, Popescu is against P2SH, too.  He really means it when he claims that the only valid Bitcoin addresses start with a “1”.

Caveat lector.  Generally, Popescu states many truths, including a few controversial ones; he liberally mixes that with half-truths, innuendo, bare assertions of questionable factuality (or worse), and occasionally, outright nonsense.  He is obviously intelligent.  He excels at showmanship.  He is probably effective at overawing and brainwashing many readers.  I have no idea what his game is, and he is not sufficiently important for me to attempt divining his motives.

Anyway, this is off-topic on this thread.  If you care to take it up elsewhere, feel free to start a new thread in an appropriate forum and PM me the link.  I’ll reply if (and only if) it’s interesting.
2088  Other / Off-topic / Re: People who have an online identity - how do you feel if some1 have the same? on: February 12, 2018, 10:09:08 PM
I don't know

Posts like this make me wish I could leave more than 50 merit...  :/

Me, too.
2089  Other / Meta / Re: Rejoice! Actmyname is soon to be demoted on: February 12, 2018, 10:07:10 PM
[Snip huge, untrimmed quote which would get Wendigo flamed to a cinder on Usenet.]

Ah here comes another narcissistic nobleman trying to assert his superiority by pushing out these literary growing pains of mini-essays that nobody cares about. And while you are still at it, could you please give Lauda some private lessons in English punctuation 'cause I think his English textbook is not up to snuff and I am tired of reading his inappropriately used commas that tend to litter his nicely spaced out ramblings.

Thanks for your time and have a nice day, knobhead  ;D

Once upon a time, I seduced a beauteous lady of arts and letters with a running erotic joke about commas, interspersed with intercourse on Byron.  Thence ensued a story more appropriate for /u/GirlsGoneBitcoin than here, wherein she confirmed my reputation as “mad, bad, and dangerous to know”.  Thus, I do understand why you’re jealous of my way with words; you should be.


I'm actually hating that this thread is still going.

And your opinion matters, because...?

Empathy is a weakness. All it does is cloud your judgement, thus severely impacting your ability to think rationally.

I'm actually hating that this thread is still going. But that's my issue. I've quoted a post by a person I don't like much. This isn't secret.

Shame on you for cherry-picking a quote, and leveraging that to take a holier-than-thou attitude toward someone who has freely given extraordinary amounts of time to helping newbies, squashing predatory scammers, and fighting spam.  I don’t wonder why your reply picked on that, instead of this:

...I won't forget that he took on his own time to help with empathy someone he didn't know.
I have helped thousands of users here over the years, and felt no empathy towards any case. You do not need empathy to help someone. You were saying?

I am also unsurprised that you argued with one line out of a discussion, whilst conveniently avoiding all I said in my own far more detailed substantive response.

Disgusting attitude.

Yours is.  Moreover, the whole notion of “empathy” is disgusting.  It is nothing more than an emotional blank cheque demanded by the weak and incompetent on those who are not so.  It is the distilled essence of the Sklavenmoral.  But as all such things, it is a poison which acts only against those who choose to drink it.  Repudiate the concept, and it is as powerless as its preachers.

I work in a position where I am responsible for looking after 20 direct reports, who in turn look after a chain of over 500 indirect reports. I rely on these people to empathise with our customers and drive promotion. If I were to adopt this frankly ridiculous position, the company I represent could never have grown.

Nice boast, as a setup for an air of superiority.  But you must be new to the Internet, if you presume that others will do other than take that a grain of salt.  Maybe you’re telling the truth; maybe you’re not.  I don’t care, either way.  You will never know who I am.  In either case, publicly visible actions hold more weight than mere stories.

Now, you’ve popped up in this thread with rude pretension, unjustifiable contempt, and imperious demands unmatched by your ability to argue a point, much less enforce yours on anybody.  What it boils down to is more whining:  So, you’re “actually hating that this thread is still going”.  That’s amusing enough, but also mildly irritating.  Shoo.  If you so hate this, then I think we can agree (or at least concur) that you shouldn’t stick around here.



I owe others a reply upthread (including squatter’s well-thought response; fancy that, a desire for quantitative data with a sample size greater than one).  Have not forgotten.  TODO.  Meanwhile, I intend to fulfill my promises to anybody who brought popcorn.
2090  Economy / Reputation / Re: The BCT PGP/GPG Public Key Database: Stake Your PGP Key Here on: February 12, 2018, 09:10:04 PM
I've just noticed Junior Member nullius' signature in a post in a vanitygen thread I post in occasionally:

Post: https://bitcointalk.org/index.php?topic=25804.msg26877499#msg26877499
Archive: http://archive.is/6nP6a#selection-1931.34-2113.61

Quote
bech32(1) encode/decode for Bech32 strings & “Bravo Charlie” Addresses (man) • easyseed(1) BIP39 mnemonic phrase generator (man) • More to come!
There is only one Bitcoin. • Segwit nested: 3NULL3ZCUXr7RDLxXeLPDMZDZYxuaYkCnG • Bech32: bc1qcash96s5jqppzsp8hy8swkggf7f6agex98an7h
(Tips welcome.) • PGP Ed25519: 0xC2E91CD74A4C57A105F6C21B5A00591B2F307E0C (preferred) • RSA: 0x36EBB4AB699A10EE

The PGP 0xC2 is also on his profile page http://archive.is/lqi7R#selection-471.0-471.47

Thanks for noticing that.  My PGP key fingerprints are:


Ed25519 (and also, Curve25519 encryption) can be used with GnuPG 2.1+, based on a draft standard and just using a number which bureaucracy has not assigned.  It is supported by some others (including Keybasen.b. that my profile there is way out of date, since their interface is horrible if you don’t give them your keys).  I am not alone in wishing for Ed448-Goldilocks.  Too bad.  As a pseudonymous personality, my Ed25519 fingerprint is me.

Due to spotty support otherwise, I have been maintaining an RSA key (4096 bits, of course).  It feels like the 90s, when Usenet signature sported fingerprints for PGP 2.x/5.x keys.

I will not be pasting the keys themselves into a message here.  That’s not the right way to do things, if the tedium I’ve spent trying to gather keys is any indicator!  Fingerprints will suffice.  PGP fingerprints have a 2160 security level, and will not go out of date as subkeys and userids change.

My aforestated fingerprints are for certification-only primary keys which were generated on an airgap machine, have never been exposed to a net-connected machine, and never expire.  (`man gpg` and search for --export-secret-subkeys.  Lazyweb also has blog guides for how to do this.)  I use those to add, revoke, and/or extend the expiry of subkeys, as well as changing userids as needed.  Some of my subkeys expire next month—no big deal; I’ll either extend their expiration dates (yes, you can do that!), or issue replacements if I want to.  People can then refresh my keys from keyservers, relying on the fingerprint and primary key they already have.

I have (much) more to say about PGP keys.  Since I found this thread, I’ve been trying to gather and organize keys; I am contemplating a project to make a Bitcoin Forum PGP Keyring.  I will post again later, or start a new thread if warranted.  Promoting PGP usage on the forum is a special interest of mine:

This is why I think user education is important.  For a forum dealing with what is now colloquially called “crypto”, only an astonishly small proportion of users are crypto-savvy.

One of my first thoughts on seeing anything Bitcoin-related is, “Why isn’t public-key crypto used for all authentication?”  Of all places, the Bitcoin Forum should lead with that!  If you use Bitcoin, you should also use PGP, at the bare minimum; and the attention brought by Bitcoin makes for an opportunity to introduce more people to what old cypherpunks call “crypto”, resulting in more security all-around.
2091  Other / Meta / Re: Merit - right to consensus on: February 12, 2018, 07:51:23 PM
Hello, shorena. Can you some help me please? I got bad trust from Lauda with no real reason. I have not friends from bitcointalk who can me get green trust, can you please ?
Thanks for reading

Thanks for reminding me, plus giving me all the more reason to tag both of the #1061902 “HALLASTERA” and #1257862 “kinki32” accounts:

Quote from: nullius
#1061902 “HALLASTERA” created his very own whine thread, declaring a “right to consensus” and demanding that the merit system be put to a “general vote”.  Having thereby succeeded in bringing himself attention, he got caught passing himself merit from an alt #1257862 “kinki32”, and red-tagged by Lauda.  Whereupon he took up an extended campaign of whining, blustering, leaving baseless retaliatory negative trust for Lauda, and now, PM-begging DT member shorena for “green trust”.  He seems determined to find new ways daily for demonstrating himself to be not only dishonest, but incorrigible.  AVOID.

Now, I will not risk forgetting and accidentally doing business with this individual.

I see that he has been following my sarcastic advice all too literally:

[blah blah blah] Cheesy

Let’s see:  You created your very own whine thread, declaring a “right to consensus” and demanding that the merit system be put to a “general vote”.  Having succeeded in bringing yourself attention, you got caught by TheQuin passing yourself merit from an alt and red-tagged by Lauda.  Whereupon you promptly diverged into crazyland:  “Maybe [actmyname] and Lauda it's one persone?”  (Hahahah.)

Whining and blustering has worked so well for you in the past.  Keep it up to keep getting the same results!
2092  Other / Meta / Re: Newbies can now pay a small fee to enable images on: February 12, 2018, 07:00:53 PM
[2018-03-11 edit:  Struck out/modified some of my suggestions; issued correction, q.v.]

@theymos

Has the potential been considered of allowing paid accounts to have avatars at low rank, via Copper Membership or otherwise?

It seems reasonable to expect that this would substantially enhance the draw of paid membership; I think it perhaps could even justify a moderate huge bump in price.  I speak from experience:  When I was a Newbie Copper Member, I myself would have paid extra to sport an avatar—say, the equivalent of $10 more.  (Now, I wouldn’t; I’m only about a month away from Full Member.)  Avatars are fairly basic forum self-styling functionality, and not really a good indicator of rank:  As it stands, you only need to be active for a bit over four months to get an avatar; and there are no further enhancements to avatars at higher ranks.

I did enjoy Copper Membership’s allowance of links in my signature (as it did at the time).  I used that to link to my PGP keys on keyservers, to my Bitcoin tip addresses, and later (as Jr. Member) to some open-source Bitcoin utilities I’ve written.  Of course, most important to me was the principal practical feature of Copper Membership:  The ability to post images, which improved the quality of many of my early posts.

I dislike the idea of possibly inviting more visual assaults from advertising, especially annoying ad APNGs.  On the other hand, who would pay enough for rented avatar space to make it worthwhile to risk buying paid membership for a spammy account?  I am not familiar with ad rates, but I do know:  An avatar is much smaller than a signature, and most importantly, it’s not clickable.  The avatar of a widely-respected Hero or Legendary might be worth something at market, if only for “branding”; but I doubt a newbie farmed/spammer account holder would find it worthwhile to pay a significant fee just for the avatar.

Apologies if this has already been discussed.


FYI, because I just ran into it: The 75% reduction does -sadly- not affect the hard limit of 4 seconds between certain actions (including posts and reports). No, its not an issue and I will not ask for a refund. ;)
Nuts. I was actually contemplating buying Copper Membership solely to be able to report more than one post every 4 seconds. Now how am I supposed to keep up with the shitposters? :-\

I’ve actually been bitten by that.  Actually.

My qualifications for whining humorously nitpicking:  “You have reported 257 posts with 100% accuracy” (within a total amount of forum time which currently gives me an 84 activity level).

I tend to batch things methodically.  If I find a clump of spam posts (as so oft occurs), I will open each one in a new tab, write my report texts in a text editor, then repeatedly iterate through the tabs clicking “Report to moderator”, copypasting, double-checking, and then sending the reports.  Call it the reporting machine-gun method.  By such means, it has occasionally happened that I tried to submit more than one report within 4 seconds.

(To be clear, I do not actually see this limit as a problem.)
2093  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.22] on: February 12, 2018, 06:30:44 PM
Can the latest version (v0.22) make compressed keys?

segvan only produces compressed keys.  It does have an option I added at the last minute for old-style “1” addresses.  However, its primary function is to produce Segwit addresses (both Bech32 and “3”-nested), which require compressed keys.  You should be using Segwit, anyway; it will save you significantly on fees.
2094  Bitcoin / Development & Technical Discussion / Re: Is there a bech32 vanity address generator? on: February 12, 2018, 06:25:31 PM

Aha! You finally managed to perfect and upload it then? I'll test it when I open up a Linux machine. Might also try to convert it to use in Windows (probably by translating the code to one in Windows that'll run fast enough).

It didn’t take so long to get it onto Github.  Unfortunately, I’ve been spending too much time posting on the forum. <g>

It’s not perfect—far from it.  (Nothing which is missing documentation could be “perfect”!)  But core functionality is solid.  I tried building and running it on Linux before pushing it onto Github.  It should do fine for you there; and even a slow machine can produce addresses such as you now see in my signature, if you leave it crunching away for a few weeks.  I will try to cook up a Windows version.

Please direct follow-ups to the segvan thread.
2095  Bitcoin / Development & Technical Discussion / Re: Segwit vanity addresses (Bech32 and nested P2SH) on: February 12, 2018, 06:13:53 PM
A day or two ago, I whipped up a quickie Segwit address generator with a simple regex search.  It can produce both P2WPKH-nested-in-P2SH and Bech32 addresses.  It’s quite trivial; it lacks vanitygen’s features, and probably also falls short in performance.

Please see and followup-to:  segvan: Segwit vanity address & bulk address generator

Github: https://github.com/nym-zone/segvan

Some sample outputs from short patterns:

3NULL3ZCUXr7RDLxXeLPDMZDZYxuaYkCnG  (^3NULL[0-9])

bc1qcash96s5jqppzsp8hy8swkggf7f6agex98an7h (hahah; ^bc1qcash[0-9])

More recent gems, my new tip addresses:

bc1qnullnymefa273hgss63kvtvr0q7377kjza0607

35segwitgLKnDi2kn7unNdETrZzHD2c5xh
2096  Bitcoin / Development & Technical Discussion / Re: Is there a bech32 vanity address generator? on: February 12, 2018, 06:09:56 PM
Please see:  segvan: Segwit vanity address & bulk address generator

Github: https://github.com/nym-zone/segvan
2097  Bitcoin / Development & Technical Discussion / Re: segvan: Segwit vanity address & bulk address generator on: February 12, 2018, 06:05:39 PM
(Reserved.)
2098  Bitcoin / Development & Technical Discussion / segvan: Segwit vanity address & bulk address generator on: February 12, 2018, 06:05:03 PM
Note:  This is under active development, currently on an experimental branch offering 5x speedup.  I will post further updates when appropriate.



By popular demand:

Github: https://github.com/nym-zone/segvan

The code for this is reasonably solid, notwithstanding some inelegance in main() which will be refactored.  On FreeBSD, it’s been my dogfood for over six weeks; I have also built it and tried basic functionality on Linux.  But it needs error, warning, and usage messages—plus the manpage!

When there is significant news (such as major features or a Windows version), I will severely edit this post and bump the thread.

Two recent products (tips would be encouraging):


Those were done together, on one run with each key being searched for a Bech32 pattern and a nested “3” address pattern.  They took 500–600 CPU hours on an ultra-slow airgap laptop; for comparison, the same machine requires about 8 hours for a FreeBSD buildworld (!).  But I got lucky:  I hit a ^bc1qnullnym match after covering only about 25% of a 35-bit bruteforce search.  The other took a bit longer; but wasn’t so hard, because I permitted a potential extra digit: ^3[0-9]?segwit (case-insensitive matching).

Roadmap/TODO, in no particular order:

  • Add threading.  I always simply run one instance per core.  That doesn’t waste anything, because it is a probabilistic search:  There is no concept of “progress”, no need to keep instances synchronized in any way.  Threads would make it more convenient.  However, before I add a simple pthreads implementation, I want to investigate the impact on the next item.
  • Microsoft Windows version, likely via mingw.  This is in popular demand.  I can’t promise a binary on a platform I myself don’t even have in my house; but I will try to get a Windows binary made for folks who need it.
  • Change/adjust the output format.  The current output format is intended for piping to shell scripts, especially for bulk generation mode.  If you need to generate ten thousand address/key pairs and pipe those into a `while read` loop, then the current format is ideal.
  • Add warning/error/usage messages.  This started as an afternoon project for my own use.  The code is solid, despite some inelegance in main() which will also be refactored.  It’s solid, because I need it that way; however, unlike some of my other published software, this was not originally written with other people in mind.
  • Finish the manpage!
2099  Economy / Reputation / Re: NEW IRREFUTABLE EVIDENCE THAT ATRIZ == LAUDA!!!!!!!1111oneone on: February 12, 2018, 02:38:31 AM
No OP, ATRIZ isnt Lauda.  
2 skilled persons who joined forces.

R U STUPED SIR Huh Roll Eyes Cheesy Roll Eyes THE EVIDENCES IS VERY CONCLUSEVE :

NOW LOOK AT BOTH THERE PROFALES:

BOFE THERE EMALES ARE HIDDEN AND THE AGE IS N/A

GUILTY! Grin



And for such nonsense OP gets paid.

What does he get paid, ignorant one?

STOP SPAMMING TEH FORUM VOD SIR . Roll Eyes LOOK BELOW ,. UR SIG IS A BILLBORED!! Angry Cheesy



/s hopefully i incorporated the stupidity of every single thread :^)

THATS IMPOSSABLE THE POWER OF HUMIN STUPEDETY IS INFINATE!!! Grin

THERES NOTHIGN MORE RELIEBAL! Tongue SIR  U SHULD GIVE STUPADITY GREEN TRUST , IT NEVAR FAILZ!!! Cheesy Cheesy Cheesy
2100  Other / Meta / Re: LoyceV's Merit source application on: February 11, 2018, 11:39:28 PM
I'm interested to see how it turns out.

Merit sources are confidential; thus, the most we’ll ever know about how it turns out is when the application has been “Processed”.  Apparently, this has not yet occurred.


Hereto, I avoided replying here out of an apparent conflict of interest.  I wish to make it clear that what I say is not based on LoyceV having picked some of my posts.
Before reading this post, I was already thinking I would like a "Merit-subscription" to your posts. Basically, (almost) anything that you write is worth reading.
You're the second Top-merited Member, only second to deeperx (who has red trust and got all his Merit for DeepOnion posts in his self-moderated (censored) ANN-thread). I really appreciate how well the Merit system works for good posters (and I ignore deeperx in my list of good posters).

Thanks.  In the time since you wrote that, I handily blew past “deeperx”.  Also past “RichDaniel”, the “Hero” Member so incredibly meritorious that he got +283 in the span of an hour (then got red-tagged for his trouble).  Unfortunately, within the past 24 hours, I’ve fallen behind “pitipawn”, a Full Member who seems to be running Turkish threads soliciting merit in some fashion.  I’d better work harder!
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!