Author

Topic: [ANN] [ASIC-RESISTANT] UltraCoin (UTC) - Ultrafast 6 second transactions!! - page 384. (Read 946654 times)

hero member
Activity: 668
Merit: 500
At what point does it become pointless to use our GPUs?

If the current n-factor gives me 120/150 KH/s for my 280Xs/290, the next will be be 60/75 and then 30/38. I will still be able to mine the same number of coins with these hash rates? Just trying to figure out how long my 4 280Xs and one 290 have got with this coin/scrypt.

You will still get as much coins as u do now, unless ultracoin gains popularity and attracts more miners.
But after a few more N factor increasese, it will be more cost effective to CPU mine this coin.
If there is a CPU miner by then ofcourse...
sr. member
Activity: 322
Merit: 250
I'm no more sure I want UTC CPU-minable after seeing what happen at Heavycoin...

newbie
Activity: 23
Merit: 0
At what point does it become pointless to use our GPUs?

If the current n-factor gives me 120/150 KH/s for my 280Xs/290, the next will be be 60/75 and then 30/38. I will still be able to mine the same number of coins with these hash rates? Just trying to figure out how long my 4 280Xs and one 290 have got with this coin/scrypt.
member
Activity: 80
Merit: 10
We are steady at 2x on crypto-trade.com but on cryptsy.com at lower price. We must concentral on tradition crypto-trade only to keep our future go up little by one. We must up there.
hero member
Activity: 938
Merit: 1000
@halofirebtc
After this n-factor, won't be in our best interest to mine it anymore with slower cards. 280's and 290's, 7950, 7970, and cpu's....
hero member
Activity: 668
Merit: 500
Bumface, is ziggy doing anything at all about the CPU mining problem?
full member
Activity: 168
Merit: 100
Really loving the increase my buying power!

I think it would of been better for UTC if everyone added it on a Monday rather than Friday as the weekend is often slow..

Love seeing it about 20 again! Everyone Hold your strong hands!
member
Activity: 86
Merit: 10
full member
Activity: 135
Merit: 100
Buy Support went up by 500% on Crypto-Trade the last 24hours ^^

Yeah and very nice slow price increase. Please keep it slow and steady. We should avoid aggresive pumps.

sorry its more like 1000% :-) i forgot the massiv buy support on usd and ltc

told you buy cheap before its to late. Slow and steady, so everyone has the oppertunity to buy some cheap coins ... ya all be warned...
newbie
Activity: 28
Merit: 0
Buy Support went up by 500% on Crypto-Trade the last 24hours ^^

Yeah and very nice slow price increase. Please keep it slow and steady. We should avoid aggresive pumps.

sorry its more like 1000% :-) i forgot the massiv buy support on usd and ltc
full member
Activity: 143
Merit: 100
Buy Support went up by 500% on Crypto-Trade the last 24hours ^^

Yeah and very nice slow price increase. Please keep it slow and steady. We should avoid aggresive pumps.
newbie
Activity: 28
Merit: 0
Buy Support went up by 500% on Crypto-Trade the last 24hours ^^
full member
Activity: 182
Merit: 100
LHM thanks for your recap !  Wink
sr. member
Activity: 298
Merit: 250
Deal All,

Think what we need to do with the UTC promotion is also make a proffesional video for ultracoin with how fast it is!!
and that people see it in the movie en comparison to BTC, LTC.
Think if that will go around facebook en twitter we get some new UTC lovers!!
LHM
newbie
Activity: 26
Merit: 0
I would like to include the NFactor count down in block explorer.

I remember someone post kind of JAVA code for generating NFactor check points before (not the mm/dd/yyyy format in official website but in unix time stamp) Searched for a while but can not find it.

Could the author pls post again? Wink

Some of the things that I think bumface/ziggy needs to do from my point of view:

1. Explain more about the N-factor. MANY people does not know about this.

We need to know the dates of when the N-factor changes for UTC and what that implies.
It's a BIG part of UTC so I don't understand how this is not explained on the OP from day 1.
bumface, you told me you'll speak to ziggy about this 3 days ago? What happened?

I'll post my N-factor timetable again, derived from the code in https://github.com/ziggy909/ultracoin/blob/master/src/main.cpp starting at line 994. I made a little javascript loop with the same calculations starting with Ultracoins sj-time.

Code:
var sjtime = 1388361600;
var Ntime;
var l = 0;
var seconds = 0;
var s = 0;
var n = 0;
var N = 0;
var last = 8; // no output until N=9

while (seconds < 12884901888)
{
    seconds += 1;
    s = seconds;
    l = 0;
    n = 0;
    N = 0;

    while ((s >> 1) > 3)
    {
      l += 1;
      s >>= 1;
    }

    s &= 3;
    n = (l * 170 + s * 25 - 2320) / 100;
    if (n < 0) n = 0;
    N = Math.floor(n);

    if (N > last)
    {
    last = N;
    Ntime = new Date(sjtime*1000 + seconds*1000);
    //print("N-Factor :" + N + " significant digits :" + l + " leftovers :" + s + " raw N :" + n + " Seconds from start :" + seconds);
    print("N-Factor :" + N + " Date :" + Ntime.toUTCString());
    }
}

This is the output (i used a javascript console bookmarklet in firefox, it shut down the script before it got past N-factor 17)

Code:
N-Factor :9    Date :Thu, 23 Jan 2014 06:32:32 GMT
N-Factor :10   Date :Sun, 16 Feb 2014 13:05:04 GMT
N-Factor :11   Date :Fri, 28 Feb 2014 16:21:20 GMT
N-Factor :12   Date :Sun, 06 Apr 2014 02:10:08 GMT
N-Factor :13   Date :Sat, 24 May 2014 15:15:12 GMT
N-Factor :14   Date :Sat, 12 Jul 2014 04:20:16 GMT
N-Factor :15   Date :Thu, 22 Jan 2015 08:40:32 GMT
N-Factor :16   Date :Wed, 29 Apr 2015 10:50:40 GMT
N-Factor :17   Date :Sun, 14 Feb 2016 17:21:04 GMT

The next N-factor increase should be on the 28th of this month.

there is this that i posted, however the javascript code will kill your browser and is not suitable for a web page, the best way to really do this would be to take the original chart and add 1388361600 to the first number in each range, to get javascript to display a unix timestamp as a date you need to multiply by 1000, javascript goes by miliseconds. i can probably put together something that just puts the numbers into an array and spits out the timestamp or date for the next n-factor if you would like.
hero member
Activity: 728
Merit: 501
I would like to include the NFactor count down in block explorer.

I remember someone post kind of JAVA code for generating NFactor check points before (not the mm/dd/yyyy format in official website but in unix time stamp) Searched for a while but can not find it.

Could the author pls post again? Wink

thats a good idea  Grin
full member
Activity: 199
Merit: 100
Weird behavior... like after few hours the WU hashrate drops from 800+ to 600+.

I have to restart to become normal again.

 Undecided
member
Activity: 95
Merit: 10
Since my rig doesn't seem to like Utc anymore, what is the best coin to mine right now to turn into Utc?
full member
Activity: 182
Merit: 100
I would like to include the NFactor count down in block explorer.

I remember someone post kind of JAVA code for generating NFactor check points before (not the mm/dd/yyyy format in official website but in unix time stamp) Searched for a while but can not find it.

Could the author pls post again? Wink
legendary
Activity: 1638
Merit: 1011
jakiman is back!
Why not introduce "the" Richard Branson to Ultracoin? So I did.  Grin

https://twitter.com/jakimanboy/status/443010271519330304
Jump to: