Bitcoin Forum
May 04, 2024, 12:43:48 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  

Warning: You are in the Gambling section. You are likely to eventually lose any money that you gamble/"invest". Additionally, moderators do not remove likely scams. You must use your own brain: caveat emptor. Do not gamble more than you can afford to lose.

Pages: « 1 [2] 3 4 5 6 7 8 9 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 »
  Print  
Author Topic: BitPonzi.Net - Offline  (Read 34671 times)
geek-trader
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
September 13, 2011, 01:22:41 AM
 #21

I'm in all the ponzis!  PONZI ALL THE PONZI!

Make 1 deposit and earn BTC for life! http://bitcoinpyramid.com/r/345
Play my FREE HTML5 games at: http://magigames.org  BTC donations accepted.
1714783428
Hero Member
*
Offline Offline

Posts: 1714783428

View Profile Personal Message (Offline)

Ignore
1714783428
Reply with quote  #2

1714783428
Report to moderator
1714783428
Hero Member
*
Offline Offline

Posts: 1714783428

View Profile Personal Message (Offline)

Ignore
1714783428
Reply with quote  #2

1714783428
Report to moderator
No Gods or Kings. Only Bitcoin
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714783428
Hero Member
*
Offline Offline

Posts: 1714783428

View Profile Personal Message (Offline)

Ignore
1714783428
Reply with quote  #2

1714783428
Report to moderator
ineededausername
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


bitcoin hundred-aire


View Profile
September 13, 2011, 01:24:34 AM
 #22

I'm in all the ponzis!  PONZI ALL THE PONZI!

Yo dawg, I heard you like ponzis so we put a ponzi in your ponzi so you can ponzi while you ponzi

(BFL)^2 < 0
Jonathan Ryan Owens
Donator
Sr. Member
*
Offline Offline

Activity: 392
Merit: 252



View Profile WWW
September 13, 2011, 01:45:18 AM
 #23

and... We have an API!

http://bitponzi.net/API/API.asmx

FREAKING AWESOME! YOU THE MAN! FREAKING AWESOME! YOU THE MAN!
PONZI IS SERIOUS BUSINESS!

Excellent job, sir.

-Jonathan

Jonathan Ryan Owens
Donator
Sr. Member
*
Offline Offline

Activity: 392
Merit: 252



View Profile WWW
September 13, 2011, 02:19:53 AM
 #24


mb300sd (OP)
Legendary
*
Offline Offline

Activity: 1260
Merit: 1000

Drunk Posts


View Profile WWW
September 13, 2011, 02:31:31 AM
 #25

Well, now that everythings running smoothly, lets see what I can break Wink

Taking Feature Requests Now

All suggestions will be considered. Some may be shot down.

1D7FJWRzeKa4SLmTznd3JpeNU13L1ErEco
ineededausername
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


bitcoin hundred-aire


View Profile
September 13, 2011, 02:35:32 AM
 #26

Well, now that everythings running smoothly, lets see what I can break Wink

Taking Feature Requests Now

All suggestions will be considered. Some may be shot down.

I think that we could have some more customizability with the jackpot.  You could have some option to give some of it to the second to last, or something.
You could also allow the starting player to take on a higher contribution to the jackpot than later deposits so that a game can be started off quickly but the starting player gets his money back faster.
Also ROI maximum used to be 200%, now it's 50%.



Cheesy

(BFL)^2 < 0
Jonathan Ryan Owens
Donator
Sr. Member
*
Offline Offline

Activity: 392
Merit: 252



View Profile WWW
September 13, 2011, 02:37:52 AM
 #27

Well, now that everythings running smoothly, lets see what I can break Wink

Taking Feature Requests Now

All suggestions will be considered. Some may be shot down.

I think that we could have some more customizability with the jackpot.  You could have some option to give some of it to the second to last, or something.
You could also allow the starting player to take on a higher contribution to the jackpot than later deposits so that a game can be started off quickly but the starting player gets his money back faster.
Also ROI maximum used to be 200%, now it's 50%.



Cheesy

1. streaked jackpot - i like it.

say this is a round below, and the last 3 in the round get the Jackpot of 10 bitcoins

25.
26.
27. 1 btc
28. 2 btc
29. 7 btc

2. initial jackpot deposit - i like it.

3. ROI maximum should be unlimited. free markets are important.

ineededausername
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


bitcoin hundred-aire


View Profile
September 13, 2011, 02:39:25 AM
 #28

It might be time to also reimplement some of the old features like sorting the table and email notification (although I don't know whether the email thing was that popular)

(BFL)^2 < 0
mb300sd (OP)
Legendary
*
Offline Offline

Activity: 1260
Merit: 1000

Drunk Posts


View Profile WWW
September 13, 2011, 02:51:46 AM
 #29

?? I don't see where your getting the 50% ROI limit form... this is the only section of code that checks it.
if (String.IsNullOrWhiteSpace(roi) || !Regex.IsMatch(roi, REGEX_INTEGER))
{
   throw new ArgumentException("ROI must be an integer.");
}
...
roi = int.Parse(roi);
...
if (roi < 1 || roi > 200)
{
   throw new ArgumentException("ROI must be an integer between 1 and 200");
}

EDIT: no problems creating a doubler round... ROI=100


I like the streaked jackpot too, will put that on the list for later this week. I'm procrastinating on my programming assignment for class by programming, lol...

Initial jackpot deposit - how about a separate address that goes directly to the jackpot? Anyone can contribute if they want to.

I'm pretty sure I read somewhere that the email was almost never used, so thats a pretty low priority. I'm already working on the sorting.

1D7FJWRzeKa4SLmTznd3JpeNU13L1ErEco
ineededausername
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


bitcoin hundred-aire


View Profile
September 13, 2011, 03:01:02 AM
 #30

?? I don't see where your getting the 50% ROI limit form... this is the only section of code that checks it.
if (String.IsNullOrWhiteSpace(roi) || !Regex.IsMatch(roi, REGEX_INTEGER))
{
   throw new ArgumentException("ROI must be an integer.");
}
...
roi = int.Parse(roi);
...
if (roi < 1 || roi > 200)
{
   throw new ArgumentException("ROI must be an integer between 1 and 200");
}

Hmm that's odd... I must be mistaken then.  Jonathan still wants to let the free market decide what the max ROI should be and I kind of agree with him, and this could be changed very quickly.

Also, I'm glad to hear that you're working on the jackpot features Grin

(BFL)^2 < 0
Jonathan Ryan Owens
Donator
Sr. Member
*
Offline Offline

Activity: 392
Merit: 252



View Profile WWW
September 13, 2011, 03:02:16 AM
 #31

?? I don't see where your getting the 50% ROI limit form... this is the only section of code that checks it.
if (String.IsNullOrWhiteSpace(roi) || !Regex.IsMatch(roi, REGEX_INTEGER))
{
   throw new ArgumentException("ROI must be an integer.");
}
...
roi = int.Parse(roi);
...
if (roi < 1 || roi > 200)
{
   throw new ArgumentException("ROI must be an integer between 1 and 200");
}

Hmm that's odd... I must be mistaken then.  Jonathan still wants to let the free market decide what the max ROI should be and I kind of agree with him, and this could be changed very quickly.

Also, I'm glad to hear that you're working on the jackpot features Grin


A public bounty address for each round that is the Jackpot. Yes. We never implemented it, but it's a great way to do it. That way the host, and anyone who wants to see it keep growing, can contribute.

Killer feature. Get'er done! Tongue

-Jonathan

geek-trader
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
September 13, 2011, 03:06:30 AM
 #32

A fixed expire time.  Like "Expire in 48 hours".  No matter when the last deposit was.

Make 1 deposit and earn BTC for life! http://bitcoinpyramid.com/r/345
Play my FREE HTML5 games at: http://magigames.org  BTC donations accepted.
Jonathan Ryan Owens
Donator
Sr. Member
*
Offline Offline

Activity: 392
Merit: 252



View Profile WWW
September 13, 2011, 03:20:42 AM
 #33

A fixed expire time.  Like "Expire in 48 hours".  No matter when the last deposit was.


Awesome.

geek-trader
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
September 13, 2011, 03:21:11 AM
 #34

OK, the participation is a bit weak.

I'm in 3 of the 6.  bitcoinduit, bitponzi_official and welcome_back.

If someone enters all 3 of the ones I am in (they are at 5, 2, and 2 right now) I will enter each of the other 3 for 1 BTC (they are at 2,2 and 2 right now)

If I see 6,3,3 by 2 hours from now, I will do it.

edit:  to clarify, the "other 3" are goinggoinggoing, doubler and bernie_madoff

Make 1 deposit and earn BTC for life! http://bitcoinpyramid.com/r/345
Play my FREE HTML5 games at: http://magigames.org  BTC donations accepted.
geek-trader
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
September 13, 2011, 03:35:08 AM
 #35

Someone entered as I asked, and I entered as I said I would.  I've used the same payout address for all:  1Ponzidbep2s7eF5NdVarPqkDrnzdGjdDx

Lets get some jackpots growing here!

Make 1 deposit and earn BTC for life! http://bitcoinpyramid.com/r/345
Play my FREE HTML5 games at: http://magigames.org  BTC donations accepted.
geek-trader
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
September 13, 2011, 03:43:29 AM
 #36

I have started (again) The Forever Game.  http://bitponzi.net/Default.aspx?page=ViewRound&round=The_Forever_Game

May it again have the largest jackpot and highest payout total as it did on Bitcoinduit.

Make 1 deposit and earn BTC for life! http://bitcoinpyramid.com/r/345
Play my FREE HTML5 games at: http://magigames.org  BTC donations accepted.
mb300sd (OP)
Legendary
*
Offline Offline

Activity: 1260
Merit: 1000

Drunk Posts


View Profile WWW
September 13, 2011, 03:46:10 AM
 #37

Sorting is working. I love LINQ Grin didn't realize it worked on arrays! Spent a while trying to implement multiple IComparable interfaces, when this works
Code:
case "name":
rounds = rounds.OrderBy(r => r.Name).ToArray();
break;
case "roi":
rounds = rounds.OrderByDescending(r => r.ROI).ToArray();
break;
case "payout":
rounds = rounds.OrderByDescending(r => ((_Round)r).PayoutTotal).ToArray();
break;
case "remaining":
rounds = rounds.OrderBy(r => ((_Round)r).Remaining).ToArray();
break;
case "jackpot":
rounds = rounds.OrderByDescending(r => ((_Round)r).JP).ToArray();
break;


Added a bit of a todo list. Still taking contributions...
http://bitponzi.net/Default.aspx?page=ComingSoon

1D7FJWRzeKa4SLmTznd3JpeNU13L1ErEco
ineededausername
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


bitcoin hundred-aire


View Profile
September 13, 2011, 04:07:51 AM
 #38

Hi mb300sd,
I'm not really that acquainted with .NET... how efficient is LINQ?  I just read up on it and it seems concise but the disassembled code ends up being very long.
Of course, it probably doesn't matter for your site.

(BFL)^2 < 0
mb300sd (OP)
Legendary
*
Offline Offline

Activity: 1260
Merit: 1000

Drunk Posts


View Profile WWW
September 13, 2011, 04:20:03 AM
 #39

Hi mb300sd,
I'm not really that acquainted with .NET... how efficient is LINQ?  I just read up on it and it seems concise but the disassembled code ends up being very long.
Of course, it probably doesn't matter for your site.

I haven't looked into the speed of LINQ to objects very much, but it definitely generates more efficient SQL than I could write myself. I'm sure I'll hit my bandwidth limit long before I overload this 74% idle quad core... (mining sucks up 1 core)

1D7FJWRzeKa4SLmTznd3JpeNU13L1ErEco
ineededausername
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


bitcoin hundred-aire


View Profile
September 13, 2011, 04:28:01 AM
 #40

For those with high risk tolerances Cheesy
200/30!
http://bitponzi.net/Default.aspx?page=ViewRound&round=MEGATRIPLER

(BFL)^2 < 0
Pages: « 1 [2] 3 4 5 6 7 8 9 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 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!