Slashdot Mirror


User: buchner.johannes

buchner.johannes's activity in the archive.

Stories
0
Comments
1,836
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,836

  1. Re:so what is different on Eric Schmidt: Regulate Civilian Drones Now · · Score: 1

    Where is it illegal to put a camera on your property that can see someone else's property? Legit question.

    Everywhere in the EU? To be left alone is a human right. In the UK under Human Rights Act 1988 for instance:

    Under the Human Rights Act 1988 the use of CCTV in certain circumstances can be seen as an infringement on privacy. An individual who installs a CCTV camera that points on their neighbour’s property can be infringing on the neighbour’s right to privacy. CCTV cameras installed in the home should be used for home security only.

    http://www.civilrightsmovement.co.uk/faq-uk-citizens-cctv-privacy-rights.html
    In some countries, government and companies are not allowed to point cameras into public space. Your own yard is private, and no-ones else's business. You just can not set up a camera (or surveillance drone for that matter) and point it at your neighbour. Here are the individual countries in detail as a paper

  2. Re:so what is different on Eric Schmidt: Regulate Civilian Drones Now · · Score: 2

    My neighbors can currently buy a camera and watch me from their property.

    They can? Does the US have no privacy laws at all?

  3. Re:The long-period comet problem on Can NASA, Air Force, and Private Industry Really Mitigate an Asteroid Threat? · · Score: 4, Informative

    Stegosaurus died out 150 million years ago, the Cretaceous–Paleogene extinction event was 66 million years ago. Choose a dinosaur from the Cretaceous period, such as T-rex, Velociraptor, Triceratops or Pterosaur for your example, not one from the Late Jurassic.

  4. Re:That's how they will do it on Iran Plans To Launch an 'Islamic Google Earth' · · Score: 2, Informative

    They have long wanted to wipe Israel off the face of the map and this is how they will do it.

    Please stop circulating this myth and criticize Iran by its actual statements.

  5. Re:Given Time... on Small Company Wants to Make Encryption Key Management Into a Commodity (Video) · · Score: 3, Insightful

    Given time, the Sun will become a red giant and destroy Earth. Given time, Dark Energy will rip the universe apart.
    The question is will the keys break before or after that.

  6. Re:meticulously proofread on 25000 Books Proofread By Project Gutenberg Distributed Proofreaders · · Score: 1

    No, this is more similar to GalaxyZoo approach, showing a page at a time and letting the proof-reader compare OCR and image side-by-side. See first link.

    The more interesting question is, will this serve as a test data set to improve OCRs?

  7. Re:Only 250 miles to the ISS on European Researchers Propose Quantum Network Between Earth and ISS · · Score: 1

    Also, different curvature.

  8. Re:'fake'? on Fake Academic Journals Are a Very Real Problem · · Score: 3, Informative

    Some "fake" journals have peer review, but it is really a group of professors teaming up, who already hold the same opinion, or support each others non-mainstream position in the respective fields. This can be problematic because it does not provide independent, skeptical review.

    That said, main-stream journals are also not fair. Payment increased by a huge fraction (4x IIRC), countries are paying triple (publishing, reviewing and accessing), which effectively blocks out a large fraction of the population. see here for a introductory video. This leads to a big demand in cheaper publications also for legitimate research.

  9. Re:Hands Free == Dash Mount on Should California Have Banned Checking Smartphone Maps While Driving? · · Score: 1

    not if you have your hands on it

  10. cmdline on Video Editor Kdenlive 0.9.6 Released · · Score: 0, Offtopic

    Why isn't there a suite of command-line tools to handle video clips yet, such as cutting, merging, transitions, variable speeds, inserting still images for a certain length, etc.? Each would be relatively simple, testable tasks, and (optionally) GUIs could be built around those tools.
    And no, ffmpeg is not the answer; it breaks audio tracks when cutting/merging/speeding up.

  11. Someone explain this to me on AMD Releases UVD Engine Source Code · · Score: 3, Informative

    So the article links "The code just arrived" to a folder with .bin firmware files and this license:

    REDISTRIBUTION: Permission is hereby granted, free of any license fees,
    to any person obtaining a copy of this microcode (the "Software"), to
    install, reproduce, copy and distribute copies, in binary form only, of
    the Software and to permit persons to whom the Software is provided to
    do the same, provided that the following conditions are met:

    No reverse engineering, decompilation, or disassembly of this Software
    is permitted.

    Redistributions must reproduce the above copyright notice, this
    permission notice, and the following disclaimers and notices in the
    Software documentation and/or other materials provided with the
    Software.

    Did AMD actually release any source as the title suggests? Where is it? Or did they just make using/redistributing their firmware legal?

  12. Re:$75 Million huh? on NASA Gets $75 Million For Europa Mission · · Score: 1

    An orbiter might be able to use very large solar arrays, but an RTG is more likely. For a cryobot, a nuclear reactor will be needed.

    Wouldn't it be possible to generate power from the planet flying through the magnetic field of Jupiter?

  13. Re: WTF is a Cyber Terrorist? on Cyber-Terrorists Attacking U.S. Banks Are Well-Funded · · Score: 4, Insightful

    Terrorism is the act of inducing fear into a society, to the point that individuals don't feel safe anymore.

    You can, online, destroy the trust of people into banks, stalling any transactions because of fear/uncertainty. Without the loss of life.

  14. Re:Just what we need... on Wayland/Weston Gets Forked As Northfield/Norwood · · Score: 1

    It's interesting how many people are interested in the desktop.

    I just care about MY desktop instead. I prefer to edit some configs (which clearly is rocket science) and experiencing some inconsistent look and feel among applications, than using MS or Apple solutions and submit to whatever their management think is a good idea to stick on MY desktop to make their system more difficult to migrate from.

    Using open source desktops you are also at the mercy of upstream. Forking a desktop and maintaining updates is just too time-consuming for an individual. If upstream abandons your favorite desktop (e.g. old versions of GNOME1 and KDE3), you are pretty much screwed, because your system will become outdated and incompatible with everyone else who is moving on.

  15. Re:Javascript engine evolution on Emscripten and New Javascript Engine Bring Unreal Engine To Firefox · · Score: 5, Informative

    Ah, my mistake. "use asm" is a proposed Javascript feature:

    ... asm.js, a strict subset of JavaScript that can be used as a low-level, efficient target language for compilers. The asm.js language provides an abstraction similar to the C/C++ virtual machine: a large binary heap with efficient loads and stores, integer and floating-point arithmetic, first-order function definitions, and function pointers.

    http://asmjs.org/spec/latest/
    Also interesting:

    You could write your programs in Asm.js, but the idea is that you will use other languages that compile to Asm.js. This opens up the possibility of converting existing desktop apps to run in the browser. Emscripten, for example, is a compiler that converts the LLVM bitcode intermediate language to either JavaScript or the asm.js subset.

    http://www.i-programmer.info/news/167-javascript/5694-firefox-runs-javascript-games-at-native-speed.html

  16. Javascript engine evolution on Emscripten and New Javascript Engine Bring Unreal Engine To Firefox · · Score: 1

    What's the average lifetime of a Javascript engine in Firefox?
    Are they all forks of each others?
    I like it.

  17. Re:Replace X? on GTK+ 3.8 Released With Support For Wayland · · Score: 1

    Isn't Wayland aimed for the mobile market as a light-weight replacement for X? So on Desktops, where you want to support many graphics devices and features like X-Forwarding, you will want to stick with X (unless you already follow a cross-device distro using e.g. Unity).

  18. Re:No giant rats? on Fukushima Cooling Knocked Offline By... a Rat · · Score: 1
  19. Re:F U on Why Trolls Win With Toxic Comments · · Score: 3, Interesting

    "This is stupid, and they are all idiots" is simple to understand, you just flag all what you have heard as untrustworthy, and put the people who say that stuff in a mental box. Our brain likes simple structures, and avoids complex ideas, so this wins by default.
    Some issues, even when you understand the fundamental problems, are out of the control of the individual, and thus frustrating.

    Structured discussions like liquidfeedback or moderation by users may help, but it really depends on whether you can build a community and which culture that community would like. It's not merely a technical issue (another example where our engineering-brains like to look for a simple solution, avoiding complicated social studies).

  20. Re:Lost faith in Google on Google BigQuery Is Now Even Bigger · · Score: 5, Interesting

    Googles business is advertisement. All other products are just vehicles to get Google to place advertisement. All the development of cool products are because they have billions of dollars at hand, probably one of the largest budgets of any software company. Their strategy is to fund many small startup-like ideas generously, and later, equally generously, throw away the ones that don't work for them. Googles income, unlike Microsoft or Apples, does not depend on the software working for you, it only depends on placing advertisement for you to see.
    In the process of acquiring startups and developing, they accumulate patents, so even when Google drops an idea, you have to approach them for continuing that idea.
    Quite smart.
    Probably not the most efficient way for a company to producing software, but a way of not getting stuck with project management issues.

  21. Re:So.... on New Pope Selected · · Score: 5, Insightful

    When have our views on contraception, abortion and homosexuality modernized? In the last 30, 20 and 10 years. Same-sex marriage is still a huge debate. The pope is 76. The pope with a modern view is 20 today, and will become pope in 40-60 years.
    This is not a democracy where you can replace people every 4 years, this is a rigid hierarchical structure of with no balances and 1 billion people. And it is supposed to not change much.

  22. Re:Great on Version 2.0 Released For Open Skype Alternative Jitsi · · Score: 2

    Skype is not a standard. What are the competing standards here?

  23. Re:Nope. on The Pirate Bay Claims It Is Now Hosting From North Korea · · Score: 4, Insightful

    Without doubt, North Korea will take some remuneration from the Pirate Bay, which makes the Pirate Bay give money and credibility to a country with a population living in fear and hunger, and strengthening a regime that operates concentration camps.

    This shows that they either have not thought this through, or they have no stance on human rights (i.e. they show they just want to download illegal stuff, not increase freedom of individuals). I hope this is a joke or will be retracted.

  24. Re:Almost? on Huge Meteor Blazes Across Sky Over Russia; Hundreds Injured · · Score: 1

    Dmitri Rogosin said that neither US nor Russia have capabilities to shoot something like this down. Source He is proposing a global collaboration though for detection and defense, and also emphasized in his last interview that cold-war-like constellations must be avoided. Source

  25. In the cloud on Which Cloud System Is the Most Open? · · Score: 4, Insightful

    you pay for the service. So it doesn't matter if someone 'steals' your code, as long as you can provide a better service. And by better I mostly mean reliable.