Stark-Fujikawa
|
|
December 15, 2013, 12:55:30 AM |
|
Nice vid! Wideo makes making videos like that very easy, and the more we have, the better. I say that semi-facetiously, since I've spent hours working on the wiki and forums this week, and would love to see even a small fraction of the 200K+ in donations Petrik got for this work. I linked Petrik's video to the wiki. UPDATE: Someone just dropped me 50K Nxt. Really, really generous. I'm going to turn around, though, and divvy it up between myself and a few other folks who have been working hard this week -- opticalcarrier, drexme, and pinarello. Gonna spread the love, but thanks for sharing it, whoever you are. Thank you, currently I am working on "NXT mining" video, I hope it will look much better here in the Gdoc I shared on nextcoin.org I can now see: https://docs.google.com/spreadsheet/ccc?key=0AgAGADgnQcrtdHRrV3V3Z1lzOXVEMWtqdElUaEtqV1E#gid=1Video makers:salsacz pinarello allwelder leonardosegura Translators:mcjavar german, hungarian kevinkms chnese salsacz czech pinarello dutch Sondreviking norvegian allwelder chinese pufis Lithuanian DSoft German Osman24 Turkish Tadas Lithuanian ATpr Russian or Ukrainian BaiMangal Bulgarian mactrance Dutch nxtDigger Polish Jls. french redtux french LeFiste german vodkaaa german Graphics: LeFiste mr001 Tobre Screenwriter=== If we combine these people and maybe add some english corrector, we could provide cool videos that would also be translated into many languages... Added myself to the list of Dutch translators. So far I've translated optical's article and added it to the official forums. I could do some editing on the English communication as well if need be.
|
NL/EN Translator. Will work for crypto. NXT:13307336450726014831
|
|
|
salsacz
|
|
December 15, 2013, 01:26:53 AM |
|
Meanwhile on Coinmarketcap.com:
|
|
|
|
Stark-Fujikawa
|
|
December 15, 2013, 01:54:35 AM |
|
|
NL/EN Translator. Will work for crypto. NXT:13307336450726014831
|
|
|
msin
Legendary
Offline
Activity: 1470
Merit: 1004
|
|
December 15, 2013, 02:09:48 AM |
|
Nice vid! Wideo makes making videos like that very easy, and the more we have, the better. I say that semi-facetiously, since I've spent hours working on the wiki and forums this week, and would love to see even a small fraction of the 200K+ in donations Petrik got for this work. I linked Petrik's video to the wiki. UPDATE: Someone just dropped me 50K Nxt. Really, really generous. I'm going to turn around, though, and divvy it up between myself and a few other folks who have been working hard this week -- opticalcarrier, drexme, and pinarello. Gonna spread the love, but thanks for sharing it, whoever you are. Thank you, currently I am working on "NXT mining" video, I hope it will look much better here in the Gdoc I shared on nextcoin.org I can now see: https://docs.google.com/spreadsheet/ccc?key=0AgAGADgnQcrtdHRrV3V3Z1lzOXVEMWtqdElUaEtqV1E#gid=1Video makers:salsacz pinarello allwelder leonardosegura Translators:mcjavar german, hungarian kevinkms chnese salsacz czech pinarello dutch Sondreviking norvegian allwelder chinese pufis Lithuanian DSoft German Osman24 Turkish Tadas Lithuanian ATpr Russian or Ukrainian BaiMangal Bulgarian mactrance Dutch nxtDigger Polish Jls. french redtux french LeFiste german vodkaaa german Graphics: LeFiste mr001 Tobre Screenwriter=== If we combine these people and maybe add some english corrector, we could provide cool videos that would also be translated into many languages... I would add nexern to the programming list, he created the Nxt. blockchain explorer and is currently working on the nde-client.
|
|
|
|
allwelder
Legendary
Offline
Activity: 1512
Merit: 1004
|
|
December 15, 2013, 02:32:42 AM |
|
|
|
|
|
Krabby
Sr. Member
Offline
Activity: 644
Merit: 250
https://primedao.eth.link/#/
|
|
December 15, 2013, 02:46:14 AM |
|
Meanwhile on Coinmarketcap.com: :') Maybe one day...
|
|
|
|
2Kool4Skewl (OP)
|
|
December 15, 2013, 02:48:06 AM |
|
Psybits,
Please hold off on the press release for a couple days until we can provide you with a domain name. This domain will host a temporary website until the main Nxt website is ready. We want this domain included in the press release for marketing purposes.
|
|
|
|
NxtChoice
|
|
December 15, 2013, 03:31:34 AM Last edit: December 15, 2013, 06:55:40 AM by NxtChoice |
|
I got tired of typing api requests manually in the browser url, and put together a single html page with the ones I most commonly use. To run it from localhost, save it as nxt/webapps/root/admin.html and then go to https://localhost:7875/admin.html . You can see what it looks like at https://nxt.airdns.org:7875/admin.html . Here is the source: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"/> <title>NRS</title> <style type="text/css"> table {border-collapse: collapse;} td {padding: 10px;} .result {white-space: pre; font-family: monospace;} </style> <script type="text/javascript"> function submitForm(form) { var url = '/nxt?'; for (i = 0; i < form.elements.length; i++) { if (! form.elements[i].name) { continue; } if (! url.endsWith('?')) { url += '&'; } url += encodeURIComponent(form.elements[i].name); url += '='; url += encodeURIComponent(form.elements[i].value); } var request = new XMLHttpRequest(); request.open("GET", url, false); request.send(); var result = JSON.stringify(JSON.parse(request.responseText), null, 4); form.getElementsByClassName("result")[0].textContent = result; return false; } </script> </head> <body> <h3>Nxt admin tools</h3> <b>Generate Hallmark:</b><br/> <form action="/nxt" method="GET" onsubmit="return submitForm(this);"> <input type="hidden" name="requestType" value="markHost"/> <table> <tr> <td>Public IP:</td> <td><input type="text" name="host"/></td> </tr> <tr> <td>Weight:</td> <td><input type="number" name="weight" value="100"/></td> </tr> <tr> <td>Date:</td> <td><input type="text" name="date" value="2013-12-10"/></td> </tr> <tr> <td>Secret Phrase:</td> <td><input type="password" name="secretPhrase"/></td> </tr> <tr> <td colspan="2"><input type="submit" value="submit"/></td> </tr> </table> <div class="result"></div> </form> <hr> <b>Verify Hallmark:</b><br/> <form action="/nxt" method="GET" onsubmit="return submitForm(this);"> <input type="hidden" name="requestType" value="decodeHallmark"/> <table> <tr> <td>Hallmark:</td> <td><input type="text" name="hallmark"/></td> </tr> <tr> <td colspan="2"><input type="submit" value="submit"/></td> </tr> </table> <div class="result"></div> </form> <hr> <b>Verify Token:</b><br/> <form action="/nxt" method="GET" onsubmit="return submitForm(this);"> <input type="hidden" name="requestType" value="decodeToken"/> <table> <tr> <td>Token:</td> <td><input type="text" name="token"/></td> </tr> <tr> <td>Website:</td> <td><input type="text" name="website"/></td> </tr> <tr> <td colspan="2"><input type="submit" value="submit"/></td> </tr> </table> <div class="result"></div> </form> <hr> <b>Get Peers:</b><br/> <form action="/nxt" method="GET" onsubmit="return submitForm(this);"> <input type="hidden" name="requestType" value="getPeers"/> <table> <tr> <td colspan="2"><input type="submit" value="submit"/></td> </tr> </table> <div class="result"></div> </form> <hr> <b>Get Peer Info:</b><br/> <form action="/nxt" method="GET" onsubmit="return submitForm(this);"> <input type="hidden" name="requestType" value="getPeer"/> <table> <tr> <td>Peer:</td> <td><input type="text" name="peer"/></td> </tr> <tr> <td colspan="2"><input type="submit" value="submit"/></td> </tr> </table> <div class="result"></div> </form> <hr> <b>Get State:</b><br/> <form action="/nxt" method="GET" onsubmit="return submitForm(this);"> <input type="hidden" name="requestType" value="getState"/> <table> <tr> <td colspan="2"><input type="submit" value="submit"/></td> </tr> </table> <div class="result"></div> </form> <hr> <b>Get My Info:</b><br/> <form action="/nxt" method="GET" onsubmit="return submitForm(this);"> <input type="hidden" name="requestType" value="getMyInfo"/> <table> <tr> <td colspan="2"><input type="submit" value="submit"/></td> </tr> </table> <div class="result"></div> </form> <hr> <b>Get Account Balance:</b><br/> <form action="/nxt" method="GET" onsubmit="return submitForm(this);"> <input type="hidden" name="requestType" value="getBalance"/> <table> <tr> <td>Account:</td> <td><input type="text" name="account"/></td> </tr> <tr> <td colspan="2"><input type="submit" value="submit"/></td> </tr> </table> <div class="result"></div> </form> </body> </html>
Could you please open a new thread discussing you API Admin project? Thanks.
|
|
|
|
allwelder
Legendary
Offline
Activity: 1512
Merit: 1004
|
|
December 15, 2013, 04:26:10 AM |
|
Now DGEX is downtime. What is the matter?
|
|
|
|
2Kool4Skewl (OP)
|
|
December 15, 2013, 04:36:39 AM |
|
Now DGEX is downtime. What is the matter?
Maybe he's adding charts.
|
|
|
|
opticalcarrier
|
|
December 15, 2013, 05:36:08 AM |
|
is anyone who currently has a VPS willing to have it host a basic webpage for NXT for purposes of the press release? 2kool4kool is currently writing a basic one and I have got nxtcrypto.org to resolve it for us.
|
|
|
|
abctc
Legendary
Offline
Activity: 1792
Merit: 1038
|
|
December 15, 2013, 05:37:50 AM |
|
NRS 0.3.9e
Any idea why "Generated an incorrect block. Waiting for the next one..." It's been running like this for hours and not a single valid block was generated. Have tried restarting, no difference. Blocks are up to date ...
- exactly the same with my Win7 NRS 0.3.19e installation.
|
██████████████████████████████████████████████████ ████████████████████████████████████████████████████ ██████████████████████████████████████████████████████ ████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████ ██████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████ ██████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████ | , the Next platform. Magis quam Moneta (More than a Coin) |
|
|
|
abctc
Legendary
Offline
Activity: 1792
Merit: 1038
|
|
December 15, 2013, 05:45:09 AM |
|
is anyone who currently has a VPS willing to have it host a basic webpage for NXT for purposes of the press release? 2kool4kool is currently writing a basic one and I have got nxtcrypto.org to resolve it for us.
- I have a VPS, and I'm willing to host a webpage for NXT, but I don't know how to. Hope this is as simple as adding an admin page to jetty: https://bitcointalk.org/index.php?topic=345619.msg3966438#msg3966438.
|
██████████████████████████████████████████████████ ████████████████████████████████████████████████████ ██████████████████████████████████████████████████████ ████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████ ██████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████ ██████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████ | , the Next platform. Magis quam Moneta (More than a Coin) |
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 15, 2013, 06:55:36 AM |
|
NRS 0.3.9e
Any idea why "Generated an incorrect block. Waiting for the next one..." It's been running like this for hours and not a single valid block was generated. Have tried restarting, no difference. Blocks are up to date
Same node also unable to send transaction.
I'll check it. Looks like 99% of the network upgraded to the experimental version...
|
|
|
|
NxtChoice
|
|
December 15, 2013, 07:12:39 AM |
|
Is it possible for the block explorer to get the account's real time status whether the account is mining? If yes, it's very useful for us to check my account through the block explorer.
|
|
|
|
abctc
Legendary
Offline
Activity: 1792
Merit: 1038
|
|
December 15, 2013, 07:18:31 AM |
|
it will be a bit more complex than jetty - apache load and then the css/xml/html.
- no, it is beyond my skills.
|
██████████████████████████████████████████████████ ████████████████████████████████████████████████████ ██████████████████████████████████████████████████████ ████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████ ██████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████ ██████████████████████████████████████████████████████████████████ ████████████████████████████████████████████████████████████████████ | , the Next platform. Magis quam Moneta (More than a Coin) |
|
|
|
Sharky444
|
|
December 15, 2013, 07:58:52 AM |
|
NRS 0.3.9e
Any idea why "Generated an incorrect block. Waiting for the next one..." It's been running like this for hours and not a single valid block was generated. Have tried restarting, no difference. Blocks are up to date
Same node also unable to send transaction.
I'll check it. Looks like 99% of the network upgraded to the experimental version... This is because I've got no peers with build 18 after a while, without going to 19e the client was simply not working.
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
December 15, 2013, 08:01:16 AM |
|
This is because I've got no peers with build 18 after a while, without going to 19e the client was simply not working.
I didn't expect everyone moved to experimental version. This could lead to serious issues...
|
|
|
|
bybitcoin
|
|
December 15, 2013, 08:07:22 AM |
|
Sent 200K from the donation pool to klee's 2584657662098653454 account to let him continue our promoting based giveaway. I can focus on bounty thread entirely now, I need your preview of the already submitted videos and articles there to assign and award the bounty prizes accordingly. Please go there and make a review comment!
|
|
|
|
|