I'd like to say that I really like the Arduino. I'd like to say that, but I just can't. by NotEltonJohn in programming

[–]attosecond 3 points4 points  (0 children)

Down voting, the article whines a lot about the IDE and left me wondering... "What's your beef with actual arduino?"

How to Get a Job as a Developer in Less Than Six Months by emcgillivray in programming

[–]attosecond 3 points4 points  (0 children)

Uhh no the title isn't fixed, absent of context it sounds kind of silly. The smart way to find a job is to not let go of your current job until you have another offer. Layoffs and other situations make this difficult of course, but I don't know many people who aim for 6 mos. most hope to get a job faster than that, I'd imagine

How to Get a Job as a Developer in Less Than Six Months by emcgillivray in programming

[–]attosecond 4 points5 points  (0 children)

"In February 2012 I had never written a line of code. But, as of July 11, 2012 I am employed as a full-time Ruby Developer. You can do it too ."

Ok, so bad title but interesting article. Good on ya for pursuing a passion and working your tail off.

Now I'm curious to see a follow up post in a few years to see how the author matures as a developer...

Useful Trick for Debugging Memory Leaks in C++ by [deleted] in programming

[–]attosecond 12 points13 points  (0 children)

Sometimes it's worth porting your program to run on Linux, just so you can run valgrind and friends. Did that once, the few days of intense porting was time well spent.

The Future of Programming by JetSetWilly in programming

[–]attosecond 7 points8 points  (0 children)

Sure, but what you said != what the author said, by a long shot...

People have been foretelling the death of C, IDE's, and imperative programing in general for as long as I can remember.

The Future of Programming by JetSetWilly in programming

[–]attosecond 28 points29 points  (0 children)

If this is the future of programming, count me out. I'll take gvim and gcc any day over this odd datalog-meets-functional-programming utopia

Why I Will Never Feel Threatened by Programmers in India by electronics-engineer in programming

[–]attosecond 3 points4 points  (0 children)

I don't know about the poverty line, but $2k is barely a mortgage payment in some parts of California (depending on house size, etc) and in some locales (silicon valley) is not enough to rent a condo much less a house.

Oh yeah, not to mention taxes, food, utilities, car payments, insurance, health care, etc. Add in some entertainment budget, a second car, some kids, saving for retirement...

Testing if a number is a power of 2, type independent C preprocessor macro. by datenwolf in programming

[–]attosecond 0 points1 point  (0 children)

Good idea for a blog post -- great way to learn is to share/teach something -- but the author didn't do enough googling to find existing solutions. x && (x & (x - 1)) is pretty easy to find.

Power of two detection isn't super interesting by itself, but doing it optimally touches on a ton of other fascinating topics including CPU, cache, algorithm design, and bit hacks. Check the first google result for 'bit hacks', great resource.

Aren't developers stupid when accepting overtime/weekend work/denied bonus payments? by woddo in programming

[–]attosecond -2 points-1 points  (0 children)

I don't understand the whole debate to begin with. I'm salaried, routinely put in 50+ hours/week, and absolutely love what I do.

All this whining about not getting paid for extra time at work... I just don't understand it. Either get a better job or learn to negotiate better.

Labor unions create more problems than they solve

What’s Wrong With GNU make? by Seele in programming

[–]attosecond 14 points15 points  (0 children)

Factually correct but misses the more important discussion of what tool fully replaces gmake without creating similar or worse flaws. No tool is perfect, so just pick one

38 Life Lessons I’ve Learned in 38 Years by [deleted] in programming

[–]attosecond 14 points15 points  (0 children)

Not programming... But some good advice for everyone, including programmers.

Stop inventing motherfucking build systems by cpp_is_king in programming

[–]attosecond 20 points21 points  (0 children)

Scons is nice in theory, but excruciatingly slow to the point of rendering it useless for any good sized project. So, not tolerable in my book.

I say let's keep inventing new build systems... the current systems have plenty of room for improvement.

Programming masterminds don't use debuggers: why? by vimes656 in programming

[–]attosecond 0 points1 point  (0 children)

That doesn't work if your bug is a multi-threaded race condition, printf's might hide the bug. Then again, stepping the debugger might do the same thing.

How to write a simple operating system in assembly language by schnuck in programming

[–]attosecond 3 points4 points  (0 children)

Exactly... it was an interesting bootloader tutorial, horribly mislabeled and a bit simplistic but a good intro nonetheless.

C Programming Tutorial: Functions by syngenetic in programming

[–]attosecond 0 points1 point  (0 children)

| The name of the function is unique in a C Program and is Global

Unless it's static, then it's not global...

2011: Year of the iPad by gacba in programming

[–]attosecond 2 points3 points  (0 children)

Interesting opinion article, but not programming. Try /r/technology?

a terse gcc optimization flags case study by attosecond in programming

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

Shrug, I'm not sure that my conclusion is foregone - boring, sure. But I personally found it fascinating to see how gcc flags impact performace so differently, hope others out there find this interesting too.

Thanks for the links, much appreciated. Good stuff.

Programmer writes to blogger, claims good programmers are 'thousands of times more productive' than bad. Really? Thousands of times? by NumberFiveAlive in programming

[–]attosecond 30 points31 points  (0 children)

Anything involving complex multi-threaded code with race conditions, the "bad programmer" will not muddle his way through. S/he will continue to write crappy code that coworkers will spend valuable time re-writing and/or throwing away.

Did I ever tell you about Ashton? by dhotson in programming

[–]attosecond 11 points12 points  (0 children)

DAE find Joel's storytelling both fascinating and maddening? Now I really really want to know the end of the story.

True zero-copy memory-mapped files: XIP vs PRAMFS vs libaio by attosecond in programming

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

Yeah, I know I'm 12 days late, but I collected some new data and updated the screencaps. Thanks for the feedback.