Amazon to block Australian shoppers from its US website
mobile.abc.net.au
Amazon to block Australian shoppers from its US website
1–10 of 10 posts
Re: Amazon to block Australian shoppers from its US website
#2It annoys the crap out of me that content can be available in one region and not another, I want to consume it and happy to pay for it.
Re: Amazon to block Australian shoppers from its US website
#3 if (shipping_address[end-9:end] == "Australia")
then
pay_gst()
else
evade_sales_tax()
endRe: Amazon to block Australian shoppers from its US website
#4If they start rejecting aus credit cards, get use a pre paid visa card. Use a VPN if they geoblock the website.
Re: Amazon to block Australian shoppers from its US website
#5This sounds like a publicity stunt. I mean, really, how hard is if (shipping_address[end-9:end] == "Australia") then pay_gst() else evade_sales_tax() end
Re: Amazon to block Australian shoppers from its US website
#6This sounds like a publicity stunt. I mean, really, how hard is if (shipping_address[end-9:end] == "Australia") then pay_gst() else evade_sales_tax() end
if (shipping_address[end-9:end] == "Australia")
then
charge_australia_tax()
end
https://en.wikipedia.org/wiki/Australia_TaxRe: Amazon to block Australian shoppers from its US website
#7This sounds like a publicity stunt. I mean, really, how hard is if (shipping_address[end-9:end] == "Australia") then pay_gst() else evade_sales_tax() end
By blocking the other Amazon websites its easier to force Australians to pay more for their shopping on Amazon for the same products on their US Store (even with GST + Shipping).
Re: Amazon to block Australian shoppers from its US website
#8Use a remailing service like shipitto to get around it. If they start rejecting aus credit cards, get use a pre paid visa card. Use a VPN if they geoblock the website.
Re: Amazon to block Australian shoppers from its US website
#9Re: Amazon to block Australian shoppers from its US website
#10This sounds like a publicity stunt. I mean, really, how hard is if (shipping_address[end-9:end] == "Australia") then pay_gst() else evade_sales_tax() end
2. Your solution assumes the full shipping address is known to where you think this code should live.
3. No edge cases are being handled here.
4. What's the additional server burden for your solution? Do we need to provision additional capacity? What about DB capacity?
5. What does pay_gst actually do? Is it handling only charging an additional price? What about accounting, tax, and reporting?
6. Why are we evading sales tax in the else? We might still need to collect other sales taxes. Amazon.com is also the primary portal for NA, so it still needs to collect local/state taxes.
7. How should we handle updating the DB tables? What about the derived tables?
I could easily go on.