- Feature Articles
- CodeSOD
- Error'd
- Forums
-
Other Articles
- Random Article
- Other Series
- Alex's Soapbox
- Announcements
- Best of…
- Best of Email
- Best of the Sidebar
- Bring Your Own Code
- Coded Smorgasbord
- Mandatory Fun Day
- Off Topic
- Representative Line
- News Roundup
- Editor's Soapbox
- Software on the Rocks
- Souvenir Potpourri
- Sponsor Post
- Tales from the Interview
- The Daily WTF: Live
- Virtudyne
Admin
Nah, yours is. <g> You missed that "One magazine" is singular, while "Many readers" is plural. The singular usage is what DHagar was referring to when referencing "RDN is a free magazine for influential readers that provides[/] insight" - he was pointing out that the use of [b]that is correct instead of the and mentioned by DoctorFriday.
Admin
More! A nuclear reactor can only open a comment - a find replace reactor can open AND close it!
Admin
"From all this I've come to the conclusion that SVN does not add value as a day-to-day tool for our web design work. It is not designed for, nor intended to be used in the way we are trying to use it. It may have some value as a system for maintaining our backup copies--and for us it maybe should just be thought of as a system for making and storing backup copies." - From an actual email from a "webmaster".. who ironically chronically complains about files 'disappearing'... or 're-appearing' after being deleted... hm...
Admin
what college (or high school) was the "webmaster" attending at the time ?
Admin
college? high school? west virginia pinball repair academy?
Admin
West Virginia Pinball Repair Academy, WVPRA?
Hey I went there!
-Anon
Admin
Admin
I have done some work for a company once (just part-time) and the source code control was similar to what is described here. It worked OK (I was the only person working on it). Real source control was not required in this case. And we didn't need a database because there was only a few records and it was still very fast. I did need to write a program though to convert timesheets from Excel to CSV using a specific format, because the way they already were wasn't that good, there was many mistakes (including project codes were all different, etc). We just converted to web-based time-sheet system instead, it was a internal program used only by the company. It does have a lot of reports I wrote though, including program in PHP to generate bar-graph/pie-graph, etc. Everything I did didn't take very long, everyone else takes too much time to do it (they expect it to take many days, and also expected that we needed a team of people to work on it, but it only took a few hours, and only one person). Of course the mentor in this article is stupid, but he's right about one thing, I didn't need any object oriented programming (in this case, but in other cases object oriented might be useful, and in the case in the article, relational databases would have also been useful, but in my case I needed neither).
If you need to hire a programmer, see if they can actually write a program, don't look at education and stuff like that. People that need to go to school to learn programming aren't real programmers. As long as the program works, and you don't do stupid stuff like FOR/CASE paradigm and stuff like that, you should be fine at it. Different programmers have their own style, which can change sometimes, but don't be stupid. I have written bad code as well before (such as not indenting), but that was more than 10 years ago, but now I know better, MUCH BETTER!!
And, if you really want your code to read like a sentence, can't you use COBOL? (I don't use COBOL but isn't that was COBOL is for, if you did use COBOL?)
Admin
Not to defend the idea. But surely the author realizes that those "hundreds of lines of code" required to generate all those pages are EXACTLY THE SAME PROBLEM that would have been solved by the dynamic page generator. The distinction is when the code is run, not what it does.
Admin
In short the real WTF is MKS
Admin
Still, if the wording bothers you, how about this? "RDN is a free magazine which provides insight to influential readers regarding blah blah blah"
Admin
Admin
Admin
Actually, the sentence, as fixed, is much clearer due to the reasons given by the fixer. The second "and" is clearly part of the new clause delineated by the comma. FWIW, "that" commonly is used to refer to a class of people (ie. "readers", in this instance). "Who" or "that" seem to be equally correct - at least, I haven't found a consistent rule for what word should be used in that instance.
Admin
Ya think? Just maybe?
Admin
Admin
and maj najm would be two english words spelled with another pronounciation. Could perhaps be indian, but it aint. ;) so try again, or fail again, whichever you feel is best.
Admin
Basically, file locking just ensures that these sorts of safe, easy merges (of people working on seperate sections) are the only type of "merging" you'll do, since people working on different functionality would be checking out different files. A conflict would only come up if there was a failure to, as you say, "assign the tasks appropriately", and in that case I wouldn't trust software trying to do some sort of line-by-line merge of two people's changes to the same function, when both made those changes without seeing the effect the other person's changes would have on theirs.
Admin
Don't you just love it when a clueless idiot looks down on you and tells you you still have a lot to learn?
I get that quite a lot in my company. The other day my mentor was showing me how to find duplicate records in a DB2 table with a printout, a ruler and a pen. Looking down on me for not knowing this handy technique.
Really, what do they teach us rookies at those computing courses? Sheesh...
Admin
A more readable equivalent would be "blah blah blah magazine; it provides blah blah blah, and blah blah blah." A more honest equivalent would be "Beware! Snake Oil! Enjoy!"
None of this has anything to do with coding eptitude, of course. And noone spells "no-one" as noone.
Addendum (2008-03-25 20:22): Just noticed FredSaw's comment above, which is equally valid. As a fully paid up, BrainBent-certified, Grammar Nazi, I have to confess that the difference between the abstract "that" and the personal "who" doesn't bother me that/whose much, because I suspect that it will disappear within the next twenty years or so.
Odd that Fred should use "blah blah blah" too, though. Perhaps this reflects on the preposterous self-importance of the no doubt eminent publication in question?
Admin
Yeah, or a way to stay in school forever... far far away from the MBAs.
Admin
Although, you can tell that provides goes with magazine because it shows singular agreement. If it was provide with plural agreement, then it would go with readers.
Admin
In my CS1001 course (Intro to CS, programming in Java), we were required to use SVN from the start. Some of the practicals were given an automatically-generated preliminary mark, by compiling the latest version of the project and checking against test cases (it also checked for similarities between submitted source files, and sometimes looked for required language features). By the end of the first term, most students came to like it, and many used it for their other work as well.