3d Modeler - Character Artist - Car Modeler - Web Design & Developer
Home | Administrative Access
3D Work | 2D Work | Web Design | Awards & Diploma | Resume
Contact Me

Search Blogs:


Previous Blogs
Site Redesign, 04/20/09
Random Wallpaper, 04/21/09
Current Projects, 04/22/09
Working, 04/24/09
Improved Blog Controls, 04/27/09
Got to Work, 04/29/09
Fade effect on Galleries, 04/30/09
3d modelling, 05/02/09
Slept Late/Woke-up early, 05/04/09
sneak peak, 05/06/09
My previous week, 05/19/09
Going to Canada, 05/28/09
PHP Form Designer, 06/10/09
Array Pagination, 06/29/09
CyberGirl, 07/01/09
Mad Scientist, 07/29/09
Orchis, 08/07/09
My Price, 08/11/09
Modeling Saleen S7, 09/07/09
Senior Project QC, 10/14/09

Next Page Go to the end.

Blogs 1 to 20 of 24

Site Members: 1
salman
Sticky
WebSite Compatibility - It's not me, it's you..., 11/05/09 View Blog Edit Blog

Please use FireFox 3.5 or IE 8

(Click the image for the download page)

FireFox   ORie8

Change Site Wallpaper:
Change Wallpaper


Posted by: salman
On: 11/05/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

Job Board, 12/20/09 View Blog Edit Blog

Phase 2
layout / programming

Phase 1
Design / concept


Posted by: salman
On: 12/20/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

Strawberry Shortcake, 12/01/09 View Blog Edit Blog

Work in progress strawberry shortcake


Posted by: salman
On: 12/01/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

Anime Figure, 11/24/09 View Blog Edit Blog

My first attempt at modeling a Anime style figure with oil based clay. Kinda rough but I am not done yet.


Posted by: salman
On: 11/24/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

Senior Project QC, 10/14/09 View Blog Edit Blog

This was my senior project at Queens College. Inspired my Richard Serra's sculptures.


Posted by: salman
On: 10/14/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

Modeling Saleen S7, 09/07/09 View Blog Edit Blog

I have to say this is a cool looking car. Therefore worth modelling..

My progress so far...


Posted by: salman
On: 09/07/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

My Price, 08/11/09 View Blog Edit Blog

How much will a website cost me???

Please read the following article: Click here. This article pretty much sums it up...

Here is a case Study..

Website: http://www.karenmakeup.com Price: $1000
Art of MakeUp
Designed with CSS 2.1, DreamWeaver CS 4 and Photoshop CS 4
Pragrammed with HTML, CSS, PHP and MySQL data base
Custom Blog Set-Up
News and Events update Application
3 Dynamic Galleries
Customer Trial Area With Individual logins
Custom CMS

Posted by: salman
On: 08/11/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

Orchis, 08/07/09 View Blog Edit Blog

Orchis update..


Posted by: salman
On: 08/07/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

Mad Scientist, 07/29/09 View Blog Edit Blog

This is my latest completed model. It's a character from digital tutors video training series. I'm still working on the finishing touches such as painting, posing.


Posted by: salman
On: 07/29/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

CyberGirl, 07/01/09 View Blog Edit Blog

My Current CG Project.


Posted by: salman
On: 07/01/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.

Array Pagination, 06/29/09 View Blog Edit Blog

Using array pagination I have updated my art galleries so they are broken up into 12 images per page.

Sample: 3D Work
Sample: 2D Work

Array pagination was a easier than I thought. The solution on the Internet helped but was a little complicated for what I wanted.

So Here is my solution for Array Pagination:

//First make an array called $narray.

$total = count($narray);
//Count the array elements

$numberItems = 12;
//Pages per Item

//Determine the number of pages needed to display the entire array
$numberPages = $total % $numberItems;

if ($numberPages > 0)
 {
  $totalPages = ceil($total / $numberItems);
 }
else
 {
 $totalPages = ($total / $numberItems);
 }
 

//Display page navigation
$nav = 1;

for($p=0;$p<$totalPages;$p++)
 {
 $number = $nav++;
 echo $pages .= ''.$number.' ';
 }


Posted by: salman
On: 06/29/09


Write Comment Add Comment
Name:
A value is required.
Comment:
A value is required.Exceeded maximum number of characters.