Hacker Timesnew | past | comments | ask | show | jobs | submit | mimg's commentslogin

It was my understanding Atlassian tools like Jira and Confluence do not use Struts. Is this correct?


A somewhat similar in concept using attributes in markup is Tangle [1]

[1] http://worrydream.com/Tangle/


In the case of Equifax customer data was given to them by creditors. Customers had no say.


> Users are always identified to you by email address, phone number or both...

An account system using phone numbers may have a negative impact to privacy. For some people a phone number is attached to a real name and address. Also it is not uncommon for a person to change their phone number from time to time.


For many people (most?) this is true for an email address as well


Certainly for the less tech savvy and thus those less aware of why that might be an issue.


Vary: User-Agent header, caching servers should consider the user agent when deciding whether to serve the page from cache. [1]

[1] https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Va...


>> Showing an interest in terrorist events: everyone.

What they meant by the question is not what you believe it to be... interest != concern. I would say almost everyone has a concern but not an interest.

>> Substance abuse. Almost everyone.

Sure. I wouldn't say almost everyone.


Depends on your definition of abuse. I would consider many people's caffeine, alcohol, nicotine or sugar habits to be abusive to their overall health.


I would hope this is just poor execution on the manufacturers behalf and will eventually realize that making the battery an upgradable module would be a great selling point. However, based on experience I don’t see manufactures wanting to sell better batteries when they can make it exclusive to newer models. I think after the proliferation of EV’s we will see a lot of aftermarket batteries with significantly better specs.


I would hope this is just poor execution on the manufacturers behalf and will eventually realize that making the battery an upgradable module

When does it ever work like this in the real world though? Planned obsolesce and all that. Even in this industry, replacement car parts cost far above the component price when the car was new.


Since Musk is not making electric cars just for the profits, maybe Tesla will produce replacement batteries with better specs at lower cost. Tesla cars are designed to have battery packs that can be easily replaced contra Apples recent devices. Tesla car batteries will be the first ones, at volume, that people with electric cars will want to replace. If Tesla sets the trend other car manufactures will be at a disadvantage if they don't follow.


One of the overlooked cool benefits of EVs imo, is that you can repurpose old batteries, even if they aren't suitable for the EV market. As a battery ages and loses capacity, say it goes down to only 50% of it's capacity when new, it may no longer be acceptable for use in a car but it could still be perfectly adequate as a back up power source in a house.


Right. So when you are calculating costs, you need to include how much you are going to get for your old battery at usedlionbatteries.com. Of course, the faster new batteries get cheaper and better, the less you old battery is going to be worth.


That's certainly true but I was mostly meaning to highlight the fact that as these batteries age, and may no longer be suitable for their original purpose, they could still be useful for a whole range of alternative purposes.

As the original battery owner I don't intend to get much for selling a used car battery, but it still seems quite cool to have it be repurposed for some other use.


Yes, it's against the interests of car manufacturers to do so. But i could see china encourage that open battery standard(among chinese companies only, behind closed doors) as a way to get market share of both cars and batteries.


> I would hope this is just poor execution on the manufacturers behalf and will eventually realize that making the battery an upgradable module would be a great selling point.

Older phones, e.g. Nokias would commonly had standardised, replaceable batteries. Sadly, this trend has gone by the wayside. I can imagine EV makers going the non replaceable battery route. Maybe in the future we'll have some popular open source EV+standard spec battery pack, the "build your own computer" version of an EV.


A few manufacturers do already offer upgrades. E.g. BMW offer an upgrade for the i3 from the original 22kWh pack to their newer 33kWh pack.


In theory, yes, but the replacement is incredibly expensive, I believe around $15k.


Tesla for the very low production run of Roadsters as well. (~2500)


Back when I had a Windows Mobile smartphone the carrier I had controlled the updates. Upgrading from winmo 6 to 6.1 took months. I think allowing carriers to control updates will negatively impact user experience.


Interesting language. The comprehensions are a neat feature and similar to Python in syntax. No support for ternary or assignment operators. The lambda syntax is not very intuitive if you have no arguments and more than one statement to execute.

  let e1 = {
    return "e1 called!"
  }

  let e2 = -> {
    return "e2 called!"
  }
e1() has expected behavior but e2() does not and e2()() has expected behavior. Not sure why?


Just from looking at your example here, and not looking at the docs, I'd say that `{x}` and `-> x` both return a function which evaluates `x` and returns the result; so `-> {x}` is equivalent to `{{x}}`, i.e. it returns a function which returns a function which returns `x`.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: