Slashdot Mirror


User: pfrench42

pfrench42's activity in the archive.

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

Comments · 3

  1. Re:If you think Hormel is the bad guy here, think on Hormel Back on The Spam Offensive · · Score: 0

    You're right, it does seem they're just defending the trademark as required by law to keep it. However, I'm really surprised they've not used humor to leverage the popularity of the term to sell their product. Jack-in-the-box would've jumped on this years ago. It seems Hormel are suffering from a lack of imagination.

  2. dissidents on Dissidents Seeking Anonymous Web Solutions? · · Score: 0
  3. Re:Consistency and good comments on Code Reading: The Open Source Perspective · · Score: 0, Redundant

    Agreed. Also, you can learn a lot from java. I don't write in java anymore, but learning the language greatly improved my C code (which is 95% of what I write) I avoid typedefs, nothing is more aggravating than figuring out if somebody else's typedef is a struct, a struct *, or a native type. The benefit of java is, there is only one way to write everything. Thus, you can read anyone's code because they haven't wandered into their own "dialect" of the language. C++ is horribly abused in this way, where people tend to write their own language, simple aritmetic operations can expand into gazillions of execution cycles (image = file * matrix)