Search content
Sort by

Showing 18 of 18 results by gldi0001
Post
Topic
Board Services
Re: [FREE] Bitcoin Transaction Accelerator
by
gldi0001
on 16/01/2018, 12:29:47 UTC
Hi , please accelerated.
4b5cb877738a82a6568674acd1f2c292d7a33df4c122bbe649fd23be810a6606
add

wallets for donation

BTC - 12EUdxB4u4ZHqtGsrrNbrpjLZWzBKi9aJD

ETH - 0x9e6f44ae2e907f056bd8d7cabcb294e651f62896

I've just done on different accelerator now.
Thank you.
Post
Topic
Board Services
Re: [FREE] Bitcoin Transaction Accelerator
by
gldi0001
on 16/01/2018, 12:25:36 UTC
Hi , please accelerated.
4b5cb877738a82a6568674acd1f2c292d7a33df4c122bbe649fd23be810a6606
add

wallets for donation

BTC - 12EUdxB4u4ZHqtGsrrNbrpjLZWzBKi9aJD

ETH - 0x9e6f44ae2e907f056bd8d7cabcb294e651f62896

It's unconfirmed yet.
Post
Topic
Board Services
Re: [FREE] Bitcoin Transaction Accelerator
by
gldi0001
on 16/01/2018, 11:09:31 UTC
Hi , please accelerated.
4b5cb877738a82a6568674acd1f2c292d7a33df4c122bbe649fd23be810a6606
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]Qlink- World's First Decentralized Mobile Network-Official Thread
by
gldi0001
on 29/12/2017, 13:51:34 UTC
it's likely Telegram chat channel has been deleted suddenly right after being listed at Kucoin while I was taking shower.
Why is that? What happened? Huh
https://t.me/qlinkmobile&ved=0ahUKEwjtiNKYrq_YAhWDj5QKHd0NCrgQjjgIJDAA&usg=AOvVaw1JPPC-ANhk_X4fcxek1RP3
Post
Topic
Board Mining (Altcoins)
Re: Claymore's ZCash/BTG GPU Miner v12.6 (Windows/Linux)
by
gldi0001
on 02/12/2017, 20:15:56 UTC
tired to mine BTG mining by official Bitcoingold miner on my 2 of Vega 56 but got only around  450 H/s....
Is this usual?
seems like much better to mine xmr and buy BTG after that lol
Post
Topic
Board Mining (Altcoins)
Re: Any word on amd vega hash rates?
by
gldi0001
on 29/11/2017, 16:40:24 UTC
Immposible settings come truth Smiley after 10 days tweaking i find this option Wink

https://imgur.com/GE2Zh8f

thank you for great information!
I've done to follow instruction but somehow when I disable/enable Vega56 on device manager 1 of 2 got exclamation mark when it's enabled and isn't detected when mining.

I clean installed Win10 64, AMD Blockchain driver "Only" is installed manually, Set "0" to both EnableElps, EnableCrossFireAutoLink. and followed rest of instruction... Huh

a restart fixes it. this happens before the disable/enable, the card just has not loaded the driver properly at startup, thats the problem.

I've restarted over 10 times but nothing has changed.If it could solve just restart I wouldn't ask to bother this thread.
In case I reinstall Win10 again since my previous post and followed instruction as 2nd time but same...
It wasn't effective for my case...
Post
Topic
Board Mining (Altcoins)
Re: Any word on amd vega hash rates?
by
gldi0001
on 29/11/2017, 12:52:32 UTC
Immposible settings come truth Smiley after 10 days tweaking i find this option Wink

https://imgur.com/GE2Zh8f

thank you for great information!
I've done to follow instruction but somehow when I disable/enable Vega56 on device manager 1 of 2 got exclamation mark when it's enabled and isn't detected when mining.

I clean installed Win10 64, AMD Blockchain driver "Only" is installed manually, Set "0" to both EnableElps, EnableCrossFireAutoLink. and followed rest of instruction... Huh
Post
Topic
Board Mining (Altcoins)
Re: Any word on amd vega hash rates?
by
gldi0001
on 28/11/2017, 13:48:37 UTC
I hadn't originally planned on putting this out there, but some other asshole decided to charge a fee for this info. Fuck that guy. Here's a fix for reduced hashrate and a method for running 4+ Vega at full speed while mining XMR.

Basic Users:

1. Use the Blockchain drivers.
2. Open up your device manager.
3. Open up the "Display Adapters" dropdown.
4. Right click on one of your Vega's.
5. Disable it.
6. Wait a few seconds.
7. Right click on the Vega you just disabled.
8. Re-enable it.
9. Repeat steps 4-8 for the rest of your cards.
10. Enjoy mining at full speed with as many Vega as you damn well please. Probably.

Advanced Users:

The previously described process is a bit of a pain in the ass. Let's automate it.

New Procedure

1. Get your hands on the Windows Device Console (Devcon.exe). This will let you disable/enable devices from console.
2. Create a batch file in the same folder as devcon.exe with the following lines in it:
Code:
cd %~dp0
timeout /t 5
devcon.exe disable "PCI\VEN_1002&DEV_687F"
timeout /t 5
devcon.exe enable "PCI\VEN_1002&DEV_687F"
3. This will selectively disable/enable all the Vega cards you currently have in your system. Thanks to bytiges for noting that killing all the display adapters might not be a good idea for those using iGPU.
4. Run the batch file as an administrator at login, or whenever you lose hashrate on your cards. Enjoy never having to toggle the HBCC switch again.

Outdated Procedure

1. Get your hands on the Windows Device Console (Devcon.exe). This will let you disable/enable devices from console.
2. Run the command devcon.exe FindAll * to generate a list of all the currently attached devices and their hardware IDs.
3. Search your newly generated list for "Radeon RX Vega." You should find something like this:
Code:
PCI\VEN_1002&DEV_687F&SUBSYS_0B361002&REV_C3\6&3AAC35E3&0&000000E7 : Radeon RX Vega
4. The part to the left of the colon is what you need. Shocking, I know. Put that thing into a batch file that looks something like this:
Code:
@echo on
cd C:\Users\Mythic\Desktop\Startup
timeout /t 5
devcon.exe disable PCI\VEN_1002&DEV_687F&SUBSYS_0B361002&REV_C3\6&3AAC35E3&0&000000E7
timeout /t 15
devcon.exe enable PCI\VEN_1002&DEV_687F&SUBSYS_0B361002&REV_C3\6&3AAC35E3&0&000000E7
timeout /t 15
OverdriveNTool.exe -p0Vega0 -p1Vega1 -p2Vega2 -p3Vega3 -p4Vega4 -p5Vega5 -p6Vega6
timeout /t 10
cd C:\Users\Mythic\Desktop\xmr-stak-amd
xmr-stak-amd.exe
5. Run your batch file at startup as an administrator. Enjoy never having to toggle the HBCC switch again.

FAQ:

Q: So, Mythic, how exactly does this enable HBCC on cards 5-7?

A: It doesn't! HBCC Does nothing to improve your hashrate! Turns out the drivers are just shit and are bugged when Windows first boots up. Who would have guessed?

Q: But Mythic, does that mean I don't need 16 GB of ram to run my cards at full speed?

A: Correct! 4 GB of ram is completely sufficient!

Q: If I wanted to donate some pizza money to the broke ass college student that typed this up, how would I do so?

A: You ask the best questions! I doubt I'll get anything before more well known people/websites copy everything I just said (with no credit, obviously), but here are some addresses just in case.
          XMR: 42e8AWjcirkBDzCNnSjPxeGJeht71kFfWcoxxCWsxe8HZqP29NruDsxcvVSjbKw17AUDepopK7ZYCUn mRvcGS9kBT5XWhMQ
          ETH: 0x74Ed2CA095Dd3aE98D88d5ca1dDb77E752152938

Thanks for the great solution which I've been searching for!
However I'm using 2 Vega56 just 1 is unable to switch HBCC.
I tried your manual method disabled "HBCC non-switchable Vega56" got exclamation mark on it. Then it couldn't be enable...
To see Radeon setting aimed Vega was missing same as turn on/off HBCC.
I've already clean uninstall driver AMD/DDU and reinstall blockchain driver several times.
running on Win10 64, ASRock H270 Pro4, 8GB DDR4 mem, 16GB vmem, Celeron G3930, SSD 120GB

Hope someone knows solution!
Post
Topic
Board Tokens (Altcoins)
Re: [ANN] [ICO] [AIRDROP CLOSING] GBT - GreenBits.io Exchange // BETA LIVE!
by
gldi0001
on 05/11/2017, 01:58:30 UTC
I've got received no GBT in my wallet as airdrop now.
It was definitely scam.

Although I've received IND instead somehow  Grin
Post
Topic
Board Tokens (Altcoins)
Re: [ANN] [ICO] [AIRDROP CLOSING] GBT - GreenBits.io Exchange // BETA LIVE!
by
gldi0001
on 05/11/2017, 01:49:57 UTC
Airdrop is likely their lie. I followed all their demand and done but no airdrop.
 We were baited unfortunately. Such scam project. Cry
Post
Topic
Board Tokens (Altcoins)
Re: [ANN][AIRDROP CLOSED] ETHERGOLD - THE FUTURE OF FORTUNE
by
gldi0001
on 05/11/2017, 01:41:28 UTC
author lied to airdrop. just bait project for sure. Cool
Post
Topic
Board Tokens (Altcoins)
Re: [ANN] [PRE-ICO] [Bounty/Airdrop STARTED] GBT - GreenBits 15k + and growing!
by
gldi0001
on 17/10/2017, 22:42:01 UTC
love this project GreenBits. joined Airdrop.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][YAJU]YAJUCOIN | Decentralized YAJU SENPAI | [PoS 114%]
by
gldi0001
on 17/10/2017, 15:17:33 UTC
Finally I've got received 1000 tokens!
Thank you YAJU SENPAI!
I'm gonna buy few thousands more!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][YAJU][Airdrop] YAJUCOIN | Decentralized YAJU SENPAI | [PoS 114%]
by
gldi0001
on 16/10/2017, 10:40:08 UTC
I've accomplished airdrop rules until the deadline of 15th GMT 21:00 but no coins has been transferred to my wallet yet.. Huh
I've sent pm to organizer here.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][COMP] Compound Coin - X11 POW/POS High APR - SWAP FROM UKC ON GOING
by
gldi0001
on 16/10/2017, 09:28:14 UTC
Hi I'm newbie here and am keen to buy some Compcoin.
Could you please tell me how much is total supply?
And how this Compcoin is used for?
Post
Topic
Board Tokens (Altcoins)
Re: [ANN][AIRDROP] ETHERGOLD - THE FUTURE OF FORTUNE
by
gldi0001
on 13/10/2017, 10:02:45 UTC
This is scam just collecting ethereum address. Undecided
Unfollow twitter and discord.
Post
Topic
Board Tokens (Altcoins)
Re: ANN [PTOY] Patientory Healthcare on the Blockchain
by
gldi0001
on 10/10/2017, 15:15:27 UTC
right now is very critical point hold/sell PTOY for me. I just expect massive rising after this..
Post
Topic
Board Speculation (Altcoins)
Re: Buy ADX for quick profits!
by
gldi0001
on 03/09/2017, 21:51:13 UTC
I just beleive ADX will wake up and move above 40000sts soon! and it's the proper pruce for rhis Kiss