Tutorial

    Getting started with SaSS, Foundation, Compass on Windows, for PHP web application development

    My friend wanted to get started with using Foundation for an upcoming Greenfield project. The trouble is Foundation comes in two flavours:

    • Foundation3 with default CSS
    • Foundation3 with SCSS (Sassy CSS, which is the syntax used by SASS – "Syntactically Awesome Style Sheets". SASS is an extension of CSS3 which brings familiar programming concepts to CSS like variables, nesting of selectors, functions aka mixins)
    While "Foundation3 with default CSS" can be perfectly used to take advantage of Foundation's amazing features, using "Foundation3 with SCSS" was thought of a natural way to learn and build websites with SCSS. But, the problem is "Foundation3 with SCSS" does not come as an executable installer for Windows. It is packaged with a CSS Authoring Framework called "Compass". For a start, Compass contains re-usable cross-browse CSS mixins, which in itself is a good utility. There are other advantages in using Compass too.

    The Compass framework does not have a Windows Installer. It is only available as a Ruby Gem package, which means we have to install Ruby for Windows first. After this, we follow the following steps to get Compass with Foundation:

    Start Command Prompt with Ruby (Run as Administrator)

    Finish Reading →

    How to use Ninject IoC with ASP.NET MVC

    The following are the detailed steps to use Ninject IoC with ASP.NET MVC

    Download and install TortoiseSVN
    TortoiseSVN is a Subversion client that allows you to manage source control tasks from within Windows Explorer.
    Download the source code for Ninject from google code
    The Ninject source code is hosted in Google Code website. To download the code to PC, we will use TortoiseSVN. Before that we need the URL of the repository. This is available in the following url:

    http://code.google.com/p/ninject/source/checkout

    Finish Reading →