Monday, April 14, 2014

Rule of Law


http://worldjusticeproject.org/what-rule-law

What is the Rule of Law?

The rule of law is a system of rules and rights that enables fair and functioning societies. The World Justice Project defines this system as one in which the following four universal principles are upheld:

  • The government and its officials and agents as well as individuals and private entities are accountable under the law.
  • The laws are clear, publicized, stable, and just; are applied evenly; and protect fundamental rights, including the security of persons and property.
  • The process by which the laws are enacted, administered, and enforced is accessible, fair, and efficient.
  • Justice is delivered timely by competent, ethical, and independent representatives and neutrals who are of sufficient number, have adequate resources, and reflect the makeup of the communities they serve.
These four universal principles which comprise the WJP's notion of the rule of law are further developed in the following nine factors of the WJP Rule of Law Index, which measures how the rule of law is experienced by ordinary people in 99 countries around the globe.

Monday, January 18, 2010

Monday, December 14, 2009

My Done Done Checklist

By the way, you should have your own.

1. Features Implemented per Requirement
2. Bugs/Issues Addressed
3. Usability Testing
4. Performance Testing
5. Unit Tests Coverage
6. Refactoring to Code Quality
7. Peer Review
8. Automated Build
9. Automated Deployment
10. User/Design/Deployment Documentation
11. QA Testing
12. User Acceptance Testing
13. Post Mortem

ASP.NET Identity Settings

http://msdn.microsoft.com/en-us/library/aa302377.aspx

This is the most concise summary of ASP.NET security configuration.

And, you need to be careful about the double-hop problem.

Use ListView to report status information in Windows Forms

http://shalvinpd.blogspot.com/2009/07/windows-forms-listview.html

This blog post shows how to do use ListView to display progress information in Windows Forms.


private void Form1_Load(object sender, EventArgs e)
{
listView1.View = View.Details;

//Adding Columns
listView1.Columns.Add("Blogs", 170);
listView1.Columns.Add("Blogger" , 100);

//Adding a ListView Item
ListViewItem item1 = new ListViewItem("shalvin.com", 0);
item1.SubItems.Add("Shalvin P D");
listView1.Items.Add(item1);
ListViewItem item2 = new ListViewItem("shalvinpd.blogspot.com", 0);
item2.SubItems.Add("Shalvin P D");
listView1.Items.Add(item2);
}

...

Font f = new Font(FontFamily.GenericSerif, 10, FontStyle.Bold ^ FontStyle.Italic);
item1.BackColor = Color.LightBlue;
item1.Font = f;
listView1.Items.Add(item1);

Saturday, December 12, 2009

ASP.NET IIS 7 64 bit and 32 bit COM component

I got burned twice, so I have to write it down. When seeing error on Windows 64 bit server, check the app pool’s advanced properties …



see http://forums.asp.net/t/983377.aspx

Friday, December 11, 2009

Awesome Talk About Enterprise Integration with MassTransit

This is a awesome talk about MassTransit and Enterprise Integration with Messaging. I am only half way through the talk. I will post my note once I finish watching and taking notes.
Here is the powerpoint slide
And the code