You can subscribe to this list here.
2008 |
Jan
|
Feb
|
Mar
(68) |
Apr
(34) |
May
(17) |
Jun
(4) |
Jul
(36) |
Aug
(23) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 |
Jan
(3) |
Feb
(4) |
Mar
(36) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Clif F. <cl...@cf...> - 2008-03-28 12:51:16
|
Hello Kryzysiek, Thanks for joining us. I've attached some thoughts about the Printing project. I'm going to try to put them into the wiki later today. One reason that printing support has languished for so many years is that everyone has a different idea of what's needed, and some of the underlying features (add a print command to every widget?) become large and have implications for extension writers. I'm certain that my thoughts aren't complete. They represent what I'm seeing as customer needs. I welcome any comments, suggestions or outright laughter. The complete project is likely to be more than a summer's work. On the good side, there is potential for non-google money to complete the project. On Thu, Mar 27, 2008 at 11:31:15PM +0100, krzysztof blicharski wrote: > my name is Krzysiek Blicharski. > I'm interested in two projects: > "Cross-platform framework for database application GUI development based > on Tcl/Tk + Tile" and "Printing Support". > I'd like to ask for more information about > "Printing Support" project - for some further details. > > Moreover, while reading the description of the project, > a question I came to my mind: > why such an impotrant project hasn't been realized for 15 years? :) Clif One of Tcl/Tk's strong suits is how easy it is to develop complex graphical applications. A shortcoming is how difficult it is to get the information the user sees onto a static representation that can be sent to others. Printing support for Tcl/Tk sounds simple. It's actually a large, multifaceted problem. The three main facets are: 1) Convert the contents of the Tcl/Tk application to a printable format. This may be Postscript, PDF, Gif, or printer commands. 2) Transmit the intermediate format data to a printer, interacting with whatever facilities are offered by the operating system. 3) Code layer interfaces for application developers. This could include adding print subcommands to all Tk widgets, or a print subsystem capable of understanding the contents of all widgets. 4) User layer interface that a developer can include in an application to give users access to printing. 1. Converting Tcl/Tk data to printable format: The current Tcl/Tk printing support is limited to generating Postscript documents from a canvas. This is solution works well for vector images, the lines, circles, etc are reproduced accurately for a printer driver to transfer to paper. It can work poorly if there is text in the canvas, as the fonts used on the canvas may not be available to the printer. A big advantage for postscript that it's a vector format for reproducing the image, and is thus very easy to scale the contents of a canvas to fit a sheet of paper. Disadvantages for postscript include the font problem and the lack of general support and potential security problems for postscript images. The Img extension allows any Tcl/Tk window to be converted to a pixel-by-pixel represntation and saved as a .gif image. The advantage of this is that it provides an exact image of what the user sees. Gif images are well understood by most applications (allowing the contents of a Tcl/Tk canvas to be easily merged into a Powerpoint or Word document), and the Gif format has fewer security problems associated with it. The disadvantages are that the image is a raster image, and scales poorly. The Img extension interacts with the screen memory, and can only render the visible portion of an image. If the canvas is obscured by other windows, or is larger than the screen, the conversion to a Gif image fails. There are at least 3 attempts to generate PDF output from Tcl/Tk windows. I've developed one, and there are also the Trampoline, Snit, pdf4tcl and pdfcanvas. None of these are complete. A complete solution to the conversion problem needs to include: A) Support for all types of Tcl/Tk Windows, not just canvas. B) Support for all window options - borderwidth, bordercolor, etc. C) Exporting fonts for all textual data D) Support for embedded windows E) Support for generating raster images to different scales without losing resolution F) Select a subsection of a window to be rendered. This will allow a huge canvas to be printed to multiple sheets of paper that the user can cut and paste together to render mural sized documents. (Yeah, it sounds crazy, but even shops with 4' roll printers end up needing 8' wide documents some days.) The ability to generate a PDF output from any window or set of windows, and/or a PPM, GIF, or PNG output that can be scaled to XxY pixels would support this phase of the project. My primary interest in this phase is in generating a PDF or other vector format output. If the font problem is truly intractable, then generating a scaled raster image is a suitable option. 2) This is an area I can't discuss in detail, because I know nothing about the API for Windows and Linux printer drivers. I know that if we want a user to be able to click a "Print" button and have something show up on paper we need more than "exec lpr". A student who is interested in this phase of the project would need to investigate the Windows API and the Linux and OS/X printing APIs, determine a common framework, and generate the code to interface with them. This phase of the project could be started without the conversion step by using the currently available export (postscript or Img/Gif) features of Tcl/Tk. 3) The API to the printing subsystem requires a design document and discussion with the Tcl Core Team. It should provide the flexibility to do everything we understand today, and extend to things nobody knows they need yet. This facet can be done independantly of the others. The output document would be useful to someone developing the first facet (exporting the Tcl/Tk data) and the fourth facet (developing a user GUI). This API should support A) scaling the output to a given size in various coordinates (pixels, English, Metric, etc). B) Rotating the output C) Selecting an area of the window to print. D) Color correction might be useful, depending on what features are supported by the printer or printer drivers. 4) A user layer widget will probably be the final piece developed. It must allow the user set any of the features supported by the API. An additional code snippet to allow a user to easily select the portion of a canvas to print would be useful. This is the part of the printing support that will be seen by users, and thus needs to be well thought out from the HCI perspective. This will probably be the smallest amount of code when it comes to implementation. Nathaniel Borenstein has investigated printing GUI's in the past and may have some input for a student interested in this facet of the project. -- .... Clif Flynt ... http://www.cflynt.com ... cl...@cf... ... .. Tcl/Tk: A Developer's Guide (2nd edition) - Morgan Kauffman .. ... 15'th Annual Tcl/Tk Conference: Oct 2008, Somewhere, USA... ............. http://www.tcl.tk/community/tcl2008/ ............ |
From: Stephen H. <ste...@al...> - 2008-03-28 04:51:04
|
test post please ignore. |
From: Matthew M. B. <mm...@gw...> - 2008-03-28 03:08:27
|
Pan Peng wrote: > I am going to participate in GSoC2008. I browsed Tcl/Tk Community > ideas and found an interesting project :"A Business Rule Management System > based on XOTcl". I would like to contribute to it. Pan Peng, Thank you for your interest in the Tcl projects. Gustaf can give you a more informed opinion, but my gut feeling is that if the project is one that you find really interesting, you can learn XOTcl sufficiently. Matt |
From: krzysztof b. <bli...@gm...> - 2008-03-27 22:31:20
|
Hello, my name is Krzysiek Blicharski. I'm interested in two projects: "Cross-platform framework for database application GUI development based on Tcl/Tk + Tile" and "Printing Support". I'd like to ask for more information about "Printing Support" project - for some further details. Moreover, while reading the description of the project, a question I came to my mind: why such an impotrant project hasn't been realized for 15 years? :) Thanks in advance |
From: Daniel A. S. <da...@us...> - 2008-03-27 16:59:32
|
Hi Remigiusz, On 26/03/2008, at 12:47, Remigiusz Jan Andrzej Modrzejewski wrote: > What I want to ask the community here is on which project should I > concentrate. DTrace seems to be quite exciting, but I have not used it > in practice before, only read some things about it. great to hear that you are interested in this. Of course I'm happy to push you towards having a go at the TclDTrace project (not surprising given that I proposed it...), it certainly sounds like you have the necessary C skills. If you want to experiment with DTrace, the easiest way would be to download Solaris Express Developer Edition and install it under VMWare (if you have it) or on real x86 hardware. If you have access to a Mac with Leopard, just use the build-in dtrace there of course... There are a number of good online resources to get started with DTrace, c.f. links at the top of the Tcl'ers wiki DTrace page http://wiki.tcl.tk/DTrace DTrace lends itself very well to experimentation, I'd suggest to just start playing with it, e.g. when running a Firefox build with DTrace probes. The DTraceTookit scripts are also good starting points for further experimentation. To get a feel for the DTrace API that would be used in this project, read the "Using libdtrace" weblog post linked to on the GSoC ideas page, or have a look at the ruby-dtrace source or the sources to libdtrace and the dtrace tool itself: http://cvs.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/ libdtrace/ http://cvs.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/ dtrace svn://svn.genunix.org/on/trunk/usr/src/lib/libdtrace svn://svn.genunix.org/on/trunk/usr/src/cmd/dtrace You'd also need to use the Tcl C API to create tcl commands to compile D scripts and analyze tracing results, the Tcl'ers wiki has examples of this API in use, or you can have a look at the sources for the tcl sampleextension (or any other simple tcl extension) http://wiki.tcl.tk/sampleextension Feel free to contact me or the list if you have more questions. Looking forward to your application! Cheers, Daniel -- ** Daniel A. Steffen ** ** <mailto:da...@us...> ** |
From: Donal K. F. <don...@ma...> - 2008-03-27 11:32:43
|
William J Giddings wrote: > The Tcl/Tk community seems to be more focused on enhancing Tk via tile > than bindings direct to either Gtk/Qt. I understand the rationale, but > there's a possibly lot more work involved in producing a tile:GTK theme > than bringing Gnocl up to a higher level spec.. We're focussed on that because it means that code that works OK and looks great on other platforms (e.g. Windows) will not need major revisions. Going to another toolkit is a lot more work... > Is this the type of project that would get selected for a SOC bursary? > If so, I could be tempted to apply as I'm still a Ph.D candidate at the > University of Wales! AIUI, students may propose their own projects. *We* won't turn them down! Donal. |
From: William J G. <gid...@fr...> - 2008-03-27 10:36:45
|
This looks like an interesting project to get involved with as I'm already working on some enhancements of the Gnocl implementation of the GtkTextView event bindings. The Tcl/Tk community seems to be more focused on enhancing Tk via tile than bindings direct to either Gtk/Qt. I understand the rationale, but there's a possibly lot more work involved in producing a tile:GTK theme than bringing Gnocl up to a higher level spec.. Is this the type of project that would get selected for a SOC bursary? If so, I could be tempted to apply as I'm still a Ph.D candidate at the University of Wales! I've not looked at the Tk source code and so would need some clear directions on this one. WJG |
From: Pan P. <pen...@gm...> - 2008-03-27 08:59:52
|
Hi all, I am going to participate in GSoC2008. I browsed Tcl/Tk Community ideas and found an interesting project :"A Business Rule Management System based on XOTcl". I would like to contribute to it. I have been programmed for 5 years (most of programs are written in C/C++). My math is good. In fact my major is algorithms and I'd love to run algorithms. I also have learned project management (imho, it may be related to bussiness rule management )for two years. I would like to implement the Rete algorithm very much,but I am not sure whether this project has been proposed or not and whether the community would pick a guy whose knowledge about xotcl is poor? Looking forward your reply. Best wishes, Pan Peng |
From: Andreas K. <aku...@sh...> - 2008-03-27 04:45:18
|
> Hi, > I just sent my application for "Loading shared libraries from memory > and/or Tcl channels" project. I have no idea how good my application > is, because I haven't had much experience with tcl, but I'm really > open for challenges and I'm sure I'll cope with this task. Anyway, > I'm looking forward for any comments about my application > (especially from the mentor of this project - Andreas Kupries) which > could allow me to add/change some stuff if it'd be necessary. A quick acknowledgment and thank you to you for sending in your application. I will go over it and then add my observations as public comments to it on the google website. I believe that would be the/google's prefered way of doing it, instead of keeping it here/closed. > Regards, > Daniel -- So long, Andreas Kupries <aku...@sh...> <http://www.purl.org/NET/akupries/> Developer @ <http://www.activestate.com/> ------------------------------------------------------------------------------- |
From: Daniel H. <da...@gm...> - 2008-03-27 00:07:46
|
Hi, I just sent my application for "Loading shared libraries from memory and/or Tcl channels" project. I have no idea how good my application is, because I haven't had much experience with tcl, but I'm really open for challenges and I'm sure I'll cope with this task. Anyway, I'm looking forward for any comments about my application (especially from the mentor of this project - Andreas Kupries) which could allow me to add/change some stuff if it'd be necessary. Regards, Daniel |
From: Jeff H. <je...@ac...> - 2008-03-26 18:22:17
|
Hi Remigiusz, Remigiusz Jan Andrzej Modrzejewski wrote: > What I want to ask the community here is on which project should I > concentrate. DTrace seems to be quite exciting, but I have not used it > in practice before, only read some things about it. On the other hand > FUSE seems to be crowded. The AOLserver based project is the least > exciting, but probably most practical. So I'm confused on which one > should I try investigating... It really depends on where your personal/student focus lies ... The DTrace one is only limited by requiring Solaris 10 and/or OS X 10.5, but is an interesting project. This would be the one if you are into performance and profiling. Don't worry about FUSE being "crowded". It is potentially quite interesting and would probably have you working deeper with Tcl APIs, in pieces like the virtual file system and stacked channels. This is some pretty cool stuff - if you interest lies in file systems and/or operating systems. AOLServer could always use some lovin. The GD integration would see work on the configuration side (do you like build engineering?), as well as an opportunity to play with servers and high scalability/threading isssues. Hope that didn't just confuse your more. ; Jeff |
From: Remigiusz J. A. M. <lr...@go...> - 2008-03-26 11:47:16
|
Hello. As advised by Tomasz Kosiak, I write to the list to introduce myself. I'm a student considering applying to one of TclDTrace, Tcl FUSE Binding or AOLserver-GD projects. I have some experience in programming (over a decade), especially in C (~6 years), using Linux and know some basics about the Linux kernel (in fact I have my pages in a printed newspaper about the kernel). What I don't have is extensive experience with Tcl, but I've already seen the C API and consider it nice and easy (tried Perl before, that was a mess). I also have some basic knowledge about the three projects I mentioned. What I want to ask the community here is on which project should I concentrate. DTrace seems to be quite exciting, but I have not used it in practice before, only read some things about it. On the other hand FUSE seems to be crowded. The AOLserver based project is the least exciting, but probably most practical. So I'm confused on which one should I try investigating... With regards Remigiusz Modrzejewski |
From: Youness A. <kak...@ka...> - 2008-03-25 20:22:37
|
On Tue, Mar 25, 2008 at 04:01:51PM -0400, Matthew M. Burke wrote: > Youness Alaoui wrote: >> I hope I'm not being too late for this GSoC project idea. I have the idea, >> I have the mentor (me) and I even have the >> student who wants to work on it (will apply once you guys >> accept my idea as a Tcl SoC project). >> >> Here's a copy/paste of the project, as posted on the wiki >> (http://wiki.tcl.tk/20832) : >> > > > Hopefully someone more knowledgeable than me on gory Tcl internals, what's > been done before, Snack, etc. will comment on the feasibility, but from a > project logistics point of view, there is no problem with adding new > projects at this date. In fact, students are allowed to suggest their own > projects. Ok cool! Then in that case, you've got yourself one new project for the Tcl SoC and the student will apply soon for the project. > > So, assuming nobody else sees any show stoppers, I'd say the important > thing at this point is to work with the student to make sure the student > puts together a high quality application. > Don't worry, I'll monitor him correcly and make sure it's a high quality software. I know the guy personally and I've already met with him twice to discuss this. I've also been discussing the project with mplayer developers to make sure the design for the new library will fit their needs and that a move from their current implementation to the new library will be possible. > > Details about the webapp and process for assigning students, etc, can be > found at > http://groups.google.com/group/google-summer-of-code-announce/web/guide-to-the-gsoc-web-app-for-mentors-and-organization-administrators > > > All mentors: please make sure to periodically check with the web app to > see the proposals we have received _AND_ give feedback on those proposals. > It won't influence how many students Google allocates to us, but it will > help us insure that the proposals we do wind up accepting are as high > quality, have the highest chance of success, etc, etc as possible. > > Matt > > Sure, no problem, I'll read that and make sure to check the web app periodically. I'm just waiting for you to accept my mentor application. p.s.: You forgot to CC the ML. Forwarding your mail. Thanks, KaKaRoTo |
From: Youness A. <kak...@ka...> - 2008-03-25 20:09:45
|
On Tue, Mar 25, 2008 at 03:38:28PM -0400, Clif Flynt wrote: > On Tue, Mar 25, 2008 at 03:17:19PM -0400, Youness Alaoui wrote: > > Hi All, > > > > I hope I'm not being too late for this GSoC project idea. > > I have the idea, I have the mentor (me) and I even have the > > student who wants to work on it (will apply once you guys > > accept my idea as a Tcl SoC project). > > ... > > This looks cool to me. I use snack quite a bit for various fun > projects, and it would be nice to have a newer package to use. > > You'll need to go to the Google page to register as a mentor. > > http://code.google.com/soc/2008/mentor_step1.html > > I believe that Matthew will then accept your application, and after > that your student can go to Google to register for the project. > > If anyone wants to correct me, please, feel free. > > Clif > Thanks, glad you think the project is interesting :) I've just applied as a mentor, I'll be waiting for Matthew to accept the application. KaKaRoTo |
From: Clif F. <cl...@cf...> - 2008-03-25 19:38:41
|
On Tue, Mar 25, 2008 at 03:17:19PM -0400, Youness Alaoui wrote: > Hi All, > > I hope I'm not being too late for this GSoC project idea. > I have the idea, I have the mentor (me) and I even have the > student who wants to work on it (will apply once you guys > accept my idea as a Tcl SoC project). > ... This looks cool to me. I use snack quite a bit for various fun projects, and it would be nice to have a newer package to use. You'll need to go to the Google page to register as a mentor. http://code.google.com/soc/2008/mentor_step1.html I believe that Matthew will then accept your application, and after that your student can go to Google to register for the project. If anyone wants to correct me, please, feel free. Clif -- .... Clif Flynt ... http://www.cflynt.com ... cl...@cf... ... .. Tcl/Tk: A Developer's Guide (2nd edition) - Morgan Kauffman .. ... 15'th Annual Tcl/Tk Conference: Oct 2008, Somewhere, USA... ............. http://www.tcl.tk/community/tcl2008/ ............ |
From: Gerald W. L. <Ger...@co...> - 2008-03-25 19:28:57
|
Youness Alaoui wrote: > Hi All, > > I hope I'm not being too late for this GSoC project idea. > ... > > > I'd like to know what you think of the project, if it's ok > to have it under the Tcl-SoC and if yes, what's the next > steps to take ? > Sounds like a good project. But I do not know if it is two late to add projects for this year. -- +------------------------------------------------------------------------+ | Gerald W. Lester, Director of Technology, TicketSwitch USA LLC | | Office: +1.504.267.3745x1 Fax: +1.504.342.4168 Cell: +1.504.292.3775 | | Email: ger...@ti... | |"The man who fights for his ideals is the man who is alive." - Cervantes| +------------------------------------------------------------------------+ |
From: Youness A. <kak...@ka...> - 2008-03-25 19:17:18
|
Hi All, I hope I'm not being too late for this GSoC project idea. I have the idea, I have the mentor (me) and I even have the student who wants to work on it (will apply once you guys accept my idea as a Tcl SoC project). Here's a copy/paste of the project, as posted on the wiki (http://wiki.tcl.tk/20832) : Audio input and output library and extension http://amsn-project.net [Youness Alaoui] Difficulty: medium aMSN is a Tcl/Tk Instant Messaging client working on the MSN network. We try to provide as much of the original client's functionality in aMSN. One of the most requested features is to have the ability to do audio conferencing, while the protocol and codecs have already been reverse-engineered, we are stuck now on a limitation of Tcl. There is no acceptable audio output/input extension for Tcl. The only extension available with enough capabilities to satisfy us is the Snack extension which is unmaintained for too long now and has many small issues and limitations which makes real-time audio processing impossible (device is opened/closed on every packet (20ms) and audio is played too fast, so it keeps glitching, etc..). A solution was found in the libao library (http://xiph.org/ao/) which did the trick for audio output and worked nicely on Linux, but it only has a winMM driver for Windows which doesn't seem to work. An alternative is libao2 which is a fork of libao by the mplayer developers, it is much more complete (has many more drivers and has a dsound driver for Windows), but its API is not very usable and its code is dependant on mplayer's internal libraries. This project will consist in merging libao's interface (http://xiph.org/ao) with libao2's drivers (http://mplayerhq.hu) and make it into a single, standalone library, as well as creating an audio input equivalent and writing a Tcl extension to wrap the library, thus providing the Tcl community with a new, more powerful audio input and audio output library. This will allow the creation of new real-time audio processing Tcl applications. A secondary purpose of this project would be to continuously discuss the changes with the mplayer developers in order to have them integrate the new library and to avoid having a third (or more) fork of libao. Benefit to student Experience in Tcl, alsa, oss, arts, esd, pulseaudio, jack, winmm, dsound, CoreAudio, etc.. Benefit to community Having a more mature Tcl extension for audio processing will be a great addition to Tcl as it will open up a new field for application developers. The advantage of using such a library would be the possibility to write applications that play or record audio in real-time, thus allowing the possibility to build VoIP applications in Tcl. Also, this driver-based library will allow Tcl applications to play and record audio using either alsa, oss, arts, esd, pulseaudio, jack, directX, CoreAudio, etc.. and to integrate with those sound daemons using a single, unified API. Having such a powerful library will also bring a great advantage to the Open Source Community as it will provide application developers of any language to use a much more stable 'libao' alternative without forking the mplayer internal library. I'd like to know what you think of the project, if it's ok to have it under the Tcl-SoC and if yes, what's the next steps to take ? Thanks, KaKaRoTo |
From: Matthew M. B. <mm...@gw...> - 2008-03-25 15:25:57
|
maz...@wi... wrote: > Nice. What happens next? > > > Glad you asked! When I sent out the note, I hadn't really thought this through. Nothing official until after the close of student applications. But it might be a good idea for the mentor (whom I've cc'ed) and/or some others to contact the student and chat with him. For a couple of reasons: 1) to sound him out a little more, and 2) to do some recruiting--students can apply to more than one project, so we want to convince him ours is the most attractive! Stephen (Huntley), can you get in touch with him? If not, I will do so. Matt |
From: <maz...@wi...> - 2008-03-25 15:00:38
|
Nice. What happens next? |
From: Matthew M. B. <mm...@gw...> - 2008-03-25 14:53:39
|
We have our first student application!!! http://code.google.com/soc/2008/tcl/open.html Matt |
From: Clif F. <cl...@cf...> - 2008-03-24 22:27:14
|
Hi, Thanks, Bob. I sent that pointer to a couple of schools. It would be cool to have one specificly for the Tcl projects, but I don't see the time to put this together. On Mon, Mar 24, 2008 at 03:37:23PM -0500, Techentin, Robert wrote: > Do you mean, like these? > > http://code.google.com/p/google-summer-of-code/wiki/GsocFlyers > -- .... Clif Flynt ... http://www.cflynt.com ... cl...@cf... ... .. Tcl/Tk: A Developer's Guide (2nd edition) - Morgan Kauffman .. ... 15'th Annual Tcl/Tk Conference: Oct 2008, Somewhere, USA... ............. http://www.tcl.tk/community/tcl2008/ ............ |
From: Techentin, R. <tec...@ma...> - 2008-03-24 20:37:44
|
Do you mean, like these? http://code.google.com/p/google-summer-of-code/wiki/GsocFlyers Bob -- Bob Techentin tec...@ma... Mayo Foundation (507) 538-5495 200 First St. SW FAX (507) 284-9171 Rochester MN, 55901 USA http://www.mayo.edu/sppdg/ > -----Original Message----- > From: tcl...@li... > [mailto:tcl...@li...] On Behalf > Of Clif Flynt > Sent: Monday, March 24, 2008 3:25 PM > To: tcl...@li... > Subject: [Tcl-soc2008] Promoting SoC > > Hi, > Matthew and I were talking last week, and it occured to us > that we need a flyer for this. Given an A size or 8 1/2 x 11 > PDF document, we can email the flyer to friends at various > schools to post on a bulletin board. > > Does anyone have time, energy, and artistic talent to > create this (only 2 of the three are necessary). > > Happy Tcl'ing, > Clif > > -- > .... Clif Flynt ... http://www.cflynt.com ... cl...@cf... ... > .. Tcl/Tk: A Developer's Guide (2nd edition) - Morgan Kauffman .. > ... 15'th Annual Tcl/Tk Conference: Oct 2008, Somewhere, USA... > ............. http://www.tcl.tk/community/tcl2008/ ............ > > |
From: Clif F. <cl...@cf...> - 2008-03-24 20:24:34
|
Hi, Matthew and I were talking last week, and it occured to us that we need a flyer for this. Given an A size or 8 1/2 x 11 PDF document, we can email the flyer to friends at various schools to post on a bulletin board. Does anyone have time, energy, and artistic talent to create this (only 2 of the three are necessary). Happy Tcl'ing, Clif -- .... Clif Flynt ... http://www.cflynt.com ... cl...@cf... ... .. Tcl/Tk: A Developer's Guide (2nd edition) - Morgan Kauffman .. ... 15'th Annual Tcl/Tk Conference: Oct 2008, Somewhere, USA... ............. http://www.tcl.tk/community/tcl2008/ ............ |
From: Clif F. <cl...@cf...> - 2008-03-24 15:30:00
|
On Mon, Mar 24, 2008 at 04:09:06PM +0100, maz...@wi... wrote: > ... > where did you register? > ... http://code.google.com/soc/2008/mentor_step1.html It's pretty simple and straightforward. I'll confess to not reading all the fine print. I'm trusting Google's "Do No Evil" motto. Clif -- .... Clif Flynt ... http://www.cflynt.com ... cl...@cf... ... .. Tcl/Tk: A Developer's Guide (2nd edition) - Morgan Kauffman .. ... 15'th Annual Tcl/Tk Conference: Oct 2008, Somewhere, USA... ............. http://www.tcl.tk/community/tcl2008/ ............ |
From: <maz...@wi...> - 2008-03-24 15:08:57
|
Hi Clif, where did you register? Greetings, Nima |