Re: intersted in 'Put alpha-transparent pngs onto cam image'



ankur, i can not accept you as a summer of code student. the decision of
who will be accepted, is done by the admins of the soc project at gnome.

of course you are totally welcome to add your patches to cheese, ok?

daniel

On Sat, 2008-04-19 at 04:24 -0400, Ankur Modi wrote:
> I have written a code which is for loading image from some directory
> and adding alpha value to it.I couldn't write the complete working
> code as I am having exams.It is just the sample code.So I will write
> the complete working code during the 'coding period' of the project.
> Here is the sample code. I have used clutter library.
> 
> #include <clutter/clutter.h>
> #include <stdlib.h>
> 
> ClutterActor *stage = NULL;
> 
> /* For showing the filename: */
> ClutterActor *label_filename = NULL;
> ClutterBehaviour *behaviour_opacity = NULL;
> 
>  struct Item
> {
>   ClutterActor *actor;
>   gchar* filepath;
> }
> Item;
> 
> void load_image(const gchar* directory_path)
> {
>   
>   /* Discover the images in the directory: */
>   GError *error = NULL;
>   GDir* dir = g_dir_open (directory_path, 0, &error);
>   if (error)
>   {
>     g_warning("g_dir_open() failed: %s\n", error->message);
>     g_clear_error(&error);
>     return;
>   }
> 
>   const gchar* filename = NULL;
>   while ( (filename = g_dir_read_name(dir)) )
>   {
>     gchar* path = g_build_filename (directory_path, filename, NULL);
> 
>     /* Try to load the file as an image: */
>     GdkPixbuf* pixbuf = gdk_pixbuf_new_from_file(path, NULL);
>     if(pixbuf)
>     {
>       Item* item = g_new0(Item, 1);
> 
>       /* Add an actor to show this image: */
>       item->actor = clutter_texture_new_from_pixbuf (pixbuf);
>       item->filepath = g_strdup(path);
>       
>     }
> 
>     if(pixbuf)
>       g_object_unref (pixbuf);
> 
>     g_free (path);
>   }
> }
>   
> int main(int argc, char *argv[])
> {
>   ClutterColor stage_color = { 0xB0, 0xB0, 0xB0, 0xff }; 
> 
>   clutter_init (&argc, &argv);
> 
>   /* Get the stage and set its size and color: */
>   stage = clutter_stage_get_default ();
>   clutter_actor_set_size (stage, 800, 600);
>   clutter_stage_set_color (CLUTTER_STAGE (stage), &stage_color);
> 
>   /* Create and add a label actor, hidden at first: */
>   label_filename = clutter_label_new ();
>   ClutterColor label_color = { 0x60, 0x60, 0x90, 0xff }; /* blueish */
>   clutter_label_set_color (CLUTTER_LABEL (label_filename),
> &label_color);
>   clutter_label_set_font_name (CLUTTER_LABEL (label_filename), "Sans
> 24");
>   clutter_actor_set_position (label_filename, 10, 10);
>   clutter_actor_set_opacity (label_filename, 0);
>   clutter_container_add_actor (CLUTTER_CONTAINER (stage),
> label_filename);
>   clutter_actor_show (label_filename);
> 
>    /* Show the stage: */
>   clutter_actor_show (stage);
>   
>   load_image ("./images/");
>   ClutterActor *actor = item->actor;
>   clutter_container_add_actor (CLUTTER_CONTAINER (stage), actor);
>   clutter_behaviour_opacity_new (alpha, 0, 255);
>   clutter_behaviour_apply (behaviour_opacity, label_filename);
> 
>     /* Start the main loop, so we can respond to events: */
>   clutter_main ();
> 
>   return EXIT_SUCCESS;
> 
> }
> 
> 
> On Thu, Apr 17, 2008 at 12:31 PM, daniel g. siegel
> <dgsiegel gmail com> wrote:
>         ankur, please do not feel offended, but i think it is much
>         better to
>         actually write some code, have something working and then talk
>         about
>         that feature. we did not reject any patches yet, and we wont
>         do that in
>         the future.
>         
>         so happy hacking? ;)
>         
>         daniel
>         
>         
>         On Thu, 2008-04-17 at 21:31 +0530, Ankur Modi wrote:
>         >
>         > I am thinking there will be two kinds of frames in the 'Put
>         > alpha-transparent pngs onto cam image'.
>         >
>         > One kind will be of fixed frames(in which frame is fixed and
>         photo
>         > will be in the back of the frame.In this users have to take
>         pain to
>         > set the correct position of their photograph.e.g mokey
>         frames,jail
>         > frames ,some boundary frames etc).
>         >
>         > Other kind will be of moving frames in which photo is fixed
>         and users
>         > can move the frame according to their wish.e.g
>         beard,moustaches
>         > etc.and they will be of different kinds and also users can
>         change the
>         > size of beard,moustaches etc. according to the size of the
>         human
>         > face(this can be implemented using scaling technique).
>         >
>         > i would like to see your comments:)
>         >
>         > On 4/13/08, daniel g. siegel <dgsiegel gmail com> wrote:
>         >         it would be unfair to tell you something about the
>         ranking, im
>         >         sorry
>         >
>         >         On Sun, 2008-04-13 at 20:09 +0530, Ankur Modi wrote:
>         >         > should I take it as a positive response? :)
>         >         >
>         >         > On 4/13/08, daniel g. siegel <dgsiegel gmail com>
>         wrote:
>         >         >         it seems like we dont have to know much
>         more about
>         >         your
>         >         >         application ;)
>         >         >
>         >         >         daniel
>         >         >
>         >         >         On Sun, 2008-04-13 at 19:20 +0530, Ankur
>         Modi wrote:
>         >         >         > I had posted a comment ,i would love to
>         see your
>         >         comments.:)
>         >         >         >
>         >         >         > On 3/26/08, daniel g. siegel
>         <dgsiegel gmail com>
>         >         wrote:
>         >         >         >         On Mi, 2008-03-26 at 20:59
>         +0530, Ankur
>         >         Modi wrote:
>         >         >         >         > ya i want to work for gsoc.and
>         i want to
>         >         work on
>         >         >         two
>         >         >         >         ideas.one is
>         >         >         >         > hackergotchi creation and
>         other is 'put
>         >         >         alpha-transparent
>         >         >         >         pngs onto
>         >         >         >         > cam image'.
>         >         >         >         > i think these two ideas need
>         2-3 months
>         >         of work.
>         >         >         >
>         >         >         >         ok. please write your
>         application for that
>         >         and send
>         >         >         it in. the
>         >         >         >         gnome
>         >         >         >         mentors will then review it and
>         give you
>         >         further
>         >         >         advices about
>         >         >         >         your
>         >         >         >         application.
>         >         >         >
>         >         >         >         thanks!
>         >         >         >
>         >         >         >         daniel
>         >         >         >
>         >         >         >         >
>         >         >         >         >
>         >         >         >         > On 3/26/08, daniel g. siegel
>         >         <dgsiegel gmail com>
>         >         >         wrote:
>         >         >         >         >         hey ankur!
>         >         >         >         >
>         >         >         >         >
>         >         >         >         >         On Mi, 2008-03-26 at
>         11:04
>         >         +0530, Ankur
>         >         >         Modi wrote:
>         >         >         >         >         > i want to propose an
>         idea for
>         >         >         hakergotchi
>         >         >         >         creation.i have
>         >         >         >         >         two
>         >         >         >         >         > questions.
>         >         >         >         >         >
>         >         >         >         >         > 1.is it a good idea
>         to work
>         >         on?
>         >         >         >         >
>         >         >         >         >         sure it is a good
>         idea. but if
>         >         you want to
>         >         >         propose
>         >         >         >         it for
>         >         >         >         >         gsoc, you will
>         >         >         >         >         have to extend it, so
>         that your
>         >         task needs
>         >         >         2-3months
>         >         >         >         of work
>         >         >         >         >
>         >         >         >         >         > 2.if yes,thn wt is
>         the
>         >         procedure to add
>         >         >         ths idea
>         >         >         >         on cheese
>         >         >         >         >         idealist?
>         >         >         >         >
>         >         >         >         >         isnt it there already?
>         if you
>         >         want to put
>         >         >         an idea on
>         >         >         >         that
>         >         >         >         >         page, just do
>         >         >         >         >         it ;)
>         >         >         >         >
>         >         >         >         >         daniel
>         >         >         >         >
>         >         >         >         >         >
>         >         >         >         >         >
>         >         >         >         >         >
>         >         >         >         >         >
>         >         >         >         >         > On 3/26/08, daniel
>         g. siegel
>         >         >         <dgsiegel gmail com>
>         >         >         >         wrote:
>         >         >         >         >         >         i am not
>         here to rate
>         >         your
>         >         >         proposals ;)
>         >         >         >         but i can
>         >         >         >         >         give you
>         >         >         >         >         >         advices, if
>         >         >         >         >         >         you have
>         questions
>         >         regarding if
>         >         >         something
>         >         >         >         is a good
>         >         >         >         >         task or
>         >         >         >         >         >         not.
>         >         >         >         >         >
>         >         >         >         >         >         please add
>         your
>         >         proposal (if you
>         >         >         have one)
>         >         >         >         to gsoc
>         >         >         >         >         (the google
>         >         >         >         >         >         pages)
>         >         >         >         >         >         and we will
>         go from
>         >         there.
>         >         >         >         >         >
>         >         >         >         >         >         thanks!
>         >         >         >         >         >
>         >         >         >         >         >         daniel
>         >         >         >         >         >
>         >         >         >         >         >         On Di,
>         2008-03-25 at
>         >         12:41
>         >         >         -0400, Ankur
>         >         >         >         Modi wrote:
>         >         >         >         >         >         > in ur
>         previous mail
>         >         you said
>         >         >         that just
>         >         >         >         doing
>         >         >         >         >         >
>         alpha-transparent png
>         >         >         >         >         >         > could be
>         too
>         >         >         >         >         >         > little for
>         3 months
>         >         >         developing.so i want
>         >         >         >         to do
>         >         >         >         >         'hackergotchi
>         >         >         >         >         >         creation'
>         >         >         >         >         >         > also .it
>         can be
>         >         implemented in
>         >         >         following
>         >         >         >         steps:-
>         >         >         >         >         >         >
>         >         >         >         >         >         > 1.cut out
>         the
>         >         required part of
>         >         >         a image
>         >         >         >         by using
>         >         >         >         >         'Select
>         >         >         >         >         >         contiguous
>         >         >         >         >         >         > regions'
>         and 'Select
>         >         >         hand-drawn
>         >         >         >         regions'.
>         >         >         >         >         >         >  'select
>         contiguous
>         >         >         region'  can be
>         >         >         >         implemented by
>         >         >         >         >         selecting
>         >         >         >         >         >         areas
>         >         >         >         >         >         > contiguous
>         to the
>         >         cursor,
>         >         >         based on
>         >         >         >         color. From the
>         >         >         >         >         current
>         >         >         >         >         >         pixel, each
>         >         >         >         >         >         > adjacent
>         pixel
>         >         is checked.
>         >         >         >         >         >         > 'select
>         hand-drawn
>         >         region' can
>         >         >         be
>         >         >         >         implemented by
>         >         >         >         >         pressing
>         >         >         >         >         >         the Select
>         >         >         >         >         >         > Mouse
>         Button anchors
>         >         a point,
>         >         >         from which
>         >         >         >         a line is
>         >         >         >         >         drawn
>         >         >         >         >         >         following
>         the
>         >         >         >         >         >         > cursor.
>         Releasing
>         >         the cursor
>         >         >         finishes
>         >         >         >         the
>         >         >         >         >         selection by
>         >         >         >         >         >         drawing a
>         >         >         >         >         >         > straight
>         line from
>         >         the current
>         >         >         cursor
>         >         >         >         location to
>         >         >         >         >         the
>         >         >         >         >         >         starting
>         point.
>         >         >         >         >         >         > This
>         allows to
>         >         select
>         >         >         virtually any
>         >         >         >         shape,
>         >         >         >         >         including complex
>         >         >         >         >         >         shapes,
>         >         >         >         >         >         > figure
>         eights, or
>         >         anything
>         >         >         else.
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         2.feathering
>         >         operation is
>         >         >         performed  by
>         >         >         >         gaussian
>         >         >         >         >         blur to
>         >         >         >         >         >         remove sharp
>         >         >         >         >         >         > edges and
>         we get
>         >         anti-aliased
>         >         >         edge.
>         >         >         >         >         >         >
>         >         >         >         >         >         > 3.and
>         finally we can
>         >         apply
>         >         >         shadow
>         >         >         >         algorithms using
>         >         >         >         >         openGL to
>         >         >         >         >         >         get the
>         >         >         >         >         >         >
>         hackergotchi.
>         >         >         >         >         >         >
>         >         >         >         >         >         > M i on a
>         right path?
>         >         >         >         >         >         > On Mon,
>         Mar 24, 2008
>         >         at 12:44
>         >         >         PM, daniel
>         >         >         >         g. siegel
>         >         >         >         >         >         >
>         <dgsiegel gmail com>
>         >         wrote:
>         >         >         >         >         >         >
>         please also
>         >         reply to
>         >         >         the cheese
>         >         >         >         list.
>         >         >         >         >         except you
>         >         >         >         >         >         want to talk
>         >         >         >         >         >         >         to
>         me
>         >         >         >         >         >         >
>         personally,
>         >         but then
>         >         >         please do
>         >         >         >         not just
>         >         >         >         >         click
>         >         >         >         >         >         "reply".
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         you can find
>         >         the
>         >         >         cheese ideas
>         >         >         >         here:
>         >         >         >         >         >         >
>         >         >         >
>         http://live.gnome.org/Cheese/Ideas
>         >         >         >         >         >         >
>         >         >         >         >         >         >         it
>         would be
>         >         your task
>         >         >         do see
>         >         >         >         what has to
>         >         >         >         >         be done and
>         >         >         >         >         >         how you
>         >         >         >         >         >         >
>         could
>         >         >         >         >         >         >
>         accomplish
>         >         it.
>         >         >         application
>         >         >         >         writing ;)
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         daniel
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         >         >         >         >         >         >         On
>         Mo,
>         >         2008-03-24 at
>         >         >         21:06
>         >         >         >         +0530, Ankur
>         >         >         >         >         Modi wrote:
>         >         >         >         >         >         >         >
>          i have
>         >         fiddled with
>         >         >         OpenGL
>         >         >         >         too,
>         >         >         >         >         basically fixed
>         >         >         >         >         >         function
>         >         >         >         >         >         >
>         pipeline.
>         >         >         >         >         >         >         >
>         The
>         >         mention of
>         >         >         openGL in your
>         >         >         >         previous
>         >         >         >         >         post
>         >         >         >         >         >         sparked my
>         >         >         >         >         >         >
>         curiosity,
>         >         and
>         >         >         >         >         >         >         >
>         i wanted
>         >         to know
>         >         >         exactly what
>         >         >         >         work is
>         >         >         >         >         needed to be
>         >         >         >         >         >         done.
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         On
>         >         3/24/08, daniel
>         >         >         g. siegel
>         >         >         >         >         <dgsiegel gmail com>
>         >         >         >         >         >         wrote:
>         >         >         >         >         >         >         >
>         On
>         >         Mo,
>         >         >         2008-03-24 at
>         >         >         >         18:23
>         >         >         >         >         +0530, Ankur
>         >         >         >         >         >         Modi wrote:
>         >         >         >         >         >         >         >
>         >
>         >         i want to
>         >         >         propose
>         >         >         >         that idea as
>         >         >         >         >         a summer
>         >         >         >         >         >         of code
>         >         >         >         >         >         >
>         task.
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         sure! go
>         >         >         ahead!
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         just two
>         >         >         things from
>         >         >         >         my side:
>         >         >         >         >         >         >         >
>         -
>         >         we
>         >         >         probably will
>         >         >         >         move from
>         >         >         >         >         gstreamer
>         >         >         >         >         >         processing
>         to
>         >         >         >         >         >         >
>         some
>         >         >         >         >         >         >         >
>         >         >         opengl-thingie
>         >         >         >         >         >         >         >
>         >         (could be
>         >         >         gst-gl too,
>         >         >         >         we dont
>         >         >         >         >         know yet).
>         >         >         >         >         >         so this
>         >         >         >         >         >         >
>         could bring
>         >         >         >         >         >         >         >
>         >         some
>         >         >         >         >         >         >         >
>         >         regressions
>         >         >         for you
>         >         >         >         >         >         >         >
>         -
>         >         secondly,
>         >         >         i think
>         >         >         >         that just
>         >         >         >         >         doing
>         >         >         >         >         >         >
>         >         alpha-transparent png
>         >         >         >         >         >         >         >
>         >         could be too
>         >         >         >         >         >         >         >
>         >         little for 3
>         >         >         months
>         >         >         >         developing.
>         >         >         >         >         why dont
>         >         >         >         >         >         you think
>         >         >         >         >         >         >         of
>         other
>         >         >         >         >         >         >         >
>         >         ideas, which
>         >         >         >         >         >         >         >
>         >         you could
>         >         >         bring into,
>         >         >         >         like
>         >         >         >         >         hackergotchi
>         >         >         >         >         >         creation,
>         >         >         >         >         >         >
>         transparent
>         >         >         >         >         >         >         >
>         >         pngs for
>         >         >         >         >         >         >         >
>         >         video
>         >         >         too, ...
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         you could
>         >         >         have a look
>         >         >         >         at the
>         >         >         >         >         cheese ideas
>         >         >         >         >         >         page on
>         >         >         >         >         >         >
>         the gnome
>         >         >         >         >         >         >         >
>         >         wiki for
>         >         >         >         >         >         >         >
>         >         further
>         >         >         ideas or think
>         >         >         >         yourself
>         >         >         >         >         of some.
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         daniel
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         On
>         >         >         3/23/08, daniel
>         >         >         >         g. siegel
>         >         >         >         >         >
>         <dgsiegel gmail com>
>         >         >         >         >         >         >
>         wrote:
>         >         >         >         >         >         >         >
>         >
>         >         On
>         >         >         So,
>         >         >         >         2008-03-23 at
>         >         >         >         >         10:09
>         >         >         >         >         >         -0400, Ankur
>         >         >         >         >         >         >
>         Modi wrote:
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         cheese
>         >         >         >         community
>         >         >         >         >         memmbers
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         sir
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         >         dont call
>         >         >         >         me/us
>         >         >         >         >         "sir" ;)
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         do
>         >         >         you want
>         >         >         >         to propose
>         >         >         >         >         that idea
>         >         >         >         >         >         as a
>         >         >         >         >         >         >
>         summer of
>         >         code
>         >         >         >         >         >         >         >
>         >         task? or
>         >         >         >         >         >         >         >
>         >
>         >         do
>         >         >         you
>         >         >         >         >         >         >         >
>         >
>         >         >         just want to
>         >         >         >         do it on
>         >         >         >         >         your own?
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         >         daniel
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         I want to
>         >         >         >         work on
>         >         >         >         >         the idea
>         >         >         >         >         >         'Put
>         >         >         >         >         >         >
>         >         alpha-transparent
>         >         >         >         >         >         >         >
>         >         pngs onto
>         >         >         >         >         >         >         >
>         >
>         >         >         cam
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         image'.I
>         >         >         >         really like
>         >         >         >         >         this idea
>         >         >         >         >         >         as it can
>         >         >         >         >         >         >
>         used for
>         >         >         >         >         >         >         >
>         >         fun .It
>         >         >         >         >         >         >         >
>         >
>         >         >         can be done
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         in
>         >         >         >         following steps :
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         1.Users
>         >         >         >         can combine
>         >         >         >         >         frame
>         >         >         >         >         >         images saved
>         >         >         >         >         >         >         in
>         the
>         >         >         >         >         >         >         >
>         >         terminal
>         >         >         with
>         >         >         >         >         >         >         >
>         >
>         >         >         picture
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         images
>         >         >         >         taken with
>         >         >         >         >         the webcam.
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         2.The
>         >         >         >         picture image
>         >         >         >         >         will
>         >         >         >         >         >         appear in
>         the
>         >         >         >         >         >         >
>         transparent
>         >         >         >         >         >         >         >
>         >         area of
>         >         >         >         >         >         >         >
>         >
>         >         >         the frame
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         image.
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         3.The
>         >         >         >         combined image
>         >         >         >         >         will be
>         >         >         >         >         >         saved in
>         >         >         >         >         >         >
>         the same
>         >         >         >         >         >         >         >
>         >         JPEG format
>         >         >         >         >         >         >         >
>         >
>         >         as
>         >         >         the
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         picture
>         >         >         >         image.
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         I want to
>         >         >         >         ask u if
>         >         >         >         >         this is a
>         >         >         >         >         >         better way
>         >         >         >         >         >         >         to
>         >         >         >         >         >         >         >
>         >         accomplished
>         >         >         this
>         >         >         >         >         >         >         >
>         >
>         >         >         task.
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         --
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         Ankur Modi
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         Undergraduate
>         >         >         >         >         student,IT
>         >         >         >         >         >         department
>         >         >         >         >         >         >
>         NSIT,Delhi
>         >         >         >         >         >         >         >
>         >
>         >         >         >         University,India
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         contact
>         >         >         >         >         no:-9953622997
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         >         >         >
>         >         >         >         >
>         >         >
>         _______________________________________________
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         Cheese-list mailing
>         >         >         >         >         list
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         >         Cheese-list gnome org
>         >         >         >         >         >         >         >
>         >
>         >         >
>         >         >         >         >         >         >
>         >         >         >         >
>         >         >
>         http://mail.gnome.org/mailman/listinfo/cheese-list
>         >         >         >         >         >         >         >
>         >
>         >         --
>         >         >         >         >         >         >         >
>         >
>         >         >         this mail
>         >         >         >         was sent
>         >         >         >         >         using 100%
>         >         >         >         >         >         recycled
>         >         >         >         >         >         >
>         electrons
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >
>         >         >         >         >
>         >         >
>         ================================================
>         >         >         >         >         >         >         >
>         >
>         >         >         daniel g.
>         >         >         >         siegel
>         >         >         >         >         >
>         <dgsiegel gmail com>
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >
>         http://home.cs.tum.edu/~siegel
>         >         >         >         >         >         >         >
>         >
>         >         >         gnupg key
>         >         >         >         id:
>         >         >         >         >         0x6EEC9E62
>         >         >         >         >         >         >         >
>         >
>         >         >         fingerprint:
>         >         >         >         DE5B 1F64
>         >         >         >         >         9034 1FB6
>         >         >         >         >         >         E120 DE10
>         >         >         >         >         >         >
>         268D AFD5
>         >         >         >         >         >         >         >
>         >         6EEC 9E62
>         >         >         >         >         >         >         >
>         >
>         >         >         encrypted
>         >         >         >         email
>         >         >         >         >         preferred
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         >         >         >         >         >         >
>         >
>         >         --
>         >         >         >         >         >         >         >
>         >
>         >         Ankur Modi
>         >         >         >         >         >         >         >
>         >
>         >         >         Undergraduate
>         >         >         >         student,IT
>         >         >         >         >         department
>         >         >         >         >         >         NSIT,Delhi
>         >         >         >         >         >         >         >
>         >         >         University,India
>         >         >         >         >         >         >         >
>         >
>         >         contact
>         >         >         >         no:-9953622997
>         >         >         >         >         >         >         >
>         --
>         >         >         >         >         >         >         >
>         >         this mail
>         >         >         was sent
>         >         >         >         using 100%
>         >         >         >         >         recycled
>         >         >         >         >         >         electrons
>         >         >         >         >         >         >         >
>         >         >         >         >         >
>         >         >         >
>         >         ================================================
>         >         >         >         >         >         >         >
>         >         daniel g.
>         >         >         siegel
>         >         >         >         >         <dgsiegel gmail com>
>         >         >         >         >         >         >         >
>         >         >         >         http://home.cs.tum.edu/~siegel
>         >         >         >         >         >         >         >
>         >         gnupg key
>         >         >         id:
>         >         >         >         0x6EEC9E62
>         >         >         >         >         >         >         >
>         >         fingerprint:
>         >         >         DE5B 1F64
>         >         >         >         9034 1FB6
>         >         >         >         >         E120 DE10
>         >         >         >         >         >         268D AFD5
>         >         >         >         >         >         >
>         6EEC 9E62
>         >         >         >         >         >         >         >
>         >         encrypted
>         >         >         email
>         >         >         >         preferred
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         >         >         >         >         >         >         >
>         --
>         >         >         >         >         >         >         >
>         Ankur Modi
>         >         >         >         >         >         >         >
>         >         Undergraduate
>         >         >         student,IT
>         >         >         >         department
>         >         >         >         >         NSIT,Delhi
>         >         >         >         >         >         >
>         >         University,India
>         >         >         >         >         >         >         >
>         contact
>         >         >         no:-9953622997
>         >         >         >         >         >         >
>         >         >         >         >         >         >         --
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         this mail
>         >         was sent
>         >         >         using 100%
>         >         >         >         recycled
>         >         >         >         >         electrons
>         >         >         >         >         >         >
>         >         >         >         >
>         >         >
>         ================================================
>         >         >         >         >         >         >
>         daniel g.
>         >         siegel
>         >         >         >         <dgsiegel gmail com>
>         >         >         >         >         >         >
>         >         >         http://home.cs.tum.edu/~siegel
>         >         >         >         >         >         >
>         gnupg key
>         >         id:
>         >         >         0x6EEC9E62
>         >         >         >         >         >         >
>         fingerprint:
>         >         DE5B 1F64
>         >         >         9034 1FB6
>         >         >         >         E120 DE10
>         >         >         >         >         268D AFD5
>         >         >         >         >         >         6EEC 9E62
>         >         >         >         >         >         >
>         encrypted
>         >         email
>         >         >         preferred
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         >         >         >         >         >         >
>         >         >         >         >         >         > --
>         >         >         >         >         >         > Ankur Modi
>         >         >         >         >         >         >
>         Undergraduate
>         >         student,IT
>         >         >         department
>         >         >         >         NSIT,Delhi
>         >         >         >         >         >
>         University,India
>         >         >         >         >         >         > contact
>         >         no:-9953622997
>         >         >         >         >         >         --
>         >         >         >         >         >         this mail
>         was sent
>         >         using 100%
>         >         >         recycled
>         >         >         >         electrons
>         >         >         >         >         >
>         >         >         >
>         >         ================================================
>         >         >         >         >         >         daniel g.
>         siegel
>         >         >         <dgsiegel gmail com>
>         >         >         >         >         >
>         >         http://home.cs.tum.edu/~siegel
>         >         >         >         >         >         gnupg key
>         id:
>         >         0x6EEC9E62
>         >         >         >         >         >         fingerprint:
>         DE5B 1F64
>         >         9034 1FB6
>         >         >         E120 DE10
>         >         >         >         268D AFD5
>         >         >         >         >         6EEC 9E62
>         >         >         >         >         >         encrypted
>         email
>         >         preferred
>         >         >         >         >         >
>         >         >         >         >         >
>         >         >         >         >         >
>         >         >         >         >         >
>         >         >         >         >         > --
>         >         >         >         >         > Ankur Modi
>         >         >         >         >         > Undergraduate
>         student,IT
>         >         department
>         >         >         NSIT,Delhi
>         >         >         >         >         University,India
>         >         >         >         >         > contact
>         no:-9953622997
>         >         >         >         >         --
>         >         >         >         >         this mail was sent
>         using 100%
>         >         recycled
>         >         >         electrons
>         >         >         >         >
>         >         >
>         ================================================
>         >         >         >         >         daniel g. siegel
>         >         <dgsiegel gmail com>
>         >         >         >         >
>         http://home.cs.tum.edu/~siegel
>         >         >         >         >         gnupg key id:
>         0x6EEC9E62
>         >         >         >         >         fingerprint: DE5B 1F64
>         9034 1FB6
>         >         E120 DE10
>         >         >         268D AFD5
>         >         >         >         6EEC 9E62
>         >         >         >         >         encrypted email
>         preferred
>         >         >         >         >
>         >         >         >         >
>         >         >         >         >
>         >         >         >         >
>         >         >         >         > --
>         >         >         >         > Ankur Modi
>         >         >         >         > Undergraduate student,IT
>         department
>         >         NSIT,Delhi
>         >         >         >         University,India
>         >         >         >         > contact no:-9953622997
>         >         >         >         --
>         >         >         >         this mail was sent using 100%
>         recycled
>         >         electrons
>         >         >         >
>         >         ================================================
>         >         >         >         daniel g. siegel
>         <dgsiegel gmail com>
>         >         >         >         http://home.cs.tum.edu/~siegel
>         >         >         >         gnupg key id: 0x6EEC9E62
>         >         >         >         fingerprint: DE5B 1F64 9034 1FB6
>         E120 DE10
>         >         268D AFD5
>         >         >         6EEC 9E62
>         >         >         >         encrypted email preferred
>         >         >         >
>         >         >         >
>         >         >         >
>         >         >         >
>         >         >         > --
>         >         >         > Ankur Modi
>         >         >         > Undergraduate student,IT department
>         NSIT,Delhi
>         >         >         University,India
>         >         >         > contact no:-9953622997
>         >         >         --
>         >         >         this mail was sent using 100% recycled
>         electrons
>         >         >
>         ================================================
>         >         >         daniel g. siegel <dgsiegel gmail com>
>         >         >         http://home.cs.tum.edu/~siegel
>         >         >         gnupg key id: 0x6EEC9E62
>         >         >         fingerprint: DE5B 1F64 9034 1FB6 E120 DE10
>         268D AFD5
>         >         6EEC 9E62
>         >         >         encrypted email preferred
>         >         >
>         >         >
>         >         >
>         >         >
>         >         > --
>         >         > Ankur Modi
>         >         > Undergraduate student,IT department NSIT,Delhi
>         >         University,India
>         >         > contact no:-9953622997
>         >         --
>         >         this mail was sent using 100% recycled electrons
>         >         ================================================
>         >         daniel g. siegel <dgsiegel gmail com>
>         >         http://home.cs.tum.edu/~siegel
>         >         gnupg key id: 0x6EEC9E62
>         >         fingerprint: DE5B 1F64 9034 1FB6 E120 DE10 268D AFD5
>         6EEC 9E62
>         >         encrypted email preferred
>         >
>         >
>         >
>         >
>         > --
>         > Ankur Modi
>         > Undergraduate student,IT department NSIT,Delhi
>         University,India
>         > contact no:-9953622997
>         --
>         this mail was sent using 100% recycled electrons
>         ================================================
>         daniel g. siegel <dgsiegel gmail com>
>         http://home.cs.tum.edu/~siegel
>         gnupg key id: 0x6EEC9E62
>         fingerprint: DE5B 1F64 9034 1FB6 E120 DE10 268D AFD5 6EEC 9E62
>         
>         encrypted email preferred
> 
> 
> 
> -- 
> Ankur Modi
> Undergraduate student,IT department NSIT,Delhi University,India
> contact no:-9953622997
-- 
this mail was sent using 100% recycled electrons
================================================
daniel g. siegel <dgsiegel gmail com>
http://home.cs.tum.edu/~siegel
gnupg key id: 0x6EEC9E62
fingerprint: DE5B 1F64 9034 1FB6 E120 DE10 268D AFD5 6EEC 9E62
encrypted email preferred

Attachment: signature.asc
Description: This is a digitally signed message part



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]