Tuesday, August 17, 2010

Tortoise SVN

Wednesday, December 16, 2009

Photoshop

Basics

http://www.we-r-here.com/ps/index.htm

http://www.photoshop-plus.co.uk/2012/06/05/working-more-quicker-and-more-efficiently-in-photoshop/

Random Tutorials

http://www.tutorialized.com/tutorials/Photoshop/1

Create  a rectangle outline
  1. select rectangle tool in tool bar
  2. click workpath with pen(second one) from top tool bar
  3. draw rectangle  dragging mouse
  4. Ctrl ENTER
  5. Select Edit > >  Stroke
  6. Set width and color
  7. Ctrl D to deselect
Drawing glowing rays

http://www.psdgraphics.com/tutorials/windows-7-wallpaper-photoshop-tutorial/2/
    Blend modes:http://www.northlite.net/ps/blend.htm

      Friday, November 27, 2009

      xcart

      database values are in config.php

      # $sql_host - DNS name or IP of your MySQL server;
      # $sql_user - MySQL user name;
      # $sql_db - MySQL database name;
      # $sql_password - MySQL password.



      usual work flow of authenicated pages is
      require "./auth.php";
      auth.php  includes the following

      @include_once "./top.inc.php";
      @include_once "../top.inc.php";
      @include_once "../../top.inc.php";
      if (!defined('DIR_CUSTOMER')) die("ERROR: Can not initiate application! Please check configuration.");

      require_once $xcart_dir."/init.php";

      important function x_load defined in include/func/func.core.php
      it includes file like this
      x_load("backoffice");
      includes include/func/func.backoffice.php

      template engine is smarty

      Password encryption is done in function text_crypt in includes/funct/func.crypt.php

      Thursday, November 12, 2009