Sunday, October 25, 2015

-Mass Update- Faucet Collector Release

Hello everyone, I was gone for a bit there. I was mainly out visiting friends, but I'm back now. Anyway I have finally not finished my faucet collector. Let me explain this a little bit. I decided to ditch this version for a new one I'm making that you'll be able to program your own faucets into and be able to set timers, etc.

So basically it's a stand-alone program that you can run that will list various BTC faucets that you can collect from. It has a timer for each faucet and will list how much you've collected from each and even keep a total of how much you've collected from all faucets. The total doesn't work yet but the faucets in the 5min section all work. I just wanted to put this out there if you want to make some quick BTC.

Heres the dropbox link:
https://www.dropbox.com/s/ny1cuo788uczgi4/faucet%20collectorfinal.rar?dl=0

So keep checkin in, cause this new programmable faucet timer will be worth the wait.

Sunday, October 4, 2015

The making of a stand-alone faucet rotator and timing system...

So the other night I decided to make a faucet collection monitoring program. Kind of a mouth-full but very accurately  describes what the application does. On this version there are 9 faucet links, each has a timer and a BTC collection log. Here take a look...



Each timer has its own reset button and green indicator for when the faucet becomes active again. Browser faucet rotators can be sluggish and can slow you down. With this program I was able to make 0.0003 in 25 minutes. So I'd say it was worth the effort to make it.


My setup usually involves having all my collections done in chrome, you can do it with firefox as well. But anyway, I'll have my faucet box address checker pinned to one tab then have my application run in the bottom. That way once i collect from a faucet I can close the page and reset the timer and the program add the amount of satoushi collected. Neat, eh? So I'll be finishing it up tonight and probably uploading it tomorrow.

Saturday, October 3, 2015

How the auto better works. Conclusion.

Okay so I kinda left you all hanging on the last post and didn't really explain anything. First of all sorry and second of all, I'll explain everything...

Lets bring up that code again...

It all is a bit messy and unorganized but the program is broken down into 3 functions. And the control on those functions all comes down to this piece of code:

  Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim increase = txtbx_increasepercentage.Text
        If increase > 200 Then
            Call above200()
        ElseIf increase > 100 And increase < 200 Then
            Call between100and200()
        ElseIf increase < 180 Then
            Call below100()
        End If
    End Sub

This is for the main calculate button. It can invoke one of these 3 functions: below100, between100and200 and above200. Each one of these functions executes an algorithm that will display the output into the list box.

Example of function above200;

Private Sub above200()
        Dim n As Integer
        Dim sum = txtbx_basebet.Text
        Dim rolls = txtbx_rolls.Text
        Dim increase = txtbx_increasepercentage.Text
        Dim increasefinal, rolloutput, sumnew As Decimal
        Dim BillPlus As Decimal

        sumnew = 0
        ListBox1.Items.Add("Bet" & vbTab & "Sum")
        ListBox1.Items.Add("------------------")
        ListBox1.Items.Add("Basebet = " & sum)
        Do
            sumnew = sum * 10000
            increasefinal = increase * 0.01
            n += 1
            rolloutput = sumnew * increasefinal
            sum = rolloutput / 10000
            sumnew = sum
            BillPlus = Format$(sumnew, "0.00000000")
            ListBox1.Items.Add(n & vbTab & "%" & increase & vbTab & BillPlus)


            If n = rolls Then
                Exit Do
            End If
        Loop

    End Sub

Anyway there's how my program works, hope you enjoy.

Thursday, October 1, 2015

How the auto-better works.

 Ok so I was going to write about this a little later, but I decided to do it today because I've already had a few people asking me about how I made the auto-better and how it works. So that's what I'm going to talk about today. I programmed it in visual basic, nothing really special. But in any-case lets take a look...


This is the main interface. 

Now there are 4 main entry text boxes, 3 buttons and 2 list boxes. The 3 top text boxes (basebet, % increase, # of rolls) are linked to the calculate button. Then the multiplier text box is linked to the "project max loss" button to the right. The calculate button prints the output of your rolls onto listbox1 and the "project max loss" button will give an estimate on number of losses to listbox2.  Sounds confusing at first but you'll understand a bit better in a minute.


Here's a quick look at the code...

Public Class Form1
    Private Sub above200()
        Dim n As Integer
        Dim sum = txtbx_basebet.Text
        Dim rolls = txtbx_rolls.Text
        Dim increase = txtbx_increasepercentage.Text
        Dim increasefinal, rolloutput, sumnew As Decimal
        Dim nineBillPlus As Decimal

        sumnew = 0
        ListBox1.Items.Add("Bet" & vbTab & "Sum")
        ListBox1.Items.Add("------------------")
        ListBox1.Items.Add("Basebet = " & sum)
        Do
            sumnew = sum * 10000
            increasefinal = increase * 0.01
            n += 1
            rolloutput = sumnew * increasefinal
            sum = rolloutput / 10000
            sumnew = sum
            nineBillPlus = Format$(sumnew, "0.00000000")
            ListBox1.Items.Add(n & vbTab & "%" & increase & vbTab & nineBillPlus)


            If n = rolls Then
                Exit Do
            End If
        Loop
    End Sub
    Private Sub between100and200()
        Dim n As Integer
        Dim sum = txtbx_basebet.Text
        Dim rolls = txtbx_rolls.Text
        Dim increase = txtbx_increasepercentage.Text
        Dim increasefinal, rolloutput, sumnew As Decimal
        Dim nineBillPlus As Decimal

        sumnew = 0
        ListBox1.Items.Add("Bet" & vbTab & "Sum")
        ListBox1.Items.Add("------------------")
        ListBox1.Items.Add("Basebet = " & sum)
        Do
            n += 1
            increasefinal = increase * 0.01
            rolloutput = sum * increasefinal
            sumnew = sum + rolloutput
            nineBillPlus = Format$(sumnew, "0.00000000")
            ListBox1.Items.Add(n & vbTab & "%" & increase & vbTab & nineBillPlus)
            sum = nineBillPlus

            If n = rolls Then
                Exit Do
            End If
        Loop
    End Sub
    Private Sub below100()
        Dim n As Integer
        Dim sum = txtbx_basebet.Text
        Dim rolls = txtbx_rolls.Text
        Dim increase = txtbx_increasepercentage.Text
        Dim increasefinal, rolloutput, sumnew As Decimal
        Dim nineBillPlus As Decimal

        sumnew = 0
        ListBox1.Items.Add("Bet" & vbTab & "Sum")
        ListBox1.Items.Add("------------------")
        ListBox1.Items.Add("Basebet = " & sum)
        Do
            increasefinal = increase * 0.01
            n += 1
            rolloutput = sum * increasefinal
            sumnew = sum + rolloutput
            nineBillPlus = Format$(sumnew, "0.00000000")
            ListBox1.Items.Add(n & vbTab & "%" & increase & vbTab & nineBillPlus)
            sum = nineBillPlus

            If n = rolls Then
                Exit Do
            End If
        Loop
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim increase = txtbx_increasepercentage.Text
        If increase > 200 Then
            Call above200()
        ElseIf increase > 100 And increase < 200 Then
            Call between100and200()
        ElseIf increase < 180 Then
            Call below100()
        End If
    End Sub

    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
        Dim multi = txtbx_multipler.Text
        Dim lossx As Single
        Dim lossresult As Single
        lossx = 9.5
        lossresult = (lossx * multi) + 4
        ListBox2.Items.Add("Max losses on x" & multi & " somewhere around " & lossresult & " losses....")
        Panel5.BackColor = Color.Green
        Timer1.Enabled = True

    End Sub

    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
        Panel5.BackColor = Color.Black
    End Sub

    Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
        AboutBox1.Visible = True
    End Sub

To be continued....


New UPDATE and DOWNLOAD for Primedice Loss Calculator

New update for my auto-bet calculator. Can calculate any setting. And the design has been cleaned up a little. I have also included a readme file which you can look at to get started. Enjoy!

https://www.dropbox.com/s/97f12iu3m0m9os2/theheisztslosscalculator.rar?dl=0

Virustotal link: https://www.virustotal.com/en/url/97c5cf6a20794bb24b4bf066589e5442df6ce49243220c0be6698946e81d227e/analysis/1443717062/

Monday, September 28, 2015

Martingale Loss Calculator

Hey everyone! Just thought I'd post this application I made. It's a satoushi loss calculator. Just fill in the text fields and run.


Download link: N/A check new post for most recent dl link

Saturday, September 26, 2015

Primedice Betting Strategies

In Primedice you can win a little or win a lot. Same goes for losing. So a lot of people that play either use a bot or have a manual betting strategy. There are auto-betting strategies that work but if you're building from a small amount, those won't work for you.

Before I get into strategies I'll go over how Primedice works.


This is where you will spend most of your time on Primedice, besides the chat. This is where you can place your bets, all the way up to 20BTC and as low as 1 satoushi. The Payout can go all the way up to 9900x but the odds of you ever hitting that will be slim. As you select your Payout to the right of that it will show your win percentage. To the left you will see whether the roll is over or under. The win percentage can be directly subtracted from 100 to give the under/over roll number.  The higher the win percentage the better chances you have of winning. Most online dice games are formulated this way. 

To be successful on Primedice your betting strategy will have to incorporate a little of each one of the following betting systems. Take a little bit from each and use it to fit your balance on Primedice.
  Don't forget you can use the faucet lists I have provided to collect free BTC from faucets to your FaucetBox account.

Martingale Betting System
So when most people do their bets in manual a lot use the martingale. This is where you double up on your losses until you win, never changing the bet payout or the over/under.Just double up on the loss. Almost everyone has their own style of betting but they almost always incorporate a little martingale in their system.

Kelly Criterion
Wiki
This is a name you may or may not of heard of before, but this was a woman that developed a formula for determining the optimal size of your base bet in a series of bets. So you can use this formula to figure out what your base bet should be when incorporating in with some martingale etc.

Labouchère system
Wiki
"The user of such a strategy decides before playing how much money they want to win, and writes down a list of positive numbers that sum to the predetermined amount. With each bet, the player stakes an amount equal to the sum of the first and last numbers on the list. If only one number remains, that number is the amount of the stake. If bet is successful, the two amounts are removed from the list. If the bet is unsuccessful, the amount lost is appended to the end of the list. This process continues until either the list is completely crossed out, at which point the desired amount of money has been won, or until the player runs out of money to wager."Burrell, Brian. Merriam-Webster's Guide to Everyday Math. Merriam-Webster.

Gamblers Fallacy
Wiki
"The gambler's fallacy, also known as the Monte Carlo fallacy or the fallacy of the maturity of chances, is the mistaken belief that, if something happens more frequently than normal during some period, it will happen less frequently in the future, or that, if something happens less frequently than normal during some period, it will happen more frequently in the future (presumably as a means of balancing nature). In situations where what is being observed is truly random (i.e.,independent trials of a random process), this belief, though appealing to the human mind, is false. This fallacy can arise in many practical situations although it is most strongly associated with gambling where such mistakes are common among players." Wikipedia

So after you've gone through all that, and it's a lot to take in. A lot of it talks about roulette etc but the same rules apply to Primedice as well. But you're probably wondering how does this apply to a dice game? Well since you're rolling between .01 and 100 you can tailor your strategy to your betting balance for manual bets, this information can even be used to run an auto-better successfully.

In my next post I'll be talking about how you can build strategies to fit your balance, in the mean time I'll be building some new pages with new faucet lists etc and information on other BTC gambling sites.  

Wednesday, September 23, 2015

Blockchain Startup Everledger Wins €30,000 at BBVA Competition

Quoting the article from Coindesk:

"London blockchain startup Everledger is the joint winner of BBVA's European Open Talent competition."

"The startup, which uses blockchain technology to tackle diamond fraud and theft, will be awarded a €30,000 prize ($33,939) as well as an invitation to develop a project with the multinational bank."


This could very well bring more value to the bitcoin, as it will basically be working on stabilizing the BTC to make it a more secure currency. Read the article at coindesk here:

"Rounding off the competition series, with previous finals taking place in New York and Mexico DF, Everledger competed against fellow bitcoin and blockchain companies Safello and Vaultoro."

BTC Faucets - Free BTC -

So faucets are basically a website where you can go the you can collect BTC. All you have to do is verify you're not a bot then collect. All the BTC you collect will go to faucetbox account or whatever system you want to use. There are quite a few. I recommend using faucetbox with the faucets i have posted on here as they pay out without any fuss. Faucetbox pays out fairly quickly. Usually within 48 hours of reaching your threshold.


All of these faucets I have just listed are great faucets that I use everyday to make a little extra btc, it's not hard to bring in an extra 100,000 satoushi an hour with this list. Especially on the Rolling faucet which you can claim every 5 minutes. There are a few other 5 minute ones and a few 15 minute faucets, and all of them are through my ref id, so be sure to visit through the links I have posted :).

Sunday, September 20, 2015

Dyborgs Bot



So today I just wanted to talk about dyborgs bot. It's a bot you can run straight out of windows and bet on Primedice. It has all sorts of features like graphs, seed changers etc. Not bad for a free program. You can easily make some BTC with this autobetter. I usually set it to x1.4 at %250 increase on loss with 1000 satoushi base bet. Makes BTC quicker than any faucet but it can also loose it quickly if you don't have enough bank to back the bets. If you have less than 100000 sat you can set your base bet to about 3 sat with those settings and never worry about going over.


Dyborgs bot is available at http://dyborg.cf/ 

Saturday, September 19, 2015

Primedice - Free BTC to play with NO LIMIT -

Hello everyone, this is my first blog post here and I wanted to talk about a site I've been on for a while. It's called Primedice, it's a BTC gambling website. It's a dice game that you can pick your odds in, ranging from 0-100. I usually do x1.4, x1.3, switching between under and over. At a 70% win chance it doesn't work out to bad.

 A lot of people don't like to gamble but on PD you can do fairly well, I've seen it happen and it's happened to me. Now I don't want to make this seem like some get rich quick or anything because at first playing off the faucet is hard and it takes a little while to build it up. Mine is at around 2000 satoushi every 3 minutes. 2000 sat or .00002000 BTC doesn't seem like much but you can build that into quite a bit fairly fast depending on how you bet.

Registration is no hassle, no credit-card or anything like that required. You don't even need your really name on there, it's all just usernames and that's it. But the best this about it is that it come with a built in faucet, so if you run out of btc to be you can claim more. There's a level system to, the higher power level you are the more you can clain from faucet. Up to a max of 10,000 satoushi at max level. Its pretty easy to take that and turn it into 20 or 30 dollars worth of BTC in a day or so with reasonable bets. Be sure to click the lick below and give it a try. I mean you could win.


In my next post I'll talk about some of the automated betting bots you can use with primedice. I will also provide the links to several bots you can run outside of your browser. Well expect a lot more about PD in my next post, I'll also talk various strategies and setting for the auto-betters.