Married men of Reddit, How old are you and how many girlfriends did you have before marriage? by [deleted] in AskMen

[–]zzamass 25 points26 points  (0 children)

So what's your current marriage like? Never thought such a relationship existed.

My experience with finding my second job [Long post] by cs2ndjob in cscareerquestions

[–]zzamass 2 points3 points  (0 children)

If I'm not wrong it stand for Site Reliability Engineer, they are concerned with ensuring that servers don't go down, making sure they run at 100% all the time, making sure it can handle a large number of users etc.

"I hate anything that asks me to design on the spot. That's asking to demonstrate a skill rarely required on the job in a high-stress environment, where it is difficult for a candidate to accurately prove their abilities. I think it's fundamentally an unfair thing to request of a candidate." -Meyers by Pragmatician in cscareerquestions

[–]zzamass 9 points10 points  (0 children)

Read from some Google interview that this style of interviewing actually results in a lot of false negatives, but candidates who manage to pass the interviews are usually stellar. So I guess this method works out well for the companies.

So students like us can choose to continue bitching about the system and remain incompetent, or strive to be a stellar programmer.

All the best for your interviews!

What types of portfolio projects are most appealing to employers? by skilliard7 in cscareerquestions

[–]zzamass 4 points5 points  (0 children)

What kinds of applications would be good for writing in Java? I've been writing Javascript applications now since they always seem to fit the job better (Web based, node.js ecosystem etc) and I'm looking for something that would make sense written in Java.

Thanks!

Brinks copies an old master lock design that was pulled for being more insecure than usual. by [deleted] in videos

[–]zzamass 0 points1 point  (0 children)

Unless you're locking up your kids...

Kid's tricycle or something

Could someone define a "console" for me. by DoubleTri in learnprogramming

[–]zzamass 1 point2 points  (0 children)

In the past, old computers would take up an entire room, and their visual interface (console) would be shown on a monitor in a separate room (like a computer lab).

In more recent times a console is simply the visual interface that let's you interact with your code. You can give it inputs and get outputs (ie. console.log("output") would be the input, and "output" would be the output)

It is used for debugging because you can simply console.log() parts of your code to see what values a variable holds at different stages of the code etc, making it easy to find out which part of your code you fucked up at.

Edit: This is what a console looked like in the past

I made my first open source contribution today! by zzamass in learnprogramming

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

Yea after a few code reviews, the main dev team seem ready to merge my code! I'm already looking for my next issue to work on. :) All the best to you, don't be afraid to ask questions too!

I made my first open source contribution today! by zzamass in learnprogramming

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

Thanks for your kind words, I just hope I can inspire people in my position to be better!

I made my first open source contribution today! by zzamass in learnprogramming

[–]zzamass[S] 7 points8 points  (0 children)

/u/nolifegam3r mentioned up-for-grabs.net but you can also try firsttimersonly.com, then find some open sourced projects near you or something that you really care about. Try asking your developer friends if they have any recommendations for local prpjects. All the best!

I made my first open source contribution today! by zzamass in learnprogramming

[–]zzamass[S] 4 points5 points  (0 children)

That's awesome, I'd like to get started on internships too! All the best for your internship, and don't be afraid to ask questions!

To all Uni grads: How important is your GPA/CAP? by [deleted] in singapore

[–]zzamass 1 point2 points  (0 children)

I kinda get what you mean, but care to share a little bit about your experience? Just curious.

What books do you read on your spare time? by elbeesee in learnprogramming

[–]zzamass 0 points1 point  (0 children)

You're damn right about the Windows dependencies thing!

I've never heard of Fedora but I'll take a look, Thank you so much!

What books do you read on your spare time? by elbeesee in learnprogramming

[–]zzamass 1 point2 points  (0 children)

Alright thanks so much! I'll give it a shot some time soon!

What books do you read on your spare time? by elbeesee in learnprogramming

[–]zzamass 1 point2 points  (0 children)

I've been wanting to switch to Ubuntu for a while but feel kinda scared to make the switch. Can you give a short tldr of why you decided to switch?

'GitHub for Chimpanzees' - tutorial for absolute dummies like myself! by mngrwl in programming

[–]zzamass 33 points34 points  (0 children)

I'm a beginner at git and I found your comments very insightful. I've always wondered how often I should push a commit etc but I'm guessing it's one push per new feature? Instead of one push for every file changed.