Bitcoin Forum
May 24, 2024, 11:54:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3] 4 »  All
  Print  
Author Topic: (ANN)(PRERELEASE) - parabolas - launching with pools, faucets-YOU can contribute  (Read 9032 times)
x^2 (OP)
Member
**
Offline Offline

Activity: 73
Merit: 10


y=x^2 is a parabola


View Profile WWW
August 30, 2013, 05:22:22 PM
 #41

Shoot me a PM when you think Parabolas are ready for an exchange. I can pull some strings Wink

Thanks!  Will do.

A parabola (plural parabolas or parabolae, adjective parabolic, from Greek: παραβoλή) is a two-dimensional, mirror-symmetrical curve.  y = x2
ranmn7
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
August 30, 2013, 05:58:16 PM
 #42

watch
GoldBit89
Hero Member
*****
Offline Offline

Activity: 526
Merit: 500


Its all about the Gold


View Profile
August 30, 2013, 06:40:36 PM
 #43

reserved Smiley

FTC  6nvzqqaCEizThvgMeC86MGzhAxGzKEtNH8 |WDC WckDxipCes2eBmxrUYEhrUfNNRZexKuYjR  |BQC bSDm3XvauqWWnqrxfimw5wdHVDQDp2U8XU
BOT EjcroqeMpZT4hphY4xYDzTQakwutpnufQR |BTG geLUGuJkhnvuft77ND6VrMvc8vxySKZBUz |LTC  LhXbJMzCqLEzGBKgB2n73oce448BxX1dc4
BTC 1JPzHugtBtPwXgwMqt9rtdwRxxWyaZvk61  |ETH 0xA6cCD2Fb3AC2450646F8D8ebeb14f084F392ACFf
ZirconiumX
Full Member
***
Offline Offline

Activity: 286
Merit: 100



View Profile
August 30, 2013, 07:48:12 PM
 #44

You mean like this?

Matthew:out

May I be a contributor?  My username is Smeagol-Gollum on github.

Edit:  I submitted a couple of pull requests, you should see me now!



Merged.

Matthew:out

Seriously, forum? I post three times in a row and it still doesn't accept the post  Angry

I will download the repo and do a find and replace from bitcoin to parabola

Hmm.  I tried to submit a pull request to merge but instead I just forked it onto my account.  (here: https://github.com/Smeagol-Gollum/parabola)
All the names are changed.  If you can, please download the .zip and add it to your repository!  I don't know how to merge them.

Merge conflict.

Given the blatant find and replace, I did it manually. This does throw all of your commits off track of the master, so the best thing to do would be revert them, then do a fresh pull on master.

Matthew:out
x^2 (OP)
Member
**
Offline Offline

Activity: 73
Merit: 10


y=x^2 is a parabola


View Profile WWW
August 30, 2013, 10:12:33 PM
 #45

I'm bumping for services and devs.  Remember, if you contribute you will be given a share of the 5% dev fund.

A parabola (plural parabolas or parabolae, adjective parabolic, from Greek: παραβoλή) is a two-dimensional, mirror-symmetrical curve.  y = x2
ZirconiumX
Full Member
***
Offline Offline

Activity: 286
Merit: 100



View Profile
September 02, 2013, 06:22:54 PM
 #46

One thing I've realised. All of the AES candidates are based around encryption from a key. If we go for a quark-style hash system, then if we are being secure, we need 14 different keys.

Something for donators to suggest?

Matthew:out
smeagol
Legendary
*
Offline Offline

Activity: 1008
Merit: 1005



View Profile
September 03, 2013, 09:11:31 PM
 #47

One thing I've realised. All of the AES candidates are based around encryption from a key. If we go for a quark-style hash system, then if we are being secure, we need 14 different keys.

Something for donators to suggest?

Matthew:out

Are we doing the random hashing algos too? (like first sha, then whirlpool, then md5, then random, then random again)
x^2 (OP)
Member
**
Offline Offline

Activity: 73
Merit: 10


y=x^2 is a parabola


View Profile WWW
September 03, 2013, 11:40:51 PM
 #48

One thing I've realised. All of the AES candidates are based around encryption from a key. If we go for a quark-style hash system, then if we are being secure, we need 14 different keys.

Something for donators to suggest?

Matthew:out

Should I start a donation fund?

A parabola (plural parabolas or parabolae, adjective parabolic, from Greek: παραβoλή) is a two-dimensional, mirror-symmetrical curve.  y = x2
ZirconiumX
Full Member
***
Offline Offline

Activity: 286
Merit: 100



View Profile
September 04, 2013, 10:02:04 AM
 #49

One thing I've realised. All of the AES candidates are based around encryption from a key. If we go for a quark-style hash system, then if we are being secure, we need 14 different keys.

Something for donators to suggest?

Matthew:out

Should I start a donation fund?

If you want to. I'm not forcing you to.

One thing I've realised. All of the AES candidates are based around encryption from a key. If we go for a quark-style hash system, then if we are being secure, we need 14 different keys.

Something for donators to suggest?

Matthew:out

Are we doing the random hashing algos too? (like first sha, then whirlpool, then md5, then random, then random again)

As far as I can work out, each pass of Quark's "random hashing" simply checks whether the least significant 3 bits in the second most significant 32-bit word are zero. If they are, then it runs one hashing algo, else, it runs a different one. It screws PGO massively.

I like your idea, but I think we can make a different scheme which makes optimisation even more awkward.

Some pseudocode:

Code:
void Hash(int* input, int* output)
{
   imt mask = 8;
   int i = 0;

   for (; i < 8; i++) {
      switch (input[5] & 8) {
      case 0:
         Rijndael(input, input);
      case 1:
         Square(input, input);
      case 2:
         Serpent(input, input);
         break;
      case 3:
         RC6(input, input);
      case 4:
         MARS(input, input);
      case 5:
         Twofish(input, input);
         break;
      case 6:
         Twofish(input, input);
      case 7:
         Rotate256(input, input, 3);
   }

    memcpy(...);
}

That ought to make GPU mining difficult. With up to 24 rounds of pseudorandom hashing algos, and a rotate in there for good measure, it may well make CPU mining difficult, too.

Matthew:out
Lauda
Legendary
*
Offline Offline

Activity: 2674
Merit: 2965


Terminated.


View Profile WWW
September 04, 2013, 04:12:10 PM
 #50

Just make sure that a GPU miner can't be made easily. *Points at XPM*

"The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"
😼 Bitcoin Core (onion)
x^2 (OP)
Member
**
Offline Offline

Activity: 73
Merit: 10


y=x^2 is a parabola


View Profile WWW
September 04, 2013, 07:30:09 PM
 #51

Just make sure that a GPU miner can't be made easily. *Points at XPM*

Nice, this is turning out quite well!  Thank you to all for your support!

I was just wondering if there was a way to implement the "parabola" part!

A parabola (plural parabolas or parabolae, adjective parabolic, from Greek: παραβoλή) is a two-dimensional, mirror-symmetrical curve.  y = x2
smeagol
Legendary
*
Offline Offline

Activity: 1008
Merit: 1005



View Profile
September 04, 2013, 07:36:25 PM
 #52

https://github.com/ZirconiumX/parabola/blob/master/client/src/hash.cpp

Looking around the code, maybe this will help?
x^2 (OP)
Member
**
Offline Offline

Activity: 73
Merit: 10


y=x^2 is a parabola


View Profile WWW
September 05, 2013, 02:48:27 PM
 #53

op updated

A parabola (plural parabolas or parabolae, adjective parabolic, from Greek: παραβoλή) is a two-dimensional, mirror-symmetrical curve.  y = x2
theprofileth
Full Member
***
Offline Offline

Activity: 239
Merit: 100

Socialist Cryptocurrency Devote


View Profile
September 05, 2013, 06:44:30 PM
 #54

Have you considered adding proof of stake to help further secure the network?
Also why not add in parabolic difficulty adjustments done on a per block basis coupled with a parabolic reward to stifle instant mining.
ZirconiumX
Full Member
***
Offline Offline

Activity: 286
Merit: 100



View Profile
September 05, 2013, 07:55:25 PM
 #55

Have you considered adding proof of stake to help further secure the network?
Also why not add in parabolic difficulty adjustments done on a per block basis coupled with a parabolic reward to stifle instant mining.

My family has an expression: "First get something that works, then get something that works well."

We have currently got nothing more than a bitcoin clone at the moment. We haven't even worked out how to change the block magic number yet.

When we get a testnet up and running, then we'll think about things like PoS.

Matthew:out
smeagol
Legendary
*
Offline Offline

Activity: 1008
Merit: 1005



View Profile
September 05, 2013, 09:22:32 PM
 #56

Have you considered adding proof of stake to help further secure the network?
Also why not add in parabolic difficulty adjustments done on a per block basis coupled with a parabolic reward to stifle instant mining.

My family has an expression: "First get something that works, then get something that works well."

We have currently got nothing more than a bitcoin clone at the moment. We haven't even worked out how to change the block magic number yet.

When we get a testnet up and running, then we'll think about things like PoS.

Matthew:out

This helped me a lot!
https://andarazoroflove.org/how-to-create-alt-coin-scrypt-clones-for-fun-and-profit-bitcoin-litecoin-secrets-exposed/
theprofileth
Full Member
***
Offline Offline

Activity: 239
Merit: 100

Socialist Cryptocurrency Devote


View Profile
September 06, 2013, 11:36:32 AM
 #57

Why would you fork it from bitcoin if you are considering using multiple hashing algorithms to help secure the coin? Might as well fork from Quark or Secure Coin.
ZirconiumX
Full Member
***
Offline Offline

Activity: 286
Merit: 100



View Profile
September 06, 2013, 05:14:53 PM
 #58

Why would you fork it from bitcoin if you are considering using multiple hashing algorithms to help secure the coin? Might as well fork from Quark or Secure Coin.

Because we'd rather be a fork, than a fork of a fork of a fork.

That's the *actual* reason.

Bitcoin's codebase is more modern, anyway.

Matthew:out
x^2 (OP)
Member
**
Offline Offline

Activity: 73
Merit: 10


y=x^2 is a parabola


View Profile WWW
September 06, 2013, 09:56:28 PM
 #59

We've got an exchange and pool committee, anyone up for a faucet or store?

Also we might get coinpayments to accept us.

A parabola (plural parabolas or parabolae, adjective parabolic, from Greek: παραβoλή) is a two-dimensional, mirror-symmetrical curve.  y = x2
smeagol
Legendary
*
Offline Offline

Activity: 1008
Merit: 1005



View Profile
September 07, 2013, 12:15:50 AM
 #60

Why would you fork it from bitcoin if you are considering using multiple hashing algorithms to help secure the coin? Might as well fork from Quark or Secure Coin.

Because we'd rather be a fork, than a fork of a fork of a fork.

That's the *actual* reason.

Bitcoin's codebase is more modern, anyway.

Matthew:out

We could look at Freicoin.  Apparently the demmurage goes back to the foundation (which, in this case, would be us)
Pages: « 1 2 [3] 4 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!