Or is just complex and unfamiliar. The problem with these frameworks is they work great when they work, but you only ever see them working because they've been published with the most trivial example. When you actually start trying to do things with them, you have to know implementation-level details of the framework in order to make it work for you. By the time you've invested all that time, you may as well have written something less generic that actually does what you want.
Wow, I guessed almost immediately that you were talking about Hibernate. No documentation for complex behaviour or advanced features, or where there is documentation, it's out-dated by several versions, sparse, and occasionally plain wrong. The options for sorting out problems are:
Read the Hibernate code to figure out what the hell it's trying to do; or
Search around, asking questions, find out nobody has come across your problem, or it was filed as a bug in the library in 2007 and never fixed, or the solutions listed aren't suitable or don't work, and end up reading the Hibernate code anyway.
If, that is, by "fermented" you mean literally poured into barrels and left to rot, outside in the sun, for 2 years.
I'm not quite sure how you've equated fermentation with decomposition. Fermentation prevents decomposition, as the salt used and acids and alcohol produced by the fermentation inhibit the growth of those bacteria which decompose the food.
Are beer, bread, yoghurt, gherkins, and olives also "left to rot"?
Fish entrails (not whole fish... the meat is sold for food)
Respect for the animal and frugality. Fermenting to make a sauce is just one good way to use the parts of an animal which are not particularly appetising on their own.
Not trying to contradict what you're saying (because I fully agree), just thought I'd be anal and point out that your theorem only holds true for x > 4.;)
Some of us find it a bit improper/offensive when these people claim copyright over something that doesn't actually contain any of their work.
Claim copyright? What sort of sensationalist dipshit are you? You make RMS look like a mellow, tolerant, effacing individual.
Point out to me, sunshine: Where exactly does the GPL claim copyright over code that wasn't written by the original author? http://www.gnu.org/licenses/gpl.txt
The GPL states that if you want to redistribute the code, you have to follow some guidelines. As the GP says, if you don't want to follow the guidelines of redistribution, go elsewhere. The idea is to promote an ecosystem of sharing. People who want to take and use the code and not share their own back for everybody else to benefit, are not welcome.
XSS and SQL injection attacks are strongly correlated with bad coding practice.
Don't get me wrong, the problem is probably more prevalent with PHP as PHP is such an easy language and thus attracts a larger number of amateur/incompetent programmers. That doesn't meant you can't write secure code in PHP. I'm currently re-writing a logistics system in PHP, and sure enough, XSS/SQL attacks would have been child's play in the original code (Even from the login page). I can assure you every single one of my database inputs is checked for injection attacks (Even those that came directly from PHP built-ins like time()), and every piece of data that goes onto a web page is checked for scripts as well.
Writing secure code can be a difficult process, but it's not impossible even with PHP.
How about discrete maths/combinatorics? The intro material is not overly difficult, but I find it a very interesting branch (As a CompSci student). Set theory, graph theory, logic theory, advanced probability. Enumeration, generating functions...
Number theory? It's a bit more advanced, but some kids should grasp it.
Yeah, Windows and OSX are broken because neither ship by default a tool that would be useless to >99% of its userbase but whose presence on every PC would be utterly adored by malware authors.
I'm not 100% certain, but I think you'll find that gcc has shipped with all versions of Mac OS X. In fact, Windows is the only modern system I know of that DOESN'T ship with a C compiler.
Secondly, how does having a C compiler on a system help malware writers at all? I know it's easy to think, "BECAUSE IT CAN MAKES THE CODES GO" and stop there, but do try to think about the logic of what you're saying. Malware compile code? What's the point? Why go to the trouble of transferring C code over the net to the infected computer, bearing in mind that plain text C code is significantly larger than the corresponding machine code, along with the possibility of the user noticing system slowdown as a result of the lovely CPU spikes that go with compiling a program?
Offtopic: For people cyberbullying bloggers Flamebait: For people cyberbullying Slashdotters Troll: For people cyberbullying Apple Redundant: For people cyberbullying CowboyNeal Insightful: For people cyberbullying Microsoft Interesting: For people cyberbullying OOXML Informative: For people cyberbullying Windows Funny: For people cyberbullying US citizens Overrated: For people not putting in a decent Slashdot effort to cyberbully anybody Underrated: For people cyberbullying other moderators
Funny, I thought Linux was costing the software industry something like $1.6B. But of course, they don't mind RSI so much, they can keep selling you ergonomic keyboards...so they don't mind people wasting money, as long as they get their cut?
Or is just complex and unfamiliar. The problem with these frameworks is they work great when they work, but you only ever see them working because they've been published with the most trivial example. When you actually start trying to do things with them, you have to know implementation-level details of the framework in order to make it work for you. By the time you've invested all that time, you may as well have written something less generic that actually does what you want.
Wow, I guessed almost immediately that you were talking about Hibernate. No documentation for complex behaviour or advanced features, or where there is documentation, it's out-dated by several versions, sparse, and occasionally plain wrong. The options for sorting out problems are:
If, that is, by "fermented" you mean literally poured into barrels and left to rot, outside in the sun, for 2 years.
I'm not quite sure how you've equated fermentation with decomposition. Fermentation prevents decomposition, as the salt used and acids and alcohol produced by the fermentation inhibit the growth of those bacteria which decompose the food.
Are beer, bread, yoghurt, gherkins, and olives also "left to rot"?
Fish entrails (not whole fish... the meat is sold for food)
Respect for the animal and frugality. Fermenting to make a sauce is just one good way to use the parts of an animal which are not particularly appetising on their own.
Flamebait for a bit of sarcastic cynicism?
I don't think you need to worry about burning your penis, unless you keep laying it across the palm rest.
:)
Not trying to contradict what you're saying (because I fully agree), just thought I'd be anal and point out that your theorem only holds true for x > 4. ;)
Some of us find it a bit improper/offensive when these people claim copyright over something that doesn't actually contain any of their work.
Claim copyright? What sort of sensationalist dipshit are you? You make RMS look like a mellow, tolerant, effacing individual.
Point out to me, sunshine: Where exactly does the GPL claim copyright over code that wasn't written by the original author? http://www.gnu.org/licenses/gpl.txt
The GPL states that if you want to redistribute the code, you have to follow some guidelines. As the GP says, if you don't want to follow the guidelines of redistribution, go elsewhere. The idea is to promote an ecosystem of sharing. People who want to take and use the code and not share their own back for everybody else to benefit, are not welcome.
I propose giving meta-moderation a "+1 Funny" option.
Can we PLEASE get the moderation confirm button back!?!?!?!
the moderating interface needs to go back to having a confirm moderation button
Please god, yes. Bring it back.
I agree completely, it's the same with me: I learned more about English studying German.
XSS and SQL injection attacks are strongly correlated with bad coding practice.
Don't get me wrong, the problem is probably more prevalent with PHP as PHP is such an easy language and thus attracts a larger number of amateur/incompetent programmers. That doesn't meant you can't write secure code in PHP.
I'm currently re-writing a logistics system in PHP, and sure enough, XSS/SQL attacks would have been child's play in the original code (Even from the login page).
I can assure you every single one of my database inputs is checked for injection attacks (Even those that came directly from PHP built-ins like time()), and every piece of data that goes onto a web page is checked for scripts as well.
Writing secure code can be a difficult process, but it's not impossible even with PHP.
How about discrete maths/combinatorics? The intro material is not overly difficult, but I find it a very interesting branch (As a CompSci student). Set theory, graph theory, logic theory, advanced probability. Enumeration, generating functions...
Number theory? It's a bit more advanced, but some kids should grasp it.
Yeah, Windows and OSX are broken because neither ship by default a tool that would be useless to >99% of its userbase but whose presence on every PC would be utterly adored by malware authors.
I'm not 100% certain, but I think you'll find that gcc has shipped with all versions of Mac OS X. In fact, Windows is the only modern system I know of that DOESN'T ship with a C compiler.
Secondly, how does having a C compiler on a system help malware writers at all? I know it's easy to think, "BECAUSE IT CAN MAKES THE CODES GO" and stop there, but do try to think about the logic of what you're saying. Malware compile code? What's the point? Why go to the trouble of transferring C code over the net to the infected computer, bearing in mind that plain text C code is significantly larger than the corresponding machine code, along with the possibility of the user noticing system slowdown as a result of the lovely CPU spikes that go with compiling a program?
Maddox already created the ultimate Segway killer: http://maddox.xmission.com/c.cgi?u=segway_more_complicated_than_it_needs_to_be
So ultimately, you could call it the "Segway killer killer", which translates to "shitty" because nothing is better than anything maddox creates.
+1 Funny. :P
The grue eats your nuclear warhead.
Oh come on people, the guy lives in PERTH. Surely nobody is bidding on that.
It looks like you're trying to...
http://www.imagegenerator.net/93941/
Offtopic: For people cyberbullying bloggers
Flamebait: For people cyberbullying Slashdotters
Troll: For people cyberbullying Apple
Redundant: For people cyberbullying CowboyNeal
Insightful: For people cyberbullying Microsoft
Interesting: For people cyberbullying OOXML
Informative: For people cyberbullying Windows
Funny: For people cyberbullying US citizens
Overrated: For people not putting in a decent Slashdot effort to cyberbully anybody
Underrated: For people cyberbullying other moderators
Funny, I thought Linux was costing the software industry something like $1.6B. But of course, they don't mind RSI so much, they can keep selling you ergonomic keyboards...so they don't mind people wasting money, as long as they get their cut?
Perhaps, but not if you observe it happening.
The RIAA are getting stupider by the minute. It's high time they learned that people aren't going to take this shit sitting down for much longer.
The more the courts resist their moves, the more people will stand up for their rights.
Behold the pinnacle of human achievement:
http://www.thebestpageintheuniverse.net/c.cgi?u=iphone