Author

Topic: NXT :: descendant of Bitcoin - Updated Information - page 742. (Read 2761644 times)

hero member
Activity: 715
Merit: 500
how to run 0.8.0e in windows. I can't get this to work? thx
- just make run.bat (or start.bat or whatever):
Code:
java -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt

Thanks

Correct start.bat

"C:\Program Files\Java\jdk1.7.0_51\bin\java.exe"  -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt

For me the correct start.bat file is:

"c:\Program Files (x86)\Java\jre7\bin\java.exe"  -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt


that work for me too.
sr. member
Activity: 756
Merit: 250
how to run 0.8.0e in windows. I can't get this to work? thx
- just make run.bat (or start.bat or whatever):
Code:
java -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt

Thanks

Correct start.bat

"C:\Program Files\Java\jdk1.7.0_51\bin\java.exe"  -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt

For me the correct start.bat file is:

"c:\Program Files (x86)\Java\jre7\bin\java.exe"  -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt
legendary
Activity: 2142
Merit: 1010
Newbie
Damn these Doge bastards are good! (at having fun anyways)

http://youtu.be/jUpW18Exw8g

We should have a party too...

full member
Activity: 168
Merit: 100
Damn these Doge bastards are good! (at having fun anyways)

http://youtu.be/jUpW18Exw8g
full member
Activity: 238
Merit: 100
** Exchange Swarm -Let's get everyone to spend just a few minutes to push Nxt forward **


Please record your results here:

https://docs.google.com/spreadsheet/ccc?key=0AuputZyRQ5-5dDNCVGdRME9tVTBzVUdHb3VXTC04QWc&usp=sharing


Please contact the following exchanges and let them know why adding Nxt is a great idea.


1. Bittrex

"
Here is the reddit post, please everyone sign up at Bittrex.

Hello NXT community,

I solicited feedback on another thread about which coins we should support on our exchange before our public launch. NXT was overwhelmingly recommended.

Before we make the final decision, we're providing a special invite code for NXT users to experience our site first hand. Go to https://bittrex.com/Account/Register and use SUPPORT_NXT as the invite code. This gets you past the invite code queue. Place some trades, enabled 2FA, or try any of our other features to help us stress the site before the final launch. If you find a bug, we're handing out bug bounties as well. Having a great exchange helps us but also helps the NXT community.

If we get 100 signs ups using that code and active on our site, we'll add NXT before our public launch.

Please let me know if you have any questions or feedback, Bill"  - Msin

"Everyone remember to add SUPPORT_NXT as the invite code so we get NXT added " - Wakasaki808



2. BTC38

"+1 on this.  btc38 is a BIG DEAL in China.  It would be as big as getting on Cryptsy.  Access the link in Chrome for automatic English translation." - RickyJames

"all of us,please come here vote for Nxt to let the btc38(an exchange platform of China) add Nxt to their database.

http://www.coin38.org/forum.php?mod=viewthread&tid=1672

It is a good chance for Nxt promotion.
Nxt is on the 18 floor.

edit:new user need to change the avatar first.
TKS." - allwelder

** Contact Info **

http://www.coin38.org/forum.php
[email protected]
[email protected]


3. Kraken

[email protected]


4. Bitfinex

[email protected]
[email protected]


5 mcxNow

[email protected]


6. VirWox

[email protected]


7. FxBTC

[email protected]


8. BTC-e

It's nearly impossible to get more than a 'not planned' response with BTC-e. I understand they receive quite a few coin requests each day.  If you're interested in talking about Nxt:

https://bitcointalk.org/index.php?topic=433283.new#new

Done. Keep up a good work all! Smiley
legendary
Activity: 1092
Merit: 1010
Over a 100 new members on the /r/Nxt subreddit this week and over 19,000 views this month, of which 3500+ uniques.

We could still use some more technical people having a look in more often to field some questions. There are users on there that don't visit the forums or this thread. Smiley
sr. member
Activity: 460
Merit: 250

bitcoinxt.net have been around for a couple weeks, they are based in Spain and they were the first (afaik) in offering EUR > NXT with acceptable prices. Check @PlayZoeDoGaM in twitter.
hero member
Activity: 490
Merit: 504
sr. member
Activity: 421
Merit: 250
HEAT Ledger
JeanLuc,

Could you maybe put the Thread instance you pass to Runtime.getRuntime().addShutdownHook in a public property, this way a client has to ability to remove the Thread instance by calling Runtime.getRuntime.removeShutdownHook.
Use case refers to my previous topic where i want to control the shutdown process my self.
member
Activity: 112
Merit: 10
how to run 0.8.0e in windows. I can't get this to work? thx
- just make run.bat (or start.bat or whatever):
Code:
java -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt

Thanks

Correct start.bat

"C:\Program Files\Java\jdk1.7.0_51\bin\java.exe"  -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt
sr. member
Activity: 421
Merit: 250
HEAT Ledger
JeanLuc,

In order to visualize the shutdown process in the client i can either listen for log messages (kinda hackish) to determine that some component has shutdown, or mimic what you do in Nxt.shutdown (call XXX.shutdown myself) but that might lead to undesired effects once the vm shutdownHandler kicks in. Or ... maybe you could add some more events, i think the most time consuming actions are Peers.shutdown and Db.shutdown.
Ideal would be if clients could determine how long the task is and be notified of the amount of work done, the shutdown progress could then be shown in a deterministic progressbar.

Looking at Db.shutdown this would require a listener registered with H2 (with which i'm not familiar) to listen to the COMPACT progress, so not sure if that could be done (for the future if the blockchain grows, i believe you do want to show detailed shutdown progress).

The Peers.shutdown and ThreadPool.shutdown would however be perfect for some kind of fine grained notification that tells you the number of threads that are awaiting shutdown and notifies you each time one has shutdown.

BTW. I can now perfectly display startup progress with the events you added!

-Edit- Looks like it might be possible http://www.h2database.com/javadoc/org/h2/api/DatabaseEventListener.html it supports progress for scanning the database on startup for sure, but that is also handled by sending block added events.
hero member
Activity: 715
Merit: 500
how to run 0.8.0e in windows. I can't get this to work? thx
- just make run.bat (or start.bat or whatever):
Code:
java -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt

Ok, it start now. Is there a default web interface like before? Now it look like the alias webpage.
member
Activity: 98
Merit: 10
** Exchange Swarm -Let's get everyone to spend just a few minutes to push Nxt forward **


Please record your results here:

https://docs.google.com/spreadsheet/ccc?key=0AuputZyRQ5-5dDNCVGdRME9tVTBzVUdHb3VXTC04QWc&usp=sharing


Please contact the following exchanges and let them know why adding Nxt is a great idea.


1. Bittrex

"
Here is the reddit post, please everyone sign up at Bittrex.

Hello NXT community,

I solicited feedback on another thread about which coins we should support on our exchange before our public launch. NXT was overwhelmingly recommended.

Before we make the final decision, we're providing a special invite code for NXT users to experience our site first hand. Go to https://bittrex.com/Account/Register and use SUPPORT_NXT as the invite code. This gets you past the invite code queue. Place some trades, enabled 2FA, or try any of our other features to help us stress the site before the final launch. If you find a bug, we're handing out bug bounties as well. Having a great exchange helps us but also helps the NXT community.

If we get 100 signs ups using that code and active on our site, we'll add NXT before our public launch.

Please let me know if you have any questions or feedback, Bill"  - Msin

"Everyone remember to add SUPPORT_NXT as the invite code so we get NXT added " - Wakasaki808



2. BTC38

"+1 on this.  btc38 is a BIG DEAL in China.  It would be as big as getting on Cryptsy.  Access the link in Chrome for automatic English translation." - RickyJames

"all of us,please come here vote for Nxt to let the btc38(an exchange platform of China) add Nxt to their database.

http://www.coin38.org/forum.php?mod=viewthread&tid=1672

It is a good chance for Nxt promotion.
Nxt is on the 18 floor.

edit:new user need to change the avatar first.
TKS." - allwelder

** Contact Info **

http://www.coin38.org/forum.php
[email protected]
[email protected]


3. Kraken

[email protected]


4. Bitfinex

[email protected]
[email protected]


5 mcxNow

[email protected]


6. VirWox

[email protected]


7. FxBTC

[email protected]


8. BTC-e

It's nearly impossible to get more than a 'not planned' response with BTC-e. I understand they receive quite a few coin requests each day.  If you're interested in talking about Nxt:

https://bitcointalk.org/index.php?topic=433283.new#new

** Updated **

9. CryptoAve

New Exchange:

https://cryptoave.com

[email protected]
[email protected]


The big deal here is they are planning on integrating merchant tools with their coin/usd pairs. Let's let them know we're interested in adding Nxt.
legendary
Activity: 1092
Merit: 1010
Will somebody help Bitventurer with the nxt.org web page? He still looks lost.

https://nextcoin.org/index.php/topic,4121.0.html

The page should be up in no time.

Sent him a PM.
I think we could make something out of it Smiley
Let's see.
legendary
Activity: 1778
Merit: 1043
#Free market
Hi ,

I still have 30k TestNxt.
sr. member
Activity: 392
Merit: 250
Two things I forgot to mention in the change log:

If you are using Tor, now the tor socks proxy address and port need to be specified on the java command line:
java -DsocksProxyHost=localhost -DsocksProxyPort=9050 -Xmx1024M -cp nxt.jar:lib/*:conf nxt.Nxt
and obviously set nxt.shareMyAddress=false in nxt.properties

The default database connection pool size is set to 10. I also print out debug messages with the maximum number of simultaneous database connections observed at runtime, like:
DEBUG: Database connection pool current size: 3
In the unlikely case you see this reaching 10, for a very busy public node, consider increasing the nxt.maxDbConnections setting.
member
Activity: 112
Merit: 10
how to run 0.8.0e in windows. I can't get this to work? thx
- just make run.bat (or start.bat or whatever):
Code:
java -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt

Thanks
hero member
Activity: 808
Merit: 1011
It's not only Nextcoin.org - also our friend Tai Zen uses the word "Nextcoin" in his great videos. It's a fundamental "problem" since the beginning.

Not really a problem.

That's why I put the word in quotes. For me it's N(e)xt, but I don't have a problem when people using "Nextcoin". The time will solve this.
legendary
Activity: 1806
Merit: 1038
how to run 0.8.0e in windows. I can't get this to work? thx
- just make run.bat (or start.bat or whatever):
Code:
java -Xmx1024M -cp nxt.jar;lib\*;conf nxt.Nxt
sr. member
Activity: 460
Merit: 250
SWARM NEEDED

Here is the reddit post, please everyone sign up at Bittrex.

(...) add SUPPORT_NXT as the invite code so we get NXT added.

Please sign up if you haven't, I'll get a tally from Bill at the end of the day to see how many users we have.  Thank you!

Signed up, site looking nice. Thanks!
Jump to: