|
2013-12-13
, 12:05
|
Posts: 59 |
Thanked: 46 times |
Joined on Jul 2011
@ London
|
#612
|
|
2013-12-13
, 12:26
|
Posts: 97 |
Thanked: 103 times |
Joined on Sep 2009
@ switzerland
|
#613
|
So here is another poll:
where my new fully paid jolla phone will be spending its xmas?
1. Postoffice depot and then returned to finland after two weeks?
2. My neightbours house?
3. Sitting by my door mat where curious cats will pee over after sniffing sailfishy? Shall I be the proud owner of the first golden showered OTH? That would definitely be #unlike...
|
2013-12-13
, 12:37
|
Posts: 114 |
Thanked: 397 times |
Joined on Sep 2013
|
#614
|
|
2013-12-13
, 12:42
|
Posts: 59 |
Thanked: 46 times |
Joined on Jul 2011
@ London
|
#615
|
Since they deliver with FedEx, I'd assume that FedEx will schedule a reschedule with you after the first delivery has failed (the standard procedure). So you can redirect the shipment to your neighbour if you trust them not to play with the Jolla too much...
|
2013-12-13
, 13:29
|
Posts: 39 |
Thanked: 124 times |
Joined on Oct 2009
|
#616
|
# coding: utf-8 # # Secret Jolla shipment algorithm # # Changelog: # 20131211 Fixed technical problems with queue # from random import shuffle from time import sleep def get_secret_jolla_shipping_order_queue(preorders): """ This is the top secrect Jolla shipping alogrithm that takes care of your presales order number. """ shipping_order = range(0, preorders) shuffle(shipping_order) for in_picking in shipping_order: yield in_picking if __name__ == '__main__': PRESALES = 10000 SHIPMENTS_PER_DAY = 400 shipment_order = get_secret_jolla_shipping_order_queue(PRESALES) for order_no in shipment_order: print 'Picking order number %d ...' % order_no sleep(24*60*60/SHIPMENTS_PER_DAY) print 'Hurray, all Jollas left harbour!'
|
2013-12-13
, 13:33
|
Posts: 728 |
Thanked: 1,217 times |
Joined on Oct 2011
|
#617
|
The Following User Says Thank You to ggabriel For This Useful Post: | ||
|
2013-12-13
, 13:39
|
Posts: 259 |
Thanked: 161 times |
Joined on Aug 2012
@ Athens, GR
|
#619
|
|
2013-12-13
, 13:39
|
Posts: 728 |
Thanked: 1,217 times |
Joined on Oct 2011
|
#620
|
#3142