- Mac OS X (at-least 1.5.x) has no easy way to display date and time in the menu bar. Followed instructions at MacInstruct website to copy the date format and paste it in time format. Note: I had to change all the time formats (short, long, medium, all) before making it work. I also had to go back to clock menu and remove "Show day of the week". Can't figure out how Mac hasn't solved such a big usability problem so far.
- By default you can't use tab in firefox to focus on drop down menus. This is easy to fix. Just need to go to Mac Preferences->Keyboard & Mouse->Keyboard Shortcuts and check "All controls" at the bottom under "Full keyboard access" topic.
Tuesday, December 8, 2009
Mac OX X irritants
I just started working on Mac OS X 1.5 and hit some major irritants which needed work-around:
Wednesday, June 3, 2009
Firefox: HOW TO REMOVE: "This Website Does Not Supply Identity Information"
This is a major irritant while adding bookmarks.
See Mozilla Support Forum for original post.
See Mozilla Support Forum for original post.
1. open the preferences page with the link about:config( i.e. type about:config in the location bar)
if the browser complains, click on the button to calm it :)
2. write: tips
3. in the list of prefs, find: browser.chrome.toolbar_tips
4. double click on it to change to false
5. tips disabled!
Wednesday, March 11, 2009
Ignoring loading external DTD while reading/parsing XML files
I encountered this problem while using xalan-J for XPath queries. We were using default xerces xml parser implementation. Our XML files referred to a DTD which we didn't have access to.
There are a number of workarounds for this. Choose the best that fits your situation.
Thanks to Denish for the 3rd workaround.
There are a number of workarounds for this. Choose the best that fits your situation.
- Remove the DTD declaration from XML file.
- Create an empty DTD file and turn off DTD validation.
- Turn off downloading of external DTDs and validation if the XML reader/parser implementation supports it. To do this for xerces, we did following:
DocumentBuilderFactory dfactory = DocumentBuilderFactory.newInstance();
// Ignore loading external DTD
dfactory.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);
// turn-off validation which will require DTD to be present
dfactory.setFeature(”http://xml.org/sax/features/validation”, false);
Thanks to Denish for the 3rd workaround.
Monday, February 23, 2009
JBoss 4.2 class loading problems
By default Jboss 4.2 does non-scoped class loading i.e. all EARs share the same class loader. This is non-J2EE but default way of doing things in JBoss. If you want an EAR to have its own class-loader (you wan different versions of the same library in different EARs), you need to include jboss-app.xml with following configuration:
<jboss-app>
<loader-repository>
${package-name}:archive=${unique-name}
</loader-repository>
</jboss-app>
An example:
<jboss-app>
<loader-repository>
com.shital:archive=test1
</loader-repository>
</jboss-app>
<jboss-app>
<loader-repository>
${package-name}:archive=${unique-name}
</loader-repository>
</jboss-app>
An example:
<jboss-app>
<loader-repository>
com.shital:archive=test1
</loader-repository>
</jboss-app>
This needs to be done for each EJB which needs a scoped class loader. Make sure that unique-name in above example is unique for each EAR!
This file should be packaged in the same dir as application.xml.Sunday, December 14, 2008
For rent: 3 BR +Servant's quarter Off Bannerghata Road, Opp IIM-B
Adarsh Palm Retreat 3 Br Apartment with servant's quarter for rent. Excellent Evershine Modular Kitchen and designer wardrobes. 3 bed/3bath - 2 BRs with attached bath. Servant's quarter with toilet. Rent Rs 30K/month. (negotiable). Brokers excuse.
Available: Immediately.
Location: Off Bannerghata Road, Behind Wockhardt Hospital, Opp IIM-B. Close to HSBC, HoneyWell and Accenture.
Apartment has common facilities like Club house, Swimming pool, Kids Play area, Sun deck, Barbeque plaza, Landscape garden, Squash court, Health club, Badminton court. etc. Facilities to be ready in 2 months.
Contact: smblr75@gmail.com (M) 9845438441
Checkout the interiors.
Available: Immediately.
Location: Off Bannerghata Road, Behind Wockhardt Hospital, Opp IIM-B. Close to HSBC, HoneyWell and Accenture.
Apartment has common facilities like Club house, Swimming pool, Kids Play area, Sun deck, Barbeque plaza, Landscape garden, Squash court, Health club, Badminton court. etc. Facilities to be ready in 2 months.
Contact: smblr75@gmail.com (M) 9845438441
Checkout the interiors.
Wednesday, August 6, 2008
Resizeable Textarea - A great firefox plugin
https://addons.mozilla.org/en-US/firefox/addon/3818
Allows you to adjust the size of the textarea in Firefox. Absolutely mandatory if you are into social blogging or working on twiki.
Allows you to adjust the size of the textarea in Firefox. Absolutely mandatory if you are into social blogging or working on twiki.
Tuesday, July 8, 2008
GMail conversation view in Outlook
Guess this must be old news by now but finally I set-up my outlook to show conversation view which is such a great feature in GMail. Of-course Outlook natively supports conversation view on a per folder basis but that's not useful as you will loose out on your replies which are in a different folder e.g. "Sent Items". I found a great article which shows how to mimic GMail's functionality (more or less) in Outlook.
See Dan's post on coversation view in Outlook.
Thanks Dan!
See Dan's post on coversation view in Outlook.
Thanks Dan!
Subscribe to:
Comments (Atom)

