Showing posts with label Tools. Show all posts
Showing posts with label Tools. Show all posts

Oct 3, 2013

Screen presentation tools

Wink - small great screen presentation creation tool - http://www.debugmode.com/wink/

Need to check out the http://www.screenr.com/

Nov 22, 2012

WebStorm, CoffeeScript, LESS

Setup External Tools to compile CoffeeScript (this helped):

  • Navigate to "External Tools" in the "IDE Settings".

  • Click the little ‘plus’ icon to ‘add’ a new tool.

  • Program: c:\Users\user.name\AppData\Roaming\npm\coffee.cmd

  • Parameters: -c $FileName$ (or whatever is needed)

  • Path: c:\Users\user.name\AppData\Roaming\npm (or whatever is needed)


Example setup to compile LESS (this helped):

  • c:\Users\user.name\AppData\Roaming\npm\lessc.cmd

  • $FileName$ > ..\lesscss\$FileNameWithoutExtension$.css

  • $FileDir$

Apr 13, 2012

PostSharp

http://www.sharpcrafters.com/

Aspect-oriented framework for .NET.

Name: OnExceptionAspect
Level: method
Note: exception handling in a marked method

Name: OnMethodBoundaryAspect
Level: method, class, assembly
Notes: intercepts certain points in a method’s execution: OnEntry, OnExit, OnSuccess, OnException

Name: MethodInterceptionAspect
Level: method
Notes: replaces method's contents that can be invoked
Example use: wait/retry, automatic thread delegation, lazy loading and validation

Name: LocationInterceptionAspect
Level: field, property
Notes: OnGetValue and OnSetValue
Example use: lazy loading, IoC Resolution

 

Subtle Patterns

http://subtlepatterns.com/

Cassette

http://getcassette.net

Bundle and minify scripts and stylesheets.

Reference files in javascript files to be automatically included (with intellisense in VS):
 /// <reference path="jquery.js"/>