inkadnb
Member
Offline
Activity: 126
Merit: 10
|
|
December 06, 2013, 10:38:49 AM |
|
the 100% premined coin, interesting concept....
Hmm your ignorance, interesting concept....
|
|
|
|
nexern
|
|
December 06, 2013, 10:46:18 AM |
|
nxt doing fine. blocks with fees are rising. number of accounts also. just added statistics, have a look: http://87.230.14.1/nxt/nxt.cgi?action=40ps: due to the courtesy of GCInc.(tickerapi) i can add btc/usd equivalents to the account balance today.
|
|
|
|
inkadnb
Member
Offline
Activity: 126
Merit: 10
|
|
December 06, 2013, 10:52:16 AM |
|
nxt doing fine. blocks with fees are rising. number of accounts also. just added statistics, have a look: http://87.230.14.1/nxt/nxt.cgi?action=40ps: due to the courtesy of GCInc.(tickerapi) i can add btc/usd equivalents to the account balance today. Great job!
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 06, 2013, 11:12:15 AM |
|
nxt doing fine. blocks with fees are rising. number of accounts also. just added statistics, have a look: http://87.230.14.1/nxt/nxt.cgi?action=40ps: due to the courtesy of GCInc.(tickerapi) i can add btc/usd equivalents to the account balance today. Could u fix this interface "bug"? NRS uses (block.baseTarget >= 100000 ? Math.round(block.baseTarget / 1000) : (block.baseTarget >= 10000 ? Math.round(block.baseTarget / 100) / 10 : (block.baseTarget >= 1000 ? Math.round(block.baseTarget / 10) / 100 : block.baseTarget / 1000))) + " %"; block.baseTarget is in 1000th of percent.
|
|
|
|
nexern
|
|
December 06, 2013, 11:15:27 AM |
|
nxt doing fine. blocks with fees are rising. number of accounts also. just added statistics, have a look: http://87.230.14.1/nxt/nxt.cgi?action=40ps: due to the courtesy of GCInc.(tickerapi) i can add btc/usd equivalents to the account balance today. Great job! thanks, dev question: anyone knows a ready to use plain c-lib for charting? otherwise i would use cairo by adding a dsl charting dialect on top of this but this would take some days, which would be better invest into a mining calculator. i think this one is important because many users here asking how much coins needed to mine a specific amount/day.
|
|
|
|
nexern
|
|
December 06, 2013, 11:23:41 AM Last edit: December 06, 2013, 11:43:13 AM by nexern |
|
Could u fix this interface "bug"? sure, have to revised the target data. block.baseTarget is in 1000th of percent. yes, i am not sure with the whole target and block generation algo atm. timediffs between blocks needs to consider also? will contact you later this day with some questions about this ;-) edit: nxt-bce -> baseTarget * 100 / 153722867
|
|
|
|
NxtChoice
|
|
December 06, 2013, 11:41:59 AM |
|
I have opened my account in one computer and try my luck to get some tx fees, so how about to opened it in another computer? Is it OK for PoS generation? Is those two are both forging at the same time, or only the latest one is ok and the old one is discarded?
Both will be forging. Yeah, great.
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 06, 2013, 11:44:57 AM |
|
I have opened my account in one computer and try my luck to get some tx fees, so how about to opened it in another computer? Is it OK for PoS generation? Is those two are both forging at the same time, or only the latest one is ok and the old one is discarded?
Both will be forging. Yeah, great. But the outcome will be the same as if only one was forging.
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 06, 2013, 11:50:30 AM |
|
@ Java gurus:I'm going to get rid of Serialization that's used to load/save data files. Would it be a good idea to use http://docs.oracle.com/javase/7/docs/api/java/nio/MappedByteBuffer.html? I thinking about mapping the files into the memory and leaving the rest for the OS. If a node is being shut down the OS will dump memory to the disk, right?
|
|
|
|
skyered
|
|
December 06, 2013, 12:16:37 PM |
|
Could someone simply explain for a newb how to secure my Nxt application?
- Do NOT run Nxt on a VPS. Only run Nxt locally. Even if you connect to your VPS securely via SSH, you are still not safe because all VPSs have backdoors. - 7874 (tcp) is used for P2P communication, the http web client and API commands. This is the only port that needs to be open to run Nxt. - 7875 (tcp) is used for the https web client.
|
|
|
|
bybitcoin
|
|
December 06, 2013, 12:40:22 PM |
|
I can no longer connect to my account using local 7875 port running the java client, only possible through 7874 peers port. Why?
|
|
|
|
klee
Legendary
Offline
Activity: 1498
Merit: 1000
|
|
December 06, 2013, 12:42:47 PM |
|
I can no longer connect to my account using local 7875 port running the java client, only possible through 7874 peers port. Why?
Tried httpS ?
|
|
|
|
bybitcoin
|
|
December 06, 2013, 01:16:19 PM |
|
I can no longer connect to my account using local 7875 port running the java client, only possible through 7874 peers port. Why?
Tried httpS ? Thank you klee, worked out with adding https! In general which is safer local7874 or local7875? By the way I am stuck at 8786 block for more than 30 minutes
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 06, 2013, 01:17:40 PM |
|
I can no longer connect to my account using local 7875 port running the java client, only possible through 7874 peers port. Why?
Tried httpS ? Thank you klee, worked out with adding https! In general which is safer local7874 or local7875? By the way I am stuck at 8786 block for more than 30 minutes I see block 9118. Delete peers.nxt and catch recent blocks.
|
|
|
|
bybitcoin
|
|
December 06, 2013, 01:18:31 PM |
|
I can no longer connect to my account using local 7875 port running the java client, only possible through 7874 peers port. Why?
Tried httpS ? Thank you klee, worked out with adding https! In general which is safer local7874 or local7875? By the way I am stuck at 8786 block for more than 30 minutes I see block 9118. Delete peers.nxt and catch recent blocks. In general which is safer local7874 or local7875?
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 06, 2013, 01:23:40 PM |
|
In general which is safer local7874 or local7875?
Both.
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 06, 2013, 01:40:40 PM |
|
W.T.F. ?
|
|
|
|
manrus
Legendary
Offline
Activity: 1334
Merit: 1004
TTM
|
|
December 06, 2013, 01:42:12 PM |
|
W.T.F. ? Troll admin from dgex ?
|
|
|
|
laowai80
Member
Offline
Activity: 98
Merit: 10
|
|
December 06, 2013, 01:42:35 PM |
|
back to normal now )
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 06, 2013, 01:48:30 PM |
|
Troll admin from dgex ?
Or leaked from the future. LOL.
|
|
|
|
|