Pages:
Author

Topic: [BOUNTY] Announcements for Nxt (the first pure POS coin) - page 7. (Read 63058 times)

hero member
Activity: 672
Merit: 500
bybitcoin I think it is time to end my giveaway (after I review some remaining efforts), calculate what I have spend so far and the remaining will be added to your BOUNTY pool which right now I think it is more important.

I will try to make a list with developers who will be paid by me and maybe in part from your Bounty fund in order to AUDIT the code after it is open sourced ASAP!!!

It could be even better if we can do this 1-2 days BEFORE!

I hope BCNext will agree to do so, they will be very carefully selected developers and the time they will have to copy/paste the project (even if they are malicious) will not be big enough!

What do you think (and others)?
Okay then I lock up the giveaway thread (to avoid more posters and continuation of work for you). Please provide the list and explanation of  of sendings to last promoters in a single long text and pm it for me, that I post as the last one in that thread (5 second unlock-then lock again), and that gets our giveaway done!

You don't need to calculate the sendings, I trust you, just tell me if anything is remained from the 200K I sent you before or not.
Sure we can fund the open source audition in part: I can give 100K from our pool for that.

legendary
Activity: 1498
Merit: 1000
bybitcoin I think it is time to end my giveaway (after I review some remaining efforts), calculate what I have spend so far and the remaining will be added to your BOUNTY pool which right now I think it is more important.

I will try to make a list with developers who will be paid by me and maybe in part from your Bounty fund in order to AUDIT the code after it is open sourced ASAP!!!

It could be even better if we can do this 1-2 days BEFORE!

I hope BCNext will agree to do so, they will be very carefully selected developers and the time they will have to copy/paste the project (even if they are malicious) will not be big enough!

What do you think (and others)?
hero member
Activity: 672
Merit: 500
Important News:
I decided to put aside 60K from our donation pool for the rasspery pi idea, if Become-from-Beyond and other devs currently involved affirm its practicality (I new CfB did affirmed implicitly, but I need a stronger accent on the matter):
40K will be donated to the mentioned foundation to let it start on their site.
20K for the first 2000 RP users who place a node using RP, each receiving 10 Nxt as been offered by the introducer.

I can release the fund as soon as it gets a constructive running plan (and a guy to handle sending 10Nxt to each new user, I can't do this part)

hero member
Activity: 672
Merit: 500
Hi! Just wanted to remind you, that there is a guy on the Nxtalk chat (http://webchat.freenode.net/?channels=#) named j0b , who helped last night to investigate on the issue with the huge transaction fee and the incorrect amounts bug. He already discovered a bug before (https://bitcointalk.org/index.php?topic=345619.msg4102610;topicseen#msg4102610) with ZjP.
Although 2Kool4Skewl and me provided his accountnumber earlier and asked for some bounties, he only received 650 Nxt. I would like to ask everyone, especially the guys with 10+M accounts to appreciate such contribution and send some Nxt to j0b and all fellows who help discover bugs and help this project succeed. If we loose them, we loose the project.

His account number is 13570469120032392161

Thank you!

ps: I´ve already sent him some to show my appreciation
Okay I need one more confirmation from 2Kool4Skewl and then I ll send this guy 10000 Nxt to the provided account by you.
Sure, we shouldn't lose skilled helpful people!
hero member
Activity: 784
Merit: 500
Hi! Just wanted to remind you, that there is a guy on the Nxtalk chat (http://webchat.freenode.net/?channels=#) named j0b , who helped last night to investigate on the issue with the huge transaction fee and the incorrect amounts bug. He already discovered a bug before (https://bitcointalk.org/index.php?topic=345619.msg4102610;topicseen#msg4102610) with ZjP.
Although 2Kool4Skewl and me provided his accountnumber earlier and asked for some bounties, he only received 650 Nxt. I would like to ask everyone, especially the guys with 10+M accounts to appreciate such contribution and send some Nxt to j0b and all fellows who help discover bugs and help this project succeed. If we loose them, we loose the project.

His account number is 13570469120032392161

Thank you!

ps: I´ve already sent him some to show my appreciation
full member
Activity: 238
Merit: 100
wow.  not even a "cool, nice job, thanks for all the work"
you're welcome anyways.  like I said, I did it all b/c it was good for nxt.  working on getting my article published on coindesk as we speak, ill let everyone know when it goes live

link pls

pg 6 of this thread https://bitcointalksearch.org/topic/m.3980304
legendary
Activity: 1722
Merit: 1217
wow.  not even a "cool, nice job, thanks for all the work"
you're welcome anyways.  like I said, I did it all b/c it was good for nxt.  working on getting my article published on coinbase as we speak, ill let everyone know when it goes live

link pls
full member
Activity: 238
Merit: 100
wow.  not even a "cool, nice job, thanks for all the work"
you're welcome anyways.  like I said, I did it all b/c it was good for nxt.  working on getting my article published on coinddesk as we speak, ill let everyone know when it goes live
newbie
Activity: 31
Merit: 0
Hello all,

Created a startup script for nxt for easy start and stop control of you nxt node.
1) create a user nxtuser using the following command:
Code:
adduser nxtuser
2) unpack nxt.zip:
Code:
cd /home/nxtuser && unzip nxt.zip
3) create the start.sh in the nxt folder: echo "java -jar start.jar -Djava.net.preferIPv4Stack=true" > /home/nxtuser/nxt/start.sh
4) Place the following script in /etc/init.d/nxt-local and you can start and stop it using the service and/or invoke-rc.d commands:
  • service nxt-local start
  • service nxt-local stop
  • invoke-rc.d nxt-local start
  • invoke-rc.d nxt-local start

Code:
#!/bin/sh
#
# NXT initscript
#

### BEGIN INIT INFO
# Provides:          nxt
# Required-Start:    $network $local_fs
# Required-Stop:.....
# Should-Start:......
# Should-Stop:.......
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: NXT node
### END INIT INFO

# PATH should only include /usr/* if it runs after the mountnfs.sh script
PATH=/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
DESC="NXT node"
NAME=nxt
USER=nxtuser
PREFIX="/home/nxtuser/nxt"
DAEMON="$PREFIX"/start.sh
PIDFILE=/var/run/$NAME.pid

# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 0

# Define LSB log_* functions.
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
. /lib/lsb/init-functions

# Exit if USER not specified
if [ ! $USER ]; then
        log_failure_msg "$NAME: The user '$USER' does not exist."
        exit 1
fi

# Check for an invalid user or one without a home directory
eval USERHOME=~$USER
if [ "${USERHOME#/}" = "${USERHOME}" ]; then
        log_failure_msg "$NAME: The user '$USER' has no home folder."
        exit 1
fi

#
#       Function that starts the daemon/service.
#
do_start() {
    ulimit -d 1000000
    ulimit -m 1000000
    ulimit -v 4000000
    start-stop-daemon --start --background --make-pidfile --pidfile $PIDFILE \
        --chuid ${USER} --chdir ${PREFIX} --startas "$DAEMON" -- $DAEMON_ARGS
}

#
#       Function that stops the daemon/service.
#
do_stop() {
    start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE
    RETVAL="$?"
    [ "$RETVAL" = 2 ] && return 2               # still running!
    [ -e $PIDFILE ] && rm -f $PIDFILE
    return "$RETVAL"
}

case "$1" in
    start)
        log_daemon_msg "Starting $DESC" "$NAME"
        do_start
        ;;
    stop)
        log_daemon_msg "Stopping $DESC" "$NAME"
        do_stop
        case "$?" in
            0)
                log_end_msg 0
                ;;
            1) log_warning_msg "$DESC" "'$NAME'" "was already stopped" ;;
            2) log_end_msg 1 ;;
        esac
        ;;
    restart|force-reload)
        #
        #       If the "reload" option is implemented, move the "force-reload"
        #       option to the "reload" entry above. If not, "force-reload" is
        #       just the same as "restart".
        #
        log_daemon_msg "Restarting $DESC" "$NAME"
        do_stop
        case "$?" in
            0|1)
                sleep 1
                do_start
                case "$?" in
                        0) log_end_msg 0 ;;
                        1) log_end_msg 1 ;; # Old process is still running
                        *) log_end_msg 1 ;; # Failed to start
                esac
                ;;
            *)
                # Failed to stop
                log_end_msg 1
                ;;
        esac
        ;;
    *)
        echo "Usage: $0 {start|stop|restart|force-reload}" >&2
        exit 3
        ;;
esac

Donations and or tips in NXT are welcome: 18042830205624436809
full member
Activity: 266
Merit: 100
NXT is the future
please someone make this possible win win win ...

https://bitcointalksearch.org/topic/m.4135535


Pin
member
Activity: 88
Merit: 10
Any Spanish translation needed? Smiley
hero member
Activity: 750
Merit: 500
www.coinschedule.com
Ok guys, I've setup the Brazilian Portuguese Wiki, imported the XML with the english data and translated the Home Page.

URL is: http://nxtptbr.wikia.com/

I will continue to work on the other pages tonight and in the next few days.

If someone is feeling the Christmas spirit, donations are welcome: 9060914620736248721

Merry Christmas!  Smiley
newbie
Activity: 28
Merit: 0
Are there any bounties coming up? I hope I did not miss this train. I could do anything with photoshop, some average videos with adobe flash and video editing programs... Oh and I can translate anything to lithuanian.
sr. member
Activity: 308
Merit: 250
Thanks to all of you for contributing to this donation fund, my account id is:

3209075099254042753

I am in the process of developing some other cool stuff as well, will keep you updated in this thread.

Again, thank you, and merry christmas!

Wesley
legendary
Activity: 1722
Merit: 1217
Oops I forgot to post my address. Sorry about that Grin

Thanks so much bybitcoin *edit* and everyone else who contributed!

here is my address 17286747867026237511
full member
Activity: 150
Merit: 100
Took me a while, but I finished one of the more important pages of the Dutch wiki; the FAQ page:

http://nxt-nl.wikia.com/wiki/FAQ

May still translate some of the other pages today, but the holidays will probably cut into my available time.

Edit: Another page done.

http://nxt-nl.wikia.com/wiki/Windows

And another one:

http://nxt-nl.wikia.com/wiki/Nxt_History

NXT:13307336450726014831
legendary
Activity: 2142
Merit: 1010
Newbie
How does this make it the first POS coin?

U missed "pure".
member
Activity: 118
Merit: 10
฿itcoin ฿itcoin ฿itcoin
How does this make it the first POS coin?
hero member
Activity: 490
Merit: 504
So it seems I need to contact "Joefox587" to get permission to translate the wiki (http://nxtcrypto.wikia.com/wiki/Nxt_Wiki). Do you know how to contact him so I can start the work?

Everyone can update the Wiki, here is the info:

1. Create a new wiki, like:
http://nxt-cz.wikia.com/wiki/Nxt_Cz_Wiki
http://nxt-nl.wikia.com/wiki/Nxt_NL_Wiki

2. upload XML:
You can download the XML version of the wiki here: https://dl.dropboxusercontent.com/u/2948110/Nxt/NxtWiki-20131221231026.xml

Once you have this file, do the following on WIkia to import it:
- go to your ADMIN page for the -your language- wiki
- choose “advanced” from the tabs at the top of the page
- select “Import pages” (under “page tools”)
- Upload the XML file and submit

3. The XML is little old, so you can then copy some new menus straight from http://nxtcrypto.wikia.com/wiki/Nxt_Wiki
Pages:
Jump to: