Slashdot Mirror


User: Entrope

Entrope's activity in the archive.

Stories
0
Comments
2,152
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,152

  1. Re: Stretching for Security Risks on French Company Plans To Heat Homes, Offices With AMD Ryzen Pro Processors · · Score: 1

    That's pretty much exactly backwards. Without physical security, it's extremely hard to provide any further security assurances. How much money and time has Apple spent trying to lock down their custom phone designs? This company doesn't have the advantage of designing everything from the CPU to the overall system, so they're going to inevitably rely on good behavior to minimize security compromises.

  2. Re: What do they do during the summer? on French Company Plans To Heat Homes, Offices With AMD Ryzen Pro Processors · · Score: 1

    I'm not sure what the standard is in Europe for in-home heat generation, but in the US, water heaters (which need to direct heat to a relatively small vessel) are separate from central heating systems and space heaters (which both want to distribute heat to the general indoor "environment"). How were you thinking this would work? Like an electric kettle, or hooked into the home's hot water system? Neither seems very practical, given the vessel vs environment heating problem.

  3. Re: What do they do during the summer? on French Company Plans To Heat Homes, Offices With AMD Ryzen Pro Processors · · Score: 1

    Turning half your installed equipment off for a third to half of the year seems like it will really stretch out the time to break even on it -- I don't think margins on cloud computing are that fat.

    If I could think of that in half a second after thinking that maybe they'd just turn things of during the summer, maybe you could too.

  4. What do they do during the summer? on French Company Plans To Heat Homes, Offices With AMD Ryzen Pro Processors · · Score: 4, Insightful

    I know the French take a vacation in August, but it seems like you wouldn't want a space heater running during any of the summer. Even if you have air conditioning, you'd have to pay more to pump the generated great out of your home.

  5. Re:Documentation is part of design and implementat on Google Publicly Releases Internal Developer Documentation Style Guide (betanews.com) · · Score: 1

    Don't take it up with me, take it up with your dictionary.

  6. Re: Good engineers write good documentation on Google Publicly Releases Internal Developer Documentation Style Guide (betanews.com) · · Score: 1

    I stand by my comment. Look at any of the studies discussing work breakdowns in serious software engineering projects: the amount that can be fairly called documentation will be less than the amount of other design work (thinking, analysis, experimentation, etc.) plus implementation, to say nothing about requirements development or verification or the other odds and ends of a development cycle. You wrote that "doing it right" meant that documentation takes a majority of the time, and that is simply wrong.

  7. Re: Documentation is part of design and implementa on Google Publicly Releases Internal Developer Documentation Style Guide (betanews.com) · · Score: 1

    Again, I said documentation is distinct from those other things, not that it was optional. You're continuing to misread plain English. You recognize that someone might design or create a thing without documenting what they did. That means the documentation is distinct. We agree that the documentation still needs to be done.

  8. Re:Documentation aspect. on Google Publicly Releases Internal Developer Documentation Style Guide (betanews.com) · · Score: 1

    BetaNews is exercising a new paradigm: aspect-oriented reporting.

  9. Re:Documentation is part of design and implementat on Google Publicly Releases Internal Developer Documentation Style Guide (betanews.com) · · Score: 1

    This is one of the problems: sloppy commenters like to read ideas into statements that contradict those ideas.

    Creating documentation is sharply distinct from design and implementation. It requires a different skill set and attitude, although it must be done in harmony with the rest of the development effort. I did not suggest it was not important. I only pointed out that it is different, and explained why developers should spend most of their time on things besides documentation.

    Something that works poorly will not work any better just because it comes with great documentation, and people tend to think that "lots of documentation" is automatically "good documentation"; see also the well-deserved comments in this thread about explanation-free Doxygen output.

  10. Re: Good engineers write good documentation on Google Publicly Releases Internal Developer Documentation Style Guide (betanews.com) · · Score: 1

    When you're running an open source development effort, the developers you're trying to enlist are the target "end users" of your efforts.

  11. Re: Good engineers write good documentation on Google Publicly Releases Internal Developer Documentation Style Guide (betanews.com) · · Score: 1, Interesting

    If you're spending more time on documentation than on design or implementation, you're either doing safety-critical work, or you're doing it wrong. 95% of software should use design elements that are familiar to the users in a way that makes it easy to discover how to do what they want.

    There will always be uncommon tasks or unusual users such that some documentation is necessary (and that needs to be clear and effective), but end-user documentation should never be that big a chunk of the development effort. If it is, you're designing something that is too hard to use.

  12. Re: not looking to contribute to any "language wa on Is Python Really the Fastest-Growing Programming Language? (stackoverflow.blog) · · Score: 1

    Using positioning to indicate structure isn't necessarily bad. Using it to determine structure is.

  13. Re: not looking to contribute to any "language wa on Is Python Really the Fastest-Growing Programming Language? (stackoverflow.blog) · · Score: 2

    The solution to Python having problems is not to pancake more awful ideas (like ORMs) on top of its rotten foundation, making an ever-more-precarious edifice of fail stacked upon fail. What are you, a Python programmer?

  14. Re: not looking to contribute to any "language wa on Is Python Really the Fastest-Growing Programming Language? (stackoverflow.blog) · · Score: 1

    Data comes over the network, and sometimes it's not in the representation you want. SELECT smallint_column FROM mysql_table, and Python's bindings give you a string. The language accommodates the mistake up front, and raises an exception long after the initial mistake. Yes, this is a fault in the language.

  15. Re: What does his autism have to do with this? on Should British Hacker Lauri Love Be Tried In America? (theguardian.com) · · Score: 1

    His psychologist also claims that Love's eczema is a reason he shouldn't be extradited, so I think we know how seriously to take the general argument.

  16. Re: Pythons exclusive advantages on Is Python Really the Fastest-Growing Programming Language? (stackoverflow.blog) · · Score: 2

    If Python is for people who want to do things right the first time, why Python 2, much less Python 3?

  17. Re: Pits and valleys on Is Python Really the Fastest-Growing Programming Language? (stackoverflow.blog) · · Score: 1

    As the saying goes, "move fast and break things", but it should also tell you to expect your end users to find another tool when you break their stuff.

  18. Re: Survivor Bias? on Is Python Really the Fastest-Growing Programming Language? (stackoverflow.blog) · · Score: 1

    I disagree. LaTeX can make printouts of *anything* look good, even if your source material is something like lemonparty or tubgirl.

  19. Re: not looking to contribute to any "language war on Is Python Really the Fastest-Growing Programming Language? (stackoverflow.blog) · · Score: 2

    Python's type-related problems are not because of duck typing. They are because it uses a damaged mix of strong and weak dynamic typing. You get None when you read an undefined field of an object, no error if you store to a field nobody ever reads, no warning if you store a string like '123' to a variable that normally holds a number, and an exception if you try to divide that variable by 3.

    And don't get me started on the egregious breakages between Python 2 and 3, like changing the definition of the / operator solely to save a bit of typing (or alternatively, error checking) by one constituency while making the language less consistent.

  20. Re: not looking to contribute to any "language war on Is Python Really the Fastest-Growing Programming Language? (stackoverflow.blog) · · Score: 4, Insightful

    People complain about semantic whitespace in Python because that's a pants-on-head stupid detail to make people pay attention to. There are enough things that need attention that invisible characters shouldn't be one of them.

  21. That's a silly generalization, because most characters are printing. But the real problem isn't that changing whitespace will make Python code not run; the worst case is that it silently changes the behavior of the code. I've lost track of how many times Python code at my workplace has had long-standing bugs because of simple typos.

  22. Re: Windows is full of old bugs on Bug In Windows Kernel Could Prevent Security Software From Identifying Malware (bleepingcomputer.com) · · Score: 2, Insightful

    It takes Microsoft-class, Apple-style courage to rename "grep" to "select-string-path" and call the result a PowerShell.

  23. Re: Brexit is the right decision. on EU Presidency Calls For Massive Internet Filtering, Leaked Document Shows (edri.org) · · Score: 1

    Now they will need to add "speak their mind" to that list.

  24. Please, tell us more about how Google, Facebook, Amazon, and the other big corporations are part of the right-wing fascist conspiracy.