Earlier quoted context omitted.
The guys at Sony might disagree with you. How to secure a network or a mainframe was known in the 1970s, but who needs to know all that legacy systems crap, right? OO look new JS framework!!
I think the Sony issues illustrate platz's point "There is very little all programmers should be required to have in common. The field is just that big now." In a company like Sony you need some guys that specialise in security and prevention of hacking, and some that specialise in other stuff.
Technical Papers Every Programmer Should Read at Least Twice (2011)
61–70 of 72 posts
Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#62Can some please do a similar list for machine learning and also for maths relevant to ML?
Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#63Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#64It's weird that "What every programmer should know about memory" Isn't on here. Even for languages that manage memory for you understanding the hard limitations and basic operations used to access and manipulate memory is certainly useful.
This is an excellent read, but I disagree with the title. It's a must-read for people interested in CPU architecture and for programmers who, after profiling, still consider doing micro-optimizations. E.g. if you seriously think about reordering your struct members for faster access. If you're building a web service, skip it.
I know that this is the kind of effect the paper had on me (I spent a lot of time carefully reading it shortly after it was published), and now I almost never use what knowledge I gained from it to make performance optimizations, but it does frequently discourage me from attempting optimizations that I now know would probably not have the desired effect.
Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#65Earlier quoted context omitted.
I think the Sony issues illustrate platz's point "There is very little all programmers should be required to have in common. The field is just that big now." In a company like Sony you need some guys that specialise in security and prevention of hacking, and some that specialise in other stuff.
No, you can't just have "some guys that specialize in security". That's exactly what 99%+ of software is full of obvious security holes. 99%+ of developers don't know anything about or care anything about security. Security is a process not a product remember? Everyone has to be actively part of it all the time. You don't churn out buggy exploitable software and then expect some "security experts" to somehow magicall…
a) Hope they suddenly improve, which is probably not going to happen
b) Accept they have limits and encourage them to use systems and frameworks that are hard to screw up on, written people who are good at security?
I note in the Sony hack the only computers that survived basically intact were Macs, not I guess because their owners understood security but because they were well designed and idiot friendly.
Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#66Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#67Earlier quoted context omitted.
Would you still consider yourself an "amateur-hour web designer"? If not, why did you improve? Should we not aspire to be better?
I've learnt from various sources, but none of them were papers. There is no one-size-fits-all teaching or learning method. And rudeness and insults are going to make people less likely to learn, not more.
Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#68Earlier quoted context omitted.
No, you can't just have "some guys that specialize in security". That's exactly what 99%+ of software is full of obvious security holes. 99%+ of developers don't know anything about or care anything about security. Security is a process not a product remember? Everyone has to be actively part of it all the time. You don't churn out buggy exploitable software and then expect some "security experts" to somehow magicall…
I see your point but if 99%+ of developers are rubbish at security what are you going to do about it? a) Hope they suddenly improve, which is probably not going to happen b) Accept they have limits and encourage them to use systems and frameworks that are hard to screw up on, written people who are good at security? I note in the Sony hack the only computers that survived basically intact were Macs, not I guess becau…
Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#69Earlier quoted context omitted.
I've learnt from various sources, but none of them were papers. There is no one-size-fits-all teaching or learning method. And rudeness and insults are going to make people less likely to learn, not more.
Is that not because, at the time, you were much more of a beginner than you are now? I've been studying Computer Science for the last four years (BSc and now MSc) but was coding for maybe three years before that. Back then I was learning JavaScript and PHP from w3schools, PHP.net and some blogs. I built a framework from reading the source code for CodeIgniter. I learn't a lot about object orientated design, or the la…
Re: Technical Papers Every Programmer Should Read at Least Twice (2011)
#70Earlier quoted context omitted.
I see your point but if 99%+ of developers are rubbish at security what are you going to do about it? a) Hope they suddenly improve, which is probably not going to happen b) Accept they have limits and encourage them to use systems and frameworks that are hard to screw up on, written people who are good at security? I note in the Sony hack the only computers that survived basically intact were Macs, not I guess becau…
They don't have to suddenly improve, they can learn and improve at a normal pace. Yes, of course they should not use PHP. But simply having them use languages, libraries and frameworks that are written by people who get security won't stop them from writing insecure applications to put into production. They still need to learn to write secure code too.
Wow, this is utterly worthless, if not harmful, advice. There is no correlation between choosing PHP for an application with the security of said application. PHP apps are so widely deployed that securing them is a pretty well-known process at this point.