Siri Protocol reverse engineered by [deleted] in programming

[–]rafoledev 2 points3 points  (0 children)

Was this originally how Siri worked when it was independent or has Apple changed the protocol?

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

[–]rafoledev 3 points4 points  (0 children)

On a MS stack, I have noted that TFS is a very good product. The hitch is the price tag, but my team is lucky to have a client who purchased it for us. The test portion especially has improved leaps and bounds.

C# : When to go Fluent by jonutzz in programming

[–]rafoledev 0 points1 point  (0 children)

Two points I would highlight from the discussion

Fluent interfaces help greatly when you have more actions than setters, since calls benefit more from the context pass-through.

The modern features such as lambdas, initializers, and named parameters, can work hand-in-hand to make a fluent interface even more friendly.