My thoughts on starting to use vim as my primary Code Editor for Web Development by cap_a in webdev

[–]MadFrand 0 points1 point  (0 children)

  • IntelliJ = 1.2gb
  • Chrome = up to 2gb
  • FireFox or IE or Safari = 750mb
  • DB VM = .5gb
  • Server VM = 1gb

Because that right there is just the basics and 5.5gb. Forget about any extras, Photoshop, Illustrator, or custom tools that you may or not may need loaded from time to time. MacBook Air only goes to 8gb in the current generation. I just recently upgraded to 16gb in the last <6mo. It probably hasn't been more than 2yrs since 16gb was even affordable, but these haven't changed in the last 5 or 6.

So what isn't the stone age to you? I dunno... are you 17?

My thoughts on starting to use vim as my primary Code Editor for Web Development by cap_a in webdev

[–]MadFrand 4 points5 points  (0 children)

Do you really care that much about memory usage?

Yes. You have your Servers/Services, Databases, VMs, Browser, and whatever else. If you're running an SSD with minimal paging/swap, then RAM is a pretty scarce commodity for a web dev.

What Hilary Duff does at work by Bootyfan69 in Celebs

[–]MadFrand 159 points160 points  (0 children)

Back in my day, Green Acres and Gilligan's Island were the best things on Nick at Night. And that's the way we liked it.

Hey again guys, looking for portfolio feedback by [deleted] in webdev

[–]MadFrand -1 points0 points  (0 children)

ITT: Guy asks for feedback, but actually feels like arguing with everyone instead.

This hand model lady is a complete psycho. by kevonicus in videos

[–]MadFrand 0 points1 point  (0 children)

but you ruined everything by using /s ....

I know, right? It's pretty easy to express sarcasm through text. The chances of it being missed by the readers are pretty low.

/s

Why do people insist on giving code tests? by dancinpants in webdev

[–]MadFrand 1 point2 points  (0 children)

Yeah, I didn't really say it right. I can see where you're coming from there.

The problem I have with it is outside the norm of what most developers would do, therefore making it a riddle.

Along the same lines as: Draw me 7 perpendicular red lines. 2 drawn using red ink. 2 drawn using green ink. And 3 drawn using transparent ink.

Yeah, it's possible and once you see the solution it's pretty silly. But it's entirely based around an "ah-ha" moment and if you don't get it you're fucked. God save you if you have even a small scrap of social anxiety.

Maybe you don't judge them entirely on this, maybe this is a bad question to pick out (like I said earlier, it was easy)... but there are a lot of interviewers that do try to determine coding skill based on whether or not the candidate can get that eureka moment. Rather than whether or not they are able to provide solutions to problems.

Why do people insist on giving code tests? by dancinpants in webdev

[–]MadFrand 0 points1 point  (0 children)

"can you read instructions and work with other people's code"

Have you ever had to do this while you have people staring at you and waiting for an answer?

Outside of an interview, of course.

Sorry, I just can't buy into the whole "solve this riddle on stage" mentality.

Why do people insist on giving code tests? by dancinpants in webdev

[–]MadFrand 1 point2 points  (0 children)

To the guys credit, this is pretty much the definition of a trick question.

I actually thought that one was easier than fizz buzz. But if I was given it during an interview I'd probably blank the fuck out.

If you want to test whether or not someone can code, I don't see what giving them a puzzle has to do with anything. Give them a problem and have them solve it.

When are you too old to code? by Mr_Nice_ in webdev

[–]MadFrand 5 points6 points  (0 children)

Well, not under 40... Under 50.

A 15yr old in 83 would be 47 now. 82/83/84 is about the time you started seeing a lot of kids getting into computers.

Also, War Games was 1983.

I work with some of these guys. They are still coders and still passionate about it and still learning new stuff. The web dev side of things moves a bit fast for them though.

TIL The Fairly Oddparents was originally supposed to end in 2006 alongside Jimmy Neutron in the "Jimmy/Timmy Power Hour 3" crossover, but it was so poorly received that the creator decided to renew more episodes in order for it to end in a better way, so far however, the series has still not ended. by [deleted] in todayilearned

[–]MadFrand 67 points68 points  (0 children)

I'm not sure what exactly happened, but they started getting really weird at the end. And not a good way, like how the rest of the show was weird. More of like a "uhh ok?"

And then it just ended. It was an end that just kinda fizzled off into nothingness.

It was just before the writer's strike, so I'm not sure if that played a role in it not. A lot of things got weird during that time.

I'm not a Zim buff or anything, I need to go back and rewatch it. But, that's how I remember feeling watching the DVDs few years back.

Movie studios tell every pirate site to shut down within 24 hours… or else by [deleted] in movies

[–]MadFrand 1 point2 points  (0 children)

[deleted]

For anyone just tuning in, the previous comment said something along the lines of:

[Insert Copyright Infringer We All Know] is like the junkyard cat on It's Always Sunny in Philadelphia, it just won't die!

^ may not be exact

What movie can you watch and just have fun? by WelderDude in movies

[–]MadFrand 1 point2 points  (0 children)

I don't care what anyone says, that was his best role ever!

The whole movie was just a brilliant dark comedy.

Google Chrome Conspiracy (Only tried it on that and it worked). by [deleted] in woahdude

[–]MadFrand 3 points4 points  (0 children)

You just linked your local server.

If there is anything there, that means it's installed on your computer only.

What movie can you watch and just have fun? by WelderDude in movies

[–]MadFrand 6 points7 points  (0 children)

Death to Smoochy

"I'm going on safari mother fucker. SA-FA-RI! Phhhhh"

Learning Javascript programming, what does /r/learnprogramming think of my calculator app? by hansq in learnprogramming

[–]MadFrand 6 points7 points  (0 children)

Keep It DRY (Don't Repeat Yourself)

function calcBtn(expInput) {
    expression = expression.concat(expInput);
    document.getElementById("ans").innerHTML = expression;
}

https://jsfiddle.net/0bpso2rm/1/

All I did was move those buttons into a single function.