OpenOffice.org announced first major update to OpenOffice. 1.1 is now final and English version is available for download on Windows, Solaris and Linux. I have been using 1.0.x versions and 1.1 RC's for a while. With every update OpenOffice is getting better and better and better compatability with M$ Office. OpenOffice is now the only office suite on my home machine.
The two new major features for me in 1.1 update are export to PDF format from OpenOffice.org Writer and export to Macromedia Flash format (.swf) from OpenOffice.org Impress. Support for export to PDF got better with every update.
Checkout my blog archive for the month 2003_09 exported to PDF from Writer:Kumar Mettu's Blog.pdf. The only data lost from saved html file is Hyperlinks.
Here is a simple presentation exported to Macromedia Flash format (.swf):
Check out OpenOffice.org XML Essentials book online.
Wednesday, October 01, 2003
Office: OpenOffice.org 1.1 released
Posted by
Kumar
at
7:25 PM
0
comments
Tuesday, September 30, 2003
J2ME: Get Weather Forecasts Free
Weather on Demand is one of the most common applications of SMS. Few of weather service examples are:
1. Weather alerts from Verizon .
2. Weather Network and TELUS Mobility's On Demand Weather service and
3. Weather.com's Radar on Mobile Phones.
With a simple MIDlet you can get Weather forcasts free on your phone. US government provides free weather forecasts here. Note that the weather forecasts are not as high quality as commercial services. The simple MIDlet here displays weather at SF(modify the URL to point to your city):
001 import java.io.IOException;
|
You can download Weather.jar and Weather.jad directly. Tested on my i88s. Here is the screen snapshot of Motorola i88s simulator:
This can be further extended to support features like:
1. Select the city where you want weather forcast(using kxml)
2. If your phone supports GPS( like my Motorola i88s), you can display weather forecasts for your current location.
Posted by
Kumar
at
12:09 AM
0
comments
Monday, September 29, 2003
M$: MSBuild - M$ version of ANT
Microsoft is coming up with a build tool(MSBuild). MSBuild is the next generation build engine and platform for Visual Studio .NET. Microsoft has a session about the new build system during Microsoft Professional Developers Conference 2003.
From introduction it looks like it will ship with the .NET redistributable and not Visual Studio. Also it appears that MSBuild will be an XML based Ant like tool with XML files to drive the build. Of course a similar build tool exist as Nant.
This is yet another block that has been missing in .NET (compared to J2EE) that Microsoft decided to fill.
Posted by
Kumar
at
6:20 PM
0
comments
Saturday, September 20, 2003
J2SE: Taking screen snapshots in JAVA
As programmers many a times we need take snap shots of our screens. If we can take snap shot in java why use OS specific way to take a snap shot?
Here is a simple code example of taking snapshot in java (Either PNG format or JPEG format):
01 import java.awt.AWTException;
|
This code requires J2SE1.4. There is no real use of this code unless you extend it to make use of it(like taking snapshots at fixed intervals etc...).
Posted by
Kumar
at
9:44 PM
2
comments
Friday, September 19, 2003
General: China to help Europe develop GPS rival
New Scientist reports China has joined a European effort to develop a new global satellite navigation system that would offer a more accurate civilian alternative to the Global Positioning System. The Galileo system will be precise to within a meter, while the civilian GPS service is accurate to around 10 meters. This development adds to the consternation of the U.S. military, which controls the GPS and currently enjoys the option of downgrading the civilian service during military conflicts.
Posted by
Kumar
at
9:17 PM
0
comments
Sunday, September 14, 2003
Microsoft links with Motorola to launch mobile phone
Telegraph | Money | Microsoft links with Motorola to launch mobile phone: "Microsoft's bid to dominate the market for mobile phone operating systems will receive a boost today when the US software giant launches its first phone with a major handset maker."
Untold story:In a related product launch Steve Ballmer, Chief Executive Officer Microsoft Corp announced general availability of the Blue Screen of Death sized down for use in Motorola handset
Posted by
Kumar
at
9:45 PM
0
comments
Friday, September 12, 2003
J2SE: A nice tool to learn API differences
JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared. This is very useful for describing exactly what has changed between two releases of a product. Only the API (Application Programming Interface) of each version is compared. It does not compare what the source code does when executed.
Sample Reports:
Comparing J2SE1.4.0 and J2SE1.4.1
Comparing J2SE1.3.1 and J2SE1.4
Posted by
Kumar
at
11:22 AM
0
comments