Most of us here work for a living, some may even have more than one job, but no matter what the job is, there will be some things that get under your skin, especially repeat offenders.
Let’s hear some things about different professions and how people, customers or co workers get to you.
I make adhesive glue and tape. It’s boring because I walk back and forth within about a 6 foot radius every 2 minutes for 4-8 hours a day, putting stuff into a machine. (I also go to school)
I hate when i’m plowing and the guys in the F-550’s (meant to help clean up around curbs) get in my way :angry2 and during the summer when i get stuck in a shitty truck for a day.
i hate scumbag contractors, they come in to bargain outlet (where i work) piss drunk, there yelling and screaming for no reason, the dont help you carry 150-200lb doors, and when there cashing out they want a discount on top of that. This job is my motivation to finish up my bachelors degree
Makes ya wonder why the idiot couldn’t spend 5-10 minutes commenting things cleanly when he knows it’s going to take much longer for the next guy who has to read it.
I comment every single property, method, variable including class, local, scoped, etc…
all these guys from india that think they are the smartest fucks in the world and ALWAYS do things the hardest way possible.
I don’t comment anything. If you know the language well than you shouldn’t need a description of every function. My experience is in SQL, so maybe it’s diff for you guys.
It’s more than just understanding the syntax but perhaps why you did something a certain way. In an OOP world, the call stack moves from class to class from DLL to DLL and it becomes difficult to trace. It’s nice if a person can just read top down and understand what the page is actually doing without actually reading the code itself. Again, it’s all about money. The 10 minutes it takes for me to do that is better spent if it helps another person spend a fraction of a second less understanding it.
Also, don’t get me started on Indians. I cannot stand them.
For reference;
/// Handles the Click event of the Upgrade linkbutton control.
/// </summary>
/// <param name=“oSender”>The source of the event.</param>
/// <param name=“eaArgs”>The <see cref=“System.EventArgs”/> instance containing the event data.</param>
protected void lnkbtnUpgrade_Click(object oSender, EventArgs eaArgs)
{
// Local Variables
Starburst.Server.Site spsServer = null; // Current Site
List<string> lstUpgradeSiteList = null; // Upgraded site list
StringBuilder sbOutput = new StringBuilder(); // Output