Premium domains
Premium domains
I've just bought two domains:
http://www.export3d.com
http://www.3dcube.net
And I want to know how much can you offer for them?
http://www.export3d.com
http://www.3dcube.net
And I want to know how much can you offer for them?
Re: Premium domains
If I wanted them, I would have bought them. Sell your warez elsewhere, idiot.darklight wrote:I've just bought two domains:
http://www.export3d.com
http://www.3dcube.net
And I want to know how much can you offer for them?
- AndrewAPrice
- Member
- Posts: 2299
- Joined: Mon Jun 05, 2006 11:00 pm
- Location: USA (and Australia)
Why are you trying to resell those domains when:
a) If we wanted a domain we could get register it ourselves.
b) Those domains are not relevant to OSDev'ing and you're advertising them on an OSDev'ing forum.
c) If you wanted instant guaranteed money, go to your closest casino and play Roulette (yes, I've discovered a slight flaw in the game).
a) If we wanted a domain we could get register it ourselves.
b) Those domains are not relevant to OSDev'ing and you're advertising them on an OSDev'ing forum.
c) If you wanted instant guaranteed money, go to your closest casino and play Roulette (yes, I've discovered a slight flaw in the game).
My OS is Perception.
Is that the kind where you adjust the game while distracting everyone with a round of sambuca shots?Zacariaz wrote:actually its quite easy to win on roulette, however the casinos dont allow that kind of playing.
The cake is a lie | rackbits.com
no, its all about having enough money. fx. you bet $1 on red which pays double back. If you win you win, but if you loose you bet $2 on red, maybe you loose again, but then you just bet $4, $8, £16, and so on, untill you win and you will not only have gotten your money back but allso have made a small profit.
However i doubt that any casino will let you do that very long, or maybe they have a strict limit on the table, but in theory it works, that is if you have enough money.
However i doubt that any casino will let you do that very long, or maybe they have a strict limit on the table, but in theory it works, that is if you have enough money.
This was supposed to be a cool signature...
Apparently this is called a Martingale (see here), and it only works if you have an infinite amount of money. (On average, the times when you lose all your money will more than cancel out the amount you win.)Zacariaz wrote:no, its all about having enough money. fx. you bet $1 on red which pays double back. If you win you win, but if you loose you bet $2 on red, maybe you loose again, but then you just bet $4, $8, £16, and so on, untill you win and you will not only have gotten your money back but allso have made a small profit.
Yes, but the mathematics on that page shows that if you go to the casino again and again, in the long run, you'll lose more money than you make (because of the few times when you lose all your money). For example, if you only bet up to $64 (you stop after 6 losing bets), 63 out of 64 times you'll win $1, and one out of 64 times you'll lose $127. So if you play 64 times, on average you'll lose $64 (win $63 and lose $127).
(That's assuming the chance of winning each bet is 1/2.)
(That's assuming the chance of winning each bet is 1/2.)
just for the fun of it:
Its not perfect (i suspect that stack or bet may wrap around), but it shows the priciple. I allso show that you're right, but we allready knew that.[/quote]
Code: Select all
#include <iostream>
#include <ctime>
#include <cstdlib>
class roulette {
unsigned int stack, bet, round;
public:
roulette(unsigned int start_stack):stack(start_stack), bet(1), round(0) {
srand(time(0));
while(stack >= bet) {
round++;
stack -= bet;
if(get_rand()) {
stack += 2*bet;
bet = 1;
}
else bet *= 2;
}
std::cout << "Broke at round " << round;
}
private:
bool get_rand() {
char test = rand() % 37;
if(test == 0) return 0;
if(test % 2 == 0) return 0;
else return 1;
}
};
int main() {
roulette test(256);
std::cin.get();
}
This was supposed to be a cool signature...