-
Recent Posts
Archives
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
Categories
Meta
Author Archives: chanmingman
Write a simple math program in C# and compile using C# compiler Windows 8
If you want to write a simple C# program or utility with 50-100 lines of code, for example, a program that printing “Hello World” on screen, set the date of a file or simple math quiz program (like the one … Continue reading
How to run batch file after TFS build
Where is the bat file actually located in TFS server after build. In your TFS workflow you normally put the bat file to execute like String.Format(“{0} \ SunMoon\scripts\cleandb.bat”, SourceDirectory); In actual fact where is the physical path … Continue reading
How to test Jira REST API url using browser
When you read JIRA 5.0 REST API Documentation at https://developer.atlassian.com/static/rest/jira/5.0.html. The article is showing you to type http://example.com:8080/jira/rest/api/2/application-properties for example, if you use localhost as machine name then it will be http://localhost:8080/jira/rest/api/2/application-properties this is where your nightmare started. The correct … Continue reading
AMD Introduces the World’s Fastest Notebook Graphics Card
AMD today launched the AMD Radeon™ HD 8970M, the world’s fastest notebook graphics card[i]. The AMD Radeon HD 8970M graphics processing unit (GPU) delivers the best mobile gaming experience imaginable to gamers, powered by AMD’s award-winning Graphics Core Next (GCN) … Continue reading
Using Web API with Entity Framework to retrieve data sample
Refer to Creating ADO.NET Entity Data Model in VS 2012, we have created an ADO.NET Entity Data Model. Use the same method to add an ADO.NET Entity Data Model to your project. 1. Open ValuesController.cs file under the Controllers … Continue reading
AMD Unleashes the World’s Fastest Graphics Card
SUNNYVALE, Calif. — April 24, 2013 — AMD (NYSE: AMD) today launched the AMD Radeon™ HD 7990, the world’s fastest graphics card[i], designed for gamers who want to take their PC gaming experience to the highest level. Based on award-winning … Continue reading
Where is the bat file actually located in TFS server after build
In your TFS workflow you normally put the bat file to execute like String.Format(“{0} \ SunMoon\scripts\cleandb.bat”, SourceDirectory); In actual fact where is the physical path located in the TFS server. In order to know the path 1. Open … Continue reading
Creating ADO.NET Entity Data Model in VS 2012
This is not new but I realized it is import and I have not blogged it. In order for me to continue Web API with Entity Framework I better just do a quick recap on how to create an ADO.NET … Continue reading