Médicos
Oído en la radio, origen desconocido:
Un paciente sano es un paciente no suficientemente explorado
Unos y ceros. A veces, en el orden adecuado.
Oído en la radio, origen desconocido:
Un paciente sano es un paciente no suficientemente explorado
Posted by -Xv at 23:32
Systems often outlive the assumptions of their original designers. The millenium bug is a classic example. Assuming that the software would be replaced by 1999, early designers used two-digit dates. That assumption cost billions to correct. My own grandmother was the victim of a similar false assumption. When my grandfather passed away in the 1970s, she bought a dual headstone, precarved with her name and "19__". At the age of 112, Mary MacIssac, like many legacy systems, continues to outlive the designer's expectations.From the Leverage Legacy Systems chapter of Agility and Discipline Made Easy. Practices from OpenUP and RUP (amazon.com,amazon.co.uk ,safari), by Per Kroll and Bruce MacIsaac.
Posted by -Xv at 0:31
The RTP Scrolls is a place where Denilson Nastacio and his readers have some fun drawing analogies from unexpected sources, borrowing examples from Mother Nature, mathematics, physics, biology, politics and on occasion, metaphysics.
Denilson's unexpected jumping often makes me think about James Burke's Connections (an alternative view of change) , one my my favourite TV shows ever (that I haven't had the chance to watch it in 20?! years). The great news for me is that, while googling to write this post, I have learned that I'll be able to watch some of the episodes.
Enjoy!
Posted by -Xv at 16:42
Web 2.0: la revolución de RIA en el desarrollo de aplicaciones web. Un enfoque práctico: al World Trade Center de Barcelona el primer de febrer, i a Madrid el 8 de febrer.
Organitzat per atSistemas, Business Partner Premier de IBM.
Ups! Inscripcions al 91 640 76 20 o per mail a Isabel Hueso (ihueso at atsistemas.com)
Posted by -Xv at 14:28
A tool for batch uploads to googlepages, as anticipated in an earlier post.
Posted by -Xv at 14:23
Summary: there are times when Firefox security gets in your way. Having a directory where you can place xul, html and scripts to run with chrome privileges enables you to shoot yourself in the foot and to create nice and handy hacks.
The itch that called for scratching: I wanted to hack something to let me upload several files at once to googlepages [1]. The problem is that, for very good reasons, you can not use JavaScript to change the value of input fields of type file: you usualy don't want scripts reading files in your disk. So, a bookmarklet, that to the browser looks as if it were part of the page, wouldn't cut it. Greasemonkey userscripts do run sandboxed, but not under chrome privilege [2], so I did not try that. I tried to give the page UniversalFileRead privilege [3][4], but failed.
A chrome folder. From Under chrome's influence, slightly modified,
You need to keep in mind that chrome is catched, so you may not see the changes you make immediately. Setting
In the browser's installation directory, create a new filechrome/mychrome.manifest
and put a single line into it:content mychrome file:///D:/whatever/mychrome/Note that the trailing slash is significant. Then create the fileD:\whatever\mychrome\hello.txt
and add some text:hello world!After a complete restart of your browser, you can open that file usingchrome://mychrome/content/hello.txt
.
nglayout.debug.disable_xul_cache
to true
[5] or the Extension Developer's Extension ability to reload chrome without restarting the browser are helpful here.UniversalXPConnect
privilege without having to grant it to everything from file: and without having to mess with the capability.principal.codebase
annoyance.user_pref("capability.principal.codebase.googlepages1.granted", "UniversalFileRead");but still got a security exception.
user_pref("capability.principal.codebase.googlepages1.id", "http://pages.google.com/");
nglayout.debug.disable_xul_cache
: I haven't tried it. As I write this,I realize that my user.js
sets it to true
while my prefs.js
ignores it and keeps it to false
. Posted by -Xv at 23:44
Si te instalas esta extensión de Firefox podrás saber cómo llegaste por primera vez a una página: How'd I Get Here?.
Otra pequeña joya de Jesse Ruderman, uno de los mayores expertos en seguridad del Firefox y familia.
Posted by -Xv at 7:49
Giles Tremlett, antropólogo y corresponsal de The Guardian en España, en La Contra (de Ima Sanchís) de La Vanguardia de hoy (no encuentro el link?!):
(En Inglaterra,) los niños aprenden que no deben fiarse de los adultos, y cuando llegan a la adolescencia siguen sin fiarse. Aquí, sin embargo, todavía existe el respeto intergeneracional.
A los ingleses nos sorprende mucho que en las encuestas, a la pregunta de qué es lo más importante en su vida, los adolescentes españoles contesten que su familia.
Nosotros somos muy estrictos con los niños pequeños, queremos que se porten bien en todas las situaciones. Aquí están mimadísimos, pero luego se transforman en adolescentes más sanos que los nuestros.
Posted by -Xv at 15:54
I'm reading Mike Cohn's Agile Estimating and Planning (amazon.com amazon.co.uk); so far, a great book. Jim Highsmith's foreword is well worth reading.
On the chapter of techniques for estimating, Cohn describes Planning Poker, something that feels so simple and effective that you almost have to run to join your team and give it a try. You can read the description at http://www.planningpoker.com/detail.html. The site hosts a tool to enable distributed teams to play Planning Poker. Disclaimer: I still haven't played poker nor checked the tool.
One the nice things of Planning Poker is that it is not tied at all to software development: projects from other domains that have to be sized by guestimates (like writing a complex report) fit nicely in this approach.
Posted by -Xv at 23:12