If you're asking for the "reason for transfer", that's given in the awaiting bank transfer mail in my case, though it's called Überweisungsgrund in my mail. It's the same 9 upper case letter code as the order id.
Your order ID is: #000000. Your Order ID has been sent via email.
Has it been announced outside this forum at all?Not too bad given that the pre-order date wasn't announced very long in advance.
Yes. At least 1500 units have to be sold before such vouchers can be used (because it's still a small company that needs a profit margin for their hard work). Look at the lower part of the provided link for source. Or did I understand the IOU wrong? I actually don't know all the different things Craig screwed up and how it was handled since then, it's a way too messy situation for any outsider to understand.since i have a Craig Pandora IOU (voucher can't be provided yet), should i wait to order until the financial situation sorts itself out?
The same for me, but for the pre Pre-order, I didn't received any email.Ordered!
But unlike with the pre-preorder, I still didn't recieve any code via mail yet. Has anybody recieved theirs?
There's an AT modem command to switch the entire chip off.So I was thinking of supporting the 4G model just for "future-proofing". I don't myself really use mobile network in current life situation, and thus was thinking if there is hardware switch to turn it off when not used, or is disabling only done by not loading kernel module?
02:01:39| <phanboet> Total preorders: 134 [88 networked; 4 2GB, 130 4GB] {Stand2GB: 3, Stand4GB: 43, US2GB: 0, US4GB: 24, EU2GB: 1, EU4GB: 63} @ 2016-05-01 02:00:18 CEST
#!/usr/bin/env python
# Public domain
from __future__ import print_function
import lxml.html
import lxml.cssselect
import datetime
import json
try:
from urllib.request import urlopen
except ImportError:
from urllib import urlopen
editions = {
"SE2" : "https://www.dragonbox.de/en/354-pyra-preorder-standard-edition-2gb-ram-pyra.html",
"SE4" : "https://www.dragonbox.de/en/415-pyra-preorder-standard-edition-4gb-ram-pyra.html",
"US2" : "https://www.dragonbox.de/en/353-pyra-preorder-mobile-ed-us-2gb-ram-pyra.html",
"US4" : "https://www.dragonbox.de/en/414-pyra-preorder-mobile-ed-us-ver-4gb-ram-pyra.html",
"EU2" : "https://www.dragonbox.de/en/355-pyra-preorder-mobile-ed-eu-vers-2gb-ram-pyra.html",
"EU4" : "https://www.dragonbox.de/en/416-pyra-preorder-mobile-ed-eu-vers-4gb-ram-pyra.html",
}
sel = lxml.cssselect.CSSSelector('p#pQuantityAvailable > span#quantityAvailable')
total = 0
results = {}
for ed, url in editions.items():
page = urlopen(url).read()
tree = lxml.html.fromstring(page)
count = 2000 - int(sel(tree)[0].text)
total += count
results[ed] = count
results["total"] = total
results["timestamp"] = datetime.datetime.utcnow().isoformat()
print(json.dumps(results, indent=2, sort_keys=True))
If anyone wants to keep track of the count, I made a quick scraper. I might integrate it into the Pandora Stalker later. Unfortunately, I don't have much time this weekend.
M'kay, what's that reference good for then?The 9 letter code is the order reference. On the order summary page there was also a 6 number ID at the bottom. The part saying:
"only like 5 bucks" You realize that's like €2k, right?Sigh. looks at the price. Realizes I'm too young for a credit card. Then realizes that my Bitcoin wallet only had like 5 bucks in it. I'll never get to see the Pyra in my own hands.
Not sure, but my assumption is that the reference is the actual one that matters here and the ID is the regular DragonBox order ID.M'kay, what's that reference good for then?