Search content
Sort by

Showing 9 of 9 results by bitcoinslider
Post
Topic
Board Development & Technical Discussion
Re: Network synchronization - future problem?
by
bitcoinslider
on 20/08/2013, 04:37:17 UTC
in 10 years...
  - your internet will be way faster Smiley


I don't know about way faster... we're still stuck on 10 year old broadband technology today using a 100 year old copper network... my country sucks. Sad

In that case your country is likely to be invaded and taken over by France within 10 years
Post
Topic
Board Development & Technical Discussion
Re: Network synchronization - future problem?
by
bitcoinslider
on 20/08/2013, 04:21:08 UTC
in 10 years...
  - your internet will be way faster Smiley
  - other solutions will have no doubt been developed. 

distributing a client with hard-coded checkpoints (already done) as well as block headers up to the checkpoint and the list of unspent transactions would be fine for most users.
Post
Topic
Board Beginners & Help
Re: Bitcoinslider.com
by
bitcoinslider
on 16/08/2013, 23:12:07 UTC
I know - they're not accepting new ones, but it seems they're keeping ones that've been already approved.
Post
Topic
Board Beginners & Help
Re: Bitcoinslider.com
by
bitcoinslider
on 16/08/2013, 18:08:39 UTC
I'd do a captcha, or anything else! 

Got any links to companies that do that..?
Post
Topic
Board Beginners & Help
Re: Bitcoinslider.com
by
bitcoinslider
on 16/08/2013, 02:13:51 UTC
Folks,

Had to take the site down.  Virool is "no longer accepting websites trading for bitcoins".  But they did pay me what was owed, so at least they're not scammers, even if it's a giant piss off.

Anyone got any ideas?

If you know of any sites that provide instant feedback (a callback to the website) confirming that a user has completed an action, and this action is with $x.xx... Let me know.  I'll make a new bitcoin faucet for everyone.

Anyone...?
Post
Topic
Board Beginners & Help
Re: Bitcoinslider.com
by
bitcoinslider
on 08/08/2013, 03:46:19 UTC
Yes.  I'm afraid quadruple has to be enough for now Tongue
Post
Topic
Board Beginners & Help
Re: Bitcoinslider.com
by
bitcoinslider
on 07/08/2013, 22:38:22 UTC
Hey - thanks Smiley

What you said is actually true, now that I think about it.  Your "Activity bonus" actually will disappear, if you clear cookies or use another browser.  It IS tracked by your pid/sid.

Perhaps I should do an analysis.  It might be better to be tracked by a bitcoin address instead.

Thoughts?  Is that issue actually affecting people? Is it affecting you or did you just notice it while experimenting?

Post
Topic
Board Beginners & Help
Re: Bitcoinslider.com
by
bitcoinslider
on 07/08/2013, 19:08:25 UTC
Hey peoples,

bitcoinslider.com pays out daily, as of yesterday. 

At first it was weekly, because the site was an experiment and I wasn't sure how it was going to work.  Although it wasn't actually weekly, it was a bit more often, but sporadic.

Now, I've purchased enough bitcoins to fund the site for a while, and daily payouts will be no problem.  ...That being said, I'm still doing it manually.  I'll move to an automatic system sooner or later, but for right now, it's manual.

As for the note about bitcoins being reset if you lose cookies?  No.  Each and every bitcoin earned is recorded and stored in a table on Microsoft Azure.  If you lose your cookies or go with another browser, your bitcoins will still be there.  They SHOULD show up if you enter the same bitcoin address... but I haven't tested it thoroughly Tongue  But even if they don't show up on the website, when it's time to payout, they're still there.

Here's the structure used for each video you get credited for:     

public sealed class BitcoinTransactionEntity : TableEntity
    {
        public BitcoinTransactionEntity()
        {
        }
        public BitcoinTransactionEntity(DateTime transactionDate, string bitcoinAddress)
        {
            PartitionKey = GetPartitionKeyOptimistic(transactionDate, bitcoinAddress);
            RowKey = Guid.NewGuid().ToString("N");

            TransactionDate = transactionDate;
            BitcoinAddress = bitcoinAddress;
        }
        public DateTime TransactionDate { get; set; }
        public string AmountString { get; set; }
        public string BitcoinAddress { get; set; }

        public static string GetPartitionKeyOptimistic(DateTime transactionDate, string bitcoinAddress)
        {
            return transactionDate.ToString("yyMMdd") + bitcoinAddress.Substring(0, 1);
        }
    }

When a payout occurs (ie, you are actually sent your payment in bitcoins), it's a new record in a different table.  The record of the transactions NEVER gets deleted.

Here's the structure for that one:
public sealed class BitcoinPayoutEntity: TableEntity
    {
        public BitcoinPayoutEntity()
        {

        }
        public BitcoinPayoutEntity(string id, int transactionPartNumber, DateTime transactionDate)
        {
            Id = id;
            TransactionPartNumber = transactionPartNumber;
            TransactionDate = transactionDate;

            PartitionKey = GetPartitionKeyOptimistic(transactionDate);
            RowKey = transactionDate.ToString("yyyyMMdd") + id + transactionPartNumber.ToString();
        }
        public string Id { get; set; }
        public int TransactionPartNumber { get; set; }
        public DateTime TransactionDate { get; set; }
        public string AmountString { get; set; }
        public string BitcoinAddress { get; set; }

        public static string GetPartitionKeyOptimistic(DateTime transactionDate)
        {
            return transactionDate.Day.ToString();
        }
    }


Bottom line: You'll be paid everything you've earned Tongue

If you feel you're missing some, pm me a bitcoin address.

Note that when a payout to you occurs, the "pending amount" showing on the website gets reset.

Prospero, I noticed that your forum message occurred shortly after my last payout.  Perhaps you just saw your pending amount go to zero because I paid you your bitcoins, and that's the cause of confusion.

Any Q's, feel free to ask Smiley  One guy earned 26600 or so uBTC last payout.  Geez lol.
Post
Topic
Board Micro Earnings
Re: FREE BITCOIN Sites *and* Free Newbie Lotto
by
bitcoinslider
on 27/07/2013, 06:17:32 UTC
Bitcoin Slider - bitcoinslider.com
Pays out for watching videos.  Just keep the page open 24/7 and whenever a video pops up, watch it.  And turn on audio alerts so that you know when a video's available without having to stare at it all day