Re: 10 or more phones order

2008-04-29 Thread Ilja O.
On Mon, Apr 28, 2008 at 11:45 PM, Federico Lorenzi [EMAIL PROTECTED] wrote: Haha, one of the bests laughs I've had on here! Although I'm pretty sure it violates PEP 346356 which clearly states that thou should not use exec and base64 :) If you think that python one-liner without base64 is

10 or more phones order

2008-04-28 Thread Pietro m0nt0 Montorfano
Well, may be that i missed the answer but someone asked if the discount and the extra stuff are applied only to the 10 pack or it could also be a 12 pack? So to let you understand the condition is: if (phones_ordered == 10) do_the_10_pack_trick(); or it is something like: if

Re: 10 or more phones order

2008-04-28 Thread Flyin_bbb8
from my understanding its the first :p but don't know.. On Mon, Apr 28, 2008 at 9:13 AM, Pietro m0nt0 Montorfano [EMAIL PROTECTED] wrote: Well, may be that i missed the answer but someone asked if the discount and the extra stuff are applied only to the 10 pack or it could also be a 12 pack?

Re: 10 or more phones order

2008-04-28 Thread NeilBrown
On Mon, April 28, 2008 4:27 pm, Flyin_bbb8 wrote: from my understanding its the first :p but don't know.. My understanding is that there will be two different things that you can buy. - a single phone. - a pack of 10 phones. You can buy multiples of each. If you like, you can be 10 lots of

Re: 10 or more phones order

2008-04-28 Thread ian douglas
Pietro m0nt0 Montorfano wrote: Well, may be that i missed the answer but someone asked if the discount and the extra stuff are applied only to the 10 pack or it could also be a 12 pack? So to let you understand the condition is: if (phones_ordered == 10) do_the_10_pack_trick(); More

Re: 10 or more phones order

2008-04-28 Thread Ilja O.
I just can't leave it like that. :-) if (phones_ordered % 10 * PRICE_1 PRICE_10_PACK) phones_ordered += 10 - phones_ordered % 10; Is this really necessary? what this code is for? And where are comments? :) ___ Openmoko community mailing

Re: 10 or more phones order

2008-04-28 Thread Alexey Feldgendler
On Mon, 28 Apr 2008 10:20:46 +0200, ian douglas [EMAIL PROTECTED] wrote: Well, may be that i missed the answer but someone asked if the discount and the extra stuff are applied only to the 10 pack or it could also be a 12 pack? So to let you understand the condition is: if

Re: 10 or more phones order

2008-04-28 Thread Federico Lorenzi
And why is it not in Python? On 4/28/08, Ilja O. [EMAIL PROTECTED] wrote: I just can't leave it like that. :-) if (phones_ordered % 10 * PRICE_1 PRICE_10_PACK) phones_ordered += 10 - phones_ordered % 10; Is this really necessary? what this code is for? And where are comments?

Re: 10 or more phones order

2008-04-28 Thread Ilja O.
On Mon, Apr 28, 2008 at 12:12 PM, Federico Lorenzi [EMAIL PROTECTED] wrote: And why is it not in Python? It would be too easy to read. ___ Openmoko community mailing list community@lists.openmoko.org

Re: 10 or more phones order

2008-04-28 Thread Richard Bennett
On Mon, 28 Apr 2008 11:28:56 +0200, Ilja O. [EMAIL PROTECTED] wrote: On Mon, Apr 28, 2008 at 12:12 PM, Federico Lorenzi [EMAIL PROTECTED] wrote: And why is it not in Python? It would be too easy to read. So why's it not in Perl then, You could do all that in a simple one-liner... ;o)

Re: 10 or more phones order

2008-04-28 Thread Ilja O.
So why's it not in Perl then, You could do all that in a simple one-liner... ;o) I don't know Perl :( But I could try to write on z/OS HLASM. Or Erlang... Btw, it could be simple one-liner in Python too. Like this: phone_count = 42 _orders = [BOX for _i in xrange(phone_count //

Re: 10 or more phones order

2008-04-28 Thread Flemming Richter Mikkelsen
On 4/28/08, Pietro m0nt0 Montorfano [EMAIL PROTECTED] wrote: Ilja O. ha scritto: So why's it not in Perl then, You could do all that in a simple one-liner... ;o) I don't know Perl :( But I could try to write on z/OS HLASM. Or Erlang... Btw, it could be simple

Re: 10 or more phones order

2008-04-28 Thread Flemming Richter Mikkelsen
On 4/28/08, Flemming Richter Mikkelsen [EMAIL PROTECTED] wrote: All the code can be written with standard cut (the Unix command). btw., awk is more easy than cut :) -- Please don't send me Word or PowerPoint attachments. See http://www.gnu.org/philosophy/no-word-attachments.html Join the FSF

Re: 10 or more phones order

2008-04-28 Thread Federico Lorenzi
Haha, one of the bests laughs I've had on here! Although I'm pretty sure it violates PEP 346356 which clearly states that thou should not use exec and base64 :) Cheers, Federico On 4/28/08, Ilja O. [EMAIL PROTECTED] wrote: So why's it not in Perl then, You could do all that in a simple