contacts:
Artem
Phone:+7 923 132 3934
ICQ:238670713
Email:artem.pavlov@gmail.com
 
Andrew
Phone:+7 913 905 1061
Skype:nayk.ru
Email:nayk.ru@gmail.com

Hi all! This page first and foremost devoted to developers. We have some useful groundworks wich can automate and simplify some steps in web site development. So we want to share it with you.

Download and use it without any restrictions. If you have some questions, ideas or improvements advices This e-mail address is being protected from spambots. You need JavaScript enabled to view it . And certainly we always opened for business suggestions.

At present we ready to show next of our groundworks:

AdvancedCSS

CSS extension utility. It makes CSS to be more object oriented: declare variables and classes in CSS. For example, this code

/*
Base class
*/
$test
{
    margin: 0px;

    font-family: Tahoma;
    font-size: 12px;
    $CustomWhite:White;

    width: 18px;
}
// Such type of comments also works
html, body
{

    margin: 0px 0px 0px 0px;

    font-family: Tahoma;
    font-size: 12px;
    background-color: $test.CustomWhite;

}
.test_inheritance
{
    $test;
    font-family: Tahoma;

    background-color: $test.CustomWhite;
}

will be transformed in

html, body
{
    margin : 0px 0px 0px 0px;

    font-family : Tahoma;
    font-size : 12px;

    background-color : White;
}

.test_inheritance
{
    margin : 0px;

    font-family : Tahoma;
    font-size : 12px;

    width : 18px;
    background-color : White;

}

This utility coded using C# 3.0/.NET3.5. Also ANTLR used for CSS parsing. You need NAnt and Java to build this project.

It is very handy to write CSS code and apply this utility just before you upload your web site.

Source code (1.5 Mb)

DBManager

Quite usefull utility, developed to simplify work with database from PHP code. Main purpose of DBManager can be seen in next screenshots. Using database table DBManager utility easily generate ORMapping object with rich abilities.

This utility is slightly raw. Worked out a piece with code generation of DAL objects for C#/nHibernate. Coded using C# 2.0/.NET 2.0, ANTLR. You need Java to build this project.

Source Code (7.3 Mb)

 
All rights reserved. Copyright © Sphere Software 2005–2010