Author

Topic: NXT :: descendant of Bitcoin - Updated Information - page 1492. (Read 2761645 times)

full member
Activity: 184
Merit: 100

if you go to balances in the btc pane where you see withdrawals. Above that there will be a deposit address, near the top of the pane.

did you get a confirmation mail after registration, Anon136?
I didn't and I guess that's the reason I don't see any other deposit address than for NXT.
the space after Bitcoin deposit address just is empty.
sr. member
Activity: 602
Merit: 268
Internet of Value
Others alternatives are too time consuming. There is no clear motive for anyone to rig this poll. If there is a motive to rig the poll to benefit someone, we will find a different way of doing it.

Anyone with an agenda in regards to Nxt could well have motive and as I mentioned: https://bitcointalk.org/index.php?topic=423995.0;topicseen means that you can create as many accounts to vote as you like right now.

So what does the poll actually achieve when you have absolutely no way to know whether it is in anyway representative of Nxt stakeholders?


All polls should be held at NxtCrytpo.org forum.

Then make a poll there. I will vote.

What is the point of having two polls at this point.  Moving forward lets just post the polls at the NxtCrypto forum, then we would at least avoid allowing any BTT member to vote on our subjects.

Nextcoin users would probably oppose your idea. And they outnumber nxtcryoto users.
sr. member
Activity: 397
Merit: 500
RaspNXT - a standalone NXT environment for the Raspberry Pi
Thanks for your work davethetrousers!

I just modified your run_nxt.sh to be more raspian frendly with some log messages and to enable system startup and stop. It monitors the log file at start or stop of the server and logs it in the start/stop message. Just copy it to /etc/init.d and run "sudo update-rc.d run_nxt.sh defaults". It will start and stop in the runlevels and it will wait on "stop" untill blockchain is saved (timeout 10m).

Please make sure to setup the variables like directorys and such. This is tested only with 0.5.9 and if a next update changes the log output, this script have to be changed!

Code:
#! /bin/bash

### BEGIN INIT INFO
# Provides:          nxt
# Required-Start:    $local_fs $remote_fs $network $syslog $named $ntp $sshd
# Required-Stop:     
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start/stop NXT server
# Description:       NXT protocol server
### END INIT INFO

if [ `id -u` != "0" ] && [ "$1" = "start" -o "$1" = "stop" ] ; then
  echo "You must be root to start/stop nxt."
  exit 1
fi

# Settings
nxtdir=/home/pi/nxt
nxt=start.jar
java=/usr/bin/java
nxtpid=/var/run/nxt.pid
nxtlog=/var/log/nxt.log
nxtuser=pi
nxtgroup=pi
nxtnice=6
timeout=600
# end Settings

# check for exist files and dirs
test -d $nxtdir || exit 0
test -f $nxtdir/$nxt || exit 0
test -f $java || exit 0

# make sure $nxtdir is ours!
chown -R $nxtuser:$nxtgroup $nxtdir

. /lib/lsb/init-functions

case "$1" in
    start)
log_daemon_msg "Starting NXT server..." "nxt " || true

# check if server is running
        if [ -e $nxtpid ]; then
            pid=`cat $nxtpid`
            var=`ps -p$pid | wc -l`

            if [ $var -lt "2" ]; then
# clear logfile
echo -n > $nxtlog
            else
echo -n "Server is already running!"
log_end_msg 0 || true
exit 0
            fi
        fi

# n minute timeout.
sleep $timeout &
timerPid=$!

# check log file and generate status-msg; will be killed when server is started or timeout hit
tail -q -n0 -F --pid=$timerPid $nxtlog 2> /dev/null | while read line; do

if echo $line | grep -q  "Loading transactions..."; then
echo -n "Loading transactions..."
elif echo $line | grep -q  "Loading blocks..."; then
echo -n "Loading blocks..."
elif echo $line | grep -q  "Scanning blockchain..."; then
echo -n "Scanning blockchain..."
fi

if echo $line | grep -q  "Exception"; then
echo -n "Java Exception! Blockchain corrupt? Killing process..."
log_end_msg 1 || true
kill -9 `cat $nxtpid` > /dev/null 2>&1
# stop the timer..
kill $timerPid > /dev/null 2>&1
fi

if echo $line | grep -q  "started successfully."; then
echo -n "Server started!"
log_end_msg 0 || true
# stop the timer..
kill $timerPid > /dev/null 2>&1
fi
done &

# start server
if start-stop-daemon --start --name nxt --nicelevel $nxtnice --chuid $nxtuser:$nxtgroup --pidfile $nxtpid -m --chdir $nxtdir --exec $java >> $nxtlog -- -Xms250m -Xmx350m -jar $nxt STOP.PORT=7873 STOP.KEY=0815 2>&1 >> $nxtlog & then
# wait for the timer to expire (or be killed)
wait %sleep > /dev/null 2>&1
else
log_end_msg 1 || true
fi
        ;;
    stop)
log_daemon_msg "Stopping NXT server..." "nxt " || true

# check if server is running
        if [ -e $nxtpid ]; then
            pid=`cat $nxtpid`
            var=`ps -p$pid | wc -l`

            if [ $var -lt "2" ]; then
echo -n "Server not running!"
log_end_msg 0 || true
exit 0
            fi
else
echo -n "Server not running!"
log_end_msg 0 || true
exit 0
        fi

# n minute timeout.
sleep $timeout &
timerPid=$!

# check log file and generate status-msg; will be killed when server is stopped or timeout hit
tail -q -n0 -F --pid=$timerPid $nxtlog 2> /dev/null | while read line; do
if echo $line | grep -q  "Saved blocks.nxt"; then
echo -n ".saving blockchain files, this will take a while...Saved blocks.nxt..."
fi
if echo $line | grep -q  "Saved transactions.nxt"; then
echo -n "Saved transactions.nxt..."
fi

if echo $line | grep -q  "stopped."; then
echo -n "Server stopped!"
log_end_msg 0 || true
# stop the timer..
kill $timerPid
fi
done &

if start-stop-daemon --start --name nxt_stop --chdir $nxtdir --exec $java 2>&1 >> $nxtlog -- -jar $nxt --stop STOP.PORT=7873 STOP.KEY=0815 2>&1 >> $nxtlog & then
# wait for the timer to expire (or be killed)
wait %sleep > /dev/null 2>&1
rm $nxtpid  > /dev/null 2>&1
else
log_end_msg 1 || true
fi
        ;;

    restart)
$0 stop
sleep 1
$0 start
;;
    *)
        echo "usage:`basename $0` start | stop | restart"
        exit 1
        ;;
esac

I hope its useful for someone. If someone finds bugs or something stupid, please let me know, I'm not an expert! ;o)

greets
eb
hero member
Activity: 910
Merit: 1000
Also NXT will be added once we have the funds for it.
We are very excited to see such strong community behind NXT and want to add it as soon as we can.

 Smiley
legendary
Activity: 1890
Merit: 1086
Ian Knowles - CIYAM Lead Developer
whats to stop anyone sending nxt from multiple accounts....we have the same problem

It *costs* NXT - creating bitcointalk accounts just costs a little bit of time (now only seconds).

It is obvious there are plenty of people on this forum with very little "coin" but a lot of time.
legendary
Activity: 1470
Merit: 1004
Others alternatives are too time consuming. There is no clear motive for anyone to rig this poll. If there is a motive to rig the poll to benefit someone, we will find a different way of doing it.

Anyone with an agenda in regards to Nxt could well have motive and as I mentioned: https://bitcointalk.org/index.php?topic=423995.0;topicseen means that you can create as many accounts to vote as you like right now.

So what does the poll actually achieve when you have absolutely no way to know whether it is in anyway representative of Nxt stakeholders?


All polls should be held at NxtCrytpo.org forum.

Then make a poll there. I will vote.

What is the point of having two polls at this point.  Moving forward lets just post the polls at the NxtCrypto forum, then we would at least avoid allowing any BTT member to vote on our subjects.
legendary
Activity: 1890
Merit: 1086
Ian Knowles - CIYAM Lead Developer
Then whatever Anon136's opinion happens to be is how the vote goes.

Why is that - does he have more NXT than anyway else that he is going to throw at his favourite option?
legendary
Activity: 2184
Merit: 1000
Great idea. Let anon do it and see the results. Maybe it would be the same.

I think it might be a good experiment to do anyway.


whats to stop anyone sending nxt from multiple accounts....we have the same problem
sr. member
Activity: 602
Merit: 268
Internet of Value
Lunchtime call to vote for the funding issue https://bitcointalksearch.org/topic/nxt-voting-on-the-scope-of-authority-of-the-funding-committee-423241

We will try to wrap it up tomorrow. So be a NXTer and go vote  Smiley

A bitcointalk poll? Really?

Is this a test to see who has the most bitcointalk alt accounts?


Just to be clear this poll is linked to the first page of both nextcoin and nxtcrypto forums. I also frequently update it here. I doubt anyone except NXTers would care for the poll.

You may have other opinion. Let try that as well.
newbie
Activity: 2
Merit: 0
Made a starting point homepage for newcomers:

http://www.mynxt.org

If you find wrong information or have some suggestions, please PM me. Thanks!

I hope you like it!

(registered a new nick on bitcointalk for this)

Wow site looks really great on mobile as well...
full member
Activity: 238
Merit: 100
I would be very happy if you can devise a better way that actually works.

As suggested by Anon why not just set of 4 Nxt accounts and let people vote with their NXT (it is a PoS system after all)?


Then whatever Anon136's opinion happens to be is how the vote goes.

Not saying that he'd do that, but you see the circular logic here?
legendary
Activity: 1470
Merit: 1004
The best way is to avoid situations when we need a consensus. That's what decentralization about.

Then divide the 9Mil among all private key Nxt accounts.
legendary
Activity: 1890
Merit: 1086
Ian Knowles - CIYAM Lead Developer
Great idea. Let anon do it and see the results. Maybe it would be the same.

I think it might be a good experiment to do anyway.
hero member
Activity: 714
Merit: 500
Crypti Community Manager
Dogecoin popular than NXT, we need more publicity

I suggest to make some wallets first - "normal" for windows (average user will kill himself trying to run the current one)), iphone and android. I suppose myself to be advanced user, but I had some "great" time trying to make things working))) No need to advertise widelly the project in its current state imo


bla blah........is still a conference in May:
https://bitcoinfoundation.org/forum/index.php?/topic/652-bitcoin2014-l-may-15-17-l-amsterdam/

Of course, by then we may all be sitting in the Maldives, drinking beer served to us by supermodels.

I'm not the least bit surprised at this.
The worst part of it, is that they are still updating the site and are selling tickets.
So I would definitely call it a scam, because there is no way they will ever be able to book Science Park just a few months in advance.

Pity. Hopefully the bitcoinfoundation conference will turn out to be legit.

Having acquired over 10,000 Nxt now, I am willing to do a video conference from the Maledives, too, though.
Any whales reading this: give me and Damelon lots more NXT. We deserve it, tho' I think Damelon deserves it more:
http://www.nxtcoins.nl/

how many nxt does one have to have inorder to be a whale?

Good question......I'll say over the million. I reckon we are going to be looking at $1 / NXT very soon, so any one with 106 or more is gonna be a very happy cetacean.



I like the idea of $1 for 1NXT, but this will kill the idea of using it as payment system. $1 minimal fee is way too much
At this point there will be 2 or 4 places behind the comma.
hero member
Activity: 870
Merit: 500
Trading will make me rich)
Dogecoin popular than NXT, we need more publicity

I suggest to make some wallets first - "normal" for windows (average user will kill himself trying to run the current one)), iphone and android. I suppose myself to be advanced user, but I had some "great" time trying to make things working))) No need to advertise widelly the project in its current state imo


bla blah........is still a conference in May:
https://bitcoinfoundation.org/forum/index.php?/topic/652-bitcoin2014-l-may-15-17-l-amsterdam/

Of course, by then we may all be sitting in the Maldives, drinking beer served to us by supermodels.

I'm not the least bit surprised at this.
The worst part of it, is that they are still updating the site and are selling tickets.
So I would definitely call it a scam, because there is no way they will ever be able to book Science Park just a few months in advance.

Pity. Hopefully the bitcoinfoundation conference will turn out to be legit.

Having acquired over 10,000 Nxt now, I am willing to do a video conference from the Maledives, too, though.
Any whales reading this: give me and Damelon lots more NXT. We deserve it, tho' I think Damelon deserves it more:
http://www.nxtcoins.nl/

how many nxt does one have to have inorder to be a whale?

Good question......I'll say over the million. I reckon we are going to be looking at $1 / NXT very soon, so any one with 106 or more is gonna be a very happy cetacean.



I like the idea of $1 for 1NXT, but this will kill the idea of using it as payment system. $1 minimal fee is way too much
sr. member
Activity: 602
Merit: 268
Internet of Value
I would be very happy if you can devise a better way that actually works.

As suggested by Anon why not just set of 4 Nxt accounts and let people vote with their NXT (it is a PoS system after all)?


Great idea. Let anon do it and see the results. Maybe it would be the same.
sr. member
Activity: 602
Merit: 268
Internet of Value
Others alternatives are too time consuming. There is no clear motive for anyone to rig this poll. If there is a motive to rig the poll to benefit someone, we will find a different way of doing it.

Anyone with an agenda in regards to Nxt could well have motive and as I mentioned: https://bitcointalk.org/index.php?topic=423995.0;topicseen means that you can create as many accounts to vote as you like right now.

So what does the poll actually achieve when you have absolutely no way to know whether it is in anyway representative of Nxt stakeholders?


All polls should be held at NxtCrytpo.org forum.

Then make a poll there. I will vote.
legendary
Activity: 2142
Merit: 1010
Newbie
The best way is to avoid situations when we need a consensus. That's what decentralization about.
sr. member
Activity: 602
Merit: 268
Internet of Value
Others alternatives are too time consuming. There is no clear motive for anyone to rig this poll. If there is a motive to rig the poll to benefit someone, we will find a different way of doing it.

Anyone with an agenda in regards to Nxt could well have motive and as I mentioned: https://bitcointalk.org/index.php?topic=423995.0;topicseen means that you can create as many accounts to vote as you like right now.

So what does the poll actually achieve when you have absolutely no way to know whether it is in anyway representative of Nxt stakeholders?

(i.e. why even bother with it - wouldn't it be better to instead just have people cast their vote as a post that includes their account name and reject any new accounts?)


Then make a post. You can copy all of my content there as well. Let's see if we have a different results.
legendary
Activity: 1890
Merit: 1086
Ian Knowles - CIYAM Lead Developer
I would be very happy if you can devise a better way that actually works.

As suggested by Anon why not just set of 4 Nxt accounts and let people vote with their NXT (it is a PoS system after all)?
Jump to: