Got Windows 7 Beta running on VMware, discovered that Wordpad supports ODF, as mentioned by yoonkit. Also notice that they're using the Ribbon interface from Microsoft Office 2007.


Han's Ramblings from the outside.
foo=# select count(*) from bar;
count
--------
624569
(1 row)
foo=# explain analyze select count(*) from bar where baz ilike '%some%string%' and quux = '123';
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------
Aggregate (cost=25846.58..25846.59 rows=1 width=0) (actual time=1543.654..1543.655 rows=1 loops=1)
-> Seq Scan on bar (cost=0.00..25846.53 rows=17 width=0) (actual time=288.667..1543.556 rows=32 loops=1)
Filter: (((baz)::text ~~* '%some%string%'::text) AND (quux = '123'::bpchar))
Total runtime: 1543.798 ms
foo=# create index bar_idx_some_string on bar(id) where baz ilike '%some%string%' and quux = '123';
CREATE INDEX
foo=# explain analyze select count(*) from bar where baz ilike '%some%string%' and quux = '123';
QUERY PLAN
---------------------------------------------------------------------------------------------------------------------------------
Aggregate (cost=12.71..12.72 rows=1 width=0) (actual time=0.470..0.473 rows=1 loops=1)
-> Index Scan using bar_idx_some_string on bar (cost=0.00..12.67 rows=17 width=0) (actual time=0.122..0.406 rows=32 loops=1)
Total runtime: 0.534 ms
The quick brown fox http://www.google.com/Now click on the end of line after http://www.google.com/. Type "jumps". Now try to remove "jumps" away from the link. You can't.
over the lazy dog.
http://www.google.com/jumpsinstead of
Source:
<a href="http://www.google.com/">http://www.google.com/</a><a href="''" style="text-decoration: none">jumps</a>
http://www.google.com/jumpsThe original problem is that OOo puts the cursor to the left of the invisible "</a>" when you try to get to the end of the line, not after.
Source:
<a href="http://www.google.com/">http://www.google.com/</a>jumps