Bitcoin Forum
May 12, 2024, 08:58:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 [1051] 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 ... 2557 »
  Print  
Author Topic: NXT :: descendant of Bitcoin - Updated Information  (Read 2761531 times)
coolmist
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
January 20, 2014, 03:47:24 AM
 #21001


I am sorry, but we usually do not download apps from new users here. Expert must look at your app first to proof you aren't a hacker.

Here's the html to upload a file to a NXT message: https://gist.github.com/fermentNXT/8514468.

1. Download gist and copy to nxt/webapps/root/send-file.html.
2. Open http://localhost:7875/send-file.html
3. Send a file! Torrents or whatever.

You can view the file at https://localhost:7875/message.html. If people like, I can add the ability to save.

nxt: 4915862015826193000




Code:
 if (file.type.match(textType) && file.size<1000)


...this will only upload small files. Torrent files are around 9kb.

I mitigated the limit by...

Code:

        set thelist to "0123456789ABCDEF"
        set hexvalue to ""
        
        repeat with i in ciphertext
            
            set theAscii to ASCII number of i
            set hexvalue to hexvalue & character (theAscii div 16 + 1) of thelist & character (theAscii mod 16 + 1) of thelist
            
        end repeat
        
        set finalText to (hexvalue as text)
        
        set messageLength to the length of finalText
        
        set var_a to messageLength / 4
        
        set var_b to var_a / 200
        
        set iterations to round var_b rounding up
        
        set counter to 1
        repeat iterations times
            
            if messageLength is less than 800 then
                
                set charnumberalpha to 1
                set charnumberbeta to messageLength
                
                else
                
                set charmaximum to messageLength
                
                if  counter is equal to iterations then
                    
                    set charnumberalpha to 1 + 800 * (counter - 1)
                    set charnumberbeta to charmaximum
                    
                    else
                    
                    set charnumberalpha to 1 + 800 * (counter - 1)
                    set charnumberbeta to 800 + 800 * (counter -1)
                    
                end if
                
                
            end if
            
            set messageFinal to (text charnumberalpha thru charnumberbeta of finalText)
            
            if counter is less than 10 then
                set identifierLength to 1
                
                else
                
                set identifierLength to the length of counter
                
            end if
            
            set completeMessage to identifierLength & "000" & counter & "000" & messageFinal
            
            set urlMassive to  "http://localhost:7874/nxt?requestType=sendMessage&secretPhrase=" & (stringValue() of secretPhrase) & "&recipient=" &  (stringValue() of accountReceiver) & "&fee=" & (stringValue() of messageFee) & "&deadline=1440" & "&message=" & completeMessage
            
            do shell script "open " & (quoted form of urlMassive)
            
            set counter to counter + 1
        end repeat

EDIT: I don't want the bounty BTW.
1715504299
Hero Member
*
Offline Offline

Posts: 1715504299

View Profile Personal Message (Offline)

Ignore
1715504299
Reply with quote  #2

1715504299
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
ferment
Full Member
***
Offline Offline

Activity: 168
Merit: 100


IDEX - LIVE Real-time DEX


View Profile
January 20, 2014, 03:54:06 AM
 #21002


Code:
 if (file.type.match(textType) && file.size<1000)

...this will only upload small files. Torrent files are around 9kb.



1000 bytes is the max for size for sendMessage.

It wouldn't be too hard to chunk it and then create another message that contains an array of transaction ids.

coolmist
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
January 20, 2014, 03:55:58 AM
 #21003


Code:
 if (file.type.match(textType) && file.size<1000)

...this will only upload small files. Torrent files are around 9kb.



1000 bytes is the max for size for sendMessage.

It wouldn't be too hard to chunk it and then create another message that contains an array of transaction ids.

Yep, that's what my application does. I don't think it would be too hard to convert into javascript.
lr127
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
January 20, 2014, 03:59:23 AM
 #21004

Torrent files are around 9kb.
I mitigated the limit by...

It is the wrong way to store .torrent to the blockchain using aliases or AM.
I have some .torrent files with size 500KB-1MB. Do you should use one thousand messages for one file?
The better way in current stage is using the Magnet-URI.
marcoslopez
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
January 20, 2014, 04:14:30 AM
 #21005

If you want to get more users, and more media attention, when you have the amazing client of "nexern" , I would make the biggest GIVEAWAY ever on Bitcointalk. 1.000.000 NXT with the "unclaimed funds" of CfB

200 NXT each user, so they could use and see the amazing coin we have. We could get a lot of users, and we could take away all the FUD that we have.

thanks.
dzarmush
Legendary
*
Offline Offline

Activity: 1806
Merit: 1001


View Profile
January 20, 2014, 04:17:54 AM
 #21006

If you want to get more users, and more media attention, when you have the amazing client of "nexern" , I would make the biggest GIVEAWAY ever on Bitcointalk. 1.000.000 NXT with the "unclaimed funds" of CfB

200 NXT each user, so they could use and see the amazing coin we have. We could get a lot of users, and we could take away all the FUD that we have.

thanks.

They could see the amazing coin we have even with 10 coins each.

pinarello
Full Member
***
Offline Offline

Activity: 266
Merit: 100


NXT is the future


View Profile
January 20, 2014, 04:20:35 AM
 #21007

Is there someone that can "sell" some NXT on ebay?

This is very good advertisement.

as of now I see none

Pin

pinarello
Full Member
***
Offline Offline

Activity: 266
Merit: 100


NXT is the future


View Profile
January 20, 2014, 04:22:33 AM
 #21008

Torrent files are around 9kb.
I mitigated the limit by...

It is the wrong way to store .torrent to the blockchain using aliases or AM.
I have some .torrent files with size 500KB-1MB. Do you should use one thousand messages for one file?
The better way in current stage is using the Magnet-URI.

please make it happen.


Pin

marcoslopez
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
January 20, 2014, 04:23:33 AM
 #21009

If you want to get more users, and more media attention, when you have the amazing client of "nexern" , I would make the biggest GIVEAWAY ever on Bitcointalk. 1.000.000 NXT with the "unclaimed funds" of CfB

200 NXT each user, so they could use and see the amazing coin we have. We could get a lot of users, and we could take away all the FUD that we have.

thanks.

They could see the amazing coin we have even with 10 coins each.


Yes, but everybody is claiming that the IPO was not fair. With a big giveaway we could save this problem.

Just my opinion.

thanks.
Anon136
Legendary
*
Offline Offline

Activity: 1722
Merit: 1217



View Profile
January 20, 2014, 04:24:13 AM
 #21010

If you want to get more users, and more media attention, when you have the amazing client of "nexern" , I would make the biggest GIVEAWAY ever on Bitcointalk. 1.000.000 NXT with the "unclaimed funds" of CfB

200 NXT each user, so they could use and see the amazing coin we have. We could get a lot of users, and we could take away all the FUD that we have.

thanks.

Its a good idea in general but it shouldnt be done through giveaway on the forum. It would be exploited by giveaway thread scammers. The way to do it would be a faucet giving away inordinately generous payouts and a lot of promotion to make sure that as many people as possible knew about it before hand. Captchas can not be gamed. It would be a really fair way to get a lot of nxt widely distributed among a lot of people. I wouldnt even be adversed to giving the whole 9 mill away like this. Do it in a couple of rounds so that word spreads from the first round so that you have even more participants in the second and third. This would generate a TON of buzz and a lot of involvement.

Rep Thread: https://bitcointalk.org/index.php?topic=381041
If one can not confer upon another a right which he does not himself first possess, by what means does the state derive the right to engage in behaviors from which the public is prohibited?
salsacz
Hero Member
*****
Offline Offline

Activity: 490
Merit: 504


View Profile
January 20, 2014, 04:27:41 AM
 #21011

Nxt isn't only a Bitcointalk.. btw there is a cheater on nextcoin.org with 70 Nxt accounts and 70 nextcoin.org accounts... for begging (see my blog). I am for some giveaway only for sharing our infographics and videos, but not sooner than in a few weeks
grandpa_seth
Sr. Member
****
Offline Offline

Activity: 316
Merit: 250

Simcoin Puny Humans Communicator


View Profile
January 20, 2014, 04:30:59 AM
 #21012

Sorry, but not a lot of action on the official Trading Thread I promise this will be the only time I post this here.

I would love to own as much Nxt as I can get. If there is any huge stakeholder who is tired of sitting on his

Scrooge Mcduck money bin full of Nxt and wants to let some go to someone who has not had a lot of luck lately in

general but keeps his head up. Please consider selling me 10-14 Btc worth at a really really generous makes you feel

like you did a good deed price. If escrow is needed I would like Anon136 to do it. Thanks
Armando
Hero Member
*****
Offline Offline

Activity: 870
Merit: 500


Trading will make me rich)


View Profile
January 20, 2014, 04:36:39 AM
 #21013

If you want to get more users, and more media attention, when you have the amazing client of "nexern" , I would make the biggest GIVEAWAY ever on Bitcointalk. 1.000.000 NXT with the "unclaimed funds" of CfB

200 NXT each user, so they could use and see the amazing coin we have. We could get a lot of users, and we could take away all the FUD that we have.

thanks.

Its a good idea in general but it shouldnt be done through giveaway on the forum. It would be exploited by giveaway thread scammers. The way to do it would be a faucet giving away inordinately generous payouts and a lot of promotion to make sure that as many people as possible knew about it before hand. Captchas can not be gamed. It would be a really fair way to get a lot of nxt widely distributed among a lot of people. I wouldnt even be adversed to giving the whole 9 mill away like this. Do it in a couple of rounds so that word spreads from the first round so that you have even more participants in the second and third. This would generate a TON of buzz and a lot of involvement.

Bounties are much better I think. It's better to pay for advertisement, exchanges and software, then give all to forum trolls.
Jaguar0625
Sr. Member
****
Offline Offline

Activity: 299
Merit: 250


View Profile
January 20, 2014, 04:37:44 AM
 #21014

Bounty announcement

100'000 NXT will be paid for working JavaScript code that signs and verifies signatures using NRS algo.

- The licence must allow to use the code in any application
- Sign/verify speed must be not lower than 100 signatures per second on a 1 GHz CPU (1 core)
- All the code must be in a single non-obfuscated well-formatted .js file
- Input/output values must be strings like "8302504e4e57c6c65335289879c6915a273d3aae7bd086058e403fcd2bc18341"

The bounty is valid till the 20th of January, 2014 12:00:00 UTC. The complete code must be published in this thread.

CfB, I think you're aware of the other thread about this bounty (since you've been posting there), but I'll repost here just to be safe (more information in the other thread):

Finally finished my implementation: https://github.com/Jaguar0625/JavaScriptNrs.

NEM - nem.io
Armando
Hero Member
*****
Offline Offline

Activity: 870
Merit: 500


Trading will make me rich)


View Profile
January 20, 2014, 04:38:29 AM
 #21015

Sorry, but not a lot of action on the official Trading Thread I promise this will be the only time I post this here.

I would love to own as much Nxt as I can get. If there is any huge stakeholder who is tired of sitting on his

Scrooge Mcduck money bin full of Nxt and wants to let some go to someone who has not had a lot of luck lately in

general but keeps his head up. Please consider selling me 10-14 Btc worth at a really really generous makes you feel

like you did a good deed price. If escrow is needed I would like Anon136 to do it. Thanks

Just trade it here: http://dgex.com/index.htm?9112
or bter.com
marcoslopez
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
January 20, 2014, 04:48:01 AM
 #21016

If you want to get more users, and more media attention, when you have the amazing client of "nexern" , I would make the biggest GIVEAWAY ever on Bitcointalk. 1.000.000 NXT with the "unclaimed funds" of CfB

200 NXT each user, so they could use and see the amazing coin we have. We could get a lot of users, and we could take away all the FUD that we have.

thanks.

Its a good idea in general but it shouldnt be done through giveaway on the forum. It would be exploited by giveaway thread scammers. The way to do it would be a faucet giving away inordinately generous payouts and a lot of promotion to make sure that as many people as possible knew about it before hand. Captchas can not be gamed. It would be a really fair way to get a lot of nxt widely distributed among a lot of people. I wouldnt even be adversed to giving the whole 9 mill away like this. Do it in a couple of rounds so that word spreads from the first round so that you have even more participants in the second and third. This would generate a TON of buzz and a lot of involvement.

It should be better with bounties, but it is just to get attention and for a better distribution of the coin.

Thanks.
grandpa_seth
Sr. Member
****
Offline Offline

Activity: 316
Merit: 250

Simcoin Puny Humans Communicator


View Profile
January 20, 2014, 04:49:27 AM
 #21017

Sorry, but not a lot of action on the official Trading Thread I promise this will be the only time I post this here.

I would love to own as much Nxt as I can get. If there is any huge stakeholder who is tired of sitting on his

Scrooge Mcduck money bin full of Nxt and wants to let some go to someone who has not had a lot of luck lately in

general but keeps his head up. Please consider selling me 10-14 Btc worth at a really really generous makes you feel

like you did a good deed price. If escrow is needed I would like Anon136 to do it. Thanks

Just trade it here: http://dgex.com/index.htm?9112
or bter.com


I'm not a troll or basher. But 100% the truth Bter stole a bit of bitcoin from me. I emailed them and have not heard back yet. It is funny too cuz I withdrew

twice larger btc amounts no problem. Then with a tiny amount that I got converting BTR Points they flat out stole it. At least I'm pretty sure they did. It could be

an error but I'm not depositing there regardless. I also have a fear of dgex. Again I am not bashing them, I have a fear of their rising prices. Just taking a shot that a stakeholder

with millions could allow themselves to feel like a deity and give a lower than current market price for up to 14 bitcoins. I'd like to go all in on Nxt.  Grin
Anon136
Legendary
*
Offline Offline

Activity: 1722
Merit: 1217



View Profile
January 20, 2014, 04:53:58 AM
 #21018

If you want to get more users, and more media attention, when you have the amazing client of "nexern" , I would make the biggest GIVEAWAY ever on Bitcointalk. 1.000.000 NXT with the "unclaimed funds" of CfB

200 NXT each user, so they could use and see the amazing coin we have. We could get a lot of users, and we could take away all the FUD that we have.

thanks.

Its a good idea in general but it shouldnt be done through giveaway on the forum. It would be exploited by giveaway thread scammers. The way to do it would be a faucet giving away inordinately generous payouts and a lot of promotion to make sure that as many people as possible knew about it before hand. Captchas can not be gamed. It would be a really fair way to get a lot of nxt widely distributed among a lot of people. I wouldnt even be adversed to giving the whole 9 mill away like this. Do it in a couple of rounds so that word spreads from the first round so that you have even more participants in the second and third. This would generate a TON of buzz and a lot of involvement.

Bounties are much better I think. It's better to pay for advertisement, exchanges and software, then give all to forum trolls.

What I described would be a very effective way to market nxt. We should probably have a good solid cross platform 1 click client, a professionally written whitepaper, and a professional audit of the code before we think about marketing. After we have those things though, than this could potentially be the best way to market the coin.

Rep Thread: https://bitcointalk.org/index.php?topic=381041
If one can not confer upon another a right which he does not himself first possess, by what means does the state derive the right to engage in behaviors from which the public is prohibited?
grandpa_seth
Sr. Member
****
Offline Offline

Activity: 316
Merit: 250

Simcoin Puny Humans Communicator


View Profile
January 20, 2014, 05:07:41 AM
 #21019

As an average Joe user, not having a user friendly one click client always bothered me. I imagine regular users don't like/are scared of the current start.bat cmd box running

Open a Web Browser gives yellow triangle exclamation point warning "This site's security is not trusted" make sure to run incognito because passphrase can be stored in cache.



KLONE
Sr. Member
****
Offline Offline

Activity: 264
Merit: 250


View Profile
January 20, 2014, 05:09:57 AM
Last edit: January 20, 2014, 05:24:32 AM by KLONE
 #21020

Well, I faced a moral dilemma and would like to ask for an advice...

FrictionlessCoin created a thread dedicated to NEX (descendant of NXT). I had a lot of fun reading that thread but I suspect some people took NEX seriously. The problem is that if FC waits till April when Nxt source code becomes completely open, he still won't be able to generate a valid genesis block, coz Nxt uses a crypto algo modified by BCNext (this is why we collected 10 BTC for the audit). I support all cryptocurrencies and would like to help him to create a new genesis block, competition is good for the whole crypto-community. But this could look not very good to guys who own NXTs...

What would u do?

Come-from-Beyond, KLONE will need your help to create a new genesis block also.

If you help Frictionless Coin, would you consider helping KLONE?

KLONE is using an innovative new technique ('proof of clone' POC) to create an ethically sound genesis block distribution, so your help would be most appreciated.

NXT clones need to be fair, but giving away coins for free to anybody who posts "interested" in an announcment thread will lead to a very high drop out rate.

NXT achieved 1% drop out rate, and that was from people who sent bitcoins.

What drop-out rate will a coin have when entry into the genesis block is gained from nothing more than typing "interested"? Too high IMO.



https://bitcointalk.org/index.php?topic=423647.msg4610930#msg4610930
Pages: « 1 ... 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 [1051] 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 ... 2557 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!