Bitcoin Forum
May 03, 2024, 06:44:48 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 [60] 61 62 »
1181  Economy / Digital goods / Re: [WTS] Microsoft Products (Windows, Windows Server, Visual Studio, much more...) on: May 09, 2013, 06:10:25 PM
One of the licenses is on bitmit: https://www.bitmit.net/en/item/30619-windows-8-professional-64-bit-license
1182  Local / Anfänger und Hilfe / Re: Welches Walletprogramm unterstützt die Verwaltung mehrere Wallets gleichzeitig? on: May 09, 2013, 09:15:18 AM
Ich werde es mal antesten, danke
1183  Local / Mining (Deutsch) / Re: [Litecoin] yet another litecoin pool - 1% PPLNS - litecoinpool.de on: May 09, 2013, 08:41:09 AM
Ich schaus mir mal an Smiley
Angemeldet als DarthWed
1184  Other / Beginners & Help / Re: slush issue on: May 09, 2013, 08:24:17 AM
just use http://api.bitcoin.cz instead of http://mining.bitcoin.cz in your miner software (host)
1185  Other / Beginners & Help / Re: Setting up Stratum proxy for Diablo Miner on OSX 10.8.3 on: May 09, 2013, 08:20:21 AM
Do you have a messenger or teamviewer or something like that? I could help you. Just pm me
I'm using DiabloMiner with Stratum pools.
1186  Other / Beginners & Help / Re: When I have to backup wallet.dat on: May 09, 2013, 07:35:57 AM
Okay in short, backup it before reaching 100 transactions. For example 95, 195, 295, and so on. (in case of using default settings with default wallet)
Am I right?
1187  Economy / Services / Re: Free bitcoins: Advertise these links in your sig! on: May 09, 2013, 07:29:24 AM
I don't like that raffle thing Sad
I'll be back with at least 100 posts Smiley
1188  Economy / Services / Re: Free bitcoins: Advertise these links in your sig! on: May 09, 2013, 07:22:19 AM
I'm still new here but i'm posting really much (qualified postings).
Can I participate on your advertising?
1189  Other / Beginners & Help / When I have to backup wallet.dat on: May 09, 2013, 07:08:22 AM
Hello together,
I'm a little bit confused.
When do I have to backup my wallet.dat?
Just one time or always after getting new transactions?
Is it possible to get all CURRENT bitcoins back with an old backup?
What's the difference between an old backup and an actual backup?
Would be nice if someone could explain it to me.
Thanks Smiley
1190  Local / Anfänger und Hilfe / Welches Walletprogramm unterstützt die Verwaltung mehrere Wallets gleichzeitig? on: May 09, 2013, 06:53:46 AM
Ich denke mal Topic sagt alles, gibt es da was gutes?
Vorzugsweise kein light wallet das die blockchain von nem server nutzt.
1191  Economy / Digital goods / Re: [WTS] Microsoft Products (Windows, Windows Server, Visual Studio, much more...) on: May 08, 2013, 12:07:46 PM
i have a Microsoft Windows Server 2008 R2 Standard-Enterprise-Datacenter-Web 64-bit (English) left, but no 2011 and no home server :/
1192  Economy / Digital goods / Re: [WTS] Windows 8 Pro (64bit) key and other Microsoft stuff on: May 08, 2013, 11:17:48 AM
Trade done with jmfg187. Very fast. He is very trustable and friendly. Thank you very much Smiley
1193  Other / Beginners & Help / Re: DiabloMiner for Mac OS X (new Version) on: May 08, 2013, 10:03:32 AM
Here you can see some screenshots and source codes.
https://bitcointalk.org/index.php?topic=1721.1720
1194  Other / Beginners & Help / Re: DiabloMiner for Mac OS X (new Version) on: May 06, 2013, 08:38:28 PM
Update to 1.2
DiabloMiner core will update automatically now
1195  Other / CPU/GPU Bitcoin mining hardware / Re: DiabloMiner GPU Miner on: May 06, 2013, 08:31:36 PM
I'm finished =)

If update is available (hash has changed)



If no update is available (hash has not changed)



Running




If you have some knowledge in bashscripting, here are the essential lines:

Code:
export current_hash=`curl --silent http://adterrasperaspera.com/DiabloMiner.zip.sha1`   #gets the current hash value
export app_hash=$(defaults -currentHost read oss.bitcoin-utils.diablominer 'AppHash')   #gets the saved hash value (from appsettings), on first start this value is empty. that means on first start it always do an update
...
    if [[ "$app_hash" != "$current_hash" ]]; then   #if hash dismatch
        echo "New version found!"
        cd $(dirname $0)/../Resources/miner
        rm -R target/   #delets old target directory
        echo "Downloading new version ..."
        curl -O http://adterrasperaspera.com/DiabloMiner.zip   #gets newest binary
        echo "Unpacking DiabloMiner..."
        unzip -qq DiabloMiner.zip DiabloMiner/target/*   # unzips the target directory
        mv DiabloMiner/target/ target/   # moves target directory to the right location
        echo "Cleaning temp files..."
        rm -R DiabloMiner/   # deletes empty folder
        rm DiabloMiner.zip   # deletes .zip file
        echo "Update successful"
        defaults -currentHost write oss.bitcoin-utils.diablominer 'AppHash'   -string  "$current_hash"   # writes current hash value to appsettings
        echo "Starting DiabloMiner"
        echo " "
    fi

The next days maybe I will do some code improvements, but in this state it should work like expected
1196  Other / CPU/GPU Bitcoin mining hardware / Re: DiabloMiner GPU Miner on: May 06, 2013, 06:41:24 PM
Thank you very much, i'll try to implement it.
I'll inform you if i was successful.
1197  Other / CPU/GPU Bitcoin mining hardware / Re: DiabloMiner GPU Miner on: May 06, 2013, 06:30:32 PM
i can try it, but no promises. I'm really new at bashscripting.
I will do my best
1198  Other / CPU/GPU Bitcoin mining hardware / Re: DiabloMiner GPU Miner on: May 06, 2013, 06:25:01 PM
It's very easy to modify it.

It's just a bashscript which asks for few userentries and then it starts diablominer with entered attributes.
Everyone with knowledge of bashscripting can modify it.
To replace diablominer with a newer version, just replace "target" directory with a newer one. The only binary in that package is the binary to start a bashscript Smiley
1199  Other / Beginners & Help / Re: Have an iMac with thunderbolt, will a PCI converter with a better GPU work? on: May 06, 2013, 05:00:45 PM
That's a great question.
Can anyone help?
1200  Bitcoin / Mining software (miners) / Re: Mac miner front-ends to Diablo and RPC on: May 06, 2013, 04:23:21 PM
I've updated the originally .app with the newest diablominer binary and added some new functionality (to choose parameters).
You can get it here: https://bitcointalk.org/index.php?topic=193274.0
Pages: « 1 ... 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 [60] 61 62 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!