July 26, 2007 at 3:03 pm
· Filed under Web Design
I came across a web design blog today and found a very resourceful article of a compilation of free web design templates and css websites. Even better is that all those templates, CSS styles are open source and made by their communities. I am pretty sure they can spark many design ideas for everyone. Make sure to check it out.
here is the link
Permalink
July 25, 2007 at 4:45 pm
· Filed under Windows Mobile
WIN32 APIs you needed to call:
[DllImport("coredll.dll")]
private static extern IntPtr SetPowerRequirement(string pvDevice, PowerState DeviceState, int DeviceFlags, IntPtr pvSystemState, int StateFlags);
[DllImportAttribute("coredll.Dll")]
private static extern int ReleasePowerRequirement(IntPtr hPowerReq);
Structure you will need:
public enum PowerState
{
PWRUNSPECIFIED = -1,
FULL = 0,
LOW = 1,
STANDBY = 2,
SLEEP = 3,
OFF = 4,
PWRMAX = 5
}
Actual methods:
IntPtr handle = SetPowerRequirement(”BKL1:”, level, 1, IntPtr.Zero, 0);
Note:
It works on Windows Mobile 5.0 with .net Compact Framework 1.0 or .net Compact Framework 2.0.
Permalink
July 10, 2007 at 11:32 pm
· Filed under WordPress
Well, I once again clean up my hosting space and switch back to WordPress after I have Joomla 1.5Beta2 installed for a month. As being a long time Joomla fan, I made my decision based on purely the purpose of this site, a search engine friendly blog about things I do. Like programming, building websites and stuff.
Back to the topic, there are many good articles about this topics, and here’s my 2 cents:
Joomla is good for full featured websites like corporate sites, product sites and etc. It’s extensive and complicated and yet powerful enough to handle all features a CMS system needs.
pros:
- Powerful, extensive
- Nice looking free template comes with it
- Best php web framwork I’ve worked on
cons:
- Not easy to crack it
- Lack of SEO from the core, SEFU (however you do have some choices over either free or commercial SEO components to use)
- Most recently, the GPL news, yes, it suppose to make things better, OSM, Yeah!, however it may cause negative effects.
I am not sure if the last one should be listed as one of the cons. Well, at least for now, some extension developers have stopped working on those wonderful components because of this. Actual users may only benefit from this after a while when many good GPL compatible extensions come and replace those are not.
WordPress, current stable version is 2.21
Pros:
- Smaller file size
- Easier to setup
- SEO SEFU is built into the core
cons:
Conclusion:
Permalink