iMacros – avoiding repetitive form filling work to test a website form

Do you ever fill in a form with the same values again and again and sit and wait for the website to load so you can test the outcome?

Try this macro recorder addon for Chrome and Firefox:

iMacros for Chrome

iMacros for Firefox

works excellent, although the save buttons can be hard to hit sometimes.
You can easily edit the recording steps as well.

Untitled

 

 

Ultimate Guide to Speeding Up ReSharper (and Visual Studio) – JetBrains .NET Tools Library – Confluence

Yes.

Ultimate Guide to Speeding Up ReSharper (and Visual Studio) – JetBrains .NET Tools Library – Confluence.

And some simple smart tips from dileno regarding Visual Studio:
http://blog.dileno.com/archive/200910/faster-visual-studio-with-some-quick-steps/

 

Handling EPiServer users and roles – reference list – Epinova

Thank you Arild Henrichsen!
If you need some code for:
Handling EPiServer users and roles  in EPiServer 5 and 6.
Such as:
– Retrieving users
– Authenticating users (login/logout)
– Creating and deleting users
– Creating, assigning and deleting roles/groups
– Retrieving/setting user profile properties
– Access rights for users and roles

Just go here:
Handling EPiServer users and roles – reference list – Epinova.

Avoid unnecessary text selection on web pages

You know that annoying thing that happens when you try to click a link or a button on a page and you miss, and accidentally marks some text or html:

ScreenShot424
There is a fix for that.

Css fix:

body{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

via javascript: Disable Text Select – Stack Overflow.

Js IE fix: (probably needed for some versions of Internet Explorer…)

onselectstart = function(){ return false; }

Jquery IE fix:

In jQuery 1.8, this can be done as follows:

(function($){
    $.fn.disableSelection = function() {
        return this
                 .attr('unselectable', 'on')
                 .css('user-select', 'none')
                 .on('selectstart', false);
    };
})(jQuery);

http://stackoverflow.com/questions/2700000/how-to-disable-text-selection-using-jquery

I havent tested these anywhere… yet. But Stack Overflow  is usually right.