Forgot your password?

typodupeerror

Comment: Re:Alternatives? (Score 1) 434

by Idiot with a gun (#31320528) Attached to: Google Go Capturing Developer Interest
My coworker and I got in a big argument about Scala earlier.

I hate it when people call it functional. I'd far prefer multi-paradigm, and here's why.

No proper Tail Call Optimization. In simple cases the compiler inlines your function as a loop, or it uses a trampoline function. This can make make writing functional code (which has no loops generally) inefficient (and ugly). That's what you get for sticking on the JVM I guess.

Introduction of non-pure functions through inclusion of systems library. The argument for Scala is that you have access to any Java library. The issue is that none of these libraries are pure functions, so you ruin the pure nature of your program.

Does this make Scala bad? No. But I think to call it a functional language is to be disingenuous. Is it handy having functional constructs (yay partial application and maps!) in an OOP language? Heck yes. But it's not really designed for pure functional programming, so I really wouldn't call it functional.

Comment: Re:What is Google's interest? Data Tracking? (Score 2, Interesting) 363

by Idiot with a gun (#31089660) Attached to: Google's Experimental Fiber Network
Plus, many ISPs are trying to strip ads from pages, and insert their own in the fly. Comcast even redirects not found DNS queries to their own ad-covered site. It's in Google's interest to ensure you receive the pages as they were sent (with their ads instead of Comcast's).

Personally, I want it (Google's ads are less offensive, and 1Gbps? Yes please).

First Rule of History: History doesn't repeat itself -- historians merely repeat each other.

Working...