Slashdot Mirror


Contractors on Salary?

An anonymous reader asks: "I recently got a new job (yes I am one of the lucky few) as a contract programmer. In part of the contract negotiations, the company would not allow me to work on an hourly rate, but instead placed me on salary. I have run into problems in the past where I have had to work an absurd number of hours as a programmer, and am curious where to draw the line. Obviously it is not ok to just leave at the end of an 8 hour shift if there is still lots to be done, but what if the poor project management is not your fault, and heavy deadlines are coming up? Can the company legally make you work 10-16 hour days? I would consider myself new to the industry but not unexperienced. At the company I used to work at, I worked crazy hours and didn't know it was OK to say that the hours are too much. What do you all think?"

100 comments

  1. You probably shouldn't waste time by Anonymous Coward · · Score: 1, Funny

    reading and submitting articles to /. -- maybe that's why they don't want to pay you hourly. BTW, FP!

  2. Wait, then ask. by cybermace5 · · Score: 2, Informative

    You haven't even started working yet. Why are you concerned about working too many hours? You have no idea if your boss is a poor manager or not, and you have not yet been forced to work more than eight hours at this company.

    No, no one will force you to work twelve hours a day. They can easily find someone else who will *willingly* do so, to feed their family and pay their debts.

    --
    ...
    1. Re:Wait, then ask. by peteshaw · · Score: 5, Insightful

      >>No, no one will force you to work twelve hours a >>day. They can easily find someone else who will >>*willingly* do so, to feed their family and pay >>their debts.

      I'm sorry, but that's a load. You should know going into a job what the work environment is like. As an exempt employee (one who's pay is not tied to hours worked, only to days worked) you have a right to know what the company expects from you.

      Look around and make a judgement call. Say, "I will willingly work a 45 hour week, plus more on occasion" or some other reasonable standard. Companies, or at least good managers, realize that most people have lives outside of work. If you are good at your job then chances are they will want to keep you happy rather than work you until burn out and then watch you leave. (Yes, even in this shitty job market the upper quartile in any field rarely wants for work for any length of time.)

      And those co-workers who are *willingly* putting 12 hour days without request or compensation are workaholics or naive or both. If you love your job enough to gladly work boku hours, or maybe if you're gunning for a promotion then maybe its ok. Otherwise don't waste your time (IMHO, of course).

      --
      www.avacal.com -- the home page of pete shaw
    2. Re:Wait, then ask. by mrscott · · Score: 5, Insightful

      I'm not a contractor, but am an IT Director for a small association.

      Recently, our director mentioned that she expected at least 50-60 hours per week, every week from all professional, salaried staff (we have about 20-25 people in that category. Our "official" workday is 7.5 hours. In essence, we're being told that we have to work a minimum of 10-12 hour days every week of the year and more when we have critical needs.

      As you might imagine, people are somewhat displeased by this and, unfortunately, many of the employable ones are beginning to look elsewhere. Life's too short to be dragged into a situation like this bad economy or not.

    3. Re:Wait, then ask. by ScuzzMonkey · · Score: 4, Insightful

      Absolutely. Anytime I hear something like that (and I've heard it a few times--fortunately, never anywhere that I have personally been working) I think "clueless boss" (is that an oxymoron? ;) ). Hours worked means nothing--it's what you get accomplished that is important. This is especially true in IT or programming, where a single inspirational flash in the shower one morning can more than equal a week's worth of toiling fruitlessly away behind the desk. Knowledge work is not like industrial piece-work--managers who can't get that shouldn't be managing knowledge workers.

      --
      No relation to Happy Monkey
    4. Re:Wait, then ask. by Maller · · Score: 1
      I think "clueless boss" (is that an oxymoron? ;)

      It's not an oxymoron; it's redundant.

    5. Re:Wait, then ask. by ScuzzMonkey · · Score: 2

      Right you are. Feeling a bit clueless myself, today.

      --
      No relation to Happy Monkey
    6. Re:Wait, then ask. by Knightfall · · Score: 1


      Absolutely. When I took my new *thank GOD* job, I was told during one of the interviews that the boss expected 50 hours a week of work (I am salaried). I said no and if that was what he needed, he needed to hire someone else. That day he gave me a call and offered me the job. He siad that one of the reasons he offered it to me was that I would stand up for myself. The other 10 people he interviewed all stuck their tails between their legs and said, "Yes sir, no problem." So, stand up for what you want to work, and take care of yourself and you needs. Work to live, don't live to work.

      --


      Knightfall
    7. Re:Wait, then ask. by Anonymous Coward · · Score: 0

      probably "clueless moron"?

    8. Re:Wait, then ask. by DEBEDb · · Score: 2

      Don't you wish it were an oxymoron, though? :)

      --

      Considered harmful.
    9. Re:Wait, then ask. by Anonymous Coward · · Score: 0

      haha....ya, whatever !

    10. Re:Wait, then ask. by TheGrayArea · · Score: 1

      Is "clueless boss" an oxymoron? Nah, it's just redundant.

      --

      This space for rent.
    11. Re:Wait, then ask. by dubl-u · · Score: 2
      Recently, our director mentioned that she expected at least 50-60 hours per week, every week from all professional, salaried staff (we have about 20-25 people in that category. Our "official" workday is 7.5 hours. In essence, we're being told that we have to work a minimum of 10-12 hour days every week of the year and more when we have critical needs.

      To a naive manager, this sounds appealing. For her salary budget, she has increased productivity by 25-50%!

      But this is mainly proof that she isn't measuring productivity. If she were, she'd discover that compulsory overtime doesn't buy her anything in the long term, and probably hurts her. The studies I've looked at (see McConnell's "Rapid Development" for references to good research on the topic) suggest that if you make people spend that much time in the office, they spend a lot of it on doing things other than work.

      And if they are programmers, it's even worse. When pressured to go faster, they skip testing, don't polish their code, and ignore big issues until "later". When programmers are tired, they make more mistakes. But since they are testing and polishing less, they find those mistakes later or not at all.

      This pushes software projects into a downward spiral: increased bug counts and increased time-per-bug yield slipped schedules. Slipped schedules create more time pressure. More time pressure creates buggier, messier code. Eventually, everything blows up, but generally after the manager who created the problem has moved on.

      The solution: taking the time to do it right is the fastest way to get it done:
      • Write automated unit tests
      • Integrate frequently (I integrate every hour or two; daily integration is a minimum)
      • Work in short iterations (1-2 weeks)
      • program in pairs (if you can't, then frequent code reviews are the next best thing)
      • measure your productivity

      That last one is especially important. Now that I measure my own productivity, I've discovered that it's better to stop coding when I get tired; otherwise I start making mistakes that cost me later. Then when your boss says, "Everybody must work 60 hours a week until the product ships!" you can say, "What effect do you think that will have on productivity? And if it turns out that 40-hour weeks are the fastest way to get things done, will you go back to them?"
    12. Re:Wait, then ask. by geekoid · · Score: 2

      I can't say this enought, check your local employment laws.
      A) If its a written or verbal policy that you work 7.5, and they change it on you, you may have grounds for a lawsuit.
      b) Whether or not you are exempt from overtime depends on more then just being salary

      learn you laws, and don't be afraid to protect yourself from abuse.

      finally, talk to a lawyer.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
  3. Depends on your employment status by GusherJizmac · · Score: 4, Informative
    At my last job (and at most with salaried workers), the employees are what is called "exempt", meaning that their salary is not for "40 hours a week" but for "whatever work needs to be done", so they are legally justified in making you work whatever amount is necessary to get the job done. It would be up to you if you were willing to work that much and to quit if you didn't like it.

    For contract work, I would guess it would be a bit different. You probably should negotiate both the expected number of hours and the expected calendar time for the project, because otherwise, they will work you as much as they can, and will claim contract breach if you don't work what they want.

    And, don't trust HR. They are not on your side. Get everything in writing, and assume any nonwritten verbal agreement to not go in your favor if it comes down to it.

    Being educated is 1000 times better than being in a union. This is your livelihood, so you have to take control of it and not let yourself get jerked around. Most employers are not "evil" and aren't out to screw you, but the will operate to their advantage (and why shouldn't they?), so be smart, informed and careful.

    --
    http://www.naildrivin5.com/davec
    1. Re:Depends on your employment status by duffbeer703 · · Score: 4, Insightful

      You're a little naive.

      An exempt employee is an administrative, professional or technical employee with a flexible work schedule. That flexibility is supposed to go both ways. (ie, if you work 60 hrs one week, you might work 30 hours in another). Plenty of employers abuse this, forcing workers to work beyond 40 hours regularly and not allowing a shorter workweek without a charge to PTO.

      If that flexibility isn't there, you need to seek other employment.

      --
      Conformity is the jailer of freedom and enemy of growth. -JFK
    2. Re:Depends on your employment status by Anonymous Coward · · Score: 0

      At my last job (and at most with salaried workers), the employees are what is called "exempt", meaning that their salary is not for "40 hours a week" but for "whatever work needs to be done"

      They can say that, but in some states (CA for one), the 40 Hour Week is a matter of law.

    3. Re:Depends on your employment status by stefanlasiewski · · Score: 2

      Not true.

      If you are "salaried" you are "Overtime Exempt". Your work week is not limited to 40 hours, nor is your work day limited to 8 hours, and as a result, there is no overtime.

      If you are non-exempt, you earn overtime if you work more the 8 hours a day, 40 hours a week, or more then 7 consecutive days (But only in certain situations).

      Here are two good summariesof California's overtime and exempt laws.

      --
      "Can of worms? The can is open... the worms are everywhere."
    4. Re:Depends on your employment status by GusherJizmac · · Score: 2

      didn't I say that, basically? Wouldn't that be implied in "how much effort it takes to get the job done"? How is that naive?

      --
      http://www.naildrivin5.com/davec
    5. Re:Depends on your employment status by geekoid · · Score: 2

      Salaried is not exempt, there are very specific guigline you have to meet in order for them not to pay you overtime.
      Also, if they have a policy of 7.5 hours a day, then they make you work more, you should sue.

      Your implimcation that being in a union means your not educated is insulted.
      There are many protections you can get from a union, that you will have a hard time getting on your own, like fair treatment, reasonable hours, and protection for seniority.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
  4. Salary (N.E.) Contractor? by R2.0 · · Score: 4, Informative

    If you are being paid a salary, I don't think you are a contractor, at least according to the Feds. Are they going to take taxes out? If they treat you like an employee and pay you like one, then you are an employee.

    --
    "As God is my witness, I thought turkeys could fly." A. Carlson
  5. I'd be careful by ClosedSource · · Score: 5, Informative

    It doesn't sound to me like you're really doing contract work. Do you have a contract with the company saying they're going to pay you X dollars a month for unlimited work? It sounds like the company has hired you as an employee but is pretending you're a contractor to avoid paying you benefits. The IRS may consider you an employee for tax purposes, I'd check into this with a tax accountant if I were you.

  6. Depends... by Koos+Baster · · Score: 2, Funny

    It appears in the USA an employer can fire employees at will, while in Europe firing people to avoid direct bankrubsy is impossible. THis is - of course - an exchageration, but it would make sense to specify a topograpic region...

    1. Re:Depends... by Raiford · · Score: 2
      It's not that way anymore. At one time in the US employers had little liability in firing an employee for minimal cause. Don't let the door hit you in the ass type of thing. It is much different now. An employer pretty much has to build a case against you to fire you for cause and you have all kinds of legal responses availible to you if you feel that you were wronged. However, if there is not enough work for you to do, then that is a different story. Positions can be eliminated (along with the people who hold them). This represents a change in the employers company structure which carries its own set of legal documents.

      --
      "player 4 hit player 1 with 0 stroms"
  7. two questions by josephgrossberg · · Score: 4, Interesting

    1) Why won't they hire you on an hourly basis? Or, at least, why did they claim that salary was their preference? (Maybe they want to exploit; maybe they don't want you doing one hour of work, seven of minesweeper and then billing for all eight.)

    2) If you are signing a *contract*, why don't you put an hours-per-week clause?

    Joe

    1. Re:two questions by mshiltonj · · Score: 3, Funny

      maybe they don't want you doing one hour of work, seven of minesweeper and then billing for all eight.

      Inconceivable! Unthinkable! Impossible! How dare you imply that such things ever happen! I suggest you get your facts straight before you make such sweeping generalizations!

      We read slashdot, not play minesweeper.

    2. Re:two questions by mfarver · · Score: 2

      I had the same issue come up at my current contract. They wanted a fixed cost, knowing that the number of hours worked would be difficult to track (sysadmin support). Since the whole contract is pretty small, we agree to a flat rate for a limited contract time, and I insisted on a "nominal 40 hr work week" clause in the contract. This is still probably too vague.. but it was a decent compromise, and since the contract length is only 8 weeks I did not worry about abuse.

      You have nothing to worry about from the IRS (as long as you pay them), but the employer does. The IRS has been taking a pretty tough stance on defining employees. Pretty much any individual paid by a company is an employee, and hence the employer is responsible for withholdings. The company must prove that you are not an employee (they must have an "arms length" relationship, which is up to the IRS to decide... but if you work at their location, are paid a flat rate, and are solely working for them, the IRS is likely to call you an employee). A contract is not enough. Which means if you don't pay your self employement withholdings, the company gets fined..

      Also if you are a contractor, you should be paid about 1.5 to 2x what a comparable employee makes, otherwise you're likely getting screwed. The employer pays a lot of taxes that are not deducted from you check, and benefits are worth a few hundred bucks/month too. And how much value can you place of job security....

      Fun, eh?

  8. Where abouts... by DrPepper · · Score: 2, Insightful

    US, Europe, somewhere else?

    In Europe we have regulations to prevent this - stipulation on maximum working week etc. However, in the way the regulations were implemented in the UK, it's standard practice for everyone to sign a contract that allows overtime working with no fixed maximum.

    So, if it did get too much, you would have to quit and probably work your termination period. There would probably be little to gain trying to argue the contract in court at that point.

    I suspect that, even if there is a similar law in the US (or elsewhere), it would always have been implemented in an "optional" way to appease the large corporates.

    1. Re:Where abouts... by Chilles · · Score: 2

      Most people I know (the Netherlands) have a contract that says their employer can require overtime if it is needed and advance warning is given (one week to one month depending on the contract). But, every hour of time worked after the contract time is reached (typically 32, 36 of 40 hours) must be compensated either financially or in the form of extra free time.
      I'd never go for a contract that states that if my boss so desires I can be forced to work 24/7 without extra compensation.

  9. Salary, Hourly and Overtime by Hungus · · Score: 5, Informative

    As a former IT Director I am somewhat familiar with federal labor laws. It all depends on your salary range here is an exerpt from a labor site online:

    " The federal salary level for professional employees remains at $170 per week, exclusive of board, lodging or other facilities; and the short test for professionals also uses a salary of just $250 per week. Computer professionals are treated somewhat differently, however. In 1990 the U.S. Congress passed legislation specifically to address the computer field. The exemption is applied only to "highly-skilled employees who have achieved a level of proficiency in the theoretical and practical application of a body of highly-specialized knowledge in computer systems analysis, programming, and software engineering." These computer professionals must receive a salary of at least $1,105 per week, which breaks down to an hourly wage of $27.35 for a 40-hour workweek; and is an annual salary of $57,460 - a far higher salary than most bona fide exempt EAPemployees receive in the human services field."

    --
    Bad Panda! No Bamboo for you! In matters of importance ACs will not be responded to. Want to say something critical,OK
  10. overtime by mpest · · Score: 4, Informative

    Like everyone else has said, it sounds like they hired you as an employee, as contractors usually are paid for the completion of work, not by the hour or salary. At any rate, any company over a certain size (I think it's over 50 employees here in PA) MUST pay overtime of one and a half times salary (1.5x) for all hours over 40 in a week. The company is probably trying to get around this by calling it's employees "contractors" (my company used to do the same). You already have a contract so don't be afraid to be pushy about it. Don't let yourself get screwed.

  11. Link by Hungus · · Score: 1

    oops here is the link

    --
    Bad Panda! No Bamboo for you! In matters of importance ACs will not be responded to. Want to say something critical,OK
  12. Depends on your employers by LudditeMind · · Score: 1

    Of course it's okay say that you're working too much. Some employers will say 'oh I didn't realize, take some time off', others will just think you're trying to slack off. See how your manager handles other cases and act off of that. It may not be 'right' for them to force you to work extra hours, but sometimes keeping your job is more important that what right.

  13. YOU ARE NOT A CONTRACTOR! by Anonymous Coward · · Score: 3, Informative

    You are their employee. An IT contractor has to jump through countless hoops to retain his independent status [Google on "Employee or Independent Contractor?"]. In this instance, you are no longer a contractor by any sense of IRS regulations, common law, or statutory law.

    On the other hand, if you were a conniving little twerp, you could get these people in a hell of a lot of trouble with e.g. the Labor Department [not to mention the IRS] were you to so choose. Of course, to leverage that to your advantage, you'd have to commit blackmail...

    1. Re:YOU ARE NOT A CONTRACTOR! by Enry · · Score: 3, Interesting

      No blackmail about it (assuming you're right). If you're legally an employee, then you are obligated to report it to the IRS/Labor department. Otherwise you're an accomplice.

  14. For what it's worth by DNAGuy · · Score: 3, Insightful

    It doesn't sound like you're a contractor at all, but an employee. I've never heard of a "salary" being paid to a contractor, though per diem (aka per day) rates are common.

    At any rate, I've found that setting expectations early is critical. Make it clear to your client what they are paying for. This does not mean you have to be inflexible. You both want the project to be successful in the end. If excessive hours are required, don't bother fighting. Simply make it clear that more work is more expensive, but that you will be happy to see to it that the client's needs are met. If your client has a problem with this, consider your relationship with them carefully. Make it clear that you understand their concerns and that you want to do whatever you can to help them, without getting screwed yourself. Your client is probably motivated by the memory of runaway projects. Make it clear that you have their best interests in mind. Remember, the client is motivated by both excitement and fear. If you can harness those emotions, you can usually turn the negotiations in a helpful direction for both of you.

    Finally, it never hurts to show off your professionalism. Dress one notch more formally than those in your workplace. Be friendly and helpful at all times, but refrain from getting involved with office politics. Think about the mannerisms of your lawyer or doctor. You are a highly paid expert in your field. Act like it and your client will come to understand what they are paying for.

    --

    BRENT ROCKWOOD, EST'd 1975

  15. Negotiate the contract. by duffbeer703 · · Score: 5, Insightful

    Play hardball.

    Specify that perdiem (ie per day) rates are $xxx/day. A normal day is 7 or 8 hours and does not start before 6:30AM or after 7 PM. A maximum of xx extra hours may be worked per week, with reasonable notice.

    After-hours rates are $xx/hr and oncall rates are $xx/hr. Payment terms are Net 30 with a 2% discount if paid within 14 days. There will be a 5% fee for invoices not paid within 60 days, and a 1.5% fee per 30 days thereafter.

    If they do not agree to a contract like that, they are looking for someone to exploit, and will probaly be slow in producing money.

    My advice is to go out and find another place to work.

    --
    Conformity is the jailer of freedom and enemy of growth. -JFK
  16. IANAL, but... by tenman · · Score: 5, Interesting
    Q: Can the company legally make you work 10-16 hour days?

    A: Yes. Well, technically no, but you are not an employee so yes. You see, an employee has to be given a total of 30 minutes rest for 8 hours of work, and while I can demand that the employee stay over 8hrs/day -or- 40hrs/wk, The state law makes sure that I compensate them with breaks, food, sometimes lodging. It gets to expensive for me to hold my employees longer than normal. I once figured the breaking point is at 9.5 to 10 hours a day. If I require my people to stay 9.5hr/day, I'm not really losing anything. However, at 10hr/day, I lose my butt. On the other hand, my lawyers have written our contracts such that when I hire a developer to work on a contract, they agree:
    • Work in the office on business days (M-F): This means that the contactor can't work from home or decide to work tue, wed, thu. (of course they each have a set number of sick days, and vaca, etc...
    • Work at the "corporate" pace: This is requirement very arbitrary. It's purpose is two fold. One, it allows me to get out of the contract with poor performers, and two, it allows me to squeeze late nights out of any contractor. It states that the contractor(s) must perform his/her/their tasks at such a pace as to not delay the development of the companies staff.
    I know that it doesn't seem fair, but my view point on it is like this. If you hire a mechanic to fix your car, and they say that for $300 they can get it done in 4 days. If it take seven days, the total cost to you is greater than the price your agreed on for the service that you got. So in effect the mechanic broke your contract. I pay my contactors for end results, not time spent creating results. The Company that I hire contractors for, expects that for $300 they can get their car fixed, and if that doesn't happen it looses money.

    So yes, a company can require the entity that it contracts with to what ever it takes to provide the end product on time and with a certain level of quality. And my company also requires that all work done... be done inside the confines of our building. But no, it can get really expensive the keep regular employees.
    1. Re:IANAL, but... by hey! · · Score: 4, Interesting

      [A]
      This means that the contactor can't work from home or decide to work tue, wed, thu. ...
      [B]
      If you hire a mechanic to fix your car, and they say that for $300 they can get it done in 4 days. If it take seven days ... mechanic broke your contract.

      Umm, so if the mechanic manages to get it done in two days, he has to spend the extra two days working on your car, even though it is fixed, so you can get your money's worth?

      The idea that you can death march programmers to quality software on time is stupid. I've on occasion worked long, long hours -- it's part of the creative process. You have to strike while the iron is hot. On the other hand, I've taken comp time later. I pretty much follow the same policy for people who are reporting to me. If they're accomplishing stuff at a good pace, I look the other way when they need a little personal time. And if you hire good people, you don't have the problem of squeezing extra time out of them -- quite the opposite. I send people home if I think they are working beyond their ability to contribute efficiently.

      Creating software is about making dozens of decisions per hour, from how to name variables to how to structure systems of code. Fatigue doesn't lend itself to good decision making. All things being equal, I'll take a single, rested, motivated coder over five who are keeping their seats warm.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    2. Re:IANAL, but... by /dev/trash · · Score: 2
      You see, an employee has to be given a total of 30 minutes rest for 8 hours of work,


      Could I get a link or something where it says that?
      I've worked jobs where I only got 20 minutes for lunch and that was it.

    3. Re:IANAL, but... by pthisis · · Score: 2

      I pay my contactors for end results, not time spent creating results.

      No, you don't. You said you pay for hours.

      Lots of contracts are written for deliverables rather than hours. That would be paying for end results. Maybe worth investigating for you...

      Sumner

      --
      rage, rage against the dying of the light
    4. Re:IANAL, but... by tenman · · Score: 2

      Umm, so if the mechanic manages to get it done in two days, he has to spend the extra two days working on your car, even though it is fixed, so you can get your money's worth?

      Almost!!! You are on the right track. But my contracts work more like this... mechanic manages to get it done in two days, mechanic gets paid the remainer of his contracted amount for that task, and gets the option of taking another task from the pile. So if I contract for 4 days, and the work takes him 2, then effectivly, he gets paid to two days he didn't have to work. Or to look at it another way, I didn't make him stay around the aditional 48 hours.

      Marching (to the death or otherwise) is, and has to be, the sole responsibility of the developer, and the choices that developer makes are crutial to the success of the project. But if the developer isn't what he presented himself to be in the proposal stage of the contract, then the problem of having to work late hours is on his back... not mine. ALSO... If I can't get good code out of some script kiddy, I want to cut my frigg'en loses.

      FYI: Our seats are motivated warmth and pride by the best in the biz!!!
      THANKZ CREW

    5. Re:IANAL, but... by tenman · · Score: 2

      Labor law says that if I give you a 20 minute break, I have to pay you for it, even if you don't do any work on it. It also says that if I give you a 30 minute break, that I dont' have to pay you for it if you don't do any work. However (and I hate this part) I can't tell you NOT to work on you lunch break. Meaning that if you work from 8 to 4:30, and take a lunch break of 30 minutes, if you so much as punch a keystroke, I have to pay you for the whole 30 minutes. This could put you into overtime... BAD!!! BAD!!!

      I'll see if I can find an online version of the law.

    6. Re:IANAL, but... by tenman · · Score: 2

      yes i do!
      no you don't!
      yes i do!

      we could go on like this forever sweetest, but trust me... I pay for end product, and the contract says that end product has to be delivered on or by the COB on a specified date.

      regards...

    7. Re:IANAL, but... by CharlieG · · Score: 2

      sounds like you may fail the IRS "test" by setting work conditions - Congrats if one of your contractors goes to the IRS - that back tax bill plus penalties can kill you

      --
      -- 73 de KG2V For the Children - RKBA! "You are what you do when it counts" - the Masso
    8. Re:IANAL, but... by stuart_farnan · · Score: 1

      So what you are saying is that you prefer to hire contractors on fixed price contracts, right? So presumably you have an absolutely watertight spec to accompany the contract they sign, and of course if you were to change their mind half way through and add an extra bit of functionality the contractor would be well within their rights to decline this work as being outside the specification. Right?

      Or do you attempt to hire contractors on fixed priced contracts but still expect them to be controlled by you in the workplace? If this is the case and you expect them to follow your instruction during the course of the working day I don't see how you are doing anything but attempting to exploit the contractors by asking them to carry all the risk inherent in the deal.

      Fixed proce deals carry risk, and the risk is all on the suppliers side. If it runs late, you dont get charged more, but they work more. Normally this means that a percentage premium is charged to partway guard against this, you seem to be handily skipping this step, and also increasing the level of risk by not having them work to a fixed spec, but under instruction from you. Why do you prefer this, why not just hire them on a daily rate, unless you are not confident in your ability to manage a project and the people that work for you? If they dont produce anything then cancel the contract, it should not be difficult to keep an eye on a contractor who is not performing.

      Also this "corporate pace" thing sounds fishy. You have hired them for a fixed price job to be done in a fixed time, so let them do it and leave. If they take longer, then they incur the cost for that.

      I can't imagine any contractor would expose themselves to that level of risk, but if you manage to get people to sign it, then I guess its their own fault.

    9. Re:IANAL, but... by FeatureBug · · Score: 2

      • "So if I contract for 4 days, and the work takes him 2, then effectivly [sic], he gets paid to [sic] two days he didn't have to work. Or to look at it another way, I didn't make him stay around the aditional [sic]48 hours."

      You appear to be contradicting what you said in your previous post, i.e., your contracts have a term requiring your contractors to:

      • "Work in the office on business days (M-F): This means that the contactor [sic] can't work from home or decide to work tue, wed, thu."

      So, if one of your contractors finished a contract of four-days of work in only two days, he/she cannot stay home because he/she is required by your contract to work in your office for the remaining two days. So, really you do make them stay around the additional 48 hours.

    10. Re:IANAL, but... by Anonymous Coward · · Score: 0

      >So, really you do make them stay around the additional 48 hours.

      No, AFAIK contractor vs. employee relationships, doing something like requiring a contractor to pay you face time in addition to work completed, unless specifically in the contract (and no contractor would agree to sit on their ass doing nothing after completing a job unless the pay was outrageous), helps make that contractor an employee.

      I know, I've had this out with my employer (who is convinced I'm a contractor). I use their tools, I show up on their hours, I have to do jobs with guidance, they decide wether to pay me for lunch or not, I get in "trouble" rather than getting a broken contract, etc, etc. If I actually cared enough I'm sure I could take the employer to court and have the relationship changed to employee, but right now it isn't worth it.

    11. Re:IANAL, but... by shepd · · Score: 1

      >I'll see if I can find an online version of the law.

      Please do, if you can. I've work with employers that refuse to pay for lunch, but also expect you to do things like answer phones, etc. during lunch. It would be nice to print it out for them... :-)

      [ Then again, I already quit one job where they started stiffing me for lunch. I'm _very_ picky about that... Especially when the job is less than 8 hours a day anyways. ]

      --
      If you could be told what you can see or read, then it follows that you could be told what to say or think - BoC
    12. Re:IANAL, but... by FeatureBug · · Score: 2

      I'm not talking about the difference between employees and contractors. I'm only explaining what the guy, "tenman", said not very clearly in his first two posts at the top of this thread. What has emerged from his subsequent comments is that he seems to have a term in his contracts which says his contractors must work a minimum number of hours per day at a particular location. Like I explained in my other posts he is using an archaic fixed-time, fixed-workplace, fixed-deliverable contract instead of a modern fixed-price, fixed-deliverable contract.

    13. Re:IANAL, but... by tenman · · Score: 2

      Friend... ...decline this work as being outside the specification. Right?

      Right! IE fixed deliverable. ...expect them to be controlled by you in the workplace?

      I can't allow any work on my projects to leave my "secured area". Government contracts regulate that. ...but attempting to exploit the contractors by asking them to carry all the risk inherent in the deal.

      Yeah, It seems like that, but the contract also says that if we accept the work, then they are released from support for it. We can't go back a month later, and claim that the deliverable wasn't complete. We also, as matter of practice, don't hire contractor to write 3 year long projects. All we want is a widget or two that our developers are to busy to worry with. We give them grunt work, and we treat them like lab rats, and they love it. If they write good code, and they like the work, they renew the contracts, else we search for more rats. I contract with burger king employees that just got done at ITT Tech. These kids aren't solving world hunger; they are adding code to AED a database field in a table.

      Do please get over yourself. You guys may be the best coders in the world, but I deal with the two-bit riff raff, and I separate the wheat from the chafe. So I ride them hard and put them up wet. Then the one that survives I try to sell to the highest bidder, because I made the financial investment in seeing what they are made of. If they can't hack it, they are put back on the street.

      Now, in reality, I'm not a manager of anything. I'm a simple scripting geek. I have no power to hire, fire, or sign contracts for/with anyone. I started this tread because it was a slow comment day, and a top level comment like that was sure to get things moving. But I have come to realize that you guys are a bunch of cynical, bitter people.

      Still I am going to add you all as friends. Bitter as you may be.

    14. Re:IANAL, but... by Anonymous Coward · · Score: 0

      If you are writing contracts that specify the contractor needs to work at your place of business, they aren't a contractor. See IRS publication SS8 "Information for Use in Determining Whether a Worker is an Employee for Federal Employment Taxes and Income Tax Withholding."

    15. Re:IANAL, but... by geekoid · · Score: 2

      You will be sued, and you will lose.

      Once you demand an contractor work specific hours, and at your rate, in your office, the IRS considers them an employee. the Supreme court always has looked to the IRS rules to determine if they should be coinsidered an employee, regardless of contracts.

      MS went through this when the IRS said all there contract employes were considered regular employees, and then the contractor sued for past benefits(i.e. stock)

      Go to the IRS web sire, look up there guidlines, as a rule of thumb, you the person you contracted meets 7 out of 20, you are at risk, more then that, and you will be screwed.

      In Oregon, that contract you describe would not protect you. I just went through this.

      P.S. get a new lawyer.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    16. Re:IANAL, but... by tenman · · Score: 2

      Good point!!!! I'm right on it.

  17. Its simple really... by pr0c · · Score: 1

    You have 2 choices, work what they want you to work or don't work for them.

    If you do what they want and it doesn't coincide with what you want then you can try to negotiate however this will probably not work. You'll end up pissing them off and they will get rid of you one way or another if they don't get what they want from you.

    The simple fact is that if your unwilling to put up with their bullshit, someone else will. If this is the only good job you can come up with, then your stuck with their terms. If you have several opportunities then you can negotiate or even laugh in their face.

  18. Learn from this experience by HotNeedleOfInquiry · · Score: 2
    The problem is that you've already taken the job and as far as negotiations go, you're the low man on the scrotum pole. You can call your labor relations board and ask them what your rights are, but getting the company to honor them might do more harm than good. Unless they literally work you like a slave, your best bet might be to do your work well and keep looking for a better job. It's easier to find a job when you have a job and it's easier to find a job when your current employer likes you and will give you a good recommendation.

    As for the next time, there is no problem with asking a perspective employer how many hours a week you will be expected to work. It's also ok to ask to speak to a current employee of the company about the working conditions.

    --
    "Eve of Destruction", it's not just for old hippies anymore...
  19. Do you get an IRS 1099?(e.g. are you a contractor) by shoppa · · Score: 2
    We're all a bit confused by what you've gotten yourself into. I see three options:
    1. You bid a job for a firm fixed price/firm fixed time. e.g. you promised to do something by a given date for a given amount of money, and you signed a contract saying so. This is a great way to do contract work if you're experienced and can price your jobs competitively and deliver. But since you're asking newbie questions I don't think this is what you've got.
    2. You're a contractor and will get a form 1099 at the end of the tax year. This is possible, but again doesn't sound like what you described.
    3. You're working for a company that does contract work, but will get a W-2 (e.g. you're an employee of a contractor, but not a contractor yourself). In which case you certainly can be salaried, and maybe you've bitten off more than you can chew, but one would hope that the company that's you're working for is a decent one.
    So what is it?
  20. Employee of contract house; hourly rate vs. salary by Lumpish+Scholar · · Score: 3, Interesting

    It sounds as if you're in the same situation my wife has been in (and is about to be in again). You're an employee of a contract house; your employer turns around and bills the company you'll be doing the work for (the "client").

    As others have said, you're an "exempt employee"; the belief is that your hours are somewhat flexible, and that you are not guaranteed overtime no matter how many (or which) hours you work. (But you should be able to take a couple of hours off for a doctor's appointment without a lot of fuss.)

    On the other hand, it's very likely that your contract house will bill the client for the number of hours you work. So you could be in a weird situation: the client could ask you to work 60 hours a week, your contract house makes 50% more than they'd expected, and you don't make an extra penny.

    If everyone's reasonable, things will work out fine. The situation's ripe for potential abuse, though no more so than any other exempt employee situation.

    My advice? Take the job, get what you can in writing, set expectations verbally when you can (and then take notes of what was said), don't talk about "40 hours per week" as if it's an entitlement ... and keep looking for something even better. The best time to look for a job is when you have a job. Don't jump ship at the first sight of something shiny, but do keep an eye out for great opportunities.

    P.S.: My wife was offered a choice of salary or hourly. She took hourly (and will bill 40 hours per week but work whatever hours are required), at a rate corresponding to two paid weeks off. That way, if she wants to take more time off (without pay), she's able to do so. She got the position with the client (her old employer) first, and then shopped contract houses. It was great to find a supportive and flexible one.

    --
    Stupid job ads, weird spam, occasional insight at
  21. IRS on Employee or contractor by shoppa · · Score: 3, Informative
    Employee or Contractor? IRS Guidelines

    Here are the IRS guidelines used to determine whether or not an independent contractor truly is an: Employee or Contractor? Workers are generally considered employees if they:

    1. Must comply with the employer's instructions about work.
    2. Receive training from or at the direction of the employer.
    3. Provide services that are integrated into the business.
    4. Are aided by assistants who are hired, supervised and paid by the employer.
    5. Have a continuing working relationship with the employer.
    6. Must follow set hours of work.
    7. Work full time for an employer.
    8. Do their work on the employer's premises.
    9. Must do their work in a sequence set by the employer.
    10. Must submit regular reports to the employer.
    11. Receive payments of regular amounts at set intervals.
    12. Receive payments for business or traveling expenses.
    13. Rely on the employer to furnish tools and materials.
    14. Lack a major investment in the facilities or equipment used to perform the services.
    15. Cannot make a profit or suffer a loss from their service.
    16. Work for one employer at a time.
    17. Do not offer their services to the general public.
    18. Can be fired by the employer.
    19. May quit work at any time without incurring liability.
    1. Re:IRS on Employee or contractor by RgnadKzin · · Score: 1

      Must comply with the employer's instructions about work.
      I adhere to the shop documentation and programming standards and to the standard of conduct, but this is in the contract.

      Receive training from or at the direction of the employer.
      No training accepted or required.

      Provide services that are integrated into the business.
      Every service in a computer shop is integral to the business. Else why would they contract for it?

      Are aided by assistants who are hired, supervised and paid by the employer.
      Not applicable.

      Have a continuing working relationship with the employer.
      The contract is re-negotiated every two to six months.

      Must follow set hours of work.
      They know that my hours are flexible.

      Work full time for an employer.
      I have other responsibilities.

      Do their work on the employer's premises.
      A security requirement.

      Must do their work in a sequence set by the employer.
      Adherence to standards is not the same as using personal initiative to solve a problem.

      Must submit regular reports to the employer.
      Time sheets are signed every week and become invoices.

      Receive payments of regular amounts at set intervals.
      It is in the contract.

      Receive payments for business or traveling expenses.
      I meet my own expenses.

      Rely on the employer to furnish tools and materials.
      I would bring in my laptop and a docking station, but security requirements say no.

      Lack a major investment in the facilities or equipment used to perform the services.
      Security requirements of the shop dictate otherwise.

      Cannot make a profit or suffer a loss from their service.
      If I do not work, I do not eat.

      Work for one employer at a time.
      Not applicable.

      Do not offer their services to the general public.
      Offer is made via a contracting company.

      Can be fired by the employer.
      With cause immediately, without cause after one week.

      May quit work at any time without incurring liability.
      Contractually, I suffer a liability if I do not give one month's notice.

      --
      Liberty is not a concept... Liberty is a way of life!!!
    2. Re:IRS on Employee or contractor by HotNeedleOfInquiry · · Score: 2

      Can you cite a reference for those rules? I need one for my files.

      --
      "Eve of Destruction", it's not just for old hippies anymore...
    3. Re:IRS on Employee or contractor by shoppa · · Score: 4, Informative
      IRS Form SS-8 is the official way to determine what you are. The "Quick 20 questions" isn't the official demarcation but they are closely related to the questions on the SS-8.

      After the IRS has determined what the status is from the SS-8 you can stick to it or dispute it. Sometimes its nice just to know that they've made their decision one way or the other rather than sit in never-never land.

    4. Re:IRS on Employee or contractor by *xpenguin* · · Score: 2

      Can you cite a reference for those rules? I need one for my files.

      Sure. Just click on the comment ID, then File, Print...

  22. Switch already! by Anonymous Coward · · Score: 0

    Why are you bellyaching about too many hours already? That's all you'll get out there. Drop programming already. The field is SATURATED.
    Of course, no one will ever put the blame on the universities for enticing too many people and graduating them, no, let's blame the economy, the evil capitalists, etc...

  23. Make it instead a loan to be repaid by labor by RgnadKzin · · Score: 1

    Here is how I do it: I make an agreement with the company that they will make a loan to me for the desired amount per month. I then offer to repay the loan using labor at a set rate per hour. If I do not work the requisite number of hours, then the loan either rolls over, or charges off against the next month.

    The proceeds of a loan are not income, therefore, these proceeds are not taxable.

    The downside to the company is that they cannot charge off the labor as taxable, either. However, the offset in paperwork and administrative costs is significant, so it works for both of us.

    In the above scenario, where the guy has contracted for un unspecified number of hours, I would base the amount of the loan and the repayment upon the desired deliverable and an expected delivery date. A clause in the loan would state that if they are responsible for any delays in the deliverable over and above a "normal" set of hours per week, that they are to make me a "bridge" loan at a premium, to be repaid at an increased rate.

    --
    Liberty is not a concept... Liberty is a way of life!!!
  24. some real life insight by ReidMaynard · · Score: 1

    At a previous job I was almost converted from a hourly w2 contractor to a *salaried* contractor. He's what it meant in my situation.

    current: 50/hr no bennies/health ins/vacation/sick time

    proposed: 1920 week (48/hr), 2 weeks vacation, health ins, sick days

    in the current, if I worked a 41st hour I would get $50; in the second I would make $48. So I guess it was salary with overtime pay. From my understanding, this is a common practice.

    --
    -- www.globaltics.net

    Political discussion for a new world

  25. Is this for real? by Anonymous Coward · · Score: 0

    My son has been given the opportunity to get some Oracle training in return for taking a two-year contract with a major cable network company. The contract is through a contract company which is providing the training, and taking a cut of his pay. Supposedly, the contract includes benefits, such as health insurance. Does this seem right? With this kind of deal can one quit anytime without liability?

  26. Sidenote on Mechanic hours by Soulfader · · Score: 2
    My brother is an automotive technician for a small local shop, and he works what is known as "flat rate" (I don't know whether that's an industry-standard term or not). Basically, every job has an associated time which it should take to do it, and that's what you get paid, regardless of how long it actually takes.

    So for example, he's switching out the clutch on my '85 Subaru hatchback. He looks up the job and discovers that it should take 4.6 hours (yes, I made that up). He quotes me the price for parts + 4.6 hours of shop labor. I agree to pay this price. Because he kicks ass, he actually gets it done in 3.5 hours. I still pay the shop the full cost, and the shop still pays him for 4.6 hours of labor. However, if he screws the pooch and takes 7 hours, he is STILL only getting paid for 4.6. Efficient mechanics are rewarded for their skill, and nobody gets screwed over.

    A good pay period can have him earning 55 hours of wages for 40 hours of work. Of course, what actually happens is that I leach off him and he does the labor for free, but my wife babysits his kid and I fix his PC, so it works out in the end.

    1. Re:Sidenote on Mechanic hours by tenman · · Score: 2

      Yes! This is my point exactly! except I went a step further. If you agree that the work on your car will take 237hrs, with 8 hour days, that comes out to 29.625 days, so I'll give my developer 30 days to do this project that he himself said would take 237hrs. Now, If 31 days later, he can't provide me with what we agreed on, then I want some compensation for his breech of contract, and likewise, if he finnishes early, he can take the remaineder of the terms agreed to in the contract, and go on his happy way.

      Everyone can win, but I'm not going to lose@!

    2. Re:Sidenote on Mechanic hours by FeatureBug · · Score: 2

      • "This is my point exactly! except I went a step further.

      No, Soulfader(527299)'s point is not your point at all because you went a great leap further than the fixed-price, fixed-deliverable contract example he quoted. You deny your contractors the motivation to finish their work early that would otherwise exist if you rewarded them with proportionate time off-work, bonus pay, or even better, if you didn't specify their hours of work at all, i.e., used "time-less" fixed-price, fixed-deliverable contracts. Instead, you are using good old-fashioned fixed-time, fixed-workplace, fixed-deliverable contracts.

    3. Re:Sidenote on Mechanic hours by tenman · · Score: 2

      WoooOooOOooOOoWWWW!!!!

      Your busy man... Chill out!

  27. You're treading on thin ice as I understand it by Spamalamadingdong · · Score: 2

    Unless I am badly mistaken, you are quite wrong: the forgiveness of a loan is considered to be income by the IRS, and you do have to pay taxes on it. I doubt that it makes any difference why the loan was forgiven (or declared "bad"), so don't complain if auditors come knocking on your door soon.

    1. Re:You're treading on thin ice as I understand it by RgnadKzin · · Score: 1

      It is not forgiveness of a loan, it is payment on a contract between two parties using an alternative medium of exchange. A loan can be paid using any medium of exchange. If the contract specifies that the loan is to be paid in oranges, then that is how it is paid.

      --
      Liberty is not a concept... Liberty is a way of life!!!
    2. Re:You're treading on thin ice as I understand it by Anonymous Coward · · Score: 0
      It is not forgiveness of a loan, it is payment on a contract between two parties using an alternative medium of exchange.


      This sounds like the sort of line that judges love to repeat to their golfing buddies. "Hey, Ralph, I had a live one at work the other day. Gettaloada THIS...."

    3. Re:You're treading on thin ice as I understand it by Anonymous Coward · · Score: 0

      Regardless of how you try to dress it up, it's the equivalent of your employer paying you in cash and not reporting it. If the IRS gets wind of it, you'll both end up in the slammer for tax evasion.

  28. I recently took a job as a contractor by TheGratefulNet · · Score: 2

    all my life (until now) I was 'fulltime'. I got to participate in stock options, profit sharing, receive company tee shirts (oh boy!) and all that stuff. I had to stay as late as the other fulltimers (much more than 8 hrs/day) and the job was to get goals done regardless of the hours it took (more or less).

    recently I took a contract job. not going direct but thru a contract house (as many large companies insist on, today). I was sometimes given the option of going '1099' or 'w2' (as they say). but usually the contract houses want you to go w2 since it makes things easier for them and also (more importantly) less liability. I don't know why, but it became clear that they take less risk if you go w2.

    btw, I found some useful numbers in my research. if you found the job yourself and was told to go to a 'body shop' to front-end you, you are really bringing the business to the body shop and you should know that the body shop should take about 23% of your income. if, otoh, you went to the body shop and they found YOU the job, they deserve a bit higher of a cut, which in the silicon valley seems to be about 33%. I found those numbers by poking and prying - technically I wasn't supposed to know those numbers.. but knowlege IS power.

    anyway, your contract should be very clear about overtime. if you are not getting benefits from the company you are working at (where you report to each day), then I would work a straight 8 hours and that should be that. why should you work more than what you are paid for? you're not being compensated for the success of the company - you are being paid for your hours (quality hours, of course).

    the client (where you work) may try to pressure you into staying beyond the normal work day but don't succumb. even though the guys you sit next to don't leave at 5 or 6pm, they also are getting some other compensation you are NOT getting.

    make sure that if the body shop you work for bills for extra hours, you also see extra pay.

    and read the contract carefully. its not wrong to negotiate on some of the paragraphs. I saw lots of non-compete clauses that were crazy! saying that I wasn't able to work for anyone that the client employed during the last 5 years or so! nuts!! if you are bringing the business to the bodyshop, you should NOT sign any non-compete more than, say, 3 to 6 months. certainly not a year and not 2 or 5 years! but if the body shop found you the job, they have a right to ask for a more aggressive non-compete from you.

    and don't sign away your rights! don't allow 'arbitration'. use whatever legal avenues you have if you should run into problems later on. one contract I was presented said that I was giving up my legal rights in favor of THEIR arbitration and that I acknowledge that my arb. rights are LESS THAN those normally given to me by law. yeah, right - I'd really like to sign my rights away. when I called them on it, they did agree to strike that paragraph. see - you CAN talk with them and call them on their BS and get them to remove offending paragraphs - IF you shop around and see what is normal for your area/field.

    last thought - work is hard to find. in a good market, you can show more moxy than in a weak market. try to negotiate but realize that working at all is better than holding out for a job that may be months in coming.

    --

    --
    "It is now safe to switch off your computer."
    1. Re:I recently took a job as a contractor by Anonymous Coward · · Score: 0

      Not really a reply but a general suggestion - if you are offered 1099 or W2 - take the 1099. You will be able to save a bundle on taxes as you will be able to write off everything from your car/gas to a portion of your mortgage and utilities (if you are working at home).

      Can't do that with a W2.

      Of course, IAMNAA (.. not an accountant) but probably could easily be one by now.

    2. Re:I recently took a job as a contractor by dubl-u · · Score: 2

      if you found the job yourself and was told to go to a 'body shop' to front-end you, you are really bringing the business to the body shop and you should know that the body shop should take about 23% of your income.

      I used the shell-company-for-hire ZeroChaos for six months or so last year and was quite happy with them. The employer paid the fee on that one, but my recollection was that ZeroChaos charges a flat $300 per month.

      You still have to pay all the various taxes that you would as an independent, but that's still better than 23%. And ZeroChaos also would let you buy benefits (including health insurance and a 401k) through them, which saves some hassle.

    3. Re:I recently took a job as a contractor by geekoid · · Score: 2

      "technically I wasn't supposed to know those numbers.. but knowlege IS power."
      are you sure thats not supposed to be:
      "technically I wasn't supposed to know those numbers.. because knowlege IS power."? ;)

      the reason they don't like 1099, is if you don't pay the taxes, the IRS will go after the employer. I've seen decent companies starting to get a head lose everthing because a bunch of contractor didn't pay there taxes, and the company could afford to the fines.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
  29. How hungry are you? by mildness · · Score: 1
    If you are at a place long term and want to advance or get the better raises then work OT.

    If not then work your forty. It is gonna be VERY hard for anyone to fire you because you *only* worked 40 hours a week.

    WHere the crap are you anyway, Indonesia? Here in America it's damn hard to fire someone (course you could easily make the next round of layoffs).

    I had a boss that used to say "There's 24 hours in a day!" And I would yell back at him "Yeah but You only pay me for 8!"

    Jerry Bernstein. If you ever run into the fat bastard run.

    Good luck. The times they are a changin'. Read Michal Moores new book "Stupid White Men".

    Bill

    --
    bamph
  30. You're kidding, right? by Galahad · · Score: 1
    Obviously it is not ok to just leave at the end of an 8 hour shift if there is still lots to be done

    Of course it's ok... you have a family, don't you? Or was that YOU on that carton of milk?

    --
    --jdp Maintainer of VisEmacs
  31. UK working time regs etc. by Anonymous+Brave+Guy · · Score: 2
    In Europe we have regulations to prevent this - stipulation on maximum working week etc. However, in the way the regulations were implemented in the UK, it's standard practice for everyone to sign a contract that allows overtime working with no fixed maximum.

    Of course, whether such a contractual clause has any legal validity at all is a different matter; see the DTI information on working time regulations.

    The thing that always amazes me is that incompetent managers continue to equate longer hours with higher productivity. The UK has the longest hours and lowest statutory minimum holiday entitlement of any EU member state, yet it also has almost the lowest productivity by any major benchmark.

    The population of the US seems prepared to put up with any amount of abuse from the big corporate employers and such, and when someone from elsewhere with three times the annual holiday allowance suggests that demanding a reasonable limit on their working hours is entirely appropriate, I've seen US citizens here on /. rant at them about how they don't know how good they've got it. They just don't realise how abusive their employers are compared to the rest of the western world... <sigh>

    By the way, I work in the UK, and I'm paid a salary rather than an hourly rate (and no over-time). My contract specifies a minimum 37.5 hour week, and I work pretty close to that. The company makes a genuine effort to treat its employees well, so most of us are prepared to cut them some slack when deadlines come up, but ultimately it's a two-way business relationship, and there are always limits to what would be acceptable by either side.

    In contrast, at the last place I worked, the management was so worried about their financial state that they actually started asking people to defer taking their holiday entitlement, because we couldn't bill the clients for days when people were on leave and cash flow was that bad. Needless to say, everyone started taking their holiday immediately to make sure they got it at all, and many of the good people started looking for alternative employment around that point. Go figure...

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    1. Re:UK working time regs etc. by sql*kitten · · Score: 2

      The UK has the longest hours and lowest statutory minimum holiday entitlement of any EU member state, yet it also has almost the lowest productivity by any major benchmark.

      That's true, but we also do have the lowest unemployment - 2-3% compared with 9-10% in France and Germany. Care to explain that?

    2. Re:UK working time regs etc. by Anonymous+Brave+Guy · · Score: 2

      The problem with that idea is that while there is likely to be a fairly direct corrolation between working conditions and productivity, unemployment depends on a lot of other, independent factors.

      For a start, you can fudge the figures very easily. The number of people who are not in regular, gainful employment in the UK is a very different statistic from the number of people claiming a Jobseeker's Allowance or similar benefit, and the latter is what the government's figures tend to report. That alone makes any meaningful comparison with figures from other nations nigh-on impossible.

      Even if we ignore that detail, unemployment still depends on many economic factors that remain more favourable in the UK (fingers crossed) than they are elsewhere in Europe. I don't see that you can reasonably argue that our low unemployment is caused, or even mostly caused, by the sort of working conditions we're discussing.

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    3. Re:UK working time regs etc. by sql*kitten · · Score: 2

      Even if we ignore that detail, unemployment still depends on many economic factors that remain more favourable in the UK (fingers crossed) than they are elsewhere in Europe. I don't see that you can reasonably argue that our low unemployment is caused, or even mostly caused, by the sort of working conditions we're discussing.

      The idea behind the French 35-hr week was that if people had to work fewer hours, companies would have to take on more people to do the same work. This was a mistake on two levels. Firstly, the French tax system disproportionally penalizes companies for taking on more staff, and secondly, there is a limit to how much economic stimulus can be delivered by deliberately restricting economic activity!

    4. Re:UK working time regs etc. by dubl-u · · Score: 2

      The idea behind the French 35-hr week was that if people had to work fewer hours, companies would have to take on more people to do the same work.

      Economists call this the lump-of-labor fallacy.

  32. hours by cheezehead · · Score: 1

    I had a boss who used to say: "If I can't do my job in 40 hours a week, they'll need to hire more people".

    Obviously, it doesn't hurt to be a little flexible when it's crunch time, but basically you're paid for 40 hours a week, so that should be your normal working hours. Working 12-16 hours a day may please some managers, but in the long run it's very counterproductive. You'll spend the first 4 hours of tomorrow fixing the mistakes you made in the last 4 hours of today.
    I read a study some years ago that showed that after 9 hours of work, productivity and accuracy decreased dramatically in most workers. And this was an assembly line in a car factory.

    Another point: "leaving after 8 hours when there's lots of things to do". Unless your project deadline is tomorrow and you really are very nearly done, there's always lots more things to do on a software project, so that doesn't hold water.

    As for advice: since it is a new job, you could try to work a little more in the beginning. Look at what other people are doing: are you the only one working after hours? Is everybody doing it? Are they doing it because they feel like part of a team and want to accomplish something? Or are they doing it because they are intimidated by management? If it's the latter, you probably should start looking for yet another job (I know, I know, it's hard these days).

    Just my 2 cents though...

    --

    MSN 8: Now Microsoft even has bugs in their ad campaigns.

  33. Salaried employee of contract house by fendel · · Score: 1

    Weird situation indeed.

    I'm a salaried "exempt" employee of a contract house that bills the client hourly. The company says that I am "hourly exempt," which is a contradiction in terms and most likely illegal. I can't work over 40 hours without prior authorization (cool by me); I can't work under 40 hours without using paid time off or taking unpaid leave.

    As far as I can tell, the only real difference between me and an hourly employee is that I can only take unpaid time in full-day increments--which sucks, since I only get 2 weeks paid vacation and no sick pay. Unpaid leave is a certainty, and I wish I had more flexibility with it.

    But I like the job and the people, and in this job market, I'm not about to quibble.

    And it beats being "really" exempt. I don't work overtime--if I did, the contract specifies that they pay me straight time. I love how they make a lack of protection by labor laws sound like a good thing: hey, I'm exempt!

  34. You must be a very confused & confusing manage by FeatureBug · · Score: 2

    You are brazenly contradicting your own description of your company's standard contractual obligations. You said,

    • "I once figured the breaking point is at 9.5 to 10 hours a day. If I require my people to stay 9.5hr/day, I'm not really losing anything."

    That's perfectly clear. You specify a minimum number of working hours per day. You also said your contractors must,

    • "Work in the office on business days (M-F): This means that the contactor can't work from home or decide to work tue, wed, thu."

    That's clear too. Not only must your contractors work your specified minimum number of hours per day but they must also work at your office every weekday.

    So, what you are saying now is that you have another term, which you omitted to mention in your first comment, in your company's contracts which specifies a deliverable and a due date for that deliverable.

    A more accurate description of what you pay for is to say you pay your contractors for fulfilment of all their contractual obligations. You do not pay them for end product alone. That difference is important.

    In my opinion, you are not managing your contractors effectively. Find other managers who are using "time-less" contracts to see how they work. If you set up your contracts to require your contractors to complete deliverables by specified dates to agreed standards with as many intermediate milestones as you consider necessary for feedback purposes but without specifying minimum hours of work and arbitrary attendance for attendance's sake, you would still get the contracted deliverables but because you are offering a more attractive package you would be able to attract better contractors to fill your vacancies, improve staff motivation, suffer lower staff turnover, and get better results.

  35. This sounds complete bullshit to me. by njdj · · Score: 5, Insightful

    1. If you're receiving a salary, you're an employee.

    2. Nobody can make you work more hours than you want to. If your employer thinks you aren't doing enough work to justify your salary, they may fire you. But I have to say that in my 30 years in the IT industry, about half of it in the USA and about half in Europe, I have never come across a case of somebody being fired for refusing to work more than 40 hours per week.

    3. A lot of young people seem to be very susceptible to peer-group pressure. You see a bunch of people working long hours, and you feel you can't just walk out of the office at 5pm, leaving them all beavering away. When you grow up, you'll realise that you can. Nothing bad will happen to you. You'll just get into the habit of wasting less time during the working day. And you may develop some independence of thought, which will be good for you.

    1. Re:This sounds complete bullshit to me. by kwerle · · Score: 5, Insightful

      If I'd had mod points, I'd just have piled them on here.

      Since slavery was abolished (and some labor laws were put into place), nobody gets to chain you to your desk anymore. If your 8 hours are up, walk away (if you like). It turns out that most folks who fail to balance work and life burn out at their job (some sooner than others).

      Come on, what are they going to do? Fire you? For not working for free? In America we call that "grounds for lawsuit", and most companies won't risk that.

      And really, if you're doing a good job the hours that you're there, why WOULD they fire you?

      The last thing to note, though, is that if it's a good company/manager they won't even try to make you work free overtime. But it sounds like they probably are not a good company.

      Take the job, leave at 5pm, and keep looking for a good job.

  36. Re:You must be a very confused & confusing man by tenman · · Score: 2

    You are correct. I do pay for fulfilment of all their contractual obligations. Your right... that is important.

  37. Re:You must be a very confused & confusing man by FeatureBug · · Score: 2

    I'd bet you if you changed to use "time-less" contracts, you'd get higher productivity from your contractors for the same pay. Your company's lawyer should be able to write a really watertight time-less contract.

    On the other hand, maybe you're a bear not a bull in the contract stakes, and would rather run away from trying any new contracts.

  38. Re:You must be a very confused & confusing man by tenman · · Score: 2

    Well, I like to think of my self more as a dolphin, or a club foot baby seal... regardless... If you follow Dilbert, I'm not supposed to make good choices like "time-less" contracts. Besides, it sounds like there isn't any time involved with those contracts. hugmmmph.

    No really... you beat me down. You win. I posted the comment because it was a slow comment day. I'm not even a manager, nor have I ever worked as or with a contractor. I realize that if you use I timeless contract you get better quality, but the comment generated more activity posted as it was... and don't you feel better after venting? I know I do...

    Have a nice day.

  39. Re:You must be a very confused & confusing man by FeatureBug · · Score: 2
    Welcome to Slashdot.

    1. The first rule of Slashdot is: Never feed trolls!

    2. The second rule of Slashdot is: Never feed trolls!

    3. IANAT (who's kidding whom?!).

    Happy New Year!

  40. New Zealand Ethics? by Anonymous Coward · · Score: 0

    I understand that in New Zealand there is a different work ethic -- more balanced toward family being of importance rather than job.

    Are there any New Zealanders that can shed some light on the attitudes of employees and employers?

    1. Re:New Zealand Ethics? by hdparm · · Score: 2
      Having worked in NZ for the last 6 years, I'll offer my insights.

      When I started, the economic climate was very different, as in other western economies. Attitudes of both sides reflected this in a way that everybody seemed more relaxed, which produced results avoiding too much pressure. At the time, I used to work as a salaried contractor (with hours/week specified in the contract) and overtime (if required) paid at 1:1. Company was pretty large for NZ conditions.

      Few of my friends at the time worked as salaried employees for few other companies, some NZ some overseas based, some small shops some multinationals and had very similar experiences in all of those places - they were able to get time off (for family matters) without much fuss almost always, there was reasonable amount of performance/results pressure and everybody seemed happy. Christmas parties used to be paid in full by companies and the most important part of it was to bring families along. Not all of those friends were in the IT, so I guess 6 years ago you could say working environment was more balanced, putting fair amount of importance on both sides.

      After 6 years and two more companies, one of which was small local IT shop and present one US based Fortune 500, I can tell you that lot has changed. Job and buck are all that matter, all around the place. More of the above mentioned friends are out of work than employed and those employed share the feeling - it's not a happy place that it used to be. Things became VERY different over the course of last 2.5 years and I don't have a feeling that I still work for the same company I started with. I'm lucky though to have a job that I really like and that I am good at, with deadlines being more an exemption than a rule (sysadmin) but I can see changes everywhere, from cashiers in supermarkets, whose average age used to be 16-17 with a smile and now it's 40+ and they seem to have forgotten what the smile is, to highly skilled software developers who are busting their buts on very tight schedules and earning peanuts. In short, employers are taking full advantage of the fact that we all have to feed our families and that job market is pretty much in a 'stand still' mode.

      Hope this answeres some of the questions. If not a secret, why do you ask? Perhaps planning to come over?

  41. Professional Boundries--- by Anonymous Coward · · Score: 0

    I worked at a large banking company and insurance company as a contractor in New York. And I had to explain to these people, many times, that I was only an effective programmer for about 40 hours a week (Actually, I am only effective for about 32 hours a week, but there was enough administrative tasks and other things to break it up, to call it 40.) And I told them this.
    I find if I work more than a certian amount of time, the bugs I write in the system move me backwards and not fowards. I would encourage you to try and figure out what is a reasonable amount of time for you to writes software, and just set boundries around this. I suppose I might of lost the contract over it, but it never came to that, and I always met my dead lines. I found working 40 hours a week, I met my deadlines more, and the software had fewer defects!

    (Check out Extream Programming)

  42. Salyry != no overtime pay by geekoid · · Score: 2

    Every state in the US has laws on what constitutes overtime, and who is exempt.

    I started looking into this a few weks ago, and was surprised to find out how many salary position I have had that I should have gotten overtime.

    so, Take the salary, and if it turns out your duties do NOT make you exempt from overtime, innocently ask where you OT is, when they say your salary, through the law at them. If the fire you, sue them. Odds are, they won't fire you because you'll raise a stink, and they will become liable for back OT for every employee who has EVER qualified.

    But first, read up on your states laws, and talk to a Lawyer who specialty is employment issue.

    To start a lot of staes have this info online.

    --
    The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
  43. Rip Off by Anonymous Coward · · Score: 0

    If you are getting paid a salary for contracted work, you can bet that who ever you work for is going to charge out for you on a hourly basis.
    This puts the extra money in their pocket, not yours. I would restrict myself to a 40 hour workweek, unles they offer something in return.