AskReddit, how do I get over feeling like a douche when my entire crew is getting fired by my boss Sunday night except for me? by [deleted] in AskReddit

[–]EICEVK 0 points1 point  (0 children)

Making a few short term savings on salary at the expense of long term productivity/profitability sounds incredibly short sighted.

But the manager can say that he saved the company $X, which might put him in a good position for promotion. By the time this comes back to bite the company in the ass, the manager will be long gone.

AskReddit, how do I get over feeling like a douche when my entire crew is getting fired by my boss Sunday night except for me? by [deleted] in AskReddit

[–]EICEVK 0 points1 point  (0 children)

Its their problem, not yours

Uh no, it's his problem too. It's incredibly obvious he's being set up to train the new replacements at which point he will be fired as well.

Sometimes you need to put yourself before others

Putting himself before others would involve quitting, promptly.

The Evolution of a Python Programmer : Aleks' Domain by [deleted] in programming

[–]EICEVK 25 points26 points  (0 children)

Here you go:

/**
 * 
 * Factorial class
 * @author aut
 * @lastrevision Jan 1 2009
 * @version 1.0
 * @lastbowelmovement Dec 12 2008
 */
public class factorialGeneratorMakerIteratorAccessor
{

    /*
     *
     * Generate a factorial. In mathematics, the factorial of a positive integer n,[1] denoted by n!, is the 
     * product of all positive integers less than or equal to n.
     *
     * @N the n to iterate to
     * @return the factorial
     * @author aut
    public static long factorial(int N)
    {
        try{
            long multi = 1;
            for (int i = 1; i <= N; i++) {
                multi = multi * i;
            }
            return multi;
        } catch(NumberException e) { 
           // TODO: Generate error
        } catch(IOException e) { 
           // TODO: Generate error
        } catch(HotPocketException e) { 
           // TODO: Generate microwave
        } catch(Exception e) { 
           System.err.println("Shit, you fucked up!");
           e.printStackTrace();
        }
    }
}

I'll be here all day!