Sunday, November 21, 2010

OSX Boonana Trojan

SecureMac has discovered a new trojan horse in the wild that affects Mac OS X, including Snow Leopard (OS X 10.6), the latest version of OS X. The trojan horse, trojan.osx.boonana.a, is spreading through social networking sites, including Facebook, disguised as a video. The trojan is currently appearing as a link in messages on social networking sites with the subject "Is this you in this video?" ... more

Saturday, November 13, 2010

Wave Protocol Summit Videos and Documents

Pamela Fox uploaded and posted the videos from the Wave Protocol Summit in a wave. I've put the links here for convenience.


Wave Summit Talks

Links to Youtube videos and slides.


Day 1:
Day 2:
Day 3:



Thursday, November 11, 2010

Movie looping in the iPad

None of the movie players currently available for the iPad (the iPad Videos app, VLC, CineXPlayer) will loop a movie continuously. A quick search suggested playing the movie in the browser using a bit of HTML5.
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
      <title>Parrot AR Drone</title>
    </script>

  </head>
  <body>
    
<video src="http://mydomain.com/mymovie.mp4" width="576" height="576" controls="controls" autoplay="autoplay" loop = "loop" qtnext1="goto0" controller="false" kioskmode="true"></video>

  </body>

</html>
Note that this won't work for flash movies.