*** pcardune has joined #schooltool | 00:06 | |
pcardune | hi aelkner | 00:06 |
---|---|---|
aelkner | hey there | 00:06 |
pcardune | i'm looking for that sobby email | 00:07 |
aelkner | me tto | 00:07 |
*** aelkner has quit IRC | 00:07 | |
*** aelkner has joined #schooltool | 00:08 | |
aelkner | I'm back | 00:08 |
aelkner | I can start the server | 00:08 |
aelkner | done | 00:08 |
pcardune | oh ok | 00:09 |
aelkner | paul? | 00:09 |
pcardune | i'll connect now then | 00:09 |
aelkner | ok | 00:09 |
*** ignas has quit IRC | 02:20 | |
*** jfroche has quit IRC | 02:36 | |
aelkner | paul: so sorry stopped the wrong server. | 02:41 |
pcardune | aelkner, oh, i was wondering what happened, he he | 02:42 |
aelkner | i restarted sobby, so we have to regobby | 02:42 |
aelkner | or was i wrong to leave gobby and rejoin? | 02:44 |
*** wdickers has joined #schooltool | 02:55 | |
wdickers | Good evening aelkner | 02:56 |
aelkner | hey will | 02:56 |
wdickers | have you looked at my coding? | 02:56 |
wdickers | also, it seems the agentBase.txt was overwritten | 02:56 |
aelkner | yes i saw your work, and you really got it. | 02:57 |
aelkner | unfortunately: | 02:57 |
aelkner | Tom didn't like the direction i was going with it. | 02:57 |
aelkner | He and Jeff decided that I would be better off working on schooltool with paul | 02:57 |
aelkner | I'm happy to do that, but sad to be pulled of of tinyzis | 02:58 |
aelkner | Also sad because i enjoyed our collaboration. | 02:58 |
aelkner | I will always be around when you're in class. | 02:58 |
aelkner | except tomorrow | 02:58 |
aelkner | but you need to talk with jeff to work on what to do with your science project. | 02:59 |
wdickers | Aww. Well I hope you can do some good stuff with schooltool | 02:59 |
wdickers | what do I need to talk to him about? | 02:59 |
aelkner | you and i might cross paths before you know it when tom has the agents ready | 02:59 |
aelkner | well, if you an i are not going to code the sis agents, you need to do something else for your project. | 03:00 |
aelkner | like study what tome did? | 03:00 |
wdickers | oh, okay | 03:00 |
aelkner | in the end i think jeff wants your presentation to: | 03:00 |
aelkner | have two laptops running schooltool that share data via tinyzis | 03:00 |
aelkner | tom would have coded the agent | 03:01 |
aelkner | I would have hooked it into schooltool (with Paul's help no doubt) | 03:01 |
wdickers | so basically I have to find another niche to work in? | 03:01 |
aelkner | May i suggest you continue to study the spec for now? | 03:01 |
aelkner | I know its huge, but looking at tom's tinyzis implementation will help | 03:02 |
aelkner | you have the code | 03:02 |
wdickers | gotcha | 03:02 |
aelkner | do you have the svn co of pyagentlib? | 03:02 |
aelkner | because if you do periodic svn ups you can track tom's work there as well | 03:03 |
wdickers | yes I do. I'm also looking at the source code online | 03:05 |
aelkner | ok. i'll leave you with that for now. | 03:06 |
aelkner | see you friday. | 03:06 |
wdickers | see you | 03:08 |
*** wdickers has quit IRC | 03:09 | |
*** wrobel has quit IRC | 03:12 | |
*** aelkner has quit IRC | 03:25 | |
*** pcardune has quit IRC | 06:58 | |
*** th1a has quit IRC | 07:28 | |
*** wrobel has joined #schooltool | 09:25 | |
*** ignas has joined #schooltool | 10:40 | |
*** jfroche has joined #schooltool | 10:46 | |
*** ignas has quit IRC | 11:05 | |
*** vidasp has quit IRC | 11:08 | |
*** vidasp has joined #schooltool | 11:08 | |
*** vidasp has quit IRC | 11:10 | |
*** ignas has joined #schooltool | 11:31 | |
*** jinty has joined #schooltool | 12:23 | |
*** mgedmin has joined #schooltool | 12:51 | |
jfroche | mgedmin: hello, Ignas told me very good things about your vimrc, would you mind to share it ? | 12:55 |
*** tiredbones has quit IRC | 12:55 | |
mgedmin | it is SCARY | 12:55 |
mgedmin | ancient, spanned by cobwebs, with some gems hidden inside | 12:55 |
jfroche | i use to write scary things also :) | 12:56 |
mgedmin | http://mg.pov.lt/mg-vimrc.tar.gz | 12:56 |
jfroche | thanks a lot | 12:56 |
*** tiredbones has joined #schooltool | 12:57 | |
*** vidasp has joined #schooltool | 13:22 | |
*** alga has joined #SchoolTool | 14:30 | |
ignas | mgedmin: what do you think of an idea to store default "columns" and "sortOn" for objects as their class functions ? | 15:41 |
mgedmin | I do not understand it | 15:42 |
ignas | hmm, zc.table has the concept of columns | 15:42 |
ignas | a set of objects used as accessors/sorters when displaying a table of some objects | 15:42 |
ignas | the problem i am having is - i don't always have any instances of the object displayed in the table, and if they are comming from the relationship I don't have an instance of a container i could specialize an adapter on ... | 15:44 |
mgedmin | you lost me at "an instance of a container" | 15:46 |
ignas | if i have an instance of some object that maps 1:1 with the object displayed - i can adapt it to some IDefaultColumns | 15:47 |
ignas | and register the list of columns for the table ("title", "name", "surname" etc.) as an adapter | 15:48 |
ignas | but as i don't have an instance - i have to hardcode it in all the views, so i gathered that having an attribute that contains either an Interface or a Class is better than copy-pasting the list of columns | 15:49 |
ignas | i can't do anything useful with just an interface, so at the moment i am thinking of having a class method on Person, Resource etc. that returns columns | 15:50 |
ignas | the problem is that the motivation for classmethods is - I don't know any alternatives that would work | 15:51 |
mgedmin | I still do not understand what your problem is | 15:53 |
ignas | :/ | 15:53 |
*** vidasp has quit IRC | 16:34 | |
*** Lumiere has left #schooltool | 16:34 | |
*** wdickers has joined #schooltool | 16:56 | |
*** wdickers has quit IRC | 17:17 | |
*** Lumiere has joined #schooltool | 17:25 | |
*** vidasp has joined #schooltool | 17:40 | |
*** vidasp has quit IRC | 18:40 | |
*** vidasp has joined #schooltool | 18:40 | |
*** vidasp has quit IRC | 19:16 | |
*** vidasp has joined #schooltool | 19:17 | |
*** ignas_ has joined #schooltool | 20:04 | |
*** jfroche_ has joined #schooltool | 20:04 | |
*** vidasp has quit IRC | 20:06 | |
*** jinty has quit IRC | 20:09 | |
*** jfroche has quit IRC | 20:19 | |
*** ignas has quit IRC | 20:20 | |
*** alga has quit IRC | 20:20 | |
*** Aiste has quit IRC | 20:39 | |
*** vidasp has joined #schooltool | 20:42 | |
*** Aiste has joined #schooltool | 21:36 | |
*** mgedmin has quit IRC | 21:37 | |
*** Lumiere has left #schooltool | 22:18 | |
*** Aiste has quit IRC | 22:20 | |
*** Lumiere has joined #schooltool | 22:55 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!