<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Thanks to antville.org</title>
    <link>http://oksoft.antville.org/</link>
    <description>Adding Value with limited resources</description>
    <language>en-IN</language>
    <pubDate>Wed, 03 Dec 2008 03:13:43 GMT</pubDate>
    <dc:date>2008-12-03T03:13:43Z</dc:date>
    <dc:language>en-IN</dc:language>
    <item>
      <title>optimize all tables</title>
      <link>http://oksoft.antville.org/stories/1853492/</link>
      <description>mysql -e"SELECT CONCAT('OPTIMIZE TABLES ', GROUP_CONCAT(TABLE_SCHEMA, '.', TABLE_NAME ORDER BY TABLE_SCHEMA, TABLE_NAME SEPARATOR ',')) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'dbname' GROUP BY TABLE_SCHEMA\G&lt;br /&gt;
" | awk -F: '{print $2}' | mysql</description>
      <pubDate>Tue, 11 Nov 2008 11:44:04 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1853492/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-11-11T11:44:04Z</dc:date>
    </item>
    <item>
      <title>Unix cheatsheets</title>
      <link>http://oksoft.antville.org/stories/1852681/</link>
      <description>Cheat sheet act as a reference tool which provides cut and paste kind of commands to complete a specific task. I often recommend following set of best cheat sheets to students and IT professionals. It include Linux / UNIX command and shell scripting. &lt;br /&gt;
&lt;br /&gt;
Read more: &lt;a href="http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html" target="_top"&gt;Top 10 Best Cheat Sheets and Tutorials for Linux / UNIX Commands&lt;/a&gt;</description>
      <pubDate>Sat, 08 Nov 2008 14:00:17 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1852681/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-11-08T14:00:17Z</dc:date>
    </item>
    <item>
      <title>compress and send</title>
      <link>http://oksoft.antville.org/stories/1851220/</link>
      <description>scp is the standard command to copy a folder or files. You can also compress the files before sending it as shown below. In this test I am using a folder with 4 files of 3.5 MB size. The time is reduced to 5 seconds from 40 seconds.&lt;br /&gt;
&lt;br /&gt;
# time scp /root/shantanu/* root@172.29.0.131:/root/&lt;br /&gt;
root@172.29.0.131's password: &lt;br /&gt;
iostat0111.log  100%   46KB  46.3KB/s   00:00    &lt;br /&gt;
mystats.txt  100%  201KB 201.5KB/s   00:00    &lt;br /&gt;
top0111.log  100% 3219KB 100.6KB/s   00:32    &lt;br /&gt;
vmstat0111.log  100%   21KB  20.7KB/s   00:00    &lt;br /&gt;
&lt;br /&gt;
real    0m39.844s&lt;br /&gt;
user    0m0.053s&lt;br /&gt;
sys     0m0.021s&lt;br /&gt;
&lt;br /&gt;
# time tar zcf - shantanu | ssh 172.29.0.131 "cd /root/shantanu/; tar zpxvf -"&lt;br /&gt;
root@172.29.0.131's password: &lt;br /&gt;
shantanu/&lt;br /&gt;
shantanu/top0111.log&lt;br /&gt;
shantanu/mystats.txt&lt;br /&gt;
shantanu/vmstat0111.log&lt;br /&gt;
shantanu/iostat0111.log&lt;br /&gt;
&lt;br /&gt;
real    0m5.326s&lt;br /&gt;
user    0m0.068s&lt;br /&gt;
sys     0m0.015s&lt;br /&gt;
&lt;br /&gt;
If you type the full path to the folder /root/shantanu/ then a new folder in the destination folder will be created with the same path.</description>
      <pubDate>Tue, 04 Nov 2008 09:22:24 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1851220/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-11-04T09:22:24Z</dc:date>
    </item>
    <item>
      <title>Improve the bash history</title>
      <link>http://oksoft.antville.org/stories/1841361/</link>
      <description>If you use two bash sessions at the same time, which ever you close second will write over the commands you&amp;#8217;ve typed in the first one. That means that your history is lost for one of the sessions. Annoying to say the least. Luckily there is a way to fix this.&lt;br /&gt;
&lt;br /&gt;
Open your .bashrc file as detailed above and add the lines:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
shopt -s histappend&lt;br /&gt;
PROMPT_COMMAND='history -a'&lt;br /&gt;
&lt;br /&gt;
This will append any new history to the existing file rather than rewriting it, as well as adding to the history every time the prompt is shown. Now, all your history will be saved!&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.bradshawenterprises.com/blog/2008/09/27/5-ways-to-make-using-bash-more-productive/" title="http://www.bradshawenterprises.com/blog/2008/09/27/5-ways-to-make-using-bash-more-productive/"&gt;www.bradshawenterprises.com&lt;/a&gt;</description>
      <pubDate>Thu, 02 Oct 2008 12:09:04 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1841361/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-10-02T12:09:04Z</dc:date>
    </item>
    <item>
      <title>base and MySQL connectivity</title>
      <link>http://oksoft.antville.org/stories/1829806/</link>
      <description>To get started with the JDBC Driver for MySQL (Connector/J), download it from MySQL's Web site, unpack the downloaded file, and move the resulting mysql-connector-java-x.x.x-bin.jar file into the desired location (e.g. your home directory). In OpenOffice.org, choose Tools -&amp;gt; Options -&amp;gt; Java. Make sure that the appropriate Java Runtime Environment is selected and click the Class Path button. Next, click the Add Archive button and select mysql-connector-java-x.x.x-bin.jar. Click OK to save the settings and close the window, then restart OpenOffice.org.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.mysql.com/products/connector/" title="http://www.mysql.com/products/connector/"&gt;www.mysql.com&lt;/a&gt;</description>
      <pubDate>Thu, 28 Aug 2008 05:33:12 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1829806/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-08-28T05:33:12Z</dc:date>
    </item>
    <item>
      <title>Linux Screen command</title>
      <link>http://oksoft.antville.org/stories/1819225/</link>
      <description>Login to the colleagues machine as a root user and type...&lt;br /&gt;
# screen -S foo&lt;br /&gt;
&lt;br /&gt;
Ask him to use -x parameter like...&lt;br /&gt;
# screen -x foo&lt;br /&gt;
&lt;br /&gt;
Now both of you are using the same window and see / learn each others' commands.</description>
      <pubDate>Thu, 24 Jul 2008 07:31:57 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1819225/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-07-24T07:31:57Z</dc:date>
    </item>
    <item>
      <title>Table care!</title>
      <link>http://oksoft.antville.org/stories/1766572/</link>
      <description>CHECK TABLE performs an integrity check on the structure and content of your tables. For MyISAM tables, it will also update the index statistics. If problems appear, proceed to ...&lt;br /&gt;
&lt;br /&gt;
REPAIR TABLE is for MyISAM tables only and will correct corrupted tables. InnoDB tables should be dumped with mysqldump and restored.&lt;br /&gt;
&lt;br /&gt;
ANALYZE TABLE updates a table's information about keys for queries so that the data can be found faster and not having to hunt for it. This works for both MyISAM and InnoDB.&lt;br /&gt;
&lt;br /&gt;
OPTIMIZE TABLE defragments MyISAM tables, sorts indexes, and updates the statistics to speed up searches.</description>
      <pubDate>Thu, 28 Feb 2008 14:07:13 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1766572/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-02-28T14:07:13Z</dc:date>
    </item>
    <item>
      <title>my.cnf speed up access</title>
      <link>http://oksoft.antville.org/stories/1766541/</link>
      <description>If you are using Linux on your servers and you ssh to the server and then run the mysql client to access the server you can use a .my.cnf file to speed up access.  &lt;br /&gt;
[client]&lt;br /&gt;
user =username&lt;br /&gt;
password =x&amp;amp;r%@ldc&lt;br /&gt;
host = localhost&lt;br /&gt;
&lt;br /&gt;
Now you can just type &amp;#8216;mysql&amp;#8217; and it connects you up automatically.</description>
      <pubDate>Thu, 28 Feb 2008 13:00:44 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1766541/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-02-28T13:00:44Z</dc:date>
    </item>
    <item>
      <title>History Searches</title>
      <link>http://oksoft.antville.org/stories/1762098/</link>
      <description>Often the command you need is in your history, how do you find it? One simple method is to run the history command and pipe it through grep.&lt;br /&gt;
&lt;br /&gt;
$ history | grep cat&lt;br /&gt;
110 cat /tmp/foo&lt;br /&gt;
&lt;br /&gt;
You can then run the command by typing ! and the history line number:&lt;br /&gt;
&lt;br /&gt;
$ !110&lt;br /&gt;
cat /tmp/foo</description>
      <pubDate>Mon, 18 Feb 2008 11:47:34 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1762098/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-02-18T11:47:34Z</dc:date>
    </item>
    <item>
      <title>manipulating commands using keyboard maps</title>
      <link>http://oksoft.antville.org/stories/1757207/</link>
      <description>The inputrc file handles keyboard mapping for specific situations. This file is the startup file used by Readline &amp;#8212; the input-related library &amp;#8212; used by Bash and most other shells. suppose you want to run a command witha specific keystroke eg : ctl+e to give the out put ls -la &lt;br /&gt;
you will need to append the following to the /etc/inputrc file &lt;br /&gt;
Control-e: "ls -la\n"&lt;br /&gt;
save the file &lt;br /&gt;
&lt;br /&gt;
bind -f /etc/inputrc &lt;br /&gt;
--&amp;gt; to the the changes may be relflected&lt;br /&gt;
&lt;br /&gt;
now try to do a control +e and theout put on the screen will be a ls -la</description>
      <pubDate>Wed, 06 Feb 2008 06:41:46 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1757207/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-02-06T06:41:46Z</dc:date>
    </item>
    <item>
      <title>Extensions for students</title>
      <link>http://oksoft.antville.org/stories/1741513/</link>
      <description>Here are the useful extensions for students.&lt;br /&gt;
&lt;br /&gt;
Indic Input Extension 1.0&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/3972" title="https://addons.mozilla.org/en-US/firefox/addon/3972"&gt;addons.mozilla.org&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Girgit&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/5483" title="https://addons.mozilla.org/en-US/firefox/addon/5483"&gt;addons.mozilla.org&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Clustybar&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/388" title="https://addons.mozilla.org/en-US/firefox/addon/388"&gt;addons.mozilla.org&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://clickspeak.clcworld.net/" title="http://clickspeak.clcworld.net/"&gt;clickspeak.clcworld.net&lt;/a&gt;&lt;br /&gt;
CLiCk, Speak provides point-and-click screen reading, which can be helpful for partially-sighted users or sighted users who have written language difficulties (such as dyslexia).&lt;br /&gt;
&lt;br /&gt;
SQLite Manager&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/5817" title="https://addons.mozilla.org/en-US/firefox/addon/5817"&gt;addons.mozilla.org&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Quicknote&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/46" title="https://addons.mozilla.org/en-US/firefox/addon/46"&gt;addons.mozilla.org&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Nuke Anything enhanced&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/951" title="https://addons.mozilla.org/en-US/firefox/addon/951"&gt;addons.mozilla.org&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Chatzilla&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/16" title="https://addons.mozilla.org/en-US/firefox/addon/16"&gt;addons.mozilla.org&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
fireftp&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/684" title="https://addons.mozilla.org/en-US/firefox/addon/684"&gt;addons.mozilla.org&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Web developer toolbar firefox&lt;br /&gt;
&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/60" title="https://addons.mozilla.org/en-US/firefox/addon/60"&gt;addons.mozilla.org&lt;/a&gt;</description>
      <pubDate>Sat, 29 Dec 2007 09:07:39 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1741513/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-12-29T09:07:39Z</dc:date>
    </item>
    <item>
      <title>More About Calc</title>
      <link>http://oksoft.antville.org/stories/1734384/</link>
      <description>1) Edit - Changes - Record&lt;br /&gt;
This option helps you to track changes being made to your spreadsheet.&lt;br /&gt;
&lt;br /&gt;
2) Edit - Compare Document&lt;br /&gt;
Compare different versions of the same document.&lt;br /&gt;
&lt;br /&gt;
3) File - Versions&lt;br /&gt;
Create versions.&lt;br /&gt;
&lt;br /&gt;
4) Calc and Excel use different default number formats. With Excel, the cells are set to the &amp;#8220;General&amp;#8221; category number format., so if you entered 25.12345 in a cell it would display &amp;#8220;25.12345&amp;#8221;. In Calc a default formatted cell is set to the &amp;#8220;Number&amp;#8221; category in the &amp;#8220;General&amp;#8221; format. Thus, if 25.12345 is entered, 25.12 will be displayed.</description>
      <pubDate>Tue, 11 Dec 2007 08:12:30 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1734384/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-12-11T08:12:30Z</dc:date>
    </item>
    <item>
      <title>Calc Shortcut keys</title>
      <link>http://oksoft.antville.org/stories/1734383/</link>
      <description>Ctrl + F8 - Highlights cells containing numeric values and formulas (not text)&lt;br /&gt;
F11 Opens the Styles and Formatting window &lt;br /&gt;
Shift+F11 Creates a document template&lt;br /&gt;
Shift+Ctrl+F11 Updates the templates&lt;br /&gt;
Alt+Down Arrow Increases the height of current row&lt;br /&gt;
Alt+Up Arrow Decreases the height of current row&lt;br /&gt;
Alt+Right Arrow Increases the width of the current column&lt;br /&gt;
Alt+Left Arrow Decreases the width of the current column&lt;br /&gt;
Alt+Shift+Arrow Key Optimizes the column width or row height based on the current cell&lt;br /&gt;
Alt+Enter (Alt+Shift+Enter also applies the cell format) Enter into all currently selected cells</description>
      <pubDate>Tue, 11 Dec 2007 08:10:04 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1734383/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-12-11T08:10:04Z</dc:date>
    </item>
    <item>
      <title>Why Open Source?</title>
      <link>http://oksoft.antville.org/stories/1714369/</link>
      <description>1) Localized Software&lt;br /&gt;
2) Flexibility&lt;br /&gt;
3) Supports Old Hardware&lt;br /&gt;
4) Performance&lt;br /&gt;
5) Quality&lt;br /&gt;
6) Availability&lt;br /&gt;
7) Support&lt;br /&gt;
8) Cost&lt;br /&gt;
9) Security</description>
      <pubDate>Thu, 01 Nov 2007 11:19:03 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1714369/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-11-01T11:19:03Z</dc:date>
    </item>
    <item>
      <title>Format Zip Code</title>
      <link>http://oksoft.antville.org/stories/1734358/</link>
      <description>Calc Tip: Format The Zip Code Column For Five Digits Zip Codes&lt;br /&gt;
&lt;br /&gt;
1. Right-click on the top of the Zip Code column. (A menu appears).&lt;br /&gt;
2. Click Format Cells (The 'Format Cells" window appears)&lt;br /&gt;
3. Click the Numbers tab.&lt;br /&gt;
4. Under Category, select Number.&lt;br /&gt;
5. Under Format, select General.&lt;br /&gt;
6. In the Leading zeros box, increase the number 1 to a 5.&lt;br /&gt;
7. Click OK. (A zero appears at the beginning of the "01111" zip code).</description>
      <pubDate>Tue, 11 Dec 2007 05:43:27 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1734358/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-12-11T05:43:27Z</dc:date>
    </item>
    <item>
      <title>Recover a Deleted Word Document</title>
      <link>http://oksoft.antville.org/stories/1709209/</link>
      <description>In Word, go to Tools, then Options. Under the File Locations tab, double-click AutoRecover files and make a note of that path location. Click Cancel and Close. Open up that folder in My Computer or Windows Explorer and search for any .ASD files.</description>
      <pubDate>Mon, 22 Oct 2007 03:39:09 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1709209/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-10-22T03:39:09Z</dc:date>
    </item>
    <item>
      <title>Saving Filtering Criteria</title>
      <link>http://oksoft.antville.org/stories/1697370/</link>
      <description>To save filtering criteria, use Custom Views:&lt;br /&gt;
&lt;br /&gt;
Step 1: Add the Custom Views icon to the toolbar&lt;br /&gt;
&lt;br /&gt;
1. Place the mouse over one of the toolbars, right click, and select Customize from the shortcut menu.&lt;br /&gt;
2. Select the Commands tab.&lt;br /&gt;
3. From Categories, select View and drag the Custom Views icon to the Menu bar.&lt;br /&gt;
&lt;br /&gt;
Step 2: Save the filtering criteria&lt;br /&gt;
&lt;br /&gt;
1. Select a cell from the column containing the criteria you want to Filter with.&lt;br /&gt;
2. Click the AutoFilter icon &lt;br /&gt;
3. Type any text criteria you want into the Custom Views box and click twice to save.&lt;br /&gt;
4. Repeat the previous step and save as many filtering criteria as needed from any sheet within the workbook.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.exceltip.com/st/TipofTheDay/254.html" title="http://www.exceltip.com/st/TipofTheDay/254.html"&gt;www.exceltip.com&lt;/a&gt;</description>
      <pubDate>Thu, 27 Sep 2007 15:07:29 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1697370/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-09-27T15:07:29Z</dc:date>
    </item>
    <item>
      <title>Returning the Smallest Non-Zero Value</title>
      <link>http://oksoft.antville.org/stories/1695150/</link>
      <description>I don't remember if I have mentioned this before, but if you want to return the Smallest Non-Zero Value, use array.&lt;br /&gt;
=MIN(IF(A1:A5=0,MAX(A1:A5),A1:A5))&lt;br /&gt;
&lt;br /&gt;
(entered by pressing Ctrl+Shift+Enter) &lt;br /&gt;
&lt;br /&gt;
You can make the formula even shorter by turning it around in this manner:&lt;br /&gt;
=MIN(IF(A1:A5&amp;lt;&amp;gt;0,A1:A5))</description>
      <pubDate>Sun, 23 Sep 2007 12:11:03 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1695150/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-09-23T12:11:03Z</dc:date>
    </item>
    <item>
      <title>Another old Excel bug</title>
      <link>http://oksoft.antville.org/stories/1691619/</link>
      <description>I have noticed an odd thing when it comes to creating CSV files with Excel: the files are not always consistent in how they end each row in the output data. When I create a CSV file that has, perhaps, 70 field (columns) of data and then views the CSV file in a text editor, I noticed that the records all contain carriage returns, but in different places. How do I get the CSV files to contain a consistent number of output fields.&lt;br /&gt;
&lt;br /&gt;
This is actually a problem that has been known to Microsoft for quite some time. The Microsoft Knowledge Base includes an article on this topic as early as Excel 97:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://support.microsoft.com/?kbid=77295" title="http://support.microsoft.com/?kbid=77295"&gt;support.microsoft.com&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://tinyurl.com/a4gyb" title="http://tinyurl.com/a4gyb"&gt;tinyurl.com&lt;/a&gt;</description>
      <pubDate>Sat, 15 Sep 2007 15:34:37 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1691619/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-09-15T15:34:37Z</dc:date>
    </item>
    <item>
      <title>Disable Paste Options</title>
      <link>http://oksoft.antville.org/stories/1676316/</link>
      <description>Excel include a feature that really annoys some people: Paste Options. When you paste some tidbit of information in your worksheet, Excel displays a small, floating "button" right near the end of the pasted information. Follow these steps to turn it off:&lt;br /&gt;
&lt;br /&gt;
1. Choose Options from the Tools menu. Excel displays the Options dialog box.&lt;br /&gt;
2. Make sure the Edit tab is displayed. &lt;br /&gt;
3. Clear the Show Paste Options Buttons check box.&lt;br /&gt;
4. Click on OK.</description>
      <pubDate>Thu, 16 Aug 2007 03:18:04 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1676316/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-08-16T03:18:04Z</dc:date>
    </item>
    <item>
      <title>comic books</title>
      <link>http://oksoft.antville.org/stories/1674424/</link>
      <description>A way to quickly search for free comic books online using Google if you are looking for title specific searches.&lt;br /&gt;
-inurl:htm -inurl:html intitle:"index of" "Last modified" spider-man cbr&lt;br /&gt;
to find simpsons...&lt;br /&gt;
-inurl:htm -inurl:html intitle:"index of" "Last modified" simpsons cbr</description>
      <pubDate>Sun, 12 Aug 2007 11:44:38 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1674424/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-08-12T11:44:38Z</dc:date>
    </item>
    <item>
      <title>Finding a line break</title>
      <link>http://oksoft.antville.org/stories/1661173/</link>
      <description>how to search for a line break (Alt+Enter) in a cell?&lt;br /&gt;
Press Ctrl+F to display the Find tab of the Find and Replace dialog box. In the Find What box, hold down the Alt key as you type 0010 on the numeric keypad. &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://tinyurl.com/2copgb" title="http://tinyurl.com/2copgb"&gt;tinyurl.com&lt;/a&gt;</description>
      <pubDate>Sun, 15 Jul 2007 14:32:55 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1661173/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-07-15T14:32:55Z</dc:date>
    </item>
    <item>
      <title>Printing a Multi-Line Footer</title>
      <link>http://oksoft.antville.org/stories/1658463/</link>
      <description>You can create a multi-line header or footer in Excel. The trick is to remember that you cannot press Enter while typing your footer. Instead, to start a new line you should hold down the Alt key as you type 0010 on the numeric keypad. This inserts a line-break character in the footer text. The total length of a header or footer cannot exceed 255 characters.</description>
      <pubDate>Mon, 09 Jul 2007 16:34:02 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1658463/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-07-09T16:34:02Z</dc:date>
    </item>
    <item>
      <title>Picking Up in the Last Document Edited</title>
      <link>http://oksoft.antville.org/stories/1643771/</link>
      <description>you can jump to the last place that you edited in a document by pressing the Shift+F5 key. In other words, open the document, press the shortcut, and the insertion point jumps directly to the last edit point in the document.</description>
      <pubDate>Sat, 09 Jun 2007 05:28:16 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1643771/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-06-09T05:28:16Z</dc:date>
    </item>
    <item>
      <title>Gmail Filters</title>
      <link>http://oksoft.antville.org/stories/1642296/</link>
      <description>Use the wildcard character (*) for companies that use multiple types of address from the same domain. One great use I&amp;#8217;ve seen is to use the wildcard character for vendors such as Amazon or eBay to make it easier to track online purchases. Create a label (online shopping) and a filter with such email addresses as *@amazon.com|* @ebay.com|*@paypal.com|* @barnesandnoble.com</description>
      <pubDate>Wed, 06 Jun 2007 06:19:22 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1642296/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2007-06-06T06:19:22Z</dc:date>
    </item>
  </channel>
</rss>

