Sunday, July 31, 2011

BrninG Posture-SkanD

Hello..friends
This is One of Phostoshop work
Actually..
nothing to say..
..just enjoy..
Thank You
!!!...SkanD GupT...!!!

Trailor-skand work..

this work will be on release by or before 9pm tonight..
keep checking...!!!


Saturday, July 30, 2011

Final Mod-2

Helloo..friends..!!!
this is final mod-2..!!
how is it loooking now.....!?!
enjoy and have fun..!!!
thank you..!!
!!!...Skand Gupt...!!
Also comment what do you think of it!!
what did you like???
and what you did not???
thank you again...!!
!!..Skand Gupt..!!
my..buddies...

Final mod 1

Hello firends
what do you think of it...!!!

Something lightened up from rumble...!!!

Hello friends
Use it like a hint
!!!...of what is coming next..!!!
...Thank You...
!!!...SkanD GupT...!!!

Friday, July 29, 2011

Something in Rumble--SkanD

Hello...friends..
you must br thinking what is this..??
well
this is something...
appeared before me..
when I was 
just flowing my brush 
in Photoshop..
It was like a glimpse of it..
But...
what I caught of this glimpse..
Is presented before you..
..
I hope You'll like it..
and 
can you see it clear enough
that you  can say
what is It..??
If you can..
then
please go ahead..

Thank you..
...SkanD GupT...

Thursday, July 28, 2011

SkanD sketches his bro..


This time..
...It is my Brother...
sketched out 
..when he was slept..

...thank you...
SkanD GupT

SkanD's MermaiD

A mermaid
..dream of many.. 

Technology : Adobe Photshop  CS 4
by Skand GupT

Friday, July 22, 2011

Trailor..!!!-SkanD GupT


Aaj thoda busy tha..!!! so meri next post ki ek jhalak..!!!
Aur ha picture abhi baaki hai..dosto..
Kal milte hai..
tab tak ke liye alvida..
shubh ratri..
..

!!!...sweet dreams babes..!!!

Wednesday, July 20, 2011

SkanD doing Sketching..-- Boy writting]


hello guys ..This is the second video post
showing...my sketching skill..
well this is not as I wanted..but here it is..!!!
plz enjoy..!!!

SkanD LizarD...MirrorSSSSS



 Hello friends...
My lil cutie repltile
plz enjoy...!!!
Corel....Corel ..Corel Draw It is ...my friend

BirD FlyinG in SkanD's dream 2


As usual friends...
This is the version 2
of what i posted earlier..
I hope
U'll like this too...

Tuesday, July 19, 2011

BirD FlyinG in SkanD's dream


Well friends..
Imagination is the Key 
and 
Implementaion of Imagination
is the key of success
Thank you...(SkanD)

This one is completely made in Photoshop
firstly
Art Brush
then
smudging
then
filtering,effects,blurring,texting,blending
and 
lil more
were done

...THE END...

SkanD doing Sketching..!!!



This is just to show how to sketch out things
I hope
YoU'll enjoy it...!!!

Monday, July 18, 2011

Fantasy Aart

THis one is made @ Devian art muro..
kinda warm up!!!

StacK programme in 'C'

hello friends...

this is a code implementing stack(PusH, PoP & Display function)..

Software Used : Turbo C++


Code:



#include
#include
int push(int *, int, int);           //PusH fxn-adds item in stack
int pop(int *,int);                    //PoP fxn - deletes item from stack
void display(int *, int);          //Display fxn -displays stack
int menu();                             //Menu fxn-ask wat user wanna do
int again();                             //Again fxn-ask to continue..




int top,maxstack;                  //global variable  
void main()
{
int stack[6],item,i,j,choice,askmore;
maxstack=5;                       //stack size defined
    top=-1;
clrscr();
printf("hello\n");


while(choice!=3)
{ clrscr();
printf(" top =%d     elements = %d\n",top,top+1);
display(stack,top);
printf("\n\n\n ");
choice=menu();                  //menu fxn is called for asking user preference
switch(choice)                    //switch-to according to user's choice                     
{
case 1: top=push(stack,top,maxstack);     //calls PusH & value of ToP is returned
printf(" top =%d",top);
askmore=again("enter");
if(askmore==1)                               //asks for more PusH operation cont. if yes else it breaks
{ top=push(stack,top,maxstack);
printf(" top =%d",top);
}
break;
case 2: top=pop(stack,top);           //calls PoP fxn & returns ToP value
printf(" top =%d",top);
askmore=again("delete");          //ask for more PoPing..so continues if user says YES
if(askmore==1)
{ top=pop(stack,top);
printf(" top =%d",top);
}
break;
case 3: display(stack,top);          //called for Display only
break;
case 4: exit(0);           //user can exit on hitting 4
}
getch();         // to stop at scareen after each cycle of while looP
}
getch();
}


int push(int *stack,int top,int maxstack)  //body of Push fxn
{
int item;                                            //item to be added in stack is initialised
printf("\n Enter item in stack\n  ");  
scanf("%d",&item);              //Item entered by user
if(top==maxstack)                          //Overflow condition is checked
{printf("overflow");
}
else                                                 //on nonoccurence of overflow..push operation is performed
{top=top+1;                                    //by incrementing ..TOP is set to Zer0
stack[top]=item;                             //Item inserted in stack
}
printf(" %d is at %d",stack[top],top);  //position of item in stack is displayed
return(top);        //returns 'TOP' value
}
int pop(int *stack,int top)            //PoP fxn Body
{ int item;                        //Item to be deleted is defined
printf("\n Deleting item");      //just to show control
if(top==-1)                //checks occurence of UNDERFLOW condition
{printf("Underflow");
}
else       //On nonoccurence of  UNDERFLOW ..item at TOP of stack is deleted
{top=top-1;  //By decrementing ,TOP is made to point the Item present next to the 
                        ITEM to be deleted.  
item=stack[top];  //Item is placed at the top of stack
}
printf("\n Item deleted = %d",stack[top+1]);  //shows Deleted ITEM and its position in stack
                                                                            assuring that deleted IteM was the TOPmost one
printf("\n Item at the new top = %d",item);   //displays new item at the ToP
return(top);  //returns TOP
}


void display(int *stack,int top)
{       int i;
printf("\n stack is as :");


for(i=0;i<=top;i++)    //Displays items present in stack upto TOP of stack from bottom 
{
printf("%d ",stack[i]);  
}


}
int menu()                   //menu fxn  body is created
{ int  choice;
printf("\n 1.PUSH      2.POP      3.Display  4.Exit \n\n");  //Menu created...and displayrd
scanf("%d",&choice);
return(choice);
}
int again(string)        // asking for continue ..if wanna do-click 'YES'...else click 'NO'
{             int askmore;
printf("\n\n\nWant to %s more...press accordingly...",string);
printf("\n 1.yes    2. no \n\n ");
scanf("%d",&askmore);
return(askmore);                    //return..the reply from user in form of integer
                                                   -- 1. for 'YeS' & 2. for 'NO' 
                                                  
}








...StacK ...

Sunday, July 17, 2011

My Firends!!!





If anyone else wants thier name...
plz write ur name
and wallpaper wud be produced..
u can check later..
..
...thank you...

New TrY...-Wallpaper

 
 Firstly 
Illustrated
then
Photoshopped
when
all effects were put
at last 
Corel Draw 
was used
just for experimentation
&
to put my symbol on it

...thank you...

Saturday, July 16, 2011

BULL TrYYYY....!!!!

BuLL 4 RavS
Hey Buddy.. ..!!!
so do you like any...
I tried many..!!!
If somehow
u  like any or mnay..!!!
let me know..!!!
else
I'll make any or many..!!!
and 
If u wanna suggest..any
don't hesitate !!!
even if there are many..!!!
bcz
I m here to deal with 
any or many...!!!

Thursday, July 14, 2011

SkanD NorM...!!!

M CLIKIIIINNNN.....

Find out synonym???

1. Sagacious
a. appealing                          b. placid                            
 c. wise                                d. shaky
2. Lethal
a. conventional                      b. deadly                         
c.averse                                d.demonstrative
3. Feint
a. religious                          b. digress                             
c. pretense                         d. swoon

 to be continued...
&
alongwith synonym let's see...
we know exact meaning of how many of these words......???


Be Honest..plz..!!!


this is just to check my memory and to power up my Vocab..

Monday, July 11, 2011

SkanD In Banyan Tree(Meditation)


Friends...This tree was too huge....hard to imagine...man..!!!
Its prop roots are damn strong..and long .man..!!!
Hieght -width just don't ask...!!!(hard to measure..)
..
I just lived my dream by sitting in it....It was just unexplanable...!!!
Feeling was amazingly KooL..!!!


Pleasing Eve..



Check out the natural beauty....
Memories of village...

SkanD Angel Only (WaLL 9)



This is last of Angel...I hope you all liked the angel so far..

SkanD Angel Only (WaLL 8)




Just few more to go...

SkanD Angel Only (WaLL 7)



Angel in Dreamland

SkanD Angel Only (WaLL 6)



Enlightened Effect

Sunday, July 10, 2011

SkanD Angel Only (WaLL 5)


SkanD Angel Only (WaLL 4)



Here is your angel ...my friends
Click on the pic to see its enlarged version

SkanD Angel (WaLL 3)







Here I worked a little on Reflection stuff..!!!
and Last two are of different resolutions

Life so Far>>>>!!!


This post is about..
How was your journey of life with Mr.SkanD Gupt..???
These things will be added in Mr.SkanD's Biography..
and
doin this bcz I want make it on my own...just to avoid manipulations

Wednesday, July 6, 2011

Delicate Hands-SkanD Art 1

well this I made for my cousin...1 0r 2 year ago..
and as refence ..
a Girl Helped me...by showing her hands..to me..and keepin them intact until I was done..
Thank you..girlyyy...

SkanD & kane (Photshop work 2)

This post is completely dedicated to..."Kane"
One of the best wrestlers I know...

well this was also made 2 or 3 years ago...
actually I was trying something new....
that time i was just a novice.....in graphical world...


such old work reminds ...
what practice can give us...
well
"Practice is the key to perfection "

SkanD Angel Reflection(WaLL 3)

This is also one of the samples..
New versions will be on display soon...
till then plz enjoy..and never forget to give Feedback..

Skand-Tiger( Photshop work 1)

This pic was made by SkanD GupT long ago..I think Around 2 or 3 years ago...
It is completely edited in "Adobe Photoshop CS"..
In this I took a pic (of tiger)
Then Everything beside tiger is made in Photshop...

well next time..
I'll make my own PantheR...
If Guys wanna See....
See this blog is completely dedicated to its viewers..
So only if u guys say...I'll do..
Otherwise i'll make but wudn't post it here..!!!
so reply soon...guys 

SkanD Angel (WaLL 2)

This is also a sample...plz njoy..
and...do tell me..if u want me to do anything to it...so that it can be more better..as its new versions will
soon be posted   guys...
so feel free to suugest....

SkanD Angel (WaLL 1)

hello friends....
this is just a sample of what will be coming next...
Though few things remaining...
will be Modified in next versions of.
unfortunately...i can't show you people...all of them...
bcz for next 3  days I'll not be able to create any post..
so plz my friends...
Just keep patience till then..