Archiv für Oktober 2010

Articles

Measure Execution Time in your Code with Stopwatch

In .Net on Oktober 28, 2010 von murratore

If you ever need to do a have little performance overview in your application. See Code Example below…

Static Class (you have to add a “using System.Diagnostics;”)

public class StopWatcher
    {
        static Stopwatch sw = new Stopwatch();
        
        public static void start()
        {
            if (sw.IsRunning)
            {
                sw.Stop();
                sw.Reset();
            }
            sw.Start();
        }
 
        public static long elapsed()
        {
            return sw.ElapsedMilliseconds;
        }
    }

Now you can use the code everywhere in your application

Debug.WriteLine("Own Permission: " + StopWatcher.elapsed());
Of course it would make sense and I think it would be easy to integrate this with Postsharp!
A basic overview about using the Stopwatch Class can be found here:

How to measure time in simple way using Stopwatch | C# Developing.net.

Articles

YouTube – Chicago Bulls Players’ Introduction

In Uncategorized on Oktober 26, 2010 von murratore

YouTube – Chicago Bulls Players’ Introduction.

That gives me the creeps…. Just insane!

http://www.youtube.com/v/SdCzixCxZEQ

From the category…”when I was young…”

Articles

How to fix the broken Outlook reply behaviour

In Uncategorized on Oktober 25, 2010 von murratore

We had the problem that on a german installation of Outlook the reply text was still in english. With this option you can configure this behaviour.

How to fix the broken Outlook reply behaviour.

Articles

links for 2010-10-20

In del.icio.us on Oktober 21, 2010 von murratore

Articles

Mordsspass – Warum alle Welt Dexter liebt

In Fun on Oktober 20, 2010 von murratore

Hier stellt jemand seine Diplomarbeit zum obigen Thema zur Verfügung. Tönt ganz interessant.

Meine Masterarbeit: Die Ergebnisse zu DEXTER [LangweileDich.net].

Articles

Joliprint | Print friendly & PDF your blogs and websites

In Internet on Oktober 15, 2010 von murratore

Easy way to generate a PDF from a website/blog.

Joliprint | Print friendly & PDF your blogs and websites.

Articles

Switch Statement fallthrough in C#

In Uncategorized on Oktober 14, 2010 von murratore

Tried to have a switch statement with a fallthrough. I got the error:

Articles

Google Chrome: Bookmark Bar Disappears

In Uncategorized on Oktober 14, 2010 von murratore Mit Tag(s) versehen: ,

Since some days I am working with Google Chrome. So far I am really surprise how fast and reliable it is. Also the numbers of (good) extensions is cool….

When setting it up, I was searching the browser bar (which I need for some bookmarklets). Here is an short tip to get it…

Google Chrome: Bookmark Bar Disappears.

Articles

links for 2010-10-05

In del.icio.us on Oktober 6, 2010 von murratore

  • Quovolver is a simple extension for jQuery that takes a group of quotes and displays them on your page in an elegant way.
  • This is a library of WPF controls for dynamic data visualization. It features efficient binding mechanisms and real-time interactivity capable of charting millions of data points. Current release allows flexible drawing of line/marker plots.

    DynamicDataDisplay controls can be used in your application in the same way as other WPF controls. Any data can be used as a source of coordinates on your chart. It can be an array, a DataTable or a function. Every change in the data source causes update of the chart. As an example, you can use this feature for monitoring running computations. Using mouse or keyboard you can zoom in deep into the graph to see its subtle details.

  • nify was built to improve the development efficiency of apps for smartphones. Currently it supports smartphones based on the platforms iOS, Android and WebOS. There is support for desktop operating systems like Windows or Mac OS as well. Support for tablet devices is planned for the next year.

    The software makes use of a whole range of modern web technologies such as HTML5, CSS3 and JavaScript. A typical end user should not be able to distinguish an application built with Unify from a natively programmed application. Unify bypasses the traditional limitations of the web browser. Detecting the current geo location, accessing the file system, etc. is easy to implement.

    There are a lot of benefits of this approach. First it saves money and improves time-to-market. Secondly it reduces follow-up costs as only one implementation needs to be developed further. JavaScript and web technology is improved rapidely at the moment.

Articles

Daily Blog Post 10/04/2010

In Uncategorized on Oktober 4, 2010 von murratore

Posted from Diigo. The rest of my favorite links are here.

Follow

Bekomme jeden neuen Artikel in deinen Posteingang.