Bitcoin Forum
September 11, 2024, 05:47:41 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: April 06, 2016, 06:01:06 AM
There is how much Jared cares:

http://findevr.com/videos/findevr-2016-digibyte-holdings/

That's the conference from March 30th. Where is the video? If I were Jared, I'd try to release that video ASAP so people can watch with excitement what's going on?

Jared disappared. There hasn't been word for a week now. I sold my 1.2 million DGB today for such a simple reason: no update from Jared and no video to showcase what happened at the conference.

Jared this is what happens when you don't give people anything and we're desperately hoping for something to cling on to... you're not giving it. So we've ALL sold.

You can't invest in a coin that doesn't restore faith to the people. You can't invest in a coin without any future insight or something to believe in. That's all the stock / crypto market is... just having information so we can "believe" something and take the risk to invest.

You go to youtube... reddit.. twitter... all sites have no updates. no videos. no news. nothing.

If you don't sell a dream... you'll have no followers!
FUCK YOU DGB

it's a good time to sell.



hey guys hope you took my advice and sold. whales were dumping on you here at 150 satoshis.

still a chance to sell if you are in profit. good luck!



im at a loss. they dumped on me hard and now im bagholdin like the homeless dude with his daily take of cans.


$250,000,000 deal?  Why isn't this coin in the top 3?

Jared has not had time to market this update. He might be finishing up with big investors in NYC. Who knows what plans he has.

busy dumping millions on the exchanges, very time consuming, dont worry though when the buy walls dry up he will then have time to come here with the next BS hype


Where is the proof the code is 3 years old?

this is technical, get someone who actually understand programming to verify it for you if you dont believe me.

it is well known that dgb forked from myriad, if you go to the myriad github repo https://github.com/myriadcoin/myriadcoin you will see some info at top left, 1) myriad itself has only done 151 commits 2) myriad forked from zetacoin
we then go to zetacoins github https://github.com/zetacoin/zetacoin you will see some info at top left 1) zetacoin forked from bitcoin 2) it is an amazing 6103 commits behind bitcoin

from this we can infer that myriad was also 6103 commits behind bitcoin, and that when digibyte was forked from myriad it would also then be 6103 commits behind.

of course at this point you are going to claim digibyte updated the code after forking, but here is a simple script that will prove you wrong
Code:
rm -rf dgb
rm -rf myr
#clone the 2 for comparison
git clone https://github.com/digibyte/digibyte.git
git clone https://github.com/myriadcoin/myriadcoin.git
cp -rf myriadcoin myr
cp -rf digibyte dgb
#normalise name changes for comparison
find myr -type f -exec sed -i 's/bitcoin/shitcoin/gI' {} +
find myr -type f -exec sed -i 's/digibyte/shitcoin/gI' {} +
find myr -type f -exec sed -i 's/myriadcoin/shitcoin/gI' {} +
find myr -type f -exec sed -i 's/myriad/shitcoin/gI' {} +
find dgb -type f -exec sed -i 's/bitcoin/shitcoin/gI' {} +
find dgb -type f -exec sed -i 's/digibyte/shitcoin/gI' {} +
find dgb -type f -exec sed -i 's/myriadcoin/shitcoin/gI' {} +
find dgb -type f -exec sed -i 's/myriad/shitcoin/gI' {} +
#delete images and localisation files as these are not code and create a lot of noise
rm -rf dgb/src/qt/res
rm -rf myr/src/qt/res
rm -rf dgb/src/qt/locale
rm -rf myr/src/qt/locale
#compare the src directories to get an idea of how much code has been added
diff -rubd myr/src/ dgb/src/ | grep -E "^[+][^+]" | wc -l
if you run this script you will find that there are only (and this is an upper bound) 1118 differences (most of these are from myriad side, as I showed in my earlier posts the entire code written by th e digibyte team is as little as 500 lines with most of that being generic stuff a child could change) between the current myriad and digibyte codebases if digibyte  had updates to the latest bitcoin these differences would be much greater.

from this it is safe to infer that digibyte is on the same bitcoin codebase as zetacoin and myriad - the exact bitcoin commit zetacoin forked from is here https://github.com/bitcoin/bitcoin/commit/6d89611c3aaa85798c4d70d20e35e6bcb7bdd5c0 and dates back to 2013 meaning digibyte is terribly out of date and missing lots of features and bug fixes from bitcoin


of course I expect you still wont believe me so here is another script
Code:
rm -rf dgb
rm -rf btc
rm -rf btcforkpoint
#clone the 2 for comparison
git clone https://github.com/digibyte/digibyte.git
git clone https://github.com/bitcoin/bitcoin.git
cp -rf digibyte dgb
cp -rf bitcoin btc
cp -rd bitcoin btcforkpoint
#revert the repo to the point where digibyte was forked from
cd btcforkpoint
git reset --hard 6d89611c3aaa85798c4d70d20e35e6bcb7bdd5c0
cd ..
#normalise name changes for comparison
find dgb -type f -exec sed -i 's/bitcoin/shitcoin/gI' {} +
find dgb -type f -exec sed -i 's/digibyte/shitcoin/gI' {} +
find btc -type f -exec sed -i 's/bitcoin/shitcoin/gI' {} +
find btc -type f -exec sed -i 's/digibyte/shitcoin/gI' {} +
find btcforkpoint -type f -exec sed -i 's/bitcoin/shitcoin/gI' {} +
find btcforkpoint -type f -exec sed -i 's/digibyte/shitcoin/gI' {} +
#delete images and localisation files as these are not code and create a lot of noise
rm -rf dgb/src/qt/res
rm -rf btc/src/qt/res
rm -rf btcforkpoint/src/qt/res
rm -rf dgb/src/qt/locale
rm -rf btc/src/qt/locale
rm -rf btcforkpoint/src/qt/locale
#compare the src directories to get a basic idea of how much is different
diff -rubd dgb/src/ btc/src/ | grep -E "^[+][^+]" | wc -l
diff -rubd dgb/src btcforkpoint/src/ | grep -E "^[+][^+]" | wc -l
this script compares the latest digibyte codebase to the current bitcoin codebase and to the 2013 bitcoin codebase, it finds the 2013 codebase much more similar, this proves that digibyte has not kept updates with bitcoin



I am starting to believe crypto_beast was not trolling in all his posts. I sold at a 25% loss , would of made more losses if I held on more.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: April 04, 2016, 12:17:01 AM
Huh when a ship is sinking you need the Captain to step up to the helm...Jared were the fuck is the news on the 2 conferences you have attended.....were is the Digireport you said you would do each month......well we have had one so far but we are missing the other by 2 weeks at least & maybe even more

$250,000,000 deal?  Why isn't this coin in the top 3?

Jared has not had time to market this update. He might be finishing up with big investors in NYC. Who knows what plans he has.

busy dumping millions on the exchanges, very time consuming, dont worry though when the buy walls dry up he will then have time to come here with the next BS hype

I hope this is not what is going on. I am down 25%
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: April 02, 2016, 12:40:38 PM

Managed to get the wallet to sync. Is Jared going to say something about the NYC conference? I have already lost 20% value on my coins.   Angry Angry

Crypto fluctuates wildly. That is how you make money waiting for it to eventually explode. Cannot complain about losing 20%. Overall I have made 500% on my DGB investment so far.

Exactly. You can't expect the price to only go up. Life doesn't work like that (unfortunately).
It will go up again, just be patient Smiley

I understand this , it will stay above 100 I am sure and then we can wait for the next announcement. Any reason why price didn't go to 1000 on the 250 million contract ?
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: April 02, 2016, 11:43:21 AM
The main wallet is a nightmare to sync and have given up. I see iOS and Android some people are also having shit. What wallet is safe to use at the moment? I have 7 million coins I want to keep without the risk of having a problem in the future.

I'm in the same boat, that's why I kept my DGB on poloniex but I had bad experiance with a trading site (mintpal). I think best option will be to make a paper wallet.ss

I am thinking of sending 2 million to bittrex and leaving the rest on poloniex. I am worried about getting goxed but I split my risk that way.
make a backup of your digibyte wallet place it on all your drives and store it for the future:)

Going to leave it for another 24hr.

Managed to get the wallet to sync. Is Jared going to say something about the NYC conference? I have already lost 20% value on my coins.   Angry Angry
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: March 31, 2016, 05:45:19 PM
The main wallet is a nightmare to sync and have given up. I see iOS and Android some people are also having shit. What wallet is safe to use at the moment? I have 7 million coins I want to keep without the risk of having a problem in the future.

I'm in the same boat, that's why I kept my DGB on poloniex but I had bad experiance with a trading site (mintpal). I think best option will be to make a paper wallet.ss

I am thinking of sending 2 million to bittrex and leaving the rest on poloniex. I am worried about getting goxed but I split my risk that way.
make a backup of your digibyte wallet place it on all your drives and store it for the future:)

Going to leave it for another 24hr.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: March 31, 2016, 05:09:50 PM
The main wallet is a nightmare to sync and have given up. I see iOS and Android some people are also having shit. What wallet is safe to use at the moment? I have 7 million coins I want to keep without the risk of having a problem in the future.

I'm in the same boat, that's why I kept my DGB on poloniex but I had bad experiance with a trading site (mintpal). I think best option will be to make a paper wallet.ss

I am thinking of sending 2 million to bittrex and leaving the rest on poloniex. I am worried about getting goxed but I split my risk that way.
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: March 31, 2016, 05:01:23 PM
The main wallet is a nightmare to sync and have given up. I see iOS and Android some people are also having shit. What wallet is safe to use at the moment? I have 7 million coins I want to keep without the risk of having a problem in the future.
i formated my harddrive to day and no problem with Digibyte wallet after that works just fine

I have had to restart mine at least 5 times and still taking forever.

How long did yours take to sync ?
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: March 31, 2016, 04:54:23 PM
The main wallet is a nightmare to sync and have given up. I see iOS and Android some people are also having shit. What wallet is safe to use at the moment? I have 7 million coins I want to keep without the risk of having a problem in the future.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!