... tell ... Bwaaaaaaaha-ha-ha-ha-ha-ha!! Not mine!! They f*&^ed up our home equity line of credit so bad, they finally had to close it out, apply all our...
... slide 11, which gives the algorithm is a jewel. I ended up doing my website using CGI::Prototype, Class::DBI and HTML::Seamstress because: 1/ I was not...
... I just hope it is right. ;-) ... You're not the only one. ... BTW, you don't need to use the _id feature. It only kicks if if the table name (foo_t)...
... Actually, the task-based nature of bOP has influenced my design of the current system. I just could not go in completely with bOP because so much of it was...
... It's much more complicated than that, and more importantly, you have start with the UI, not the DB when designing these things. You need a unique key for...
The load and unauth_load methods on Bivio::Biz::PropertyModel prevent the following idiom: $some_value = $self->new_other('SomeModel') ->unauth_load({param =>...
david farber
david@...
Feb 10, 2005 7:26 pm
202
... You can call unauth_load_or_die() for the above: my($value) = $self->new_other('SomeModel')->unauth_load_or_die({ param => value, })->get('some_value'); ...
... Oh, you built it to be fast--that's why its so slow! (Round trip post-to-receive time on bivio-lists is a minute or more, while it is almost instantaneous...
david farber
david@...
Feb 10, 2005 7:56 pm
205
... I suspect this delay is caused by the SMTP wait on the receiving servers. Sendmail sends synchronously so that we can bounce back to the sender if there's...
I realize I'm way late to this party, but hopefully there's still some food for thought on the table. :-) ... I'm with Tom on this one. Generalization is...
... ...and ever harder for other brains -- including your future brain -- to follow what you've done. Chris -- Chris Winters (chris.winters@...) Building...
... I've been struggling with this for some time. We learn math kinda this way: 1) Learn that I'm 1 or 2. 2) 1, 2, and 3 comes next. 3) Then 1, 2, 6, 7, 10,...
... It is no exaggeration to regard this as the most fundamental idea in programming: The evaluator, which determines the meaning of expressions in a...
Model::get_model is supposed to return an associated model based upon key-relationship information. Eg. Model.User->get_model('RealmOwner') should return the...
david farber
david@...
Feb 17, 2005 9:56 pm
211
... This is only the case for PropertyModels. PropertSupport should add the equivalence when PropertyModel fields are coupled with this ... It's just that...
Revision 2.54 2005/02/24 23:00:30 moeller * Bivio::Agent::Task doesn't issue warning for FORBIDDEN when there is no auth user. A redirect to the LOGIN task...
[Sorry for not keeping up with this. -- Rob :-] Revision 2.55 2005/02/24 23:28:40 nagler * Bivio::Biz::Model::RealmRole->change_public_permissions removed *...
... How do you do a table that *does* use multiple column primary keys in bOP? I recently came across this. I wanted a mapping of one table to another such...
I was playing with GNUStep recently. I was struck by how much ObjectiveC reminds me of the view language in bOP. I guess that is not terribly surprising,...
... Bivio::Biz::Model::RealmUser has an example of multi-column primary key: sub internal_initialize { return { table_name => 'realm_user_t', columns => { ...