Visualizing YouTube with my home-made JavaScript graph drawing library
11–20 of 30 posts
Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#12I can see the YouTube graph being useful for discovering artists and songs. I wonder if you could do something similar for Pandora, or LinkedIn? Generating playlists? Visualizing and ranking recipes?
Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#13Goes to show that YouTube could really work on their relevance scoring. Does anyone know what's taken into account? It'd be sensible to relate to stuff that's mentioned in the comments, but then again, this takes control over scope away from the author.
Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#14Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#15Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#16The source code for the library is here: https://github.com/anvaka/VivaGraphJS The site itself - you can paste URLs from YouTube to visualize particular video :)
Cool library, too. :)
Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#17It looks like you're using Raphael. How has the performance been? Are you having to limit the number of nodes to prevent performance degradation? Also, do you happen to have any tips for improving SVG performance? I can see the YouTube graph being useful for discovering artists and songs. I wonder if you could do something similar for Pandora, or LinkedIn? Generating playlists? Visualizing and ranking recipes?
Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#18Really nice work. The drag and drop functionality makes it really fun. However, I'm a little unsure as to the usefulness of the app? I wrote a 3D run-time object visualiser for object-orientated code whilst at Uni ("Visualising Memory Graphs in Java3D"). It was interesting, and kind of useful for debugging, really good for an overview of your running program's object structure, but not useful enough to be considered…
I'm looking forward to reading it tonight. I've been experimenting with a module that profiles Django applications and reports on slow or unused methods. Part of the challenge has been coming up with a decent way of presenting the information, and I've been playing with basic graphing APIs.
Has anyone heard of tools that do this? Does it seem like a decent idea?
Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#19Re: Visualizing YouTube with my home-made JavaScript graph drawing library
#20Really nice work. The drag and drop functionality makes it really fun. However, I'm a little unsure as to the usefulness of the app? I wrote a 3D run-time object visualiser for object-orientated code whilst at Uni ("Visualising Memory Graphs in Java3D"). It was interesting, and kind of useful for debugging, really good for an overview of your running program's object structure, but not useful enough to be considered…
Is this the paper: http://www.cs.ox.ac.uk/files/2217/2008_Bradbury%20D.pdf ? I'm looking forward to reading it tonight. I've been experimenting with a module that profiles Django applications and reports on slow or unused methods. Part of the challenge has been coming up with a decent way of presenting the information, and I've been playing with basic graphing APIs. Has anyone heard of tools that do this? Does it see…
Regarding your django profiler, I would take a look at some current profilers to see what the standard is. Am on my phone at the moment so don't have much info at hand, but visual studio does it out of the box, and redgate have a decent tool (these are .Net geared - but the principle is the same). Am sure others exist.
I'm not sure how well 3D memory graphs translate to speed profiling visualization, but I hope you find the paper interesting nevertheless.