This is the Part 2 of How to Recover Grub in Ubuntu after Installing Windows XP. Part1, in the previous article, we have discussed how to recover Grub version 1 after Installing windows, but there is another version of grub – Grub Version 2, recovering this version of grub will be slightly different from configuring Grub Version 1. Let’s just begin how to Recover Grub version 2. Read more to find out how to.. Continue reading “How to Recover Grub in Ubuntu after Installing Windows XP. Part2” »
Archive for the ‘open source’ Category
How to Recover Grub in Ubuntu after Installing Windows XP. Part2
Wednesday, January 20th, 2010Date Time Zope – How to Access Zope Date Time API?
Thursday, January 7th, 2010What is Date Time API?
Zope has provided Zope API since allowing user to importing Python External API is considered dangerous for security reason. One of Zope APIs is DateTime, this API can handle most of Date and Time processing.
How to Access Zope Date Time API>
Zope DateTime API is automatically imported so that you don’t need to import this API any more.
- How to get current month.
return DateTime().month()
- How to get current year.
return DateTime().year()
- How to get year from user Specified date.
return DateTime("2009/1/7").year()
- How to get month from user Specified date.
return DateTime("2009/1/7").month()
