Slashdot Mirror


User: Casandro

Casandro's activity in the archive.

Stories
0
Comments
680
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 680

  1. Well yes, because that's a new "generation" of on Mobile Devs Making the Same Security Mistakes Web Devs Made in the Early 2000s (bleepingcomputer.com) · · Score: 1

    people. Mobile apps are now the area inexperienced people will start writing their first public code. Before that it was web design and before that it was writing Windows desktop applications.

    Some of those people will then grow up and most likely leave that field, just as the mobile app environments are as shitty as the web design environments or the Windows desktop application ones.

  2. Actually, they do this already for quite some time on De Beers To Sell Diamonds Made In a Lab (bloomberg.com) · · Score: 1

    They have a subsidiary named "Element Six" in which they produce and sell "artificial" diamonds for scientific purposes.

  3. Sophistication doesn't necessarily mean complexity on Ask Slashdot: What's the Most Sophisticated Piece of Software Ever Written? (quora.com) · · Score: 1

    The most complex single pieces of code are of course web browsers. Those have grown so large that only a few corporations can just barely manage their development. However that's not really sophistication, given saner standards to implement, you could do exactly the same with a tiny fraction of code.

    It's easy to just pile code on top of code, what's hard is to find sensible abstractions you can use to make the code simpler and easier to maintain.

  4. The problem here is... on Ask Slashdot: Which Is the Safest Router? · · Score: 1

    ... that those vulnerable parts of the router firmware typically aren't made by the router manufacturer. The manufacturer usually just reskins the web interface. That's why it's now common to have cross-model attacks on large percentages of the routers.

    So you'd probably end up running virtually the same firmware as 90% of the rest. Price is no indication, BTW, as I've seen even expensive routers doing just that.

  5. For consumes boxes: Fritz!Box on Ask Slashdot: Which Is the Safest Router? · · Score: 1

    There's a German brand of routers/ATA/IAD/DECT-base/WLAN combined boxes called Fritz!Box. They don't use the web frontend provided by the chipset manufacturer so they use their own, which means that the bugs in 99% of other routers don't work there. Firmware updates regarding features are available for a few years, bugfixes even longer. Costs start at 30 Euros for a refurbished middle model and go up to >200 Euros for the top of the line models.

    Other than that, use some Linux computer to build your own router.

  6. Thunderbird, maybe some console one on Slashdot Asks: Which Is Your Favorite Email Client? · · Score: 1

    The main bug in Thunderbird is that it supports HTML-Mail.

    Looking though the linked article, I can say for sure that none of the GUIs in the screenshots would do it for me, as they apparently all support HTML.

  7. It's a general problem on Malware Found In the Ubuntu Snap Store (linuxuprising.com) · · Score: 4, Insightful

    Essentially you need to keep a separation between code and data. Data is something you can get from any source as dubious data will never be able to breach the security.

    Code on the other hand are commands for your computer. Every new code you get onto your computer is a risk you take as it can be malevolent. Therefore you shouldn't take executing foreign code lightly. Ideally you only have your fixed set of programs which you can combine to use with data you get from everywhere.

    Things like AppStores pervert that safety precaution. They act as if it was possible to have a secure system, yet download software written by dubious developers.
    Sadly, we as a society seem to fall into the same trap over and over again, from Javascript to Active X. From Visual Basic for Applications to Appstores.

  8. Those systems have a 99% accuracy on Ticketmaster Hopes To Speed Up Event Access By Scanning Your Face (engadget.com) · · Score: 1

    Which is even lower depending on the subjects, chances are high that if you just walk towards the gate, it'll open for you. After all that system will be optimized towards letting people through even if the match is not very accurate.

  9. That's actually not the problem... on Cambridge Analytica Whistleblower Says Data From 87 Million Users Could Be Stored In Russia (cnn.com) · · Score: 3, Interesting

    ... at the current diplomatic climate, none of that data could hurt me. The far bigger problem is that that data is likely also stored at Facebook servers where administrations that could actually hurt me, can access it.

  10. It can't be under investing on Ask Slashdot: Are Companies Under-Investing in IT? · · Score: 1

    I mean most companies just waste money in IT. Usually companies just follow dogmas which have little to do with reality. That's why they spend lots of money on worthless security products... or software products claiming to improve productivity, but wasting more for most people.

  11. Is this a joke? on Programmer Unveils OpenGL Bindings for Bash (opensource.com) · · Score: 1

    I mean if I was trying to make a joke about a C++ developer making shell scripts, I'd have used something like that.

    I mean seriously, you don't write built-in commands for that. You create a specialized language and write an interpreter for it. Once you have that, you can easily access it from the shell.

  12. If those are the only limitations, 99,999% of all legacy Windows software will work on ARM.

  13. Not really on Learning To Program Is Getting Harder (slashdot.org) · · Score: 1

    This is off-topic, because you don't learn much from using a library or framework, except for perhaps that most of them are utterly useless.
    Essentially if you follow that argument you'll get something like Web developers who often have no idea what they are doing, but do a lot of it. I've once asked the developer of a web app with a particularly anoying bug (you cannot copy text field, every time you select something, the selection will be empty again) why that bug even exists, after all web browsers allow that by default. He openly answered that he had no idea, he was just using a framework.

    Yes, you can now easily click something together simpler than in the 1980s, but what have you learned then?

  14. So Apple employees are to stupid for their house? on Apple's New Spaceship Campus Has One Flaw -- and It Hurts (bloomberg.com) · · Score: 1

    I mean seriously why do they even have their smartphones at work? Doesn't that go against virtually all sane rules on corporate security?

  15. Yes, but... on Trump Team Considers Nationalizing America's 5G Network (axios.com) · · Score: 2

    there are already agreements on that for decades, that wouldn't really make a difference.

  16. Well Infrastructure should never be private on Trump Team Considers Nationalizing America's 5G Network (axios.com) · · Score: 4, Informative

    We have learned that in Germany, where we went from one of the most modern data networks before we sold our phone company, down to something that's worse than in most eastern European countries.

    However in the interest of balance. Here's a counter point claiming that private enterprise means competition and therefore democracy. And obviously the oil industry in the US is a prime example for this.

    https://www.youtube.com/watch?...

  17. Well you can go a long way with little people... on Are the BSDs Dying? Some Security Researchers Think So (csoonline.com) · · Score: 1

    ... when you don't have the FreeDesktop or SystemD crowd, solving trivial projects in the most complex way to deal with weird use cases nobody has.

    The Unix philosophy was meant to achieve a lot with little effort, and that's gradually getting lost on Linux.

  18. Good "Open Source" funding leads to companies like Mozilla who, instead of trying to make the web better, mostly work on keeping the browser engine oligopoly alive.

    A far better solution would be to have actual FOSS with the additional rule of being as simple as humanly possible. Simple code is shorter and therefore likely contains less errors. Less errors lead to less security critical errors. Also it's easier to maintain a 1k line program than a 20 Megaline program.

    Considering that most things companies do are rather trivial, the far better way is to punish them for using overly complex solutions to their trivial problems.

  19. That must be a very shitty job on UK Companies Facing Cyber Security Staff Shortage (theguardian.com) · · Score: 1

    I mean there are some simple and easy ways to increase security at any company. It boils down to not doing stupid things.

    However many people have been trained to do stupid things like using Office Software, which is one of the main dangers at any company.

  20. It's because it went mass-market to fast on People Still Aren't Buying Smartwatches -- and It's Only Going To Get Worse (businessinsider.com) · · Score: 1

    The Smartwatch market essentially is as dead as the smartphone market. Everyone is building more or less exactly the same device. The mass market hates innovation because it means risks.

    Meanwhile there's some actual innovation in the field of home made smart watches. For example Travid Goodspeed's "GoodWatch"
    https://github.com/travisgoods...
    It runs for years with a single battery and has way better functionality than any commercial smartwatch. You even have a keyboard.

  21. It was only intoduced again after the oil-crisis on Lithuania Calls On EU To Stop Adjusting Clocks For Daylight Savings (theguardian.com) · · Score: 1

    Because some people claim that there is some vague energy saving aspect to it.... which has never actually materialized.

    France was the first EU country to introduce it in 1976 and Swiss was the last one in 1981. There were earlier attempts at it, but those were luckily only short lived.

  22. Well... on Walmart Is Planning a Store Without Cashiers (recode.net) · · Score: 3, Interesting

    People have much less ethical concerns to fool machines then they have with people. So people are going to try to trick the system much more often than they would with people there.

  23. The obvious reason why rich people are doing it, is to blame poor people for being stupid. It's the only way they can bear with the fact that most, if not all, rich people are rich by pure chance or inheritance.

  24. and typically such advice ends up saying that you only need to save $50 a day, then invest it at an interest rate of only 10% and you'll be a millionaire within a couple of decades, ignoring that interest rates are low and $50 a day is a lot of money for most people.

  25. Funding shouldn't be a problem... on Is Open Source Innovation Now All About Vendor On-Ramps? (infoworld.com) · · Score: 1

    ... as good software is simple enough to be written by a single person in their spare time. If your software projects require more and more people to join, just to keep up with fixing the bugs, you're doing something wrong.

    This is the reasons why most Free Software operating systems are unixoid. The guidelines of the UNIX Philosophy allow you to get most "bang for the buck", so you can reach the most with the least effort.

    So you have people building things like Pulseaudio or Wayland, which attempt to solve simple problems in a hard way, instead of, for example, extending the terminal standard to be able to make GUIs and audio. That way you could have remote audio and GUI without modifying ssh.