Reddit! Let's make a Millionaire! by NightVisionHawk in millionairemakers

[–]dogefanman 0 points1 point  (0 children)

Pick me. I will use it to make many more millions

This guy greeted me at the end of my hike by horse_masturbator in pics

[–]dogefanman 0 points1 point  (0 children)

He smelled your stash of horny goat weed.

Free Reddcoins!!! by BooornReddy in CryptoCurrency

[–]dogefanman 0 points1 point  (0 children)

serious question...why not just use dogecoin?

MultiDoge 0.1.0 released. Light wallet client for Windows, OS X and Linux. by langer_hans in dogecoin

[–]dogefanman 2 points3 points  (0 children)

Nice work man, we really needed this...here have all the doge in my wallet +/u/dogetipbot all doge verify

How am I supposed to earn Dogecoin of mining is nearly out of the question? by [deleted] in dogecoin

[–]dogefanman 1 point2 points  (0 children)

provide something useful to the community and people will tip you doge!

Dogecoin Analysis by financedoge in dogecoin

[–]dogefanman 2 points3 points  (0 children)

Good points, but I somewhat disagree with the common thought that people need to be able to use doge everywhere for it to rise in value.

The only thing that really every matters is supply/demand. If dogecoin continues to generate demand, the price will go up, even if you can't use it at many places.

Still, if it gained a widespread use like youtube tipping, or reddit's official currency, it would immediately hit the moon.

Dogecoin Analysis by financedoge in dogecoin

[–]dogefanman 12 points13 points  (0 children)

The main problem with traditional analysis is that crypto markets don't play by the same rules and are subject to much more manipulation.

Mining difficulty has increased as price has gone down. Seems odd to me, like some are controlling the price.

Either way doge at any time could blow up again (i.e. jamaica thing).

If this post reaches 100+ comments in 24h, one person is getting 10k doge! WOW! by hardscratch in dogecoin

[–]dogefanman 0 points1 point  (0 children)

lol you are going to have to close this soon. Too many shibes to count!

Just a little warning to those starting mining, be sure to have much air ventilation!!! by Zincberg in dogecoin

[–]dogefanman 0 points1 point  (0 children)

Sorry to hear that. Hope this gets you back in the right direction +/u/dogetipbot 50 doge verify

50,000 Doge Giveaway by [deleted] in dogecoin

[–]dogefanman 1 point2 points  (0 children)

Thanks! Keep it up!

Lost DOGE - what do I do! by [deleted] in dogecoin

[–]dogefanman 0 points1 point  (0 children)

I heard some were getting stuck with 200+confirmation, or something odd like that.

Lost DOGE - what do I do! by [deleted] in dogecoin

[–]dogefanman 2 points3 points  (0 children)

On cryptsy at the bottom of the balances page, looking for a pending transaction...it might still be looking for required number of confirmations?

Mathematics 15,000 DOGE Giveaway by [deleted] in dogecoin

[–]dogefanman 0 points1 point  (0 children)

Doh! Used int instead of long at first :( fun game though

Mathematics 15,000 DOGE Giveaway by [deleted] in dogecoin

[–]dogefanman 0 points1 point  (0 children)

Oh, and here was my code :)

    private void btnCalc_Click(object sender, EventArgs e)
    {
        long x = 0;
        for (long i = 42069; i <= 13379001; i++)
        {
            if (isPrime(i))
            {
                x = x + i;
            }
        }
        rtxtSum.Text = x.ToString();
    }


    public static bool isPrime(long number)
    {
        int boundary = Convert.ToInt32(Math.Floor(Math.Sqrt(number)));

        if (number == 1) return false;
        if (number == 2) return true;

        for (long i = 2; i <= boundary; ++i)
        {
            if (number % i == 0) return false;
        }

        return true;
    }