Archive for December 19th, 2006
Automatically open EXE files in firefox
by kiran on Dec.19, 2006, under General
Edit the following file nsHelperAppDlg.js under
Find the following lines and Comment it out : Using (//) at the beginning of each one:
360 var mimeType = this.mLauncher.MIMEInfo.MIMEType;
361 if (mimeType == "application/octet-stream" ||
362 mimeType == "application/x-msdownload" ||
363 this.mLauncher.targetFile.isExecutable()) {
364 rememberChoice.checked = false;
365 rememberChoice.disabled = true;
366 }
367 else {
(leave line 368 as it is)
369 }
(skip ahead about 170 lines)
538 if (this.mLauncher.targetFile.isExecutable() || (
539 (mimeType == "application/octet-stream" ||
540 mimeType == "application/x-msdownload") &&
541 !openWithDefaultOK)) {
542 this.dialogElement("open").disabled = true;
543 var openHandler = this.dialogElement("openHandler");
544 openHandler.disabled = true;
545 openHandler.selectedItem = null;
546 modeGroup.selectedItem = this.dialogElement("save");
547 return;
548 }
- Next time , when you click on EXE file in Firefox and when normal download box appears
- Select it, and choose “Other…”. Then browse and select C:\Windows\Explorer.exe
Design/IP Reuse ..well understood..how about prototyping??
by kiran on Dec.19, 2006, under General
I have been hearing about the design/IP reuse from time to time. Today there was an article on EE times which can read by clicking this link Design-Reuse
I think many big companies have adopted the reuse methodology and realize the benefits of it. Even small-medium companies re-use the blocks or IP’s in most of their chips. So, I dont think there is any need to keep repeating the importance over and over again. Most of the companies cut down their design cycle time and costs using this reuse methodology. I think now one should look forward and see if they can get good prototyping flow . I recently worked on prototyping efforts and it correlated very well with 90nm , 130nm and 180nm. For 65nm and below, special considerations have to be adopted like taking the account of parasitic effects . With this flow, the time to achieve timing closure is significantly smaller as designer gets early feedback.
I would appreciate if anyone has any experience in developing/using the prototyping flow and can share their concerns. It will be very informative and good discussion.

