<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Blockchain on Janik von Rotz</title>
    <link>https://janikvonrotz.ch/categories/blockchain/</link>
    <description>Recent content in Blockchain on Janik von Rotz</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Wed, 10 Jan 2018 14:58:27 +0000</lastBuildDate>
    <atom:link href="https://janikvonrotz.ch/categories/blockchain/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Create a soft wallet and transfer your Ether coins from an exchange</title>
      <link>https://janikvonrotz.ch/2018/01/10/create-a-soft-wallet-and-transfer-your-ether-coins-from-an-exchange/</link>
      <pubDate>Wed, 10 Jan 2018 14:58:27 +0000</pubDate>
      <guid>https://janikvonrotz.ch/2018/01/10/create-a-soft-wallet-and-transfer-your-ether-coins-from-an-exchange/</guid>
      <description>&lt;p&gt;Intrigued by the title you might ask your self: What is the reason to store ether in a software wallet? Well, If you have cryptocoins on an exchange platform there is always the risk of the account getting hacked or the platform goes offline (see MtGox). Exchange platforms for cryptocoins are not as regulated and institutionalized as banks and trading centers are. The risk is in favor of the provider. To assert full control of your coins aka your money it is recommended to store them in a wallet.&lt;/p&gt;&#xA;&lt;p&gt;In the following tutorial I will show you how I have transferred my coins into a soft wallet.&lt;/p&gt;&#xA;&lt;p&gt;This tutorial assumes that the os environment is MacOS. Nonetheless, the platform does not matter to go through the tutorial, it also works for other platforms such as Windows or Linux.&lt;/p&gt;&#xA;&lt;h2 id=&#34;install-geth&#34;&gt;Install Geth&lt;/h2&gt;&#xA;&lt;p&gt;Lets get started by installing the go command line tool to interact with the Ethereum network.&lt;/p&gt;&#xA;&lt;p&gt;Use Homebrew to install the tool, make sure it is up-to-date.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;brew update&#xA;brew upgrade&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Install the &lt;strong&gt;g&lt;/strong&gt;o &lt;strong&gt;eth&lt;/strong&gt;erum cli.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;brew tap ethereum/ethereum&#xA;brew install ethereum&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;For other platforms use the according package manager.&lt;/p&gt;&#xA;&lt;h2 id=&#34;account-management&#34;&gt;Account Management&lt;/h2&gt;&#xA;&lt;p&gt;To receive Ether we need an account.&lt;/p&gt;&#xA;&lt;p&gt;Create an account and set a password.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;geth account new&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Make sure to store the password somewhere safe. There is no way to retrieve or reset the password for the account once lost.&lt;/p&gt;&#xA;&lt;p&gt;List all available accounts.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;geth account list&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Backup the keystore file of the new account.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;cp ~/Library/Ethereum/keystore/UTC--yyyy-mm-ddT12-59-07.353801000Z--927b07ac62ee6c10861b5024710a997937b20e31 /path/to/encrypted/storage/Etherum/_ADDRESS_.prv&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;h2 id=&#34;sync&#34;&gt;Sync&lt;/h2&gt;&#xA;&lt;p&gt;Transactions are stored on the block chain. In order to see transactions and execute them you must sync the blockchain.&lt;/p&gt;&#xA;&lt;p&gt;Sync the Etherum blockchain in fast mode.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;geth --syncmode fast --cache 2048 &#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;This mode allows us to sync the blockchain without processing and verifying each block.&lt;/p&gt;&#xA;&lt;p&gt;The second parameter sets the cache according to the computers available memory. Make sure to adjust the number.&lt;/p&gt;&#xA;&lt;p&gt;To see the progress of the sync an attached geth console must be started. An attached geth console is connected to the currently running geth process. Open a new terminal and run the command below.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;geth attached&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Now check the syncing state.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;eth.syncing&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;As long as the current and highest block number do not match, further syncing is required.&lt;/p&gt;&#xA;&lt;h2 id=&#34;send-ether&#34;&gt;Send Ether&lt;/h2&gt;&#xA;&lt;p&gt;Once the sync is finished, we are ready to retrieve Ether.&lt;/p&gt;&#xA;&lt;p&gt;From your exchange platform (I am using Kraken) send the fewest  amount of Ether possible to the accounts address. &lt;strong&gt;Do not send all of your Ether.&lt;/strong&gt; We have to make sure everything works correctly.&lt;/p&gt;&#xA;&lt;p&gt;To see the transaction a sync of the chain is required.&lt;/p&gt;&#xA;&lt;p&gt;To check the accounts balance start the geth console.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;geth console&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Now run this JavaScript code.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;function checkAllBalances() {&#xA;    var totalBal = 0;&#xA;    for (var acctNum in eth.accounts) {&#xA;        var acct = eth.accounts[acctNum];&#xA;        var acctBal = web3.fromWei(eth.getBalance(acct), &amp;quot;ether&amp;quot;);&#xA;        totalBal += parseFloat(acctBal);&#xA;        console.log(&amp;quot;  eth.accounts[&amp;quot; + acctNum + &amp;quot;]: \t&amp;quot; + acct + &amp;quot; \tbalance: &amp;quot; + acctBal + &amp;quot; ether&amp;quot;);&#xA;    }&#xA;    console.log(&amp;quot;  Total balance: &amp;quot; + totalBal + &amp;quot; ether&amp;quot;);&#xA;};&#xA;checkAllBalances();&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;The JavaScript function return the Ether balance for each registered account.&lt;/p&gt;&#xA;&lt;p&gt;If you see a positive Ether balance for your account then everything works fine and you are ready to send more Ether to the soft wallet.&lt;/p&gt;&#xA;&lt;h2 id=&#34;secure-storage&#34;&gt;Secure Storage&lt;/h2&gt;&#xA;&lt;p&gt;In case you want to know how I store my password and key files.&lt;/p&gt;&#xA;&lt;p&gt;I am using the &lt;a href=&#34;https://keybase.io/&#34;&gt;keybase file system&lt;/a&gt; to store the key file of the geth account and &lt;a href=&#34;https://keepassxc.org/&#34;&gt;KeePass&lt;/a&gt; to store the password. The KeePass database is encrypted with a password and a key file. All data can be accessed from my Windows and from my Mac computer. These tools are all open source. Further the hard disk of my Windows and Mac computer are encrypted.&lt;/p&gt;&#xA;&lt;h2 id=&#34;geth-alternative&#34;&gt;Geth Alternative&lt;/h2&gt;&#xA;&lt;p&gt;In case geth did not work you, try &lt;a href=&#34;https://www.parity.io/&#34;&gt;parity&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;h2 id=&#34;source&#34;&gt;Source&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/ethereum/go-ethereum/wiki/Managing-your-accounts&#34;&gt;Etherum Wiki - Managing your accounts&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://etherscan.io&#34;&gt;Etherscan - Blockchain Explorer&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>My Dogecoin experience: mining server</title>
      <link>https://janikvonrotz.ch/2014/05/30/my-dogecoin-experience-mining-server/</link>
      <pubDate>Fri, 30 May 2014 14:07:11 +0000</pubDate>
      <guid>https://janikvonrotz.ch/2014/05/30/my-dogecoin-experience-mining-server/</guid>
      <description>&lt;p&gt;In my &lt;!-- raw HTML omitted --&gt;last post&lt;!-- raw HTML omitted --&gt; I&amp;rsquo;ve written about the hardware components I&amp;rsquo;ve bought for my dogecoin mining server.&#xA;This time I show you the finished mining rig and summarize the most important configurations for the mining software.&lt;/p&gt;&#xA;&lt;h1 id=&#34;my-mining-rig&#34;&gt;My mining rig&lt;/h1&gt;&#xA;&lt;p&gt;&lt;!-- raw HTML omitted --&gt;&lt;!-- raw HTML omitted --&gt;Your browser does not support the video tag.&lt;!-- raw HTML omitted --&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;basic-setup&#34;&gt;Basic Setup&lt;/h1&gt;&#xA;&lt;p&gt;This tutorial assumes you have the following setup:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Windows 7 Service Pack 1&lt;/li&gt;&#xA;&lt;li&gt;3 x Asus R9 270x graphics card&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Download and install the latest version of:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/ckolivas/cgminer&#34;&gt;cgminer by ckolivas&lt;/a&gt;&#xA;&lt;a href=&#34;http://support.amd.com/en-us/kb-articles/Pages/latest-catalyst-windows-beta.aspx&#34;&gt;AMD Catalyst driver&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;In case to this cgminer won&amp;rsquo;t work, try this one:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/Kalroth/cgminer-3.7.2-kalroth&#34;&gt;cgminer by kalroth&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;To monitor the cpu and ram usage of the server I&amp;rsquo;ll use the built-in resource monitor for windows.&lt;/p&gt;&#xA;&lt;h1 id=&#34;test-setup&#34;&gt;Test Setup&lt;/h1&gt;&#xA;&lt;p&gt;After unziping the cgminer add a configuration file named &lt;code&gt;cgminer.conf&lt;/code&gt; to the cgminer folder.&lt;/p&gt;&#xA;&lt;p&gt;Add the following json configuration to config file, of course you have to replace the pool credentials.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;{&#xA;&#x9;&amp;#34;pools&amp;#34; : [&#xA;&#x9;&#x9;{&#xA;&#x9;&#x9;&#x9;&amp;#34;url&amp;#34; : &amp;#34;stratum+tcp://www.suchcoins.com:3333&amp;#34;,&#xA;&#x9;&#x9;&#x9;&amp;#34;user&amp;#34; : &amp;#34;weblogin.WorkerName&amp;#34;,&#xA;&#x9;&#x9;&#x9;&amp;#34;pass&amp;#34; : &amp;#34;workerPassword&amp;#34;&#xA;&#x9;&#x9;}&#xA;&#x9;],&#xA;&#x9;&amp;#34;scrypt&amp;#34; : true&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Next add a batch &lt;code&gt;cgminer.bat&lt;/code&gt; to the same folder and add this commands:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;setx GPU_MAX_ALLOC_PERCENT 100&#xA;setx GPU_USE_SYNC_OBJECTS 1&#xA;cgminer.exe&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Finally double click the batch file. Cgminer should start to mine some coins.&lt;/p&gt;&#xA;&lt;h1 id=&#34;productive-setup&#34;&gt;Productive Setup&lt;/h1&gt;&#xA;&lt;p&gt;Now we are going to tweak our cgminer installation. For this purpose we have to add a bunch of parameters to our batch file.&lt;/p&gt;&#xA;&lt;h2 id=&#34;cgminer-parameter&#34;&gt;cgminer Parameter&lt;/h2&gt;&#xA;&lt;p&gt;&lt;strong&gt;Thread Concurrency&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&amp;ndash;thread-concurrency&#xA;is a parameter to tell your graphics cards how many different tasks it should be juggling at the same time. Depending on your card, this can be set for anything between 2-30,000.  It may or may not help your performance, but most people set it between 10,000-25000.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;GPU Overclocking Parameters&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&amp;ndash;gpu-memclock and &amp;ndash;gpu-engine&#xA;Allows you to specifically overclock your cards. If you don’t know the defaults off the top of your head, a quick way is to go into cgminer and Press G, it will take you to the graphics card details screen.&#xA;E: would be your &amp;ndash;gpu-engine and  M: &amp;ndash;gpu-memclock for GPU 1.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intensity&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;-I&#xA;A value between 1-20, this is a general setting that makes our graphics cards work harder.&#xA;Putting it on 20 will put your cards into high speed. Intensity is usually the last parameter that you will set, after you tweak everything else.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Autofan and Temp Targets&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&amp;ndash;auto-fan&#xA;gives cgminer more control on keeping your cards a specific temperature.&lt;/p&gt;&#xA;&lt;p&gt;&amp;ndash;temp-target 80&#xA;tells cgminer to keep your card around 80.&lt;/p&gt;&#xA;&lt;p&gt;&amp;ndash;temp-overheat 85&lt;br&gt;&#xA;to help prevent overheating.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Work Size&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;-w&#xA;is the parameter for Work Size, or the size of jobs your cards will be doing.  Most people flag this at -256 to start for mid tier cards.  But the effect this parameter is described as “minimal”.&lt;/p&gt;&#xA;&lt;p&gt;-g&#xA;This is labeled as an optional parameter that can give some small boost, but shouldn’t be be the first thing you go after.  It seems to crash cgminer if it is set any higher than 4, and many people leave it at 1 or 2.  Some people have gotten a lot more than others out of this.&lt;/p&gt;&#xA;&lt;h2 id=&#34;my-configurations&#34;&gt;My configurations&lt;/h2&gt;&#xA;&lt;p&gt;This is my first configuration approach:&#xA;&lt;code&gt;-I 18 -g 1 -s 265 --thread-concurrency 20000 --auto-fan&lt;/code&gt;&#xA;Now each GPU runs with about 400kH/s. It&amp;rsquo;s not that much, I&amp;rsquo;ve seen others got about 450kH/s with the same hardware.&lt;/p&gt;&#xA;&lt;h1 id=&#34;source&#34;&gt;Source&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://linustechtips.com/main/topic/95726-r9-270x-485khs-setup&#34;&gt;http://linustechtips.com/main/topic/95726-r9-270x-485khs-setup&lt;/a&gt;&#xA;&lt;a href=&#34;https://litecoin.info/Mining_hardware_comparison&#34;&gt;https://litecoin.info/Mining_hardware_comparison&lt;/a&gt;&#xA;&lt;a href=&#34;http://www.minedogecoin.com/getting-such-dogecoin-a-basic-guide-to-gpu-mining-with-cgminer&#34;&gt;http://www.minedogecoin.com/getting-such-dogecoin-a-basic-guide-to-gpu-mining-with-cgminer&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>My Dogecoin experience part 1 - Mining Hardware</title>
      <link>https://janikvonrotz.ch/2014/05/08/my-dogecoin-experience-part-1-mining-hardware/</link>
      <pubDate>Thu, 08 May 2014 09:24:46 +0000</pubDate>
      <guid>https://janikvonrotz.ch/2014/05/08/my-dogecoin-experience-part-1-mining-hardware/</guid>
      <description>&lt;p&gt;Based on a internet meme and funded as a joke &lt;a href=&#34;http://www.dogecoin.com/&#34;&gt;the Dogecoin crypto currency&lt;/a&gt; is getting really serious about their business.&lt;/p&gt;&#xA;&lt;p&gt;Just for fun I&amp;rsquo;ve bought some computer hardware to &lt;a href=&#34;http://www.minedogecoin.com/&#34;&gt;mine some doges&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Here&amp;rsquo;s a list of hardware I&amp;rsquo;ve bought in case you&amp;rsquo;re also interest in this crypto currency mining stuff.&lt;/p&gt;&#xA;&lt;p&gt;Digitec is my local retailer in switzerland, the type of hardware is almost the same.&lt;/p&gt;&#xA;&lt;h1 id=&#34;hardware&#34;&gt;Hardware&lt;/h1&gt;&#xA;&lt;h2 id=&#34;gpu&#34;&gt;GPU&lt;/h2&gt;&#xA;&lt;p&gt;Cgminer is the simplest and most effective miner to use. That&amp;rsquo;s why you should buy a AMD GPU.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;MSI Computer Corp. Video Graphics Card R9 270 GAMING 2G&lt;/strong&gt;&lt;br&gt;&#xA;This is a good GPU with an average performance. A good thing to start.&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/MSI-Computer-Corp-270-GAMING/dp/B00GMGGZQE%3FSubscriptionId%3DAKIAICZ5MWPSU546IZUA%26tag%3Dmyoid-20%26linkCode%3Dsp1%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB00GMGGZQE&#34;&gt;Amazon&lt;/a&gt; $184&lt;br&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/msi-r9-270-gaming-2g-2gb-pci-e-x16-30-dp-hdmi-2gb-grafikkarte-2385919&#34;&gt;Digitec&lt;/a&gt; 186.–&lt;/p&gt;&#xA;&lt;h2 id=&#34;cpu&#34;&gt;CPU&lt;/h2&gt;&#xA;&lt;p&gt;Processing speed of the CPU makes no difference for mining. We just need something that can run the operating system. Plus this CPU is actually good because it uses less power.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;AMD Sempron 145 Processor (SDX145HBGMBOX)&lt;/strong&gt; &lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B0040BPHJO/ref=as_li_ss_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B0040BPHJO&amp;amp;linkCode=as2&amp;amp;tag=myoid-20&#34;&gt;Amazon&lt;/a&gt; $30&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;AMD Athlon II X3 455 (AM2+, AM3, 3.30GHz, Unlocked)&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/amd-athlon-ii-x3-455-am2-am3-330ghz-unlocked-prozessor-401957?tagIds=76&#34;&gt;Digitec&lt;/a&gt; 67.-&lt;/p&gt;&#xA;&lt;h2 id=&#34;cpu-cooler&#34;&gt;CPU Cooler&lt;/h2&gt;&#xA;&lt;p&gt;&lt;strong&gt;Arctic Freezer 13 PRO (120mm)&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/arctic-freezer-13-pro-120mm-cpu-kuehler-260039&#34;&gt;Digitec&lt;/a&gt; 48.-&lt;/p&gt;&#xA;&lt;h2 id=&#34;power-supply&#34;&gt;Power Supply&lt;/h2&gt;&#xA;&lt;p&gt;&lt;strong&gt;SeaSonic Platinum SS-860XP2 Power Supply&lt;/strong&gt;&lt;br&gt;&#xA;This is a really high quality power supply. The main benefit this has over other power supplies that are a little cheaper, is that the energy efficiency is much better than what others recommend (Being Platinum Rated).  This will mean your electricity is much cheaper, and over the long run it will pay for itself.&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B00608MP5E/ref=ox_sc_act_title_9?ie=UTF8&amp;amp;psc=1&amp;amp;smid=ATVPDKIKX0DER&#34;&gt;Amazon&lt;/a&gt; $180&lt;br&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/seasonic-p-860-ss-860xp-f3-platinum-860w-pc-netzteil-267916&#34;&gt;Digitec&lt;/a&gt; 200.–&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Cooler Master V850 - 850W Power Supply with Fully Modular Cables and 80 PLUS Gold Certification&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B00CGY4EUA/ref=as_li_ss_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B00CGY4EUA&amp;amp;linkCode=as2&amp;amp;tag=myoid-20&#34;&gt;Amazon&lt;/a&gt; $169&lt;br&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/cooler-master-v-serie-v850-850w-pc-netzteil-457130&#34;&gt;Digitec&lt;/a&gt; 187.-&lt;/p&gt;&#xA;&lt;h2 id=&#34;motherborad&#34;&gt;Motherborad&lt;/h2&gt;&#xA;&lt;p&gt;&lt;strong&gt;ASUS M5A97 R2.0 AM3+ AMD 970 SATA 6Gb/s USB 3.0 ATX AMD Motherboard&lt;/strong&gt;&lt;br&gt;&#xA;This motherboard is a good choice for being cheap and able to handle the 3 graphics cards (Up to 4 actually).  But you will need powered extenders.&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B008V9959O/ref=as_li_ss_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B008V9959O&amp;amp;linkCode=as2&amp;amp;tag=myoid-20&#34;&gt;Amazon&lt;/a&gt; $88&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;ASUS M5A99X EVO R2 (AM3+, AMD 990X, ATX)&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/asus-m5a99x-evo-r2-am3-amd-990x-atx-mainboard-374018&#34;&gt;Digitec&lt;/a&gt; 138.–&lt;/p&gt;&#xA;&lt;h2 id=&#34;hard-drive&#34;&gt;Hard Drive&lt;/h2&gt;&#xA;&lt;p&gt;Just big enough for the OS.  Since we are just using it for mining this will be fine.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;ADATA USA Premier Pro SP600 2.5-Inch 64 GB SATA III MLC Internal Solid State Drive ASP600S3-64GM-C&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B009SX8WEQ/ref=ox_sc_act_title_1?ie=UTF8&amp;amp;psc=1&amp;amp;smid=ATVPDKIKX0DER&#34;&gt;Amazon&lt;/a&gt; $49&lt;br&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/a-data-adata-premier-pro-sp900-64gb-64gb-25-35-bracket-ssd-764627&#34;&gt;Digitec&lt;/a&gt; 57.-&lt;/p&gt;&#xA;&lt;h2 id=&#34;ram&#34;&gt;Ram&lt;/h2&gt;&#xA;&lt;p&gt;All we need is 4gigs or so of ram.  RAM has no impact on mining, we just need enough to run the OS.  You might be able to pick up a stick for slightly cheaper, but this one is good and more consistently in stock.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Kingston Hyper X Blu 4 GB 1600MHz DDR3 Non-ECC CL9 Desktop Memory (KHX1600C9D3B1/4G)&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B0057Q4AGW/ref=as_li_ss_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B0057Q4AGW&amp;amp;linkCode=as2&amp;amp;tag=myoid-20&#34;&gt;Amazon&lt;/a&gt; $49&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Corsair XMS3 (1x, 4GB, DDR3-1333)&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/corsair-xms3-1x-4gb-ddr3-1333-arbeitsspeicher-240212?tagIds=76&#34;&gt;Digitec&lt;/a&gt; 44.–&lt;/p&gt;&#xA;&lt;h2 id=&#34;riser-cables-for-graphics-cards&#34;&gt;Riser Cables for Graphics Cards&lt;/h2&gt;&#xA;&lt;p&gt;The motherboard has 2 PCI-Express x16 and 2 1x slots.  So you can go with 2 PCIE “1x-16″ risers and 1 PCIE &amp;ldquo;16x-16x&amp;rdquo; Riser or vice versa. I went with 1- x16 riser and 2 x 1 to 16 riser to reduce power usage through the motherboard.  It is important for the 1x to 16x ones are powered, so that your motherboard isn’t overloaded.  Risers are also necessary to help disperse heat.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Qody PCI-E Extension Cable: 1X to 16X (powered)&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B00FQJ077Q/ref=ox_sc_act_title_2?ie=UTF8&amp;amp;psc=1&amp;amp;smid=A2QU1JBNPLNT4J&#34;&gt;Amazon&lt;/a&gt; 5$&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Micro SATA Cables - PCI-E Express 16X Riser Card with Flexible Cable&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B0057M16Q8/ref=ox_sc_act_title_3?ie=UTF8&amp;amp;psc=1&amp;amp;smid=A3JT9N5IAS99RQ&#34;&gt;Amazon&lt;/a&gt; 8$&lt;/p&gt;&#xA;&lt;h2 id=&#34;case&#34;&gt;Case&lt;/h2&gt;&#xA;&lt;p&gt;Most miners go with a simple milk crate to hold their components.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Sterilite 16929006 Storage Crate, Black&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B0001ACQQA/ref=as_li_ss_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B0001ACQQA&amp;amp;linkCode=as2&amp;amp;tag=myoid-20&#34;&gt;Amazon&lt;/a&gt; $12&lt;/p&gt;&#xA;&lt;h2 id=&#34;wireless-card-optional&#34;&gt;Wireless Card (optional)&lt;/h2&gt;&#xA;&lt;p&gt;Make sure the wireless card is PCI, not PCIE, so if you want to add another graphics card later, you won’t be using a PCIE slot by your wireless card.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;TP-LINK TL-WN951N Wireless N300 Advanced PCI Adapter, 2.4GHz 300Mbps, Include Low-profile Bracket&lt;/strong&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.amazon.com/gp/product/B0034CL2ZI/ref=ox_sc_act_title_6?ie=UTF8&amp;amp;psc=1&amp;amp;smid=ATVPDKIKX0DERv&#34;&gt;Amazon&lt;/a&gt; $28&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;TP-LINK TL-WN851ND, n300 (PCI)&lt;/strong&gt;&#xA;&lt;a href=&#34;https://shop.digitec.ch/de/s1/product/tp-link-tl-wn851nd-n300-pci-netzwerkadapter-435722&#34;&gt;Digitec&lt;/a&gt; 22.-&lt;/p&gt;&#xA;&lt;h1 id=&#34;software&#34;&gt;Software&lt;/h1&gt;&#xA;&lt;p&gt;I&amp;rsquo;ll recommand to install a Windows 7. Everything else required is opensource.&lt;/p&gt;&#xA;&lt;h1 id=&#34;source&#34;&gt;Source&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://www.minedogecoin.com/building-a-nice-dogecoin-mining-rig-for-1000-dollars/&#34;&gt;http://www.minedogecoin.com/building-a-nice-dogecoin-mining-rig-for-1000-dollars/&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.minedogecoin.com/top-graphics-cards-in-stock/&#34;&gt;http://www.minedogecoin.com/top-graphics-cards-in-stock/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Get the latest version of this list here: &lt;a href=&#34;https://gist.github.com/447c906e16c2c8be5719&#34;&gt;https://gist.github.com/447c906e16c2c8be5719&lt;/a&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
