Profile_bird

Hey there! DmitryBaranovsk is using Twitter.

Twitter is a free service that lets you keep in touch with people through the exchange of quick, frequent answers to one simple question: What's happening? Join today to start receiving DmitryBaranovsk's tweets.

Already using Twitter
from your phone? Click here.

DmitryBaranovsk

  1. This is some nice plugin for gRaphaël: http://echonest.streamgraph... (via @RaphaelJS)
  2. @ed_davies Firefox 2 is not supported by Rapahël. It has some bug with text which I didn’t bother to workaround. But there is SVG support.
  3. "Apple has completed a technical analysis of PhoneGap and concluded that PhoneGap does not violate the T&C of its App Store" (via @dalmaer)
  4. @damiandawber Glad you like it :D
  5. Object is insanely handy sometimes.
  6. So, Object(B) converts B to appropriate object (Number, String, etc) in case of object it returns B, in case of null/undefined returns {} :)
  7. #jsquizz the answer: function addt(a) { (a = Object(a)).t = 5; return a; }
  8. @nambor What if parameter is string or boolean?
  9. @damiandawber very close. a bit shorter?
  10. #jsquizz Not many participants this time. Was it too complicated?
  11. @ricardobeat What if original value is string?
  12. @gabehollombe No worries. Looks like docs need to be updated.
  13. @gabehollombe You didn’t need those things anyway. c.attr("cx") was working since Raphaël 0.1 :)
  14. @gabehollombe Method .attr() w/o parameters returns whole attributes’ object in 1.2.3 (released today)
  15. return {t:5} will work, but we will loose original value. I want this: var b = addt(7); b.t // 5 b + 3 // 10
  16. #jsquizz: change the function so following code will also work addt(6).t //5 addt(null).t //5 addt().t //5 Make it as compact as you can
  17. #jsquizz function addt(a) { a.t = 5; return a; } addt({}).t //5
  18. Just want to say that GMail on the iPhone is awesome. That is all.
  19. @chasbeen Well, it is at least twice faster. :)
  20. Raphaël 1.2.2 is out. • IE performance with paths increased twice • animation runout fixed • many others bugs fixed (via @RaphaelJS)