[Orgmode] Re: video of the org-mode git repository

2010-06-14 Thread Wes Hardaker
 On Thu, 20 May 2010 17:20:34 +0200, Carsten Dominik 
 carsten.domi...@gmail.com said:

CD Awesome!  Even though I look like a hyperactive kid with a laser gun :-)

Translation: You're overworked and under-paid!
-- 
Wes Hardaker 
My Pictures:  http://capturedonearth.com/
My Thoughts:  http://pontifications.hardakers.net/

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: video of the org-mode git repository

2010-05-20 Thread Richard Riley
Carsten Dominik carsten.domi...@gmail.com writes:

 On May 20, 2010, at 8:05 AM, Eric Schulte wrote:

 So this has been done before, but I recently stumbled across the  
 gource
 (http://code.google.com/p/gource/) tool for visualization of git  
 commit
 histories, and I applied it to Org-mode's git repository.

 See the results at http://vimeo.com/11889681

 Awesome!  Even though I look like a hyperactive kid with a laser gun :-)



Really amazing!

BTW, you reminded me of the main character from Williams' 80s arcade
game Robotron!

http://www.youtube.com/watch?v=TPIbQnPA4gYfeature=related


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: video of the org-mode git repository

2010-05-20 Thread Dan Davison
Richard Riley rile...@gmail.com writes:

 Carsten Dominik carsten.domi...@gmail.com writes:

 On May 20, 2010, at 8:05 AM, Eric Schulte wrote:

 So this has been done before, but I recently stumbled across the  
 gource
 (http://code.google.com/p/gource/) tool for visualization of git  
 commit
 histories, and I applied it to Org-mode's git repository.

 See the results at http://vimeo.com/11889681

 Awesome!  Even though I look like a hyperactive kid with a laser gun :-)



 Really amazing!

Yeah, that is strangely fun to watch.

Eric -- any tips on building gource and the command line used to produce
the video? Did you do it on OS X or linux? I got gource to build on
ubuntu after installing a bunch of graphics-related packages, and I
found a possible-looking command line at

http://michaeldehaan.net/2010/01/15/source-code-visualization-with-gource/

using that I get

gource -s 0.03 --auto-skip-seconds 0.1 --file-idle-time 500 --max-files 500 
--multi-sampling -1280x720 --stop-at-end   --output-ppm-stream - | ffmpeg -y -b 
3000K -r 24 -f image2pipe -vcodec ppm -i - -vcodec mpeg4 gource.mp4
gource: SDL initialization failed - Couldn't find matching GLX visual

which makes me worry that it's just not going to happen on my netbook's
graphics card. But am speaking from position of almost complete
ignorance.

Dan


 BTW, you reminded me of the main character from Williams' 80s arcade
 game Robotron!

 http://www.youtube.com/watch?v=TPIbQnPA4gYfeature=related


 ___
 Emacs-orgmode mailing list
 Please use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: video of the org-mode git repository

2010-05-20 Thread Sivaram Neelakantan
On Thu, May 20 2010,Carsten Dominik wrote:


[snipped 8 lines]

 See the results at http://vimeo.com/11889681

 Awesome!  Even though I look like a hyperactive kid with a laser gun :-)


I was going to say it reminded me of star wars and you hopping from
one cluster to another. :-)

[snipped 11 lines]



 sivaram
 -- 


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: video of the org-mode git repository

2010-05-20 Thread Sebastian Rose
Dan Davison davi...@stats.ox.ac.uk writes:
 Richard Riley rile...@gmail.com writes:

 Carsten Dominik carsten.domi...@gmail.com writes:

 On May 20, 2010, at 8:05 AM, Eric Schulte wrote:

 So this has been done before, but I recently stumbled across the  
 gource
 (http://code.google.com/p/gource/) tool for visualization of git  
 commit
 histories, and I applied it to Org-mode's git repository.

 See the results at http://vimeo.com/11889681


WOW! That's so cool!



  Sebastian

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: video of the org-mode git repository

2010-05-20 Thread Eric Schulte
Dan Davison davi...@stats.ox.ac.uk writes:

[...]
 Eric -- any tips on building gource and the command line used to produce
 the video? Did you do it on OS X or linux?

Hi Dan,

I found it really easy to get running on Linux (Ubuntu 10.04), luckily
all of the dependencies in the INSTALL file of the tarball can be
coppied and pasted into a single apt-get command to resolve all package
dependencies.

They offer instructions for generating a video at the following page
http://code.google.com/p/gource/wiki/Videos

I used the following command
: ./gource -a 1 -s 0.25 --highlight-all-users --hide filenames -640x480 
--output-framerate 30 --disable-progress --stop-at-end --output-ppm-stream - 
~/src/org |ffmpeg -y -b 2000k -r 30 -f image2pipe -vcodec ppm -i - 
~/Desktop/org-git-history.mp4

Cheers -- Eric

 I got gource to build on ubuntu after installing a bunch of
 graphics-related packages, and I found a possible-looking command line
 at

 http://michaeldehaan.net/2010/01/15/source-code-visualization-with-gource/

 using that I get

 gource -s 0.03 --auto-skip-seconds 0.1 --file-idle-time 500 --max-files 500 
 --multi-sampling -1280x720 --stop-at-end   --output-ppm-stream - | ffmpeg -y 
 -b 3000K -r 24 -f image2pipe -vcodec ppm -i - -vcodec mpeg4 gource.mp4
 gource: SDL initialization failed - Couldn't find matching GLX visual

 which makes me worry that it's just not going to happen on my netbook's
 graphics card. But am speaking from position of almost complete
 ignorance.

 Dan


 BTW, you reminded me of the main character from Williams' 80s arcade
 game Robotron!

 http://www.youtube.com/watch?v=TPIbQnPA4gYfeature=related


 ___
 Emacs-orgmode mailing list
 Please use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode