SEO Tips- Please add a news section
There is a number of ways to push your website in a top rank! But there is a one item the people always missed to keep your website "fresh". A lot of search engine like those websites keeps update itself. They believe this kind of websites are still "alive". So, the best way to accomplish this task is adding a news section. You can add some promotion about your shop, any major milestone about yourself, etc. You need to keep adding some new contents. Keeping your website to the top of list needs your hard work!
Timer in WPF
In Windows Form time, there is a component for Timer. But in WPF, there is not such things. So, what thing we can do, when we need to execute a piece of code periodically. We can use the timers under System.Timers. But please do not use System.Timers.Timer, because it triggered, it will execute the code in a new thread. If you try to access any controls in WPF Windows, the system will throw an exception. I like to use System.Windows.Threading.DispatcherTimer in WPF, because that is very similar with the Timer in Windows Timer.
There are the example code:
Code
DispatcherTimer sysTimer = new DispatcherTimer(); | |
sysTimer.IsEnabled = true; | |
sysTimer.Interval = new TimeSpan(0, 0, 1); | |
sysTimer.Tick += new EventHandler(sysTimer_Tick); |
To find more about this, please download the example project, AdvGenStopWatch.
Galaxy S3 is arrived!
I went to City today. I saw a real Galaxy S3 in Vodafone phone! The phone is not too big, that is still similar with Galaxy Nexus. Moreover, it is very light weight! That is so good! Lastly, that has a Samsung version UI, that sounds more than the original UI. That is only a drawback, that is quite expensive.It needs $59 plan!
Technology is not enough
My company can buy an online shop in a very cost-effective way by using several open source technologies. We got some good technologies, but that is not enough. The key is marketing. Now, we are thinking about the promotions. We have to let all potential clients know about that. I think after we mastered the technologies, then we have to put some good effort on marketing.
WPF Example Code - AdvGenStopWatch
I created an opensource project, AdvGenStopWatch. This is a simple stop watch program and aimed to show how to use WPF. Including the following features:
- How to use Grid Layout and ViewPoint, this make all elements will be autosize.
- How to use Timer in WPF
- How to use ListView
I believe this is a good starting point to learn WPF.