Pages:
Author

Topic: [ANN][TC][TorrentCoin]|POW|X13|DGW|IPO now|new wallet| - page 4. (Read 50438 times)

full member
Activity: 210
Merit: 100
It's not the dev's fault. He only speaks C++. Send him something like:

Code:
IPOinfo get_ipo_info()
{
    return ; // Dev, please complete this function.
}

 Grin
hero member
Activity: 734
Merit: 500
some devs know how to screw launches  Grin
full member
Activity: 154
Merit: 100
So now the dev is attempting to sell most of his premine in an IPO?

The premine was 420,000 coins and the IPO is for 400,000 coins. 

The communication here is terrible.
sr. member
Activity: 462
Merit: 250
Just found out publichd.se seems to be closed.  A de-centralized way to propagate torrents is an awesome idea.

I still see no tutorial on how to use TC though.  From what I gather, you send TC to the address in the ANN and attach your magnet link.  How much TC is needed to send a magnet link?  Who is maintaining the trackers?  Who gets the TC sent to this address?

Now an IPO appears out of the blue with no information.  How long does the IPO last?  What do we get for contributing to the IPO?  What does the dev team intend to do with the funds raised from the IPO?

torrentcoin.org seems to be down so no answers there.

I love the idea and want to support this coin, but we need a bit more communication and transparency from the dev team.
full member
Activity: 210
Merit: 100
IPO is a bad idea. IPOs tend to inspire negative confidence.
legendary
Activity: 1148
Merit: 1000
newbie
Activity: 28
Merit: 0
newbie
Activity: 26
Merit: 0
Round earnings are not credited until 1020 confirms. Why long?
newbie
Activity: 28
Merit: 0
The new wallet looks good in the screenshot, could you please push the update to github?

commit  now.

Thanks!

Linux support seems a bit lacking in these releases though.
To compile on Linux, I had to:

1. On line 120 of torretcoin-qt.pro:
Change the line to read: INCLUDEPATH += src/leveldb/include src/leveldb/helpers

2. On line 121 of torrentcoin-qt.pro:
Change line to read: LIBS += src/leveldb/libleveldb.a src/leveldb/libmemenv.a

3. Near the top of src/qt/torrentpage.cpp, add this code (borrowed from http://www.jb.man.ac.uk/~slowe/cpp/itoa.html#newest ):
Code:
char* itoa(int value, char* result, int base) {
// check that the base if valid
if (base < 2 || base > 36) { *result = '\0'; return result; }

char* ptr = result, *ptr1 = result, tmp_char;
int tmp_value;

do {
tmp_value = value;
value /= base;
*ptr++ = "zyxwvutsrqponmlkjihgfedcba9876543210123456789abcdefghijklmnopqrstuvwxyz" [35 + (tmp_value - value * base)];
} while ( value );

// Apply negative sign
if (tmp_value < 0) *ptr++ = '-';
*ptr-- = '\0';
while(ptr1 < ptr) {
tmp_char = *ptr;
*ptr--= *ptr1;
*ptr1++ = tmp_char;
}
return result;
}

4. $cd src/leveldb
$chmod 755 build_detect_platform
$make libleveldb.a libmemenv.a
$cd ../..
$qmake
$make


Dev, you should test your code on Linux too!

I hope these changes don't introduce any bugs...




Code:
QString s = QString::number(index, 10);  
std::vector args;
args.push_back("getblockhash");
args.push_back(s.toStdString());


thank you!
full member
Activity: 198
Merit: 100
DEV, can we say that this coin is safer than others?
full member
Activity: 210
Merit: 100
The new wallet looks good in the screenshot, could you please push the update to github?

commit  now.

Thanks!

Linux support seems a bit lacking in these releases though.
To compile on Linux, I had to:

1. On line 120 of torretcoin-qt.pro:
Change the line to read: INCLUDEPATH += src/leveldb/include src/leveldb/helpers

2. On line 121 of torrentcoin-qt.pro:
Change line to read: LIBS += src/leveldb/libleveldb.a src/leveldb/libmemenv.a

3. Near the top of src/qt/torrentpage.cpp, add this code (borrowed from http://www.jb.man.ac.uk/~slowe/cpp/itoa.html#newest ):
Code:
char* itoa(int value, char* result, int base) {
// check that the base if valid
if (base < 2 || base > 36) { *result = '\0'; return result; }

char* ptr = result, *ptr1 = result, tmp_char;
int tmp_value;

do {
tmp_value = value;
value /= base;
*ptr++ = "zyxwvutsrqponmlkjihgfedcba9876543210123456789abcdefghijklmnopqrstuvwxyz" [35 + (tmp_value - value * base)];
} while ( value );

// Apply negative sign
if (tmp_value < 0) *ptr++ = '-';
*ptr-- = '\0';
while(ptr1 < ptr) {
tmp_char = *ptr;
*ptr--= *ptr1;
*ptr1++ = tmp_char;
}
return result;
}

4. $cd src/leveldb
$chmod 755 build_detect_platform
$make libleveldb.a libmemenv.a
$cd ../..
$qmake
$make


Dev, you should test your code on Linux too!

I hope these changes don't introduce any bugs...
newbie
Activity: 28
Merit: 0
The new wallet looks good in the screenshot, could you please push the update to github?

commit  now.
hero member
Activity: 2296
Merit: 506
Cryptocasino.com
The new wallet looks good in the screenshot, could you please push the update to github?
I second that. We would like to list the coin on our site. Any bounties available?
full member
Activity: 210
Merit: 100
The new wallet looks good in the screenshot, could you please push the update to github?
newbie
Activity: 28
Merit: 0

So basically the torrent feature this coin has is a search engine in the blockchain, right?

It might eventually also have a torrent client to directly download from the wallet, but this doesn't seem to replace trackers, am I right?


yes.

all magnet on blockchain.

member
Activity: 70
Merit: 10
hero member
Activity: 784
Merit: 1005
new wallet:

So basically the torrent feature this coin has is a search engine in the blockchain, right?

It might eventually also have a torrent client to directly download from the wallet, but this doesn't seem to replace trackers, am I right?
hero member
Activity: 854
Merit: 539
new wallet:

when i download this Windows Wallet: https://mega.co.nz/#!uF0SzIxb!WpXLu0BH7qUw8aU1GWmOoJmopPLK0HL8_YmxUjDHdNQ

there is a 1.0 qt .zip
if i open the wallet its 0.8.7.1 version??
legendary
Activity: 1148
Merit: 1000
list this on bittrex or poloniex. Smiley
Pages:
Jump to: