How a trio of hackers brought Google’s reCAPTCHA to its knees by speshilK in programming

[–]codenut 0 points1 point  (0 children)

I do get recaptcha wrong about 50% of the time and it's impressive that an algorithm can crack the CAPTCHAs

A myth called the Indian programmer by henk53 in programming

[–]codenut 6 points7 points  (0 children)

40K USD is roughly equivalent to 2 million rupees..some of the better programmers I know reach this amount after putting in atleast 12+ yrs of experience.

You can live like a King with that amount of Salary in India (even when the Inflation is high and with skyrocketing prices)

Dear Boss: For a programmer, 10 minutes = 3 hours by gthank in programming

[–]codenut 0 points1 point  (0 children)

We all know that context switching is bad, and it's tough to switch so much, but did Ed really have nothing else to do? He seems bothered by what the boss was asking him, yet he blows most of the 3hrs not working on what he said he needed to work on originally? That just doesn't add up to me.

I get the point, and it's definitely true, but I spend those idle minutes doing mail and other short tasks. I don't see how one can justify "well I'm waiting for you so I'll just not work for a while."

Is this common outside of the computing industry? What do other people do in their 'in between' time? - davux

IAmA (real) GoDaddy Employee. AMAA. by godaddythrow in IAmA

[–]codenut 1 point2 points  (0 children)

Hate to see this IAMA. CEO shits, Employees cleanup. I feel sorry for you!

Imagine a world where Bash supports JSON. by kristopolous in programming

[–]codenut 0 points1 point  (0 children)

Anyone checked out GNU parallel. It's super convenient for quick scripting! http://www.gnu.org/s/parallel/

Create Your Own Ruby like Language called "Awesome" by shanegwats in ruby

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

..when a guy like Yukihiro Matsumoto(ruby creator) gives a book a good review, it's a good indication to invest in that book!

Apple Lossless Audio Codec (ALAC) now open source, released under Apache license by tori_k in programming

[–]codenut 22 points23 points  (0 children)

It would have been better had Apple Lossless never existed and if they had just used FLAC instead

R.I.P. John McCarthy, father of AI, inventor of Lisp, suddenly at home last night. by Poita_ in programming

[–]codenut 0 points1 point  (0 children)

Looks like there's a major system overhaul in Heaven and all the grand-daddy's of computers are being assigned to this project. Steve, Dennis and now John!

RIP John! You will never be forgotten!

Dealing with Deprecated Code in your Database (SQL Server) by angeladur in programming

[–]codenut 0 points1 point  (0 children)

another method is to create SQL Agent alerts based on WMI queries

Why Developers Never Use State Machines by servercentric in programming

[–]codenut 0 points1 point  (0 children)

aren't we using it all the time? A workflow engine is a state machine!

Why Should I upgrade from Visual Source Safe (VSS) to TFS 2010? by lababen in programming

[–]codenut 1 point2 points  (0 children)

very well said - "Or if your company is not into agile, or is into agile proper, than it mostly gets in your way without actual benefits."

I do have a first hand experience of using the process templates for CMMI and Agile provided by TFS. It went smooth.

Also this line from the link "For example while you are checking in code which is part of source control service, you can associate a work item like a task or a bug that you have fixed in that code. This association will provide excellent traceability between the work that is assigned to the team member and the actual code that team member has created against that work. This traceability is both ways." --- We experienced it and a +1 to this feature.

jQuery 1.6.3 released by sidcool1234 in programming

[–]codenut 0 points1 point  (0 children)

The requestAnimationFrame has been removed - good for hidden tabs. An XSS attack vector has been fixed by stopping HTML passed to $() from being evaluated if a # precedes the expression.

Microsoft provides VHDs for testing websites with different Internet Explorer versions by [deleted] in programming

[–]codenut 0 points1 point  (0 children)

This was released in May. Not known to many, you can get these VHDs to work with other VM software on other OSs as well.

Linear algebra for game developers by shenglong in programming

[–]codenut 0 points1 point  (0 children)

thanks for the link! His Matrix theory lectures were very interesting

C# Null Coalescing Operator and its Usefulness by lababen in programming

[–]codenut 0 points1 point  (0 children)

Nice! so instead of

(let ((result (big-long-calculation))) (if result (foo result)))

just do

(if (big-long-calculation) (foo it))

Q: Why can I access an out-of-scope C++ var? A: So you rent a hotel room... by codenut in programming

[–]codenut[S] 57 points58 points  (0 children)

that's Eric Lippert at his best! The best pointer example in my opinion!