Author

Topic: NXT :: descendant of Bitcoin - Updated Information - page 2370. (Read 2761626 times)

full member
Activity: 238
Merit: 100
Also, as a usability feature, it may be a good idea for the verify token api to also return the website field in the data it returns along with the account number.  This would make it much harder for someone to just copy a token and present it to someone as a short URL (that doesnt contain their userid/website in the display of the link) because then the person verifying the token may just look for the TRUE in the data that is returned.

If token contained a website this would create a big problem with privacy.
[/quote]


hm sounds like we have been using them for an unintended purpose, can you explain the intention of the token?

also, please answer this question:  assume we run 1 java instance of a non-hallmarked node on a PC.  1 user uses GUI to unlock and start forging.  They close their browser without locking back.  So they are still forging..  BUT what happens then if another user connects to that java instance and unlocks a different passphrase/account?  do both accounts begin forging off the same java instance?

Then, what are the implications if the node is hallmarked with the 1st account?
hero member
Activity: 905
Merit: 1001
is there an API for dgex? havent found anything. i want to draw some charts on cryptocoincharts but i need the last x trades and orderbook.


http://dgex.com/API/trades.json
http://dgex.com/API/trades24h.json

great thank you! orderbook would also be fine!!
full member
Activity: 168
Merit: 100
IDEX - LIVE Real-time DEX
is there an API for dgex? havent found anything. i want to draw some charts on cryptocoincharts but i need the last x trades and orderbook.


http://dgex.com/API/trades.json
http://dgex.com/API/trades24h.json
hero member
Activity: 905
Merit: 1001
is there an API for dgex? havent found anything. i want to draw some charts on cryptocoincharts but i need the last x trades and orderbook.
legendary
Activity: 2142
Merit: 1010
Newbie
What to do with "Too many open files"?

This link is handy. Bash shell example for Ubuntu here.


Thanks. But I have nothing running except Nxt, so am wondering if it should be addressed by settings within Nxt?

This may be fixed by settings within Jetty.
full member
Activity: 168
Merit: 100
IDEX - LIVE Real-time DEX
What to do with "Too many open files"?

This link is handy. Bash shell example for Ubuntu here.


Thanks. But I have nothing running except Nxt, so am wondering if it should be addressed by settings within Nxt?

That error is caused by Nxt to being able to open any more "files" (aka tcp connections) due to operating system limits.

You can see the limit with this command:
Code:
$ ulimit -n

I think the only fix is limit connections in NXT or increase open file limits.


legendary
Activity: 2142
Merit: 1010
Newbie
This is a bit disconcerting.  Would it be possible to move the API and nonsecure GUI to 7876?  That way people can still run public nodes w/o exposing their API and non-secure GUI.

Unfortunatelly, no. This is a limitation of Java servlets.


Also, as a usability feature, it may be a good idea for the verify token api to also return the website field in the data it returns along with the account number.  This would make it much harder for someone to just copy a token and present it to someone as a short URL (that doesnt contain their userid/website in the display of the link) because then the person verifying the token may just look for the TRUE in the data that is returned.

If token contained a website this would create a big problem with privacy.
sr. member
Activity: 252
Merit: 250
What to do with "Too many open files"?

This link is handy. Bash shell example for Ubuntu here.


Thanks. But I have nothing running except Nxt, so am wondering if it should be addressed by settings within Nxt?
sr. member
Activity: 252
Merit: 250
I have 2 people atm starting to implement an Android wallet so I am very interested in finding more funds except me...

How much do you need? I have an open pledge here that could be used.
https://docs.google.com/spreadsheet/ccc?key=0AgAGADgnQcrtdHRrV3V3Z1lzOXVEMWtqdElUaEtqV1E#gid=2
full member
Activity: 168
Merit: 100
IDEX - LIVE Real-time DEX
What to do with "Too many open files"?

This link is handy. Bash shell example for Ubuntu here.
member
Activity: 98
Merit: 10
What to do with "Too many open files"?

Code:
        at org.eclipse.jetty.server.AbstractConnector$Acceptor.run(AbstractConnector.java:466)
        at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:607)
        at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:536)
        at java.lang.Thread.run(Unknown Source)
2013-12-17 13:14:21.693:WARN:oejs.ServerConnector:qtp9336124-29-acceptor-0-ServerConnector@f4e9d3{SSL-http/1.1}{0.0.0.0:7875}:
java.io.IOException: Too many open files
        at sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method)
        at sun.nio.ch.ServerSocketChannelImpl.accept(Unknown Source)
        at org.eclipse.jetty.server.ServerConnector.accept(ServerConnector.java:336)
        at org.eclipse.jetty.server.AbstractConnector$Acceptor.run(AbstractConnector.java:466)
        at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:607)
        at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:536)
        at java.lang.Thread.run(Unknown Source)

check this out maybe:

http://docs.basho.com/riak/latest/ops/tuning/open-files-limit/#Linux
sr. member
Activity: 252
Merit: 250
What to do with "Too many open files"?

Code:
        at org.eclipse.jetty.server.AbstractConnector$Acceptor.run(AbstractConnector.java:466)
        at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:607)
        at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:536)
        at java.lang.Thread.run(Unknown Source)
2013-12-17 13:14:21.693:WARN:oejs.ServerConnector:qtp9336124-29-acceptor-0-ServerConnector@f4e9d3{SSL-http/1.1}{0.0.0.0:7875}:
java.io.IOException: Too many open files
        at sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method)
        at sun.nio.ch.ServerSocketChannelImpl.accept(Unknown Source)
        at org.eclipse.jetty.server.ServerConnector.accept(ServerConnector.java:336)
        at org.eclipse.jetty.server.AbstractConnector$Acceptor.run(AbstractConnector.java:466)
        at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:607)
        at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:536)
        at java.lang.Thread.run(Unknown Source)
full member
Activity: 378
Merit: 104
Anyone got an idea on the future price of 1 NXT, could it ever reach a BTC?  Lips sealed
full member
Activity: 238
Merit: 100
so regarding the TCP ports, it appears 7876 is not longer even listening for connections?  It looks like 7876 is now gone and all APIs are now on the p2p port 7874?

It also appears the non-secure http GUI is available on the p2p port.

This is a bit disconcerting.  Would it be possible to move the API and nonsecure GUI to 7876?  That way people can still run public nodes w/o exposing their API and non-secure GUI.

Also, as a usability feature, it may be a good idea for the verify token api to also return the website field in the data it returns along with the account number.  This would make it much harder for someone to just copy a token and present it to someone as a short URL (that doesnt contain their userid/website in the display of the link) because then the person verifying the token may just look for the TRUE in the data that is returned.

which brings me to this.  EVERYONE NEEDS TO TRASH THEIR CURRENT TOKENS AND REDO IT USING THE FORMAT USERNAME@DOMAIN.  THE CURRENT METHOD OF DOING IT WITH JUST USERNAME ISNT 100% SAFE

ie [email protected]
or [email protected]
hero member
Activity: 672
Merit: 500

I dont think that is the real answer to the question they were looking for. That is bitcoin and not Nxt.

The real answer is probably yes to the question.

Bitcoin early adopters still had to mine their coins. Nxt founders did not have to mine their coins.
Nxt founders risked some btc when your mouth has been busy trolling somewhere else!
The amount btc early adopters had paid for mining something in existence and processing were almost the same amount in fiat, that we has paid for funding something which was not even clear to come out of the dark or not (and all of you had the same opportunity)
So stop whining, buy some, or if you find it not useful, move over to another one fitting your preferences!



YOU my friend are trolling me, I only answered a question that someone posted. Check yourself before flaming me for giving a truthful answer. Truth defends itself.

Do genesis block owners still hold +50% of the total market cap?

The original 73 accounts from the genesis block transactions have a total balance of 286009248 nxt.
28.6%

Satoshi still has about 8% of total BTC network after FIVE FUCKING YEARS!!!

Now go buy some DOGEcoins or 'pre-order' some ASICs or waste money in GPU+electricity...

Why are you guys so angry?
hehe, really typical!
legendary
Activity: 1498
Merit: 1000

I dont think that is the real answer to the question they were looking for. That is bitcoin and not Nxt.

The real answer is probably yes to the question.

Bitcoin early adopters still had to mine their coins. Nxt founders did not have to mine their coins.
Nxt founders risked some btc when your mouth has been busy trolling somewhere else!
The amount btc early adopters had paid for mining something in existence and processing were almost the same amount in fiat, that we has paid for funding something which was not even clear to come out of the dark or not (and all of you had the same opportunity)
So stop whining, buy some, or if you find it not useful, move over to another one fitting your preferences!



YOU my friend are trolling me, I only answered a question that someone posted. Check yourself before flaming me for giving a truthful answer. Truth defends itself.

Do genesis block owners still hold +50% of the total market cap?

The original 73 accounts from the genesis block transactions have a total balance of 286009248 nxt.
28.6%

Satoshi still has about 8% of total BTC network after FIVE FUCKING YEARS!!!

Now go buy some DOGEcoins or 'pre-order' some ASICs or waste money in GPU+electricity...

Why are you guys so angry?
Because I hate cliches..
member
Activity: 75
Merit: 10

I dont think that is the real answer to the question they were looking for. That is bitcoin and not Nxt.

The real answer is probably yes to the question.

Bitcoin early adopters still had to mine their coins. Nxt founders did not have to mine their coins.
Nxt founders risked some btc when your mouth has been busy trolling somewhere else!
The amount btc early adopters had paid for mining something in existence and processing were almost the same amount in fiat, that we has paid for funding something which was not even clear to come out of the dark or not (and all of you had the same opportunity)
So stop whining, buy some, or if you find it not useful, move over to another one fitting your preferences!



YOU my friend are trolling me, I only answered a question that someone posted. Check yourself before flaming me for giving a truthful answer. Truth defends itself.

Do genesis block owners still hold +50% of the total market cap?

The original 73 accounts from the genesis block transactions have a total balance of 286009248 nxt.
28.6%

Satoshi still has about 8% of total BTC network after FIVE FUCKING YEARS!!!

Now go buy some DOGEcoins or 'pre-order' some ASICs or waste money in GPU+electricity...

Why are you guys so angry?
legendary
Activity: 1498
Merit: 1000

I dont think that is the real answer to the question they were looking for. That is bitcoin and not Nxt.

The real answer is probably yes to the question.

Bitcoin early adopters still had to mine their coins. Nxt founders did not have to mine their coins.
Nxt founders risked some btc when your mouth has been busy trolling somewhere else!
The amount btc early adopters had paid for mining something in existence and processing were almost the same amount in fiat, that we has paid for funding something which was not even clear to come out of the dark or not (and all of you had the same opportunity)
So stop whining, buy some, or if you find it not useful, move over to another one fitting your preferences!



YOU my friend are trolling me, I only answered a question that someone posted. Check yourself before flaming me for giving a truthful answer. Truth defends itself.

Do genesis block owners still hold +50% of the total market cap?

The original 73 accounts from the genesis block transactions have a total balance of 286009248 nxt.
28.6%

Satoshi still has about 8% of total BTC network after FIVE FUCKING YEARS!!!

Now go buy some DOGEcoins or 'pre-order' some ASICs or waste money in GPU+electricity...
hero member
Activity: 672
Merit: 500

I dont think that is the real answer to the question they were looking for. That is bitcoin and not Nxt.

The real answer is probably yes to the question.

Bitcoin early adopters still had to mine their coins. Nxt founders did not have to mine their coins.
Nxt founders risked some btc when your mouth has been busy trolling somewhere else!
The amount btc early adopters had paid for mining something in existence and processing were almost the same amount in fiat, that we has paid for funding something which was not even clear to come out of the dark or not (and all of you had the same opportunity)
So stop whining, buy some, or if you find it not useful, move over to another one fitting your preferences!



YOU my friend are trolling me, I only answered a question that someone posted. Check yourself before flaming me for giving a truthful answer. Truth defends itself.




Typical!
member
Activity: 75
Merit: 10

I dont think that is the real answer to the question they were looking for. That is bitcoin and not Nxt.

The real answer is probably yes to the question.

Bitcoin early adopters still had to mine their coins. Nxt founders did not have to mine their coins.
Nxt founders risked some btc when your mouth has been busy trolling somewhere else!
The amount btc early adopters had paid for mining something in existence and processing were almost the same amount in fiat, that we has paid for funding something which was not even clear to come out of the dark or not (and all of you had the same opportunity)
So stop whining, buy some, or if you find it not useful, move over to another one fitting your preferences!



YOU my friend are trolling me, I only answered a question that someone posted. Check yourself before flaming me for giving a truthful answer. Truth defends itself.



Jump to: