Comments for Unfolding the Web http://unfoldingtheweb.com A new way of using the web Fri, 29 Aug 2008 01:30:31 +0000 http://wordpress.org/?v=2.2 Comment on Lifestreaming aggregators by pfig http://unfoldingtheweb.com/2008/03/22/lifestreaming-aggregators/#comment-2033 pfig Mon, 21 Apr 2008 21:16:35 +0000 http://unfoldingtheweb.com/2008/03/22/lifestreaming-aggregators/#comment-2033 how come no one ever mentions <a>jaiku</a>? how come no one ever mentions jaiku?

]]>
Comment on Sending errors to your ticketing system by Daniel Barradas http://unfoldingtheweb.com/2008/01/29/sending-errors-to-your-ticketing-system/#comment-2019 Daniel Barradas Mon, 03 Mar 2008 22:30:58 +0000 http://unfoldingtheweb.com/2008/01/29/sending-errors-to-your-ticketing-system/#comment-2019 "You’re dealing with an external or outsourcing developer so you want to stick with his/her e-mail address on the @author tag. This way, if there’s a problem in the future the developer will be automatically contacted by the ticketing system." I don't think this would work. It would have to be forwarded also. One other option would be to have "someone" have to deal with this kind of "lost" tickets. Nevertheless ... it's a great ideia! ;) “You’re dealing with an external or outsourcing developer so you want to stick with his/her e-mail address on the @author tag. This way, if there’s a problem in the future the developer will be automatically contacted by the ticketing system.”

I don’t think this would work. It would have to be forwarded also. One other option would be to have “someone” have to deal with this kind of “lost” tickets.

Nevertheless … it’s a great ideia! ;)

]]>
Comment on Sending errors to your ticketing system by Bruno Pedro http://unfoldingtheweb.com/2008/01/29/sending-errors-to-your-ticketing-system/#comment-2018 Bruno Pedro Thu, 14 Feb 2008 17:03:18 +0000 http://unfoldingtheweb.com/2008/01/29/sending-errors-to-your-ticketing-system/#comment-2018 Usually the @author tag is filled up with a name and an e-mail address, right? Your concern makes sense, so here's my solution. You can have two kinds of situations: 1- You're dealing with an external or outsourcing developer so you want to stick with his/her e-mail address on the @author tag. This way, if there's a problem in the future the developer will be automatically contacted by the ticketing system. 2- You're dealing with an internal developer, so the e-mail address will something@yourcompany.com, right? If the developer leaves the company you can and should immediately create an forward of his/her e-mail address to someone else. I think the problem is not with this attempted implementation but with company policies regarding their employees. Usually the @author tag is filled up with a name and an e-mail address, right?

Your concern makes sense, so here’s my solution. You can have two kinds of situations:

1- You’re dealing with an external or outsourcing developer so you want to stick with his/her e-mail address on the @author tag. This way, if there’s a problem in the future the developer will be automatically contacted by the ticketing system.

2- You’re dealing with an internal developer, so the e-mail address will something@yourcompany.com, right? If the developer leaves the company you can and should immediately create an forward of his/her e-mail address to someone else.

I think the problem is not with this attempted implementation but with company policies regarding their employees.

]]>
Comment on Sending errors to your ticketing system by Daniel Barradas http://unfoldingtheweb.com/2008/01/29/sending-errors-to-your-ticketing-system/#comment-2017 Daniel Barradas Tue, 12 Feb 2008 23:20:51 +0000 http://unfoldingtheweb.com/2008/01/29/sending-errors-to-your-ticketing-system/#comment-2017 I think this is a great idea. Just one note though ... "At a first glance, I could use the Reflection API to get meta-information about the code. Tickets could then be created and assigned to the appropriate person based on the @author doc tag." We live in a mutable world. At first glance I loved this idea but then I start thinking "but there can be many authors, employees often change companies", etc How do you propose to solve this kind of issues? :) Just my two cents ;) I think this is a great idea.

Just one note though …

“At a first glance, I could use the Reflection API to get meta-information about the code. Tickets could then be created and assigned to the appropriate person based on the @author doc tag.”

We live in a mutable world. At first glance I loved this idea but then I start thinking “but there can be many authors, employees often change companies”, etc

How do you propose to solve this kind of issues? :)

Just my two cents ;)

]]>
Comment on PHP and Smarty on Large-Scale Web Development by André Medeiros http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1907 André Medeiros Mon, 29 Oct 2007 23:20:33 +0000 http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1907 Bought it. It's a great shortcut book. Bought it. It’s a great shortcut book.

]]>
Comment on PHP and Smarty on Large-Scale Web Development by André http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1558 André Fri, 29 Jun 2007 18:11:17 +0000 http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1558 Oh I see what you mean. Since it can include a series of templates, I thought it was in the same family as smarty. Silly me. :) Maybe i'll do a test case... the same document (huge table?) generated both by smarty and xslt and time the results. :) One obvious advantage on using transform with xslt is that the View stays platform independent. That's why I'm curious to test it performance-wise. :) Thanks, you've given me stuff to think about. Oh I see what you mean.

Since it can include a series of templates, I thought it was in the same family as smarty. Silly me. :)

Maybe i’ll do a test case… the same document (huge table?) generated both by smarty and xslt and time the results. :)

One obvious advantage on using transform with xslt is that the View stays platform independent. That’s why I’m curious to test it performance-wise. :)

Thanks, you’ve given me stuff to think about.

]]>
Comment on PHP and Smarty on Large-Scale Web Development by Bruno Pedro http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1557 Bruno Pedro Thu, 28 Jun 2007 11:13:08 +0000 http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1557 Thanks for the comments. André, regarding XSLT, I had some experiences using it but not for a whole website. XSLT is the exact opposite paradigm of the Template View Pattern: the Transform View Pattern. That means that it must render or "burn" any document before it is served to the browser. I'm not sure if it will scale, but you can of course deploy a cache layer on top of it. Thanks for the comments.

André, regarding XSLT, I had some experiences using it but not for a whole website.

XSLT is the exact opposite paradigm of the Template View Pattern: the Transform View Pattern.

That means that it must render or “burn” any document before it is served to the browser. I’m not sure if it will scale, but you can of course deploy a cache layer on top of it.

]]>
Comment on PHP and Smarty on Large-Scale Web Development by Carlos Serrao http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1545 Carlos Serrao Tue, 26 Jun 2007 14:56:46 +0000 http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1545 Parabéns, eu li, está porreiro. Não tive oportunidade de comentar, mas pareceu-me um muito bom trabalho. Um abraço. Parabéns,
eu li, está porreiro.
Não tive oportunidade de comentar, mas pareceu-me um muito bom trabalho.
Um abraço.

]]>
Comment on PHP and Smarty on Large-Scale Web Development by André Ribeirinho http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1544 André Ribeirinho Tue, 26 Jun 2007 13:44:46 +0000 http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1544 Good work guys. I've read it and it's really good. The Short Cut is a great book for those (like me) doing stuff with PHP and Large Scale Applications. I'm using those techniques at www.adegga.com and it has really been useful to use the Template View Pattern (with Smarty) to organize and schedule development. Good work guys. I’ve read it and it’s really good. The Short Cut is a great book for those (like me) doing stuff with PHP and Large Scale Applications.

I’m using those techniques at www.adegga.com and it has really been useful to use the Template View Pattern (with Smarty) to organize and schedule development.

]]>
Comment on PHP and Smarty on Large-Scale Web Development by André http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1543 André Tue, 26 Jun 2007 13:06:01 +0000 http://unfoldingtheweb.com/2007/06/26/php-and-smarty-on-large-scale-web-development/#comment-1543 Very, very interesting. I'll definitely get it. Bruno, on the topic... have you ever worked with XSLT for templating a (whole) website? Do you have any idea whether it scales well or not? Very, very interesting. I’ll definitely get it.

Bruno, on the topic… have you ever worked with XSLT for templating a (whole) website? Do you have any idea whether it scales well or not?

]]>