Bitcoin Forum
May 27, 2024, 02:12:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 52 53 54 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 ... 317 »
1341  Bitcoin / Bitcoin Discussion / Re: == Bitcoin challenge transaction: ~1000 BTC total bounty to solvers! ==UPDATED== on: June 20, 2023, 04:14:57 PM
Any one here looking for a specific private key related to #125? You might have a lot of unknown public keys but you never know, someone  might know the private key for just one of them, and to solve the puzzle all we need is 3 keys, 2 known in order to find the third unknown one.

So if you have a few keys and would like to work together, post them here to see if we have what you need. I will start by myself.

If anyone knows the private key for any of the following keys, we will share the prize 50-50 😉.
Code:
0239ddd9a2a1a113c105175e17903c1f72326ff89b109efc8b976cc9916429c9c4
Code:
0364696e1656dd8b0cca211c9cac57bfaedd1e4bc5b0f85405c9f3a76592f28f17
Code:
0304c40326f5350a090a16e3e3b8fad1ebd433989e825780d7586cd77f19c2652f
Code:
032a6b135b5792e58f9e3cea8c64efdb677d3be09decdaea575320faf73a89a0a7
Code:
027371ddafc0da5c86cc3800ce98faeee13469cab4636e534ad5d6181af4e2924a
Code:
0283a7519d110b317f20675715767762c950e8e4e8690a3e7e126fafa5759c43d5
Code:
0299bcb3387f04c75b423c86099e9ac48e42d9166f4d6fb7634d5eb24074d9c59f
This is not #125 key, it's a twin.
Code:
02a81ea7b0f52f34e249a8308300ae9f2bc6d28db649137343e093e5c84ec4f00e
Another twin.
Code:
0329ec62f37968906686bfad34ad5fdd9008fe187d868c0c4f9de1055b3062f00e
This one I have the private key for
Code:
0399ae0cf361425cbea86fc0c1fecdff5f61ca8a4c4c28a1db891f3d651dc7f00e
Code:
0286936a275e6d53bb2b2718c93d8a5aa44f371f6e0300abb73b89dd851d2fbe88
Code:
03a64a0b3739ddccddece6d90407c925717c75467cc8ce46321d73ec2663320130

Might post more later, lets see what you got, I showed you mine, it's your turn!😂

1342  Bitcoin / Development & Technical Discussion / Re: Recommend a simple python script to work with public keys (divide, subtract etc) on: June 18, 2023, 07:16:36 PM
Just a simple dry please? Lol, here you can use key subtracter but it's not python.
https://bitcointalk.org/index.php?topic=5360656.msg57967989#msg57967989

But what you really need is an elliptic curve calculator, you should search in github, there are python written ones.
1343  Bitcoin / Development & Technical Discussion / Re: Vulnerability: The curious case of the half-half Bitcoin ECDSA nonces on: June 18, 2023, 07:03:37 PM
could I find something useful about a low range key such as a puzzle transaction challenge key with exposed public key?
You can not find private key range by only having the public key. You can't even verify that the public key the puzzle creators released actually falls in the range they claim without brute forcing the key (ie. checking every private key one way or another) to find the correct one and then checking if it is in that range.
Incorrect, I can verify the keys or at least the one I'm working on is exactly in the said range, if you subtract for example 2^125 from puzzle #125, you will get a key #1, now if you subtract 2^124 from puzzle key, you will get key #2, and then if you add 1 and 2, you will get 2^124. I know the estimated size of any key related to that puzzle, the thing is, that estimation is as big as 2^123, but nevertheless you could verify the range as long as they tell you the range.
1344  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: June 18, 2023, 06:52:38 PM
I see this thing is still going, has anyone solved any of the puzzles yet? Or has anyone made any type of progress? Can I get a TLDR of the events over the years from the start of the puzzle until now?
Over how many years exactly? 😂, #65 and #120 been solved. Prize has been increased 10 fold, now there is around 1000 bitcoins for us to loot ( yeah right).
1345  Bitcoin / Bitcoin Discussion / Re: == Bitcoin challenge transaction: ~1000 BTC total bounty to solvers! ==UPDATED== on: June 17, 2023, 07:56:18 PM
Grin you can try fraction-bsgs or fraction-kangaroo it do what you need.
Step1 substruct range begin from public key
Step2 devide G by 2^24, it will be fraction
Step3 devide public key by 2^24, it was first public key to serach in range 1.. 2^100
Step4 substuct fraction from first public key , it wil be second public key to search
Step5 substruct fraction from second public key.......

In simple numbers how it work. For ex. our desired key is 379 that lie in range 2^9
We want search in range 2^6=64,  divisor is 2^3=8
Devide 379/8 = 47,375
fraction = 1/8 = 0,125

Stage 0 search 47,375 in range 2^6 => result negative
Stage 1 subtract from it 0,125 => 47.25, search  in range 2^6 => result negative.
Stage 2 subtract from it 0,125 => 47.125, search  in range 2^6 => result negative.
Stage 3 subtract from it 0,125 => 47, search  in range 2^6 => result positive.
So now we need multiply 47 by divisor 2^3=8 = 376 and add stage number =>376 +3 = 379
Desired key 379 founded in 3 stage of 8

From myself that if you are not lucky, then this is a bad idea, very bad idea.
With kangaroo puzzle#125 need +/- 2^63 op.
With division you will have 2^24 public keys with search range 2^100 that need 2^51 op (maxstep 2) for every pub.
Total 2^24*2^51=2^75 op  and this is not a guarantee that the key will be found due to maxstep.
It seems you know how to sing a lullaby, yet you can't sleep yourself. 😉
Only if it was so easy, though what could be faster than dividing or finding a divisor, is to figure out what comes after 1 for #125, I have worked on this for 2 months now, God willing if my calculations are correct, then I am 98% certain what comes next.

If finding a single character of a low range key is so hard, imagine higher bit range keys, so I was wondering, now that I have managed to drop 2 digits from 32 digits of #125, how long would it take for kangaroo/BSGS to search in this new range which is a few times greater than 2^120?
1346  Bitcoin / Bitcoin Discussion / Re: == Bitcoin challenge transaction: ~1000 BTC total bounty to solvers! ==UPDATED== on: June 17, 2023, 12:29:18 PM
I have a question, is it even possible to brute force a key  like puzzle #121? If it's possible I wonder what would be the cost?
And if the cost is more than the prize, no use, if the cost is less than the prize, again no use or purpose for designing this puzzle.

Think about it, revealing the exact range of every puzzle in order to see if people could brute force them while either the cost is more than the prize or less,  this doesn't make any sense and has no reasonable purpose honestly.

It wouldn't even prove anything, because it's obvious brute forcing keys especially 256 bit keys without known public key is impossible even if you know the estimated range as this challenge is the evidence.

So in my opinion working on any puzzle is a waste of time and effort if the prize is less than the cost, having a bigger prize than the cost of solving a key is also nonsense, because what? I have enough money and could use GPUs to solve a puzzle in order to earn something more than I have spent?
And if I have the money and calculate the cost to see it's not worth it, I would never attempt to solve a puzzle.

I think @Satoshi, or the actual designer of this puzzle should rethink and revise the purpose of this challenge.

Imagine even if the whole world wanted to brute force a 256 bit key, they'd have to guess the range blindly and keep searching forever.

It would be nice to have unsolved puzzles above #67 moved to higher bit ranges with their public keys exposed, because I don't think there is any shortcut to solve a  key with no known public key other than brute forcing sequentially, though having a public key is at least something we could work with and improve on existing tools.
No public key = waste of time.
1347  Bitcoin / Development & Technical Discussion / Re: Theoretically We Already Broke Bitcoin And Any Security Bits For Once on: June 17, 2023, 02:55:19 AM
So imagine this was a existing private key! The point of my post is not to scare and say that private keys are not secure anymore No! but to say that theoretically its not fully impossible to generate a key that did indeed existed.

Ok,  maybe you are confused about the size  of the key range,  imagine a galaxy 10 billion years away from us,  now imagine there are no moving particles and everything standing still,  once again imagine you are given an option to pick any atom from the total existing atoms in the universe, now tell me in theory what are the odds of you landing on an atom in that far galaxy? How many times do you need to pick one key until you land on that one? You already know the answer, generate 2^256 keys one by one.

You need to sleep a bit more and think about the math a little more,  this is not good for your mind to insist on something which is not important at all, go back grinding for a puzzle key.😂
1348  Bitcoin / Development & Technical Discussion / Re: Theoretically We Already Broke Bitcoin And Any Security Bits For Once on: June 15, 2023, 01:23:10 PM
This is the public key of your private key
Code:
03c9bcd61b35bb58be41b7bc4e55d65cff0685da0ab94ccbe6a1861708909d136a
And this is the compressed address
Code:
1J8jv3svTCKste5LWqmjY3H272Vie7SvNV

You actually didn't break anything, you can't even control your generated address, when you generate a key, you are for the first time generating that key, unless you don't use secure RNG.
The only method to break ECC is through public keys, they are the only things connected mathematically to the private keys, since there are no identical public keys generated by different private keys.

You have not 1 in 2^160 odds, you actually have the entire 2^160 as your options to pick, you could either pick them all and store them somewhere, or you could generate as many needed to use.

If you generate an address without revealing the private key, now anyone else need to generate not in random, but sequentially from 1 up to 2^160 keys till they find your address, given you have chosen a 160 bit key, if you choose a 256 bit key, there is no specific range for others to search, so they'd need to search all 2^256 keys, and  if someone starts from 2^255.9 to 2^256,  he would still have the same odds as others searching sequentially.

Ps, almost all my math above is incorrect, I didn't calculate, just estimated.
1349  Bitcoin / Bitcoin Discussion / Re: == Bitcoin challenge transaction: ~1000 BTC total bounty to solvers! ==UPDATED== on: June 14, 2023, 10:28:23 PM
...

I like your ideas from this thread.

Don't understand them well however.

But I support your thinking here.
Thanks, please do tell what you don't understand, I also need to go over stuff a few times to actually realize my mistakes and find inspiration, sometimes when I talk about something with someone, I'd suddenly realize something new.

I will do my best if I can to explain anything which is unclear for you.
1350  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: June 14, 2023, 07:55:52 PM

Yeah .. He, most likely, generated 256 keys and manually updated the first character on the left whenever necessary.
You really think he just changed 1 digit? Some one who is an expert in cryptography would know better, but maybe he didn't want to make it very difficult and really used randomly generated keys. But if I were him, I'd have changed a few characters to make it really really hard, for example having a few 0s in a key will make it hard to reverse engineer a key manually, and brute force/kangaroo, well they have their limits.

One other thing could be placing a key outside a bit range, I'm curious did Satoshi ever confirmed that the keys are truly in the assumed bit ranges or we just hope the amounts of transactions are enough of a proof that the keys are exactly there?

But you know what I'd like to see? A large amount in a key with no exactly known bit range, somewhere between 160 and 180 bit not lower and not higher, then solving that key would be a global challenge, though not any amount which someone could spend half of it to use special tools and grab it, something which could only be solved by math and new methods.

For example, I haven't seen any tool/ algorithm capable of  adding or subtracting 1 to a key and then divide it by 2, kangaroo  engages square root calculations, BSGS looks for a match after adding/subtracting calculations, but no tool does + or - 1 then divide!
1351  Bitcoin / Bitcoin Discussion / Re: == Bitcoin challenge transaction: ~1000 BTC total bounty to solvers! ==UPDATED== on: June 14, 2023, 07:33:11 PM
You guys need to stop subtracting and adding.

You are guys doing nothing but making the actual puzzle more complicated. You will most probably end on a valid public key that doesn't even exists in the whole range of #125. So it will not help.



I actually thought I could see a pattern in binary for a few days. Turns out my eyes were playing tricks with math. They appear random.

Best bet here is with the -R flag until I think of something else. That and increase RAM, reason to spend $ the better half cant know about.
What do you mean the other half?  Of course spending money will do the trick of solving some of the puzzles, but as I said before, using high end hardware+ a lot of money to solve any of the puzzles is for dumb pussies, they wouldn't know any other way than spending cash to solve any problem they face.  Solving a puzzle by using the power of human mind is the ultimate honour one can achieve concerning this challenge.

And I don't know why so many people think that everything is in binaries, don't you know binary is the dictionary/vocabulary/language of computers? And math is the language of the universe and order, we humans do better with the things that were here before we existed, but trying to work with the things we created? Not a good idea, not only we can't learn anything from them, we'd become more dumb as many studies prove that human race is becoming dumber due to the excessive use of technology, lol. 
Imagine 50 years from now asking a 15 years old  what is 25 + 4? You would definitely see him reaching for his phone to use a calculator!

Good luck with -R flag, I assume that's  for random, only if people really knew how big a number like 2^125 is.😉
1352  Bitcoin / Bitcoin Discussion / Re: I received 65 BTC from an unknown address... on: June 14, 2023, 03:04:53 PM
You should already know what is the right thing to do, asking people about it would just mislead you further.
In any case, anyone receiving any amount by mistake should post both receiving and sending addresses on social media, forums etc, to make it easier for the rightful owner to find you, then after making sure he/she controls the sending address, you should give him back all without taking 1 satoshi, the owner would give you a tip if he wants.

You might even want to ask him how much should you keep as a prize before returning them, and he might out of fear of loosing all of his coins tell you an amount which he is not satisfied to give whatsoever just to keep you happy and take some of his money back.

Doing something good has any worth if you do it with no expectation from people, God will make it up to you in a way that would result much better than doing good expecting something in return.😉


Enough of ethical lessons, are you going to share some of that free loot or what? Come on man, this is a community ship, we share and care. Lol.

The topic is a hot bed for swarms of sig posters. 😉
1353  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: June 14, 2023, 02:46:16 PM

Maybe Satoshi created this "puzzle", and once all the private keys are found... maybe a hash of the string composed of all the keys within individual ranges, or maybe something related to them... could lead to the private key that "controls" the addresses that received the first mined bitcoins. Science fiction ? XD
I can't see any science in your theory, it's just a made up scenario in your head, I doubt him to be a liar, he said that he used a deterministic wallet to generate the keys.

The only thing I don't understand, are all the keys from one seed and if they are, did he use the first 256 keys and didn't generate more? If he used the first generated 256 keys, which would be impossible to generate 256 keys and all of them have the exact bit range of the intended bit range.

So my guess is that he might have used a single seed but had to generate more than 256 keys to find the perfect keys matching the intended bit ranges if masked with leading zeros.


So explain what I mean.
Imagine I generate 256 keys and see none of them has 1 in the middle so that I could mask anything behind 1 with zeros and use that key for puzzle #125, for instance.

Example
Code:
5efad5987dc4a907698547d117b98892    0    5001159481c639e043e52d4f9b832e1
I can't use the key above for puzzle #125 because it has 0 in the middle instead of 1, so I'd either  have to manually replace 0 with  1 or generate another key till I see 1 in the middle.

In both cases there will be no pattern, no correlation between the keys whatsoever.
1354  Economy / Service Announcements / Re: UNLOCK CRYPTO ACCOUNTS. RETURN OF STOLEN CRYPTO on: June 14, 2023, 10:58:02 AM
Return of the jedi is more expected than the return of stolen crypto, I could save everyone 150 AED on how to keep your crypto safe, just use a cold wallet and you'd be Ok.
About unlocking an exchange account, if there is a misunderstanding, the user and the exchange will work it out, if it is related to regulations and laws of certain countries, then publicly teaching people how to circumvent the laws of a country is pretty much illegal, unless UAE, is an outlaw state, I don't see a good future for this meeting.😉
1355  Bitcoin / Bitcoin Discussion / Re: == Bitcoin challenge transaction: ~1000 BTC total bounty to solvers! ==UPDATED== on: June 14, 2023, 08:20:58 AM
New information, investigate it to find #125, God willing.

Subtract this from #125 (you should convert it to whatever your calculator accepts, note, if #125 public key is e.g. 125 and the below key is 5, I don't mean to subtract 5 from 125, that could result invalid public key, so do subtract the public key of the key I gave you from #125 public key)
000000000000000000000000000000000cfbcda3ac10c9714fbcda3ac10c9700

Then tell me what you see.

Is this what you see?
0229ec62f37968906686bfad34ad5fdd9008fe187d868c0c4f9de1055b3062f00e

Now

Subtract this from 2^125
000000000000000000000000000000000cfbcda3ac10c9714fbcda3ac10c9700

Is this what you see?
000000000000000000000000000000001304325c53ef368eb04325c53ef36900

The relation of above keys with #125 is the same relation of #125 and 2^125.

If you managed to solve #125, I'd like half of it, thanks.😉

If I subtract 000000000000000000000000000000000cfbcda3ac10c9714fbcda3ac10c9700 (in decimal = 17258173322322186415406806422000539392) from #125 (pubkey = 0233709eb11e0d4439a729f21c2c443dedb727528229713f0065721ba8fa46f00e)
then the result I get is:
0329ec62f37968906686bfad34ad5fdd9008fe187d868c0c4f9de1055b3062f00e

did you come up with:
0229ec62f37968906686bfad34ad5fdd9008fe187d868c0c4f9de1055b3062f00e

and then what are you subtracting cfbcda3ac10c9714fbcda3ac10c9700 from in your second comment? from 2^125, as in 1fffffffffffffffffffffffffffffff or some other number in hex?



This is 2^125-1= 1fffffffffffffffffffffffffffffff you just need to add 1 to it.
I didn't have  this
cfbcda3ac10c9714fbcda3ac10c9700
I just used the distance key between #125 and 2^125  aka 
0286936a275e6d53bb2b2718c93d8a5aa44f371f6e0300abb73b89dd851d2fbe88
As my target and got this
0229ec62f37968906686bfad34ad5fdd9008fe187d868c0c4f9de1055b3062f00e

Then I did some subtractions to reach this  cfbcda3ac10c9714fbcda3ac10c9700
Those keys above are closer to #125 more than you think.

If we take 2^125 as number 20, I believe this key
0286936a275e6d53bb2b2718c93d8a5aa44f371f6e0300abb73b89dd851d2fbe88

Is somewhere around 5 and 6. I hope it helps you. I have been trying to find a way to force be88 and #125 to show up with anything other than  20000000000000000000000000000000  aka true 2^125. But instead I got a #125 counterpart ( look alike).😅
1356  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: June 14, 2023, 08:09:39 AM


You're some kind of naive person)) Do you honestly think that Satoshi came up with some kind of magical thing called bitcoin? I'll tell you a secret - elliptic curves were engaged in 2000 BC in Iran)))
ECDSA and Secp256k1 - this is not invented by Satoshi!))
This is the encryption standard - the US National Security Agency - it has been used for many many years - to encrypt messages! This is mainly used by the military and special services!
What is the story of 2000 BC in iran, do you have any sources and names to provide please?
Of course militaries use elliptic curves for encryption, but I doubt if they use a publicly available curve for that purpose. And maybe Satoshi didn't invent the ECDSA, secp256k1 curve, but he was smart enough to use it in order to secure bitcoin.

Secp256k1 is purely a safe vault, with other characteristics and utilities. Satoshi just chose to lock the door of the bitcoin vault using a locking mechanism we call secp256k1.

Ps, I agree with you, I'm just a simpleton, doing simple stuff, saying simpler things.😉
1357  Bitcoin / Bitcoin Discussion / Re: == Bitcoin challenge transaction: ~1000 BTC total bounty to solvers! ==UPDATED== on: June 13, 2023, 08:51:18 PM
└─$ ./keyhunt -m bsgs -f tests/testpubkey.txt -k 1500 -S -t 10 -b 66
  • Version 0.2.230519 Satoshi Quest (legacy), developed by AlbertoBSD
  • K factor 1500
  • Threads : 10
  • Mode BSGS sequential
  • Opening file tests/testpubkey.txt
  • Added 1 points from file
  • Bit Range 66
  • -- from : 0x20000000000000000
  • -- to   : 0x40000000000000000
  • N = 0xfffb4000000
  • Bloom filter for 6291456000 elements : 21566.38 MB
  • Bloom filter for 196608000 elements : 673.95 MB
  • Bloom filter for 6144000 elements : 21.06 MB
  • Allocating 93.00 MB for 6144000 bP Points
  • processing 6291456000/6291456000 bP points : 100%     
  • Making checkums .. ... done
  • Sorting 6144000 elements... Done!
  • Writing bloom filter to file keyhunt_bsgs_4_6291456000.blm .... Done!
  • Writing bloom filter to file keyhunt_bsgs_6_196608000.blm .... Done!
  • Writing bP Table to file keyhunt_bsgs_2_6144000.tbl .. Done!
  • Writing bloom filter to file keyhunt_bsgs_7_6144000.blm .... Done!
  • Total 36893523135430656000 keys in 720 seconds: ~51 Pkeys/s (51241004354764800 keys/s)
End
Your precious key is not in this public key range.
Provide some more let's scan.
We will hit the key soon and share some funds too.

So you used around 20GB of RAM  for this scan or am I reading it wrong? I wouldn't waste my time with findings based on similarity of addresses, just because a public key has a somewhat similar address to another key which we know is in 66 bit range doesn't mean the key of that address is in the same bit range.  There could be billions of such addresses in 2^255+ range, should you go and search there if we find a look a like address in those ranges?

If solving a puzzle was that easy by just comparing addresses with each other!!! More equipped people would have taken the coins long ago.  Actually lowering the bit range down to 66 bit is as difficult as solving DLP.

Though if you have spare resources, I could ask to go for a certain key whenever I am sure about it's exact range.😉
1358  Bitcoin / Development & Technical Discussion / Re: Vulnerability: The curious case of the half-half Bitcoin ECDSA nonces on: June 13, 2023, 08:19:09 PM
Recently someone was trying to sell a script to halve nonces, maybe it is relates, he might have been russian or something.

This "half" thing has nothing to do with the user trying to "divide" the nonce integer by two, it's called half-half because the upper 128 bits of the nonce comes straight from the hash of the transaction, while the lower 128 bits comes straight from the private key. Even if that script they tried to sell worked as described, it would be useless when trying to figure out the transactions in this paper.
Thanks for the intel, I was under the impression that extracting anything related to the private key from a transaction or a signed message is not possible, or at least there is no useful data for extraction( cough, pooya, cough).

So indeed there is a way to find something out of a tx, or msg, it just goes back to the randomness and secure ways of generating private keys.

However, I would like to know, if it is possible to find something more about the private key from a tx than just having a public key? If there is, could I find something useful about a low range key such as a puzzle transaction challenge key with exposed public key?

Thanks again for your time and efforts to respond.
1359  Other / Serious discussion / Re: Reversible computing is the future. You need to know about this. on: June 13, 2023, 07:33:01 PM
Amazing, how can you read through ignored option? AFAIK, nobody quoted me, you are magic. Lol what is worthless is circcash and all other garbage coins out there.
You don't even know what a reversible computer actually is, you just resort to cussing and insulting because you have low self steam and think everybody dislikes you, hence your attitude  towards all community members is hostile, this could be the result of failing miserably to sell off your dead coin, but don't worry, maybe in another universe (which doesn't exist) you could find your luck and sell at least a single circcash just for the sake of appearances. Lol^256.



@digaran  you wrote: maybe in another universe (which doesn't exist) ,

answer: This is not consistent with any science, currently lacking confirmation or denial - it cannot be confirmed or denied. Quantum physics allows for the existence of multiple universes.
The laws of quantum physic are not applicable in the real world, and there is no space-time beyond the one universe we are in, there could be more in other dimensions which are hidden from our sight, but all the dimensions exist on the same plane of existence as we are. Things don't just come to existence randomly, everything was designed perfectly and the one God created the universe does not seem to do redundant and no use jobs, multiverse with different versions of us, or even with different creatures seems to have no practical use, since the one we are already in has more than enough space and resources to house trillion times more creatures than we could think of, but that is about another topic, this topic is about a new magical technology which only OP knows and cares about, a technology no one has ever heard of, just like some certain dead coin promoted by OP.

What started like an academic talk rapidly became a stream of insults and reproaches. Before reading the OP I also read the rules to post here, and I believed that comments would be on point, and the discussion serious (forgive the redundancy), or otherwise deleted.

I'm not a techie so I never heard about reversible computing before. The topic seems interesting and, although I don't understand many details in the opening post, I made an effort to keep reading. But you guys have completely ruined the discussion Angry
But you could ignore the members you don't like to read, also what is there to discuss? A theoretical  future technology which does not exist, just like warp engines, or anti-matter fueled space ships, we could discuss day and night about countless of such future techs, while discussing about easier to reach techs like quantum computers and their applications is more productive.

However I apologize if I distracted you from having a decent conversation.
1360  Economy / Services / Re: Shilling service on: June 13, 2023, 03:54:49 AM
Some of my past works :

Wow, whoa, WHOAA!
Cool!
 Cool

My team members resume :

Member number          their resume

1- Whoa, wow, WhOaA.
2- cool project.
3- cool story bro.
4- this is going to be interesting.
5- this is a gem.
6- I want to be on this rocket, destination moon! Wooohhhaaaa. (This team member is expensive than others due to longer comments).
7- I can't wait any longer.
8- my bags are full.
9- definitely going to moon.
10- this is so cheap, good for me!
11- watching this.
12- wow, whoa, WOW. ( you might wonder this is a second time, don't worry when we flood the thread with hundreds of comments, nobody would notice).
13- Guys I can tell this is a gem.
14- cool project bro. (Note the last one who said this didn't include "bro", so that counts as a totally different line).
15- buckle up people, moon here we come!
16- I smell scam. ( this is where we work on reverse psychology, it works like a charm, now look the next comment)
17- haters gonna hate! I see no scam here, if it was scam so many people wouldn't buy 99% of the ICO.
18- do you accept bank transfer?
19- this article from medium explains how a whale just bought $500 M ICO tokens using several identities, if the famous xxx invested $500 M on this, I'm certain about the success of this project.
20- seems scammy.
21- if it's a scam you are free to leave, let us buy this scam, I'll call you from moon soon!

The list of my team members is 10 times more than this, and I operate them all by myself, this is an expert band of shills, I am international actually.

This post just cost you $200, and $50 for each team member's comment, I give you 1 free to make your day! Now you need to pay up $1200, you can find my address in my profile,  I know a few Russian mobs, they have people all around the world, you either pay my $1200, or I will send them after you,  !!!! What? I can't hear you, did you really think if we work as shills to scam people, we wouldn't be willing to kill for money? This is on you,  you brought this upon yourself, now we will keep extorting you for the rest of your life! Lol in the order of the holy seven!


Pages: « 1 ... 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 52 53 54 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 ... 317 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!