6
|
Bitcoin / Project Development / Re: Segwit JS activation countdown widget?
|
on: April 18, 2017, 01:26:25 AM
|
Not really going to work well if you need it to be done client side. You either need to be running a wallet or requesting the blocks for each activation period from a block explorer. Best way might be to use jquery and scrape the data you need from the other various countdowns.
|
|
|
13
|
Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed
|
on: October 27, 2016, 02:05:14 PM
|
https://github.com/protonn/electrum-dgbhttps://github.com/protonn/electrum-dgb-serverElectrum for Digibyte. Please see RELEASE-NOTES starting at 2.7.2b (initial DGB release) Building a Windows client is a little sketchy. I can build the executable's, but when opened, the program closes immediately. The problem exists with the portable exe, and when installed via the setup file. The linux client works when run from terminal (sudo electrum-dgb) but otherwise it has the same issue as windows and closes by itself. I haven't had much time to troubleshoot lately. Hopefully someone else can help out. Please feel free to contribute. At this time you will have to run your own Electrum server for testing. I don't have anywhere to host my database, so you will have to build the Electrum Server database from scratch, and it will take a roughly a day depending on your setup. There's been a lot of updates on the source at github.com/spesmilo/electrum that I haven't had time look over and to merge. Thanks very much for work you have done on this protonn, it's great. Jared has promised server space for this project, I reminded him again after seeing your post.  Hope eso may be willing to help you out too. heh yeah I remember the windows compilation being a bit of a pain in the ass but I can take a look when I'm free. Edit - Took a look through the major commit and everything looks pretty good. Well done on the difficulty algo. I may have skimmed over it but have you tested exporting/importing privatekeys? It's easy to miss but the privkey address version is actually 128 + 0 rather than the standard 128 + 30 (mainnet addres version).
|
|
|
15
|
Bitcoin / Project Development / Re: show balance from a btc address
|
on: May 19, 2016, 10:00:04 PM
|
if using jquery you could also do var addr = "15urYnyeJe3gwbGJ74wcX89Tz7ZtsFDVew"; $.getJSON('https://insight.bitpay.com/api/addr/' + addr + '/balance', function(balance){ $('#balance').html(balance / 100000000); });
|
|
|
16
|
Bitcoin / Project Development / Re: Looking to start an opensource team.
|
on: March 30, 2016, 01:08:23 AM
|
I'm fairly busy but interested in giving back to the open source community in my spare time. Mostly skilled in JS/node so something like a universal rates API (or chrome extensions) would be up my alley but I can do frontend too. Not looking for bounties or paid work but don't want deadlines either.
Maybe look into a slack channel?
|
|
|
19
|
Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed
|
on: March 29, 2016, 10:15:33 PM
|
Hi Digibyte team long time fan back here always liking your pages on Facebook for more then a year and been watching this forum for like forever. My only concern is that both my wallets on my iPhone just randomly wiped my digibyte of my phone and now I'm bricking it.
Ive put in my back up phrase and nothing still I'm really really scared.
Only because i believe in this coin for soooooo long and I'm never going to give up faith in this coin.
And screw any one who dares say haha shame look at that and insulted the coin (Pre-Strike) to those clowns.
But Digibyte team and Jared help!!!
Thanks.
Hey Thanks for all the help everyone deleted and re-installed the wallet used my back phrase and POW. Back to normal thanks to everyone in the community and great support from everyone. Digibyte All The Way!!! And can't wait for tomorrows event. Feel like a kid going on his first school trip. have you tried to re-index? HI Thanks for the quick response and yes i have clicked re-scan on the app it scans really quick and then nothing. Will my back up phrase be the same if i delete the wallet re install the app and try again with the phrase??? Best thing to do just now is nothing. I don't have an IOS wallet. Best person to talk with to get you back up and recover your funds is esotericizm but he is in Australia. Ahhh ok Well thank you for your support i had all my Digibyte on There about 444,444 coins on there. I was planning to buy a bar with my coins and call it DigiBar, Where i Kept an atm there that just sells DigiByte and to buy drinks at the bar you have to buy Digibytes from my Digibyte Exchange atm in my bar and then use those funds straight away to buy your drinks. And now I'm bricking it because i think i may have lost it all and now I'm so sad. And that was my vision for Digibyte for 2 years now and i was going to by this bar in a Hipster part of London, i Know it will kick off, but now I'm worried i lost my dream.  It's barely 0.72 btc at these prices. Drop in the bucket, you can replace these coins easily. not really the point tho, we all have different levels of investment and time scale. How long have you had the wallet?
|
|
|
20
|
Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed
|
on: March 29, 2016, 01:36:05 PM
|
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 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 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 Crypto_Beast you know your way around code, I know hackers get poached by government to work for them. Would you consider being a developer for digibyte to update the code? A good friend of mine has confirmed you are telling the truth in this regard. appreciate the flattery, but as a professional I would never risk ruining my good name by being involved with a scam like this. you should think for a second and following things to the obvious conclusion, if the amount of code is changed is very little despite all the claims about being cutting edge and what not constantly repeated here - which you have now accepted as a fact, then what else is a lie? well for one the entire office of programmers in hong kong must be a lie, as an entire office of programmers would produce over 1000 lines of code a month not over 2 years, and if that is a lie then the funding is a lie, and if the funding is a lie almost everything else is a lie. It appears you are confident in your own convictions. What if Jared has been lied to by his own development team and he thinks everything is good but he and everyone of us is being fcked over. Why not help digibyte and get payed lots of btc? I wonder how many lines of code have gone into Digibytetip and Digibyte Gaming..? Ah wait that doesn't fit the narrative you're trying to sell. The good name of 'crypto_beast' with an activity level of 9 or the good name of 'myriadcoins'? lol what a joke.
|
|
|
|