Live data from Hacker News

Aquaris E4.5 Ubuntu Edition

bq.com

191–200 of 280 posts

Re: Aquaris E4.5 Ubuntu Edition

#191
post #21

What is the status of connecting the ubuntu phone to a screen to get a personal computer running ubuntu desktop ?

Even if it's possible with this device (which I don't know) that's still an ARM processor you have. It's a Cortex A7 a bit faster from what you get in a Raspberry Pi 2 but not much. Anyway, those phones or tablets that turn into supposed regular computers are cool, but at the end of the day when I have access to a screen and keyboard there is usually a computer not far. Since my data is in the cloud anyway, I'd rathe…

There are plenty of situations where I don't want to trust the available computer with my data.

And I very frequently find myself in situations where the network connection is so poor that streaming my data over the network is an exercise in frustration.

When I then walk around with more and more powerful computers in my pocket, it's great to be able to make use of it.

Re: Aquaris E4.5 Ubuntu Edition

#192

Earlier quoted context omitted.

It would be quite a bit of work, to attend a very limited use case. Every Catalan (or Galician, Valencian, Basque) speaks Spanish, as do the vast majority of the expats I know (and I'm one myself). You can still access the specific site of the language you are interested in. Or, in the worst case, use Google translate.

Obviously it depends on the use case and audience, but language and location should not be conflated by default. Location allows customization of currency, measurement units, legal policies, shipping information, tariffs, dates/times, etc independently of the copy language. There are plenty of countries with more than one major language (there are almost 40 million Spanish-speaking citizens of the US and India has 23…

My (very subjective) guess, is that many of those 40 millions Spanish speakers in the US speak English as well, and the percentage of those who don't and would use an e-commerce site is low.

Still, I would imagine major e-commerce websites to add support for a langugage in the website, if the potential userbase is big enough (for example, the Apple Store does).

My knowledge of India is very limited , but it always seemed to me that the unifying language really is English (again, from a very cursory glance, Amazon, Apple and HP have Indian e-commerce stores in English).

My point is that decoupling language and location as a general feature does not make much economic sense in the vast majority of cases.

This is especially true for major e-commerce sites: think about Amazon, and the number of items being sold (millions ?). Many of those are sold only in a particular store, or have variations between a store and another: how much would it cost to translate all the articles for all the stores in x languages ?

Re: Aquaris E4.5 Ubuntu Edition

#193
post #166

Earlier quoted context omitted.

spacefight is right. Offering HTTP along with HTTPS is an antipattern. As an example, I give you Reddit, where HTTP and HTTPS services are identical. That means you can log in on the HTTPS site, and I can have your session cookie or even your password. The only sane solution is to set up HTTP to redirect to HTTPS, and add an HSTS cookie.

Not necessarily. Allowing access on both http and https is indeed a bad practice, but not in regards to the scenario you described. The scenario you described has been covered since long by the 'secure' attribute, available when creating cookies. Assuming the authentication was performed from within the https channel, the cookie won't be disclosed when requests are triggered on the http channel. This covers the 'Redd…

In either case it leaks information. Even if I can't get your session key, I can see every URL you visit, and every field you put in. Also, if your login form can be served over HTTP (or any included script is, which thankfully Chrome now disallows when the page loads over HTTPS), I can just get your password. Guess how Reddit serves their login form? Yup, it's right on http://www.reddit.com/.

Re: Aquaris E4.5 Ubuntu Edition

#194
post #53

Too bad, LTE 4G not supported :(

Honest question here: what does anyone need 4g for? On HSPA+ (H+) my connection is fast enough for any purpose besides downloading movies, and it's not like I've got unlimited data. Even 3g's theoretical speed is great if they could get that to work for a change. I have 4g on a company laptop and the speed is better than many places' WiFi, but I have yet to find an excuse to use it ( someone has to pay that data bill…

4G has much better latency than HSPA+ for me. Video streaming is much smoother and breaks up less. FaceTime is much better than on HSPA+. If I see 4G in my status bar, I know my connection is going to be at least as good as coffee shop WiFi.

It contends better too, which affects everyone.

I have unlimited LTE for £15/mo (Three UK) so I don't need to worry about paying for the data.

Re: Aquaris E4.5 Ubuntu Edition

#195

The battery being a LiPo (lithium polymer) could be a concern (they are quite unstable and explode on contact with water) and IIRC are not allowed to be brought on planes. They can also be permanently damaged if you allow the voltage per cell to get too low and do not have a huge amount of recharge cycles.

There are two types of "Lithium Polymer" batteries:

> Originally, "lithium polymer" stood for a developing technology using a polymer electrolyte instead of the more common liquid electrolyte.

> The second meaning appeared when some manufacturers started applying the "polymer" denomination to lithium-ion cells in pouch format.

The first one (polymer bag around a lithium ion battery) is currently used in many devices, but the second (polymer electrolyte) is not commonly used and seems to be an active area of research.

http://en.wikipedia.org/wiki/Lithium_polymer_battery

The (common) Lithium Polymer batteries are, according to the Wikipedia page, as safe (or unsafe) as Lithium Ion batteries.

Re: Aquaris E4.5 Ubuntu Edition

#196

I hate to be that guy, but I believe I need to share this. I was amongst the "lucky" ones who managed to get one of the phones of the first batch they sold (my Serial Number is lower than 1500). After using the phone for 20 minutes, I realized that the OS is _very_ far from being usable. I was able to spot more than 10 bugs that would prevent any regular smartphone user to use Ubuntu Phone as a replacement of a rudim…

> I was able to spot more than 10 bugs that would prevent any regular smartphone user to use Ubuntu Phone as a replacement of a rudimentary smart phone.

Please can you share the bugs so that others can actually judge usability for themselves? Have you filed the bugs?

Re: Aquaris E4.5 Ubuntu Edition

#198

Earlier quoted context omitted.

The only reason why some sites still use http is because of the need to purchase an ssl certificate from one of the cartelized CA providers.

It's not just that. TLS setup is additional effort.

Let me walk you through it:

    $ openssl genrsa -out $server.key 2048
    $ openssl req -new -sha256 -key $server.key -out $server.csr
Get the CSR to a CA and get the cert in your email inbox. Compose the cert into a chain (the most painful part of the process).

Put the cert and the key in /etc/ssl/certs/example.com.crt and respectively /etc/ssl/private/example.com.key;

In your nginx config add the following:

    server {
    
    listen 443 ssl spdy;
    server_name www.example.com
    
    ssl on;
    ssl_session_timeout 5m;
    ssl_session_cache shared:SSL:5m;
    
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';
    ssl_prefer_server_ciphers on;
    
    # HSTS (ngx_http_headers_module is required) (15768000 seconds = 6 months)
    add_header Strict-Transport-Security max-age=15768000;
    
    resolver 8.8.8.8;
    
    ssl_certificate /etc/ssl/certs/example.com.crt;
    ssl_certificate_key /etc/ssl/private/example.com.key;
    
    #...
    }
Restart nginx. If you want to only do HTTPS, and have HTTP redirect to HTTPS:

    server {
        listen 80 default_server;
        server_name _;
        rewrite ^ https://www.example.com$request_uri permanent;
    }
It took 3 minutes to write this comment. Getting a new cert up and running will take you $5 and 15 minutes if you follow these instructions. Free if you use startssl.com. Cheapest wildcard I found was https://www.ssls.com/ when they ran a sale: $42. Current cheapest Google turned up was https://cheapsslsecurity.com/sslproducts/wildcardssl.html for $60. Personally, I prefer wildcard certs whenever possible, free certs from startssl.com.

Re: Aquaris E4.5 Ubuntu Edition

#199
post #87

Earlier quoted context omitted.

https://www.eff.org/https-everywhere/

And all of the other customers are left unprotected. This is the responsibility of the admin, not the user.

I agree, but as a user you don't have any control over that. Https Everywhere is a solution to the immediate problem.

Re: Aquaris E4.5 Ubuntu Edition

#200

I got burned once with a windows phone Omnia 7 as an early adopter and it was beyond useless (lack of apps/configurability) so I will definitely not rush again on unproven phones despite my interest in Ubuntu. Also the price/specs on this phone is horrible compared to Xiaomi Note 4G (190euro) which I own and can recommend to anyone. I hope Ubuntu phone catches on though. Competition is good.

The specs on that Xiaomi are really nice value. I'd been looking at the 2nd gen Moto E or G for my parents, but the Xiaomi beats it, although at a higher cost. It just amazes me how cheap tech has become. The other day I was looking through the Microsoft Store, saw a $90 ish tablet that had various discounts at times bringing it down to an absolutely ridiculous $60-70 range. I checked out some reviews and they were g…

Second-gen Moto E came out just as my wife's Nexus 4 was giving up the ghost, and so far it is the perfect replacement. She was a little upset that it cost so much ($150), at which point I thought it unwise to remind her how much our iPods have cost over the years.
Post reply on HN