Getting Started with Adobe After Effects - Part 6: Motion Blur

Liked



Upload Image Close it
Select File

Slaks Blog
Browse by Tags · View All
.Net 39
C# 28
functions 10
C# 5 9
caller-info-attributes 9
Javascript 9
delegates 8
closures 8
design 8
ASP.Net MVC 7

Archive · View All
July 2011 10
September 2011 10
June 2011 10
October 2011 8
November 2011 4
December 2011 4
May 2011 2
August 2011 2
June 2012 1
April 2011 1

  • 1
    Liked
    1
    Comments

    Subtleties of the new Caller Info Attributes in C# 5

    C# 5 is all about asynchronous programming.  However, in additional to the new async features, the C# team managed to slip in a much simpler feature: Caller Info Attributes. Since C#’s inception, developers have asked for __LINE__ and __FILE__ ma...

    SLaks  Posted on Oct 6 2011 12:00AM
    Profile
  • 1
    Liked
    1
    Comments

    The Dark Side of Covariance

    What’s wrong with the following code? var names = new HashSet(StringComparer.OrdinalIgnoreCase); ... if (names.Contains(sqlCommand.ExecuteScalar()) This  code is intended to check whether the result of a SQL query is contained in a case-insensitive collection of names.  However, if y......

    SLaks  Posted on Dec 15 2011 4:14AM
    Profile
  • 0
    Liked
    0
    Comments

    Open Delegates vs. Closed Delegates

    .Net supports two kinds of delegates: Open delegates and closed delegates. When you create a delegate that points to an instance method, the instance that you created it from is stored in the delegate’s Target property.  This property is passed ...

    SLaks  Posted on Jun 14 2011 12:00AM
    Profile
  • 0
    Liked
    0
    Comments

    Using a default controller in ASP.Net MVC

    One common question about ASP.Net MVC is how to make “default” controller. Most websites will have a Home controller with actions like About, FAQ, Privacy, or similar pages.  Ordinarily, these actions can only be accessed through URLs like ~/Home...

    SLaks  Posted on Sep 19 2011 12:00AM
    Profile
  • 2
    Liked
    0
    Comments

    Protecting against CSRF attacks in ASP.Net MVC

    CSRF attacks are one of the many security issues that web developers must defend against.  Fortunately, ASP.Net MVC makes it easy to defend against CSRF attacks.  Simply slap on [ValidateAntiForgeryToken] to every POST action and include ...

    SLaks  Posted on Jan 25 2012 12:00AM
    Profile
  • 1
    Liked
    0
    Comments

    The Dark Side of Covariance

    What’s wrong with the following code? var names = new HashSet<string>(StringComparer.OrdinalIgnoreCase); ... if (names.Contains(sqlCommand.ExecuteScalar()) This  code is intended to check whether the result of a SQL query is contai...

    SLaks  Posted on Dec 15 2011 12:00AM
    Profile
  • 0
    Liked
    0
    Comments

    CAPTCHAs do not mitigate XSS worms

    One common misconception about web security is that protecting important actions with CAPTCHAs can prevent XSS attacks from doing real damage.  By preventing malicious code from scripting critical tasks, the idea goes, XSS injections won’...

    SLaks  Posted on Dec 8 2011 12:00AM
    Profile
  • 0
    Liked
    0
    Comments

    Beware of Response.RedirectToRoute in MVC 3.0

    ASP.Net MVC uses the new (to ASP.Net 3.5) Http*Base wrapper classes (HttpContextBase, HttpRequestBase, HttpResponseBase, etc) instead of the original Http* classes.  This allows you to create mock implementations that inherit the Http*Base classes...

    SLaks  Posted on Nov 9 2011 12:00AM
    Profile
  • 0
    Liked
    0
    Comments

    Caller Info Attributes vs. Stack Walking

    People sometimes wonder why C# 5 needs to add caller info attributes, when this information is already available by using the StackTrace class.  In reality, caller info attributes behave rather differently from the StackTrace class, for a number o...

    SLaks  Posted on Oct 23 2011 12:00AM
    Profile
  • 0
    Liked
    0
    Comments

    Subtleties of C# 5’s new [CallerMemberName]

    Last time, I explored various pathological code samples in which the [CallerLineNumber] attribute does not have obvious behavior.  This time, I’ll cover the last of these new caller info attributes: [CallerMemberName]. The [CallerMemberName] attr...

    SLaks  Posted on Oct 18 2011 12:00AM
    Profile
Previous 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | ... Next
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]