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

  • 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
  • 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
  • 1
    Liked

    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’t be able to accomplish much. This idea is dangerou......

    SLaks  Posted on Dec 8 2011 2:32AM
    Profile
  • 1
    Liked

    Visual Studio 2012 and webpages:Version

    If you open an older ASP.Net MVC3 project in Visual Studio 2012, you may see lots of errors in the Razor views, along the lines of “The name 'model' does not exist in the current context”, and similar errors whenever you try to use MVC features like HTML h...

    SLaks  Posted on Jun 11 2012 12:00AM
    Profile
  • 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

    ASP.Net MVC Unobtrusive Validation Bug

    If you use the ASP.Net MVC 3 [Compare] validation attribute on a model property, then include that model as a property in a parent model (so that the field name becomes Parent.ChildProperty), the built-in unobtrusive client validation will choke, and will ...

    SLaks  Posted on Feb 21 2012 12:00AM
    Profile
  • 1
    Liked

    Exploring Caller Info Attributes

    Last year, Microsoft announced a simple new feature in C# 5: Caller Info Attributes.  These attributes let you to create methods with optional parameters and tell the compiler to pass the caller’s filepath, line number, or member name instead of the p...

    SLaks  Posted on Mar 1 2012 12:00AM
    Profile
  • 0
    Liked

    Tracking Event Handler Registrations

    When working with large .Net applications, it can be useful to find out where event handlers are being registered, especially in an unfamiliar codebase. In simple cases, you can do this by right-clicking the event definition and clicking Find All References (Shift+F12).  This will show you eve......

    SLaks  Posted on Jul 29 2011 7:58PM
    Profile
  • 0
    Liked

    About .Net Events

    A .Net event actually consists of a pair of accessor methods named add_EventName and remove_EventName.  These functions each take a handler delegate, and are expected to add or remove that delegate from the list of event handlers.  In C#, writing public event EventHandler EventName; crea......

    SLaks  Posted on Jul 29 2011 2:14AM
    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]