Author

Topic: NXT :: descendant of Bitcoin - Updated Information - page 824. (Read 2761627 times)

legendary
Activity: 1181
Merit: 1018


BLESSED BE THE NOBLE GIVER OF testNXT


8819507277968891433



deadline - 1440
sender - 14386024746077933238
subtype - 0
referencedTransaction - 0
recipient - 1738404304940813414
type - 0
timestamp - 7365076
signature - 7558c49318122f7e3bc7c33b6f2153cae368ef4a4d3c6569e3fd12bd6708d8063edbce83d7c6856 cd804eb38091a447d5c422363b426e51bb77849bef6c86097
confirmations - 3
amount - 4095
fee - 4
block - 8011044524122557507
senderPublicKey - dc7b03d7dd03fe316bb3321c65683c7e528dbed6bdedd67d5aeae2e3dd170126
legendary
Activity: 1792
Merit: 1038
Can someone send me some testNXT to this acct on the tesnet again please?!?!
1738404304940813414
- 4k testNXT sent.
legendary
Activity: 1181
Merit: 1018
CFb

The versione of the client '' [email protected]" doesn't send the Nxt .. why ?  can you resolve ?

Thanks

Relaunched, try again.

Could someone start forging on the testnet?

I start forging on the testnet
Wink

im forging as well but not seeing any countdown clock , only have 899 testnxt at 15265031083387211287

Yes, that account shows a  bal for me also!!!!!

balance - 489900
effectiveBalance - 0         <----------- even the part with no forging power
unconfirmedBalance - 479800

sr. member
Activity: 897
Merit: 284
Dear supporters,

 I want to talk with you about the future of Nxt.org. I'm working with Passion_ltc together to make this website the center for the whole Nxt ecosystem.

We have many great ideas for the website, but before we start we need to talk about something inconvenient: the money.

I paid 157,000 NXT and 6 BTC for the domain. A few guys maybe are thinking that this is far too much, but I don't think so. With Nxt.org we finally have a quality domain for a quality product, and if we consider that Nxt will be the future of money then the money was well spent!

2Kool4Skewl asked on nextcoin.org about acquiring the domain. And I'm pretty sure that someone said there was a bounty for this domain.

So I want to ask you if someone knows more about the bounty. Maybe I could get a nice sum of the money back though this?

Thank you very much!

Greetings,
BitVenturer

Quote
According to my calculations if each one of this account (http://87.230.14.1/nxt/nxt.cgi?action=34)
will pay at least 30K nxt from his balance, it will be 1.8M NXT, I think its a fair price

Just give the community the domain for 157,000 NXT and 6 BTC. Maybe a little premium on top. But that's it.

The community didn't appreciate the fact that I got the name, my effort and resources...
You think that the name doesn't cost 1.8M ?
"Community" != "Customer"

If I would get a bounty , I would start a new thread : "development of NXT.oRG" community would decide  who and what to develop on it...
but what did I get ? "nada" , what would I get after finishing the development? as just keeping the domain? nada ? and the stake holders would be happily watching ? look here  http://87.230.14.1/nxt/nxt.cgi?action=34   and tell me , to they give a f$%& about the community ? is 1.8M , 30k for each account too much from them ? Did I risked more then each one of them ? mmm...

The installer I have built and maintained that has arguably made getting into Nxt for the Average Joe magnitudes easier has netted me about 4,000 Nxt total. You shouldn't be doing it for you, you should be doing it for the community.

Different strokes, I guess.
legendary
Activity: 1181
Merit: 1018
CFb

The versione of the client '' [email protected]" doesn't send the Nxt .. why ?  can you resolve ?

Thanks

Relaunched, try again.

Could someone start forging on the testnet?

I start forging on the testnet
Wink

im forging as well but not seeing any countdown clock , only have 899 testnxt at 15265031083387211287

Sent 5K TestNxt  Wink .

I just tried on the realNet with a 5nxt account and it works there:

unconfirmedBalance - 500
effectiveBalance - 500
balance - 500

publicKey - d95b5431be767e63d140232cbf94f2642db5257b430ccdbf1d2368dfdeb4592c



Can someone send me some testNXT to this acct on the tesnet again please?!?! redsn0w or CfB ? Thanks!



1738404304940813414
sr. member
Activity: 336
Merit: 250
AKA jefdiesel
I guess its the blocks far apart that are keeping transactions from posting in the testnet?

sr. member
Activity: 336
Merit: 250
AKA jefdiesel
CFb

The versione of the client '' [email protected]" doesn't send the Nxt .. why ?  can you resolve ?

Thanks

Relaunched, try again.

Could someone start forging on the testnet?

I start forging on the testnet
Wink

im forging as well but not seeing any countdown clock , only have 899 testnxt at 15265031083387211287

Sent 5K TestNxt  Wink .

that showed up. restart helped i guess

thanks
full member
Activity: 224
Merit: 100
Developer help needed

Anyone fluent in Delphi/Pascal and either C++, Java or C# would be willing to port Curve25519 to Pascal?

Here is a java implementation: https://code.google.com/p/curve25519-java/
And here is a C# implementation: https://github.com/hanswolff/curve25519/blob/master/Curve25519/Curve25519.cs
Don't have the C++ implementation at hands, but was discussed here in the thread.

I would greatly appreciate if somebody could help me out with this!

i would like to try it.

Actually, I started it to port the C# version yesterday. It now compiles, but I havn't tested it yet.

Would you be willing to review/compare it? I also have some lines tagged with TODO that needs review, especially for strange loop constructions that I am not familiar with.


Here are the original java lines and my pascal versions of these code lines. I would appreciate if you could review these.

These are mostly loop constructions I am not familiar with.



From sign:

Code:
byte[] tmp1=new byte[65];
byte[] tmp2=new byte[33];
      
Are these byte arrays with 64/32 or 65/33 items? I guess the later, but if so, I wonder why...
      
Code:
for (w = 0, i = 0; i < 32; i++)
w |= v[i] = tmp1[i];

Is my pascal version correct?

Code:
w:=0;
for i:=0 to 31 do
begin
  v[i]:= tmp1[i];
  w:=w OR v[i];
end;

From verify:

Code:
s[0]._0 -= 9 + 486662; /* s[0] = X(P+G)  */
...
s[1]._0 -= 9 + 486662; /* s[1] = X(P-G)  */

In pascal:

Code:
  s[0].N0 := s[0].N0 -(9 + 486662);
  ...
  s[1].N0 := s[1].N0 -(9 + 486662);

Are the brackets set correctly in my version?

I also wonder why the two lines in the java code read the same, while the java code comments are different (P+G vs. P-G).


Code:
for (i = 0; i < 32; i++) {...
      

Code:
=>    for i := 0 to 31 do ...
 

Code:
for (i = 32; i--!=0; ) {...
   
   
Code:
=>   for i := 31 downto 0 do

Code:
for (j = 8; j--!=0; ) {

Code:
=>  for j := 7 downto 0 do
 
From core:

Code:
...
int i, j;
...

for (i = 32; i--!=0; ) {
if (i==0) {
i=0;
}
for (j = 8; j--!=0; ) {
....
}
}
      

What exactly is the "if (i==0) { i=0;}" supposed to do???

Regarding the loops, I translated this to:

Code:
  for i := 31 downto 0 do
  begin
    ...
        for j := 7 downto 0 do
        begin
...
end;
  end;

 
From mula_small:

Code:
for (int i=0;i

Code:
=>    for i := 0 to n-1 do ...

From mula32:

Code:
int i = 0;
for (; i < t; i++) {...

Code:
=>    for i := 0 to t-1 do ...
[code]

From divmod:

[code]
while (n-- >= t) { ... }
      

Code:
=>

 while (n >= t) do
  begin
    ...
    dec(n);
  end;
      
      
   

Thanks for your help![/code][/code]
legendary
Activity: 1092
Merit: 1010
When did you announce this domain? Yesterday? Give it a little more time.. not everyone is watching nxt development constantly. That said, msin offered a very generous bounty of 250K. I suppose this is more than sufficient for your needs?

This!
I sincerely think (as stated in the other thread) that this got snowed under in this thread (as usual Wink ).
member
Activity: 98
Merit: 10
1) Nxt has been updated on the Songs of Love site:

http://www.songsoflove.org/nxt/

The account # is their account which we'll transfer to at either the end of the month or once we break $10,000 worth of Nxt.


2) I'll be on the local TV station either Thursday or Friday supporting Nxt for Songs of Love, I'm just waiting for final confirmation from the producer. This will be another great door opener when we contact media.

** Update **

I will be on KSPR, ABC-affiliated, at 11:20am Thursday February 20th.


3) As soon as I get confirmation from the 100k matching donator, I'll get some information out to our marketing/social media people.  If I understand the donator correctly,  with their matching funds, we're now up to $4k.  Again, just waiting for confirmation.
full member
Activity: 154
Merit: 100

If I would get a bounty , I would start a new thread : "development of NXT.oRG" community would decide  who and what to develop on it...
but what did I get ? "nada" , what would I get after finishing the development? as just keeping the domain? nada ? and the stake holders would be happily watching ? look here  http://87.230.14.1/nxt/nxt.cgi?action=34   and tell me , to they give a f$%& about the community ? is 1.8M , 30k for each account too much from them ? Did I risked more then each one of them ? mmm...

I built and maintain three websites (see my signature) and I got about 4500 NXT for it. Do I cry like a little baby? We all do this to help Nxt! Of course the most of us also want to make money. But you are obviously here to just suck the community dry for your benefit.
legendary
Activity: 1778
Merit: 1043
#Free market
CFb

The versione of the client '' [email protected]" doesn't send the Nxt .. why ?  can you resolve ?

Thanks

Relaunched, try again.

Could someone start forging on the testnet?

I start forging on the testnet
Wink

im forging as well but not seeing any countdown clock , only have 899 testnxt at 15265031083387211287

Sent 5K TestNxt  Wink .
full member
Activity: 238
Merit: 100
...look here  http://blocks.nxtcrypto.org/nxt/nxt.cgi?action=34 ...

FTFY
sr. member
Activity: 308
Merit: 250
Dear supporters,

 I want to talk with you about the future of Nxt.org. I'm working with Passion_ltc together to make this website the center for the whole Nxt ecosystem.

We have many great ideas for the website, but before we start we need to talk about something inconvenient: the money.

I paid 157,000 NXT and 6 BTC for the domain. A few guys maybe are thinking that this is far too much, but I don't think so. With Nxt.org we finally have a quality domain for a quality product, and if we consider that Nxt will be the future of money then the money was well spent!

2Kool4Skewl asked on nextcoin.org about acquiring the domain. And I'm pretty sure that someone said there was a bounty for this domain.

So I want to ask you if someone knows more about the bounty. Maybe I could get a nice sum of the money back though this?

Thank you very much!

Greetings,
BitVenturer

Quote
According to my calculations if each one of this account (http://87.230.14.1/nxt/nxt.cgi?action=34)
will pay at least 30K nxt from his balance, it will be 1.8M NXT, I think its a fair price

Just give the community the domain for 157,000 NXT and 6 BTC. Maybe a little premium on top. But that's it.

The community didn't appreciate the fact that I got the name, my effort and resources...
You think that the name doesn't cost 1.8M ?
"Community" != "Customer"

If I would get a bounty , I would start a new thread : "development of NXT.oRG" community would decide  who and what to develop on it...
but what did I get ? "nada" , what would I get after finishing the development? as just keeping the domain? nada ? and the stake holders would be happily watching ? look here  http://87.230.14.1/nxt/nxt.cgi?action=34   and tell me , to they give a f$%& about the community ? is 1.8M , 30k fro each account too much from them ? Did I risked more then each one of them ? mmm...

When did you announce this domain? Yesterday? Give it a little more time.. not everyone is watching nxt development constantly. That said, msin offered a very generous bounty of 250K. I suppose this is more than sufficient for your needs?
hero member
Activity: 644
Merit: 500
sr. member
Activity: 491
Merit: 250
S P 8 D E
Dear supporters,

 I want to talk with you about the future of Nxt.org. I'm working with Passion_ltc together to make this website the center for the whole Nxt ecosystem.

We have many great ideas for the website, but before we start we need to talk about something inconvenient: the money.

I paid 157,000 NXT and 6 BTC for the domain. A few guys maybe are thinking that this is far too much, but I don't think so. With Nxt.org we finally have a quality domain for a quality product, and if we consider that Nxt will be the future of money then the money was well spent!

2Kool4Skewl asked on nextcoin.org about acquiring the domain. And I'm pretty sure that someone said there was a bounty for this domain.

So I want to ask you if someone knows more about the bounty. Maybe I could get a nice sum of the money back though this?

Thank you very much!

Greetings,
BitVenturer

Quote
According to my calculations if each one of this account (http://87.230.14.1/nxt/nxt.cgi?action=34)
will pay at least 30K nxt from his balance, it will be 1.8M NXT, I think its a fair price

Just give the community the domain for 157,000 NXT and 6 BTC. Maybe a little premium on top. But that's it.

The community didn't appreciate the fact that I got the name, my effort and resources...
You think that the name doesn't cost 1.8M ?
"Community" != "Customer"

If I would get a bounty , I would start a new thread : "development of NXT.oRG" community would decide  who and what to develop on it...
but what did I get ? "nada" , what would I get after finishing the development? as just keeping the domain? nada ? and the stake holders would be happily watching ? look here  http://87.230.14.1/nxt/nxt.cgi?action=34   and tell me , to they give a f$%& about the community ? is 1.8M , 30k for each account too much from them ? Did I risked more then each one of them ? mmm...
full member
Activity: 180
Merit: 100
This is really crazy! 1 800 000 NXT Shocked
member
Activity: 96
Merit: 10
Dear supporters,

 I want to talk with you about the future of Nxt.org. I'm working with Passion_ltc together to make this website the center for the whole Nxt ecosystem.

We have many great ideas for the website, but before we start we need to talk about something inconvenient: the money.

I paid 157,000 NXT and 6 BTC for the domain. A few guys maybe are thinking that this is far too much, but I don't think so. With Nxt.org we finally have a quality domain for a quality product, and if we consider that Nxt will be the future of money then the money was well spent!

2Kool4Skewl asked on nextcoin.org about acquiring the domain. And I'm pretty sure that someone said there was a bounty for this domain.

So I want to ask you if someone knows more about the bounty. Maybe I could get a nice sum of the money back though this?

Thank you very much!

Greetings,
BitVenturer

Quote
According to my calculations if each one of this account (http://87.230.14.1/nxt/nxt.cgi?action=34)
will pay at least 30K nxt from his balance, it will be 1.8M NXT, I think its a fair price

Just give the community the domain for 157,000 NXT and 6 BTC. Maybe a little premium on top. But that's it.

The community didn't appreciate the fact that I got the name, my effort and resources...
You think that the name doesn't cost 1.8M ?

Sounds to me like you want to rip off the community. Why should the community pay more than 11x the price you paid for just for a domain? Are you crazy?
You seem to think that the community desperatly wants this domain. This is obviously not the case. Domains like that are overrated anyway. People built alot of other great stuff for Nxt on domains that are way cheaper which works just as well.
sr. member
Activity: 336
Merit: 250
AKA jefdiesel
CFb

The versione of the client '' [email protected]" doesn't send the Nxt .. why ?  can you resolve ?

Thanks

Relaunched, try again.

Could someone start forging on the testnet?

I start forging on the testnet
Wink

im forging as well but not seeing any countdown clock , only have 899 testnxt at 15265031083387211287
legendary
Activity: 1470
Merit: 1004
Dear supporters,

 I want to talk with you about the future of Nxt.org. I'm working with Passion_ltc together to make this website the center for the whole Nxt ecosystem.

We have many great ideas for the website, but before we start we need to talk about something inconvenient: the money.

I paid 157,000 NXT and 6 BTC for the domain. A few guys maybe are thinking that this is far too much, but I don't think so. With Nxt.org we finally have a quality domain for a quality product, and if we consider that Nxt will be the future of money then the money was well spent!

2Kool4Skewl asked on nextcoin.org about acquiring the domain. And I'm pretty sure that someone said there was a bounty for this domain.

So I want to ask you if someone knows more about the bounty. Maybe I could get a nice sum of the money back though this?

Thank you very much!

Greetings,
BitVenturer

Quote
According to my calculations if each one of this account (http://87.230.14.1/nxt/nxt.cgi?action=34)
will pay at least 30K nxt from his balance, it will be 1.8M NXT, I think its a fair price

Just give the community the domain for 157,000 NXT and 6 BTC. Maybe a little premium on top. But that's it.

The community didn't appreciate the fact that I got the name, my effort and resources...
You think that the name doesn't cost 1.8M ?
"Community" != "Customer"

I'll give you 250k and donate the domain back to the community.
Jump to: