tag:blogger.com,1999:blog-17250766324500860902008-11-11T15:05:29.622-08:00Technical thoughtsEduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.comBlogger25125tag:blogger.com,1999:blog-1725076632450086090.post-72027265075442217002008-10-26T10:39:00.000-07:002008-10-27T14:59:44.431-07:00Windows Vista SP1 without connection to Internet SolvedToday I have had an important problem with my Windows Vista SP1, with a <u>simple</u> solution:<br /><b><code>netsh winsock reset</code></b><br><br /><br />(source, that has saved my life, and Vista to be changed to XP is: <a href="http://www.mydigitallife.info/2007/06/18/repair-and-reset-windows-vista-tcpip-winsock-catalog-corruption/">Repair and Reset Windows Vista TCP/IP Winsock Catalog Corruption</a>... Thank you!)<br /><br />Form the post and the date of the post it seems to be an error of Vista and not of SP1.<br /><br />the set of errors I have had include (free translations from Spanish) :<br />- the client DHCP was down<br />- unable to start Windows Socket interface<br />- error with the RPC service<br /><br />The reparation mechanism of Vista doesn't work because it tries to repair the the DHCP client, which is not working but for other reason.<br /><br />The real reason is that the TCP/IP stack Winsock settings get corrupted with wrong LSP (Layered Service Providers (?)). No idea what this means... but you can list the catalog of LSPs with: netsh winsock show catalog.<br /><br />This has been one of these few times that I find a useful solution searching for a complex problem in Internet. Thanks again to the people of <a href="http://www.mydigitallife.info/">My Digital Life</a>.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-28941949824360562262008-10-16T12:33:00.000-07:002008-10-16T14:39:26.545-07:00Excel: copy the exact content of cellsHere a couple of tips to copy the exact content/formula of a range of cells in Microsoft Excel. First some introduction and later the tricks<br /><br /><b>Some thoughts...</b><br />As you probably know, Excel has a lot of possibilities in terms of copy cells (copy only values, formula, create a reference to the other cell, transmute the content, etc).<br />But when you copy a formula in fact excel keeps the relative references (what is in general the expected behaviour)...<br />Excel has a different behaviour if you move the cells (Cut&Paste), then it move the formula as it is without changing the references.<br /><br /><b>Trick 1</b><br />1. Select and copy (Ctrl+C) the range of cells you want to copy. (we call this area: range1)<br />2. Use an empty region of the sheet to paste (Ctrl+V) that content temporally. (we call this area: range2)<br />3. Select again the original region (range1) but this time move the cells to the region you want to copy the exact formulas. (Ctrl-X, Ctrl-V)<br />4. And now copy back the cell range in point 2. (what we called region2) back to the original region (range1).<br /><br />... and you have it (just remove the temporal region range2).<br /><br /><b>Trick 2</b><br />This one use VBA macro script to copy the formulas:<br /><code><br />With Sheets("Sheet1")<br /> .Range("A11:D20").Formula = .Range("A1:D10").Formula<br />End With<br /></code><br />(source: <a href="http://j-walk.com/ss/excel/usertips/tip066.htm">Excel User Tips</a>)Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-46851533829825165202008-10-08T16:51:00.000-07:002008-10-08T17:19:43.059-07:00Future BookThanks to a <a href="http://tecnodireccion.blogspot.com/2008/09/futuro-libro.html">friend's blog</a> I have discovered that the book "Market-Oriented Grid and Utility Computing" (in which I'm co-author of a chapter "Service Level Agreements in the Grid Environment", wow! :) ) is announced in <a href="http://www.amazon.com/Market-Oriented-Utility-Computing-Parallel-Distributed/dp/0470287683/ref=sr_1_1?ie=UTF8&s=books&qid=1221859843&sr=8-1">Amazon</a>.<br /><br />My first book (sniff!). ;)<br /><br />The book is expected in February, btw.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-44834059786391399202008-09-13T00:53:00.001-07:002008-09-14T08:03:22.060-07:00iPhone development without spend 100$If you, like me, just want to learn how to develop applications for the iPhone (and with luck even create one) but don't want to spend 100$ of the apple program for developers, There are very clear instructions in <a href="http://www.246tnt.com/iPhone/">246nt.com</a> (http://www.246tnt.com/iPhone/), maintained by Sylvain Munaut, about how to use XCode with a Pwned iPhone and be able to make Build&Go and also debug the program in the terminal (this work from firware 2.0.0 to 2.0.2, as far as I know).<br /><br />The process is easy to follow, but you need SSH access to the iPhone and also hack the iPhone installer and the SpringBoard (also included in the instructions).<br /><br />There are very clever people out there.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-46403654519874760232008-09-11T01:53:00.000-07:002008-09-29T08:27:12.705-07:00Missing functionality in NozbeI use this short perl program to have all the projects and tasks in <a href="http://www.nozbe.com/a-3DE643AF">Nozbe</a> listed in one document, this perl program generates a .txt and a .rtf document... So, you can review your tasks at a glance:<br /><code><br />$|=1;<br />use strict;<br />use LWP::Simple;<br />use JSON;<br />use RTFUtil;<br /><br />my $content = get("http://www.nozbe.com/api/projects/key-here_your_key");<br /><br />print "$content\n";<br /><br />my $json = new JSON;<br />my $projects = $json->decode($content);<br />print "\n ---\n";<br />print "".@$projects."\n";<br /><br />open FILE, ">tareas.txt" or die $!;<br />rtf_create("tareas.rtf");<br />my $num=1;<br />foreach my $project (@$projects) {<br /> print $$project{name}."\n";<br /> print FILE " == ".$$project{"name"}." (".$$project{count}.") ==\n";<br /> rtf_print_bold(" == ".$$project{"name"}." (".$$project{count}.") ==");<br /> if($$project{count}==0){next;}<br /> $content = get("http://www.nozbe.com/api/actions/what-project/id-".$$project{"id"}."/key-here_your_key");<br /> my $tasks = $json->decode($content);<br /> foreach my $task (@$tasks) {<br /> if($$task{done}==0){<br /> print FILE $num.". ".$$task{name}."\n";<br /> rtf_print($num++.". ".$$task{name});<br /> }<br /> }<br /> print FILE "\n";<br /> rtf_print();<br />}<br /><br />rtf_close();<br /></code><br /><br />You can see the <a href="http://www.nozbe.com/gtd/api">Nozbe API here</a> and <a href="http://www.nozbe.com/account/extras">your key here</a> in the extra section under the API key label (to replace "here_your_key" in the code).<br /><br />It would be fantastic to have this functionality directly available in the web interface.<br /><br />Cheers.<br /><br /><b>Updated:</b> Now done tasks are not included.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com3tag:blogger.com,1999:blog-1725076632450086090.post-59577677487089916532008-06-22T15:02:00.000-07:002008-06-22T15:21:10.486-07:00Lithium-ion battery conservationI have found a very well written article about how to use lithium-ion battery <a href="http://www.elfrancotirador.cl/2006/09/04/baterias-de-litio-ion-mitos-y-leyendas/">"Lithium-ion batteries: Myths and Legends"</a> (Spanish) to enlarge the batteries' life. This article has broken some preconceived ideas I had about how to recharge and use this kind of batteries:<br />1. you don't have to follow full charge-discharge cycles, in fact this is bad for the battery life, it's better to make partial recharges.<br />2. heat is very harmful for batteries, some web pages recommend to remove the battery from the laptop when the computer is running on fixed power.<br /><br />The previous article is based on this one from<a href="http://www.batteryuniversity.com/parttwo-34.htm"> BatteryUniversity.com</a> which also contains very valuable information.<br />As an additional reference, the page of the <a href="http://en.wikipedia.org/wiki/Lithium_ion_battery">Lithium-ion battery in Wikipedia</a>, which also includes <a href="http://en.wikipedia.org/wiki/Lithium_ion_battery#Guidelines_for_prolonging_Li-ion_battery_life">guidelines for prolonging Li-ion battery life</a>.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-34178237137068930202008-06-19T09:09:00.000-07:002008-06-19T09:45:50.458-07:00Cool iPhone application designI don't know if this <a href="http://culturedcode.com/things/blog/2008/06/a-phone-an-ipod-an-internet-communicator-and-a-full-featured-task-manager.html">"Things Touch"</a> by <a href="http://culturedcode.com">CulturedCode</a> is going to become a real application... but I have to admit that the design is really cool. ;)<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://culturedcode.com/things/blog/wp-content/uploads/2008/06/thingstouch-papercollage.jpg"><img style="float:left; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px;" src="http://culturedcode.com/things/blog/wp-content/uploads/2008/06/thingstouch-papercollage-thumb.jpg" border="0" alt="" /></a>Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-57007555436041771562008-06-15T05:20:00.000-07:002008-06-15T07:38:23.368-07:00Lost productivity caused by email and other electronic interruptionsAn interesting article in the New York Times <a href="http://www.nytimes.com/2008/06/14/technology/14email.html">"Lost in E-Mail, Tech Firms Face Self-Made Beast"</a> describes what all people knows: that email (and the addiction to check for new emails every minute) and instant messages are causing important lost of productivity, and money.<br />In my personal experience I really try to delay the response when something is not important, but as I commented in my previous entry and it's described in the article, I suffering of "e-mail bankruptcy" ("getting so far behind in responding to e-mail messages that it becomes necessary to delete them all and start over") or "e-mail apnea"... you are so overwhelmed by email that you are unable to process them.<br /><br />... clearly we are losing the battle against email.<br /><br /><span style="font-weight:bold;">Update:</span> googling about "email bankruptcy" I have found this article <a href="http://valleywag.com/tech/trends/declaring-e+mail-bankruptcy-254608.php">"Declaring e-mail bankruptcy"</a> reviewing important e-mail bankruptcy declarations in the pass.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-27649303595517725112008-05-31T13:05:00.000-07:002008-06-16T11:28:31.925-07:00The impossible INBOXNow I have surrendered, it's impossible to keep my inbox with zero emails. I have read lot of techniques, see presentation in youtube and google video but anything works. My problem is that I receive such amount of emails that I can spent all the day only processing it. If I don't do it (because I'm supposed to do also some "practical" work) then the email get in the inbox for ever... the most worrying situation is that from time to time I lose some important information in one email never or quickly read and soon forgotten.<br />As I said I have surrendered so I'll start organizing by emails by months instead of with any useful method. This way sure I can keep my inbox with zero messages.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-4560457158166504132008-05-31T12:13:00.000-07:002008-06-28T01:38:05.006-07:00Task organizationToday I have seen one interesting blog entry about <a href="http://aks-research.blogspot.com/2007/08/diary-moleskine-hack.html">how AK, the woman author of the blog, organizes her tasks using Moleskine notebooks</a>. Very impressive technique, but it doesn't fix with my way of doing things.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-64566192372000717112008-03-29T08:07:00.000-07:002008-06-28T01:39:05.500-07:00Nozbe, Organizing tasks (To-DO)It’s always a nightmare trying to organize the every days tasks, I have tried different methods and different tools, the classical to-do list has been very useful to me I have tried to write all the tasks in the list to don’t keep them in my mind, but at the end, especially when you accumulate a great number of tasks is difficult to manage (you write down repeated tasks, and it’s not easy to see the set of tasks related with the same activity)... any way this not very sophisticated method has worked. Then I have switched to <b><a href="http://www.rememberthemilk.com/">“Remember the Milk”</a></b>, this tool is more powerful and useful than the first impression you get. You can group tasks by different groups and apply the typical priorities and due dates, etc. But it has a very interesting option, you can tag you tasks so is like a more tine grouping of your tasks.<br />My last discovery is <b><a href="http://www.nozbe.com/a-3DE643AF">Nozbe</a></b>, it applies the famous method of GTD: <a href="http://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/dp/0142000280">Getting Things Done: The Art of Stress-Free Productivity</a>, that you can find stated in so many web tools but poorly implemented, except in Nozbe. From the first time it’s evident that is a very well done site. And my first impressions using it are very good. It seems the creator of the website is from Poland, that probably explains the awful name he has selected... but anyway :) a fantastic tool.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com1tag:blogger.com,1999:blog-1725076632450086090.post-18351467911836335172008-02-23T15:30:00.000-08:002008-06-28T01:39:47.542-07:00the problem of no keyboards<a href="http://www.cbsnews.com/stories/2008/02/22/tech/main3866187.shtml">Microsoft wants to use speech and touch screen to replace the keyboard</a>, this is cool just as the iPhone or this multi-touch <a href="http://www.popularmechanics.com/technology/industry/4217348.html">coffee table from Microsoft</a> do, but it has a problem as you can see in this <a href="http://www.bram.us/2007/01/17/my-ismudginator-02/">iPhone simulator</a>.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-23604937276299069432008-02-15T11:02:00.000-08:002008-02-15T11:03:27.395-08:00Indiana Jones and the Kingdom of the Crystal Skull<a href="http://movies.yahoo.com/feature/indianajones.html?showVideo=1">Indiana Jones...</a><br /><object width="400" height="327" id="uvp_fop"><param name="movie" value="http://l.yimg.com/cosmos.bcst.yahoo.com/up/fop/embedflv/swf/fop.swf"></param><param name="flashVars" value="id=6441610&rd=eyc-off&ympsc=&postpanelEnable=1&prepanelEnable=1&infopanelEnable=1&carouselEnable=0"></param><param name="wmode" value="transparent"></param><embed height="327" width="400" id="uvp_fop" allowscriptaccess="always" src="http://l.yimg.com/cosmos.bcst.yahoo.com/up/fop/embedflv/swf/fop.swf" type="application/x-shockwave-flash" flashvars="id=6441610&rd=eyc-off&ympsc=&prepanelEnable=1&infopanelEnable=1"></embed></object>Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-58979135782096902672008-02-08T13:40:00.000-08:002008-02-08T13:47:23.420-08:00Virtual Desktop: CubeDesktopI have just tested the Virtual Desktop software from <a href="http://www.cubedesktop.com/">CubeDesktop</a> and is really impressive!!. Different 3D effects to change among virtual desktops and super-fast implementation. it runs incredible quickly in my old laptop 1.1GHz, 760MB of RAM... worth a try!.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-37560620614040482872008-01-31T14:32:00.000-08:002008-02-02T13:37:50.322-08:00Oh come on, nobody thinks Google is scaryFunny <a href="http://blogs.guardian.co.uk/technology/2008/01/29/oh_come_on_nobody_thinks_google_is_scary.html">video </a>about the potential of Google.<br /><br /><object width="425" height="373"><param name="movie" value="http://www.youtube.com/v/fPgV6-gnQaE&rel=1&border=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/fPgV6-gnQaE&rel=1&border=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="373"></embed></object>Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-70358856946886422902008-01-29T04:18:00.000-08:002008-02-02T13:37:33.037-08:001 Million Missing iPhonesThis interesting article <a href="http://bits.blogs.nytimes.com/2008/01/28/good-news-in-the-one-million-missing-iphones/index.html?ref=technology">"Good News in the 1 Million Missing iPhones"</a> tries to explain why Apple has sold 3.75 million iPhones and AT&T has activated only 2 million phones... well, the explanation is easy, isn't it?Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-71252822779442069192008-01-16T14:25:00.000-08:002008-02-02T13:36:41.355-08:00MacBook AirHow I like this guy, what a wonderful machine... <object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/x5iPJwZkr6E&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/x5iPJwZkr6E&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br /><br /><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/OP-UpM8Q-wc&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/OP-UpM8Q-wc&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br /><br />It has lot of downsides, the only important one to me is you cannot change the battery. 5h. of autonomy is not so bad but currently I can work the full day unplugged (like the music) with my Dell.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com1tag:blogger.com,1999:blog-1725076632450086090.post-77887213385323902802007-10-18T00:05:00.000-07:002008-02-02T13:38:17.243-08:00We can say officially that iPhones and iPod Touch are PDAs<a href="http://www.nytimes.com/2007/10/18/technology/18apple.html?_r=1&ex=1350446400&en=cd6f36da93451c6e&ei=5088&partner=rssnyt&emc=rss&oref=slogin">Apple to Open iPhone Programming to Outsiders</a>, there is a clear interest on developers to create new applications for the iPhone, as they are currently duing using <a href="http://video.on.nytimes.com/?fr_story=FRsupt219140">installer.app</a>. And there is already a huge numbers of Web 2.0 applications for the iPhone (in most of the cases works also in Safari)... Also curious is how people install in the iPod touch all the applications that apple has artificially removed from the iPhone.<br />The new SDK is a good thing that adds lot of value to these gadgets.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-58666879327298545312007-08-24T09:43:00.000-07:002007-08-25T09:03:20.562-07:00Interview with kernel developer Con Kolivas: "Why I quit"A very interesting <a href="http://apcmag.com/node/6735/">interview with Con Colivas</a> about why he quitted the Linux kernel development. He has been working patching the kernel to make it better in the Desktop, to improve the user experience... and how he fails to get his patches in the mainline kernel.<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://apcmag.com/node/6735/"><img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://apcmag.com/system/files/images/linux-con-kolivas2.png" border="0" alt="" /></a><br /><br />He talks about the not so idyllic and wonderful part of the open source development.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-47924283301096341772007-07-01T14:01:00.000-07:002007-07-01T14:29:58.550-07:00Inbox zeroI usually read this blog, <a href="http://www.nakedtranslations.com">Naked Translations</a>, and the last entry (at this time) <a href="http://www.nakedtranslations.com/en/2007/06/000828.php">"How to organise your emails - update"</a> was a very interesting entry about how to keep your Inbox empty (I currently have around 800 emails in my Inbox so I read the articles with lot of interest).<br /><br />This article leads to other two:<br />- <a href="http://www.lifehacker.com/software/top/geek-to-live--empty-your-inbox-with-the-trusted-trio-182318.php">Geek to Live: Empty your inbox with the Trusted Trio</a>, that basically describes a system with only three folders: <a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://cache.lifehacker.com/assets/resources/2006/06/geektolive-trustedtrio.jpg"><img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px;" src="http://cache.lifehacker.com/assets/resources/2006/06/geektolive-trustedtrio.jpg" border="0" alt="" /></a><span style="font-weight:bold;">Action</span>, for the tasks you must complete; <span style="font-weight:bold;">Archive</span>, for long-term store of emails and <span style="font-weight:bold;">Hold</span>, for actions you will handler during the next days. :(<br />- <a href="http://lifehacker.com/software/geek-to-live/separate-your-email-from-your-to+dos-272590.php">Separate your email from your to-do's</a>, this article is the interesting one, because it comes to the method that I'm currently using (without success). It basically says something evident "email isn't a good task manager", the subject of a email doesn't express the thing you have to do, you need to reread the chain of emails to realize what is you task. What it proposes is to keep a separated list of TO-DO where you write the task you have to do (you stop using the email as a task manager) and also rename the Action folder to FOLLOWUP, here you'll store the emails that need a replay, making also a notation in your TO-DO list: ... (followup)... to know the email is in that folder. <br /><br />I think that the FOLLOWUP folder is a good idea, I'll try, let see.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-54104128099259611692007-06-02T13:03:00.000-07:002008-02-02T13:38:43.203-08:00Bill Gates and Steve Jobs interviewYou can find a <a href="http://d5.allthingsd.com/20070530/d5-gates-jobs-interview/">interview with Bill Gates and Steve Jobs </a>together in D5.<br /><br />I have a PC, as most people do, but I have to confess that I have always felt admiration for Apple and their products. I have an iPod an it's incledible easy to use compare with other MP3 players, and people who have Macs are very vehement about how wonderful is a Mac... I'm personally feel a bit scare about the price and software available.<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://d5.allthingsd.com/20070530/d5-gates-jobs-interview/"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px;" src="http://www.gadzooki.com/wp-content/uploads/2007/06/stevejobs-billgates-d5.jpg" border="0" alt="" /></a><br /><br />Anyway, <a href="http://www.youtube.com/watch?v=N-2C2gb6ws8">What will Microsoft do without Apple</a>? ;)<br /><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/N-2C2gb6ws8"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/N-2C2gb6ws8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-57809202446745247972007-05-29T14:56:00.000-07:002007-05-29T15:09:17.756-07:00CPI (Curioso pero inútil)<a href="http://curiosoperoinutil.com/">CPI</a>(spanish) "Curious but useless", a blog about scientific disquisitions, intesting books, and analysis of the hoaxs we sometimes receive in our inbox. They also have a forum where any people can make questions that they try to solve.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-45603109179195354072007-03-02T14:16:00.000-08:002007-05-29T15:09:44.015-07:00MICRON GridDuring the <a href="http://www.eu-egee.org/egee_events/industryday/EGEE_Industry_Day_Spain/">EGEE Industry Day</a> past 1st of March, organised by CETA-Ciemat I saw a presentation by Brooklin Gore about the Computing Grid internally used by <a href="http://www.micron.com/">MICRON</a> (a world wide company manufacturer of chips/flash memories...). They use the idle Desktop PCs to execute jobs. All the Grid infrastructure is based on CONDOR.<br /><br />One kind of jobs ('portable' I think was the name) are moving around the World meanwhile people slept using the computational power. :) ... "Follow-the-moon" job in the article bellow.<br /><br />I have found this <a href="http://www.gridtoday.com/grid/633762.html">link</a> (A Peek into Micron's Grid Infrastructure) where you can find more detailed information about the MICRON Grid.<br /><br />In any case, very different from the Grid envisioned by <a href="http://www.akogrimo.org/">Akogrimo</a> or <a href="http://www.eu-brein.com/">BREIN</a>.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0tag:blogger.com,1999:blog-1725076632450086090.post-26188960717734490732007-02-11T14:24:00.000-08:002007-05-29T15:10:07.396-07:00send SMS to install programs in VistaI have to search a little bit through Internet, but my brother had to send two SMS and receive and authorization code to be authorized by Windows Vista to install Azurius and other program (which name I don't remember)... amazing!!Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com2tag:blogger.com,1999:blog-1725076632450086090.post-28570822545563660152007-02-09T12:52:00.000-08:002007-05-29T15:10:21.930-07:00XML a high level protocolI have started to think that the great success of XML and the Web Services, beside the fact that is slow and chatty protocol is because XML is a high level protocol (the same way Java is a high level programming language).<br />I don-t imaging myself changing the CORBA protocol to add certain feature... but things changes when we talk about XML. It's not a human readable but more readable that binary protocols, and easier to change: yes. That's the success and the strength of XML....<br />We have just to wait to see how the performance problem of XML are solved... and in my opinion has a lot.Eduhttp://www.blogger.com/profile/07072963402909334762noreply@blogger.com0