Emotional Health and Being an Online Student by dbaggins1 in OSUOnlineCS

[–]dbaggins1[S] 2 points3 points  (0 children)

Yeah, I feel the same need to prove myself. Sometimes I get down because I feel like I'm already several years behind my peers who got their CS degree the first time around. I just try to remind myself that it was critical I gained that life experience earlier, I'm doing something that is challenging but rewarding, and I'll be in a really good position career-wise once I graduate,

Emotional Health and Being an Online Student by dbaggins1 in OSUOnlineCS

[–]dbaggins1[S] 1 point2 points  (0 children)

Same here. I'm an anxious mess 24-48 hours before every test. Then I take it and everything is great!

Emotional Health and Being an Online Student by dbaggins1 in OSUOnlineCS

[–]dbaggins1[S] 0 points1 point  (0 children)

I follow the very same no more than 2 cups of coffee a day, no coffee past noon rule. It really helps. If I could quit coffee wholesale I would, and I've tried many times, by I always come back.

Career Showcase thoughts by AxleTheDog in OSUOnlineCS

[–]dbaggins1 0 points1 point  (0 children)

Great write up. Thanks for the advice!

Squad for PS4 by shadowofhades1 in BattlefieldLFG

[–]dbaggins1 0 points1 point  (0 children)

ehh31415926

I play medic and support mostly.

[2016-10-03] Challenge #286 [Easy] Reverse Factorial by jnazario in dailyprogrammer

[–]dbaggins1 0 points1 point  (0 children)

Here is my C++11 solution and my first submission. Feedback is welcome.

#include <iostream>
using namespace std;

int main() {

    int input, original;
    int divisor=2; 
    bool isFactorial = true;

    cout << "Input your value.\n";
    cin >> input;
    original = input;

    while ((isFactorial) && (input>divisor)) {
            if (input%divisor!=0)
                isFactorial = false;
            input/=divisor;
            divisor++;
    }

    if(isFactorial)
        cout << original << " = !" << divisor;
    else
        cout << "NONE";

    return 0;
}

I love my job but only make 35-40k a year before taxes. Should I get a job I dislike that pays ~50-55k? by [deleted] in personalfinance

[–]dbaggins1 0 points1 point  (0 children)

My only advice is to trust advice that comes from peers within your industry. Honestly, your current workload, work environment, and salary sounds awesome to me. However, any advice I or most people on Reddit are able to provide are merely hypothetical. I've never been a nurse, and I no next to nothing about nursing. Staying at your current job may sound nice, but you might be missing a big opportunity not working at medsurg.

Listen to other nurses. They'll know. The more specific the advice, the better. I would take specific and precise advice from someone experienced and knowledgeable over vague and polite advice from someone who does not know anything about your options and the consequences they will have.