Tuesday, September 25, 2012

Part II Business Sketches

Now its time for the fun part of our business ideas: creating the sketches. I am so not an artist, so what I decided to do was surf the web for possible pictures catering to my business ideas. A couple of photos was shot by yours truly and then redesigned on powerpoint.

SOLEfully Yours Design:(my photo)

 
 
Rhyme & Reason Lounge:


 

Arousing Accessories: (photo of my jewelry)

















Greek Paradise:

Travel Shore:

Part I: Business Ideas

We were asked to brainstorm and think of five possible business ideas. I simply thought of my favorite things to do or my favorite items to buy which resulted in the following ideas:

SOLEfully Yours:
A shoe boutique which carries only the hottest shoe styles for women who want to cater to their inner DIVA! "Any heel under a 3.5 inches will be uncivilized" is our motto.


Rhyme & Reason Lounge:
Being I am a lover of spoken word and music, I decided to create a business for like minded individuals. The lounge will serve your favorite adult beverage and appetizers while enjoying the sounds of a jazz band or local artist who want to showcase their talents via music or poetry.


Arousing Accessories:
I live, eat, and breathe beautiful accessories, therefore it only makes sense to create a business which centers around it. Big earrings, flashy bangles, body chains, clutches, necklaces would be my focal point. Some people place so much emphasis on brand names and the how much it cost. My store would cater to those who aren't so caught up in the brand name but moreso the fashion and style.  My motto would simply be "it's not about brand, it's about STYLE".


Greekdom Paradise:
As a member of a Black Greek organization, I have found it hard locating stores which sell Greek paraphernalia here in the Tampa area. I did find one store which was located by USF, but the choices were very slim. I would open a store possibly in Westshore Mall as well as create an online store to cater to members of the Divine Nine (African American Sororities & Fraternities).


Travel Shore:
One of my favorite past times is being able to travel when time does permit me to do so. Therefore, I created a business to help others plan their wonderful vacations. I love the name Travel Shore only because of the play on words.


Tuesday, September 18, 2012

Project #1

3pm: The image I am attempting to create is a simple and beautiful picture of an Ankh with Egyptian pyramids in the background. The Ankh symbol is near and dear to me and the meaning is something I apply to my life on all levels. It simply means: life and prosperity.

11:30pm: Well I have been working nonstop since my last posting on this blog and although my expectations were high for this project, the mission was NOT accomplished. My project has gone from what I had anticipated being an ankh with egyptian pyramids has turned into a shark in the water at the beach lol. Nonetheless, I am HAPPY with it because my knowledge of this coding deal is slowly but surely increasing!

Coding:

<!DOCTYPE HTML>
 <html>
 <head>
 <script>
 window.onload = function() {
 var canvas = document.getElementById("myCanvas");
 var context = canvas.getContext("2d");

///////////// start below this line ???????????

//sand
context.beginPath();
context.rect(0, 0, 800, 600);
context.fillStyle = 'tan' ;
context.fill();
context.lineWidth = 10;
context.strokeStyle = 'tan';
context.stroke();
//Water
context.beginPath();
context.rect(0, 0, canvas.width, canvas.height/1.5);
context.fillStyle = 'blue';
context.fill();
context.lineWidth = 2;
context.strokeStyle = 'blue';
context.stroke();

//sun
    context.beginPath();
    context.arc(750, 100, 80, 0, 2 * Math.PI, false);
    context.fillStyle = "yellow";
    context.fill();
    context.lineWidth = 4;
    context.strokeStyle = "yellow";
    context.stroke();

// begin custom shape
    context.beginPath();
    context.moveTo(170, 80);
    context.bezierCurveTo(130, 100, 130, 150, 230, 150);
    context.bezierCurveTo(250, 180, 320, 180, 340, 150);
    context.bezierCurveTo(420, 150, 420, 120, 390, 100);
    context.bezierCurveTo(430, 40, 370, 30, 340, 50);
    context.bezierCurveTo(320, 5, 250, 20, 250, 50);
    context.bezierCurveTo(200, 5, 150, 20, 170, 80);
// complete custom shape
    context.closePath();
    context.lineWidth = 5;
    context.fillStyle = 'white';
    context.fill();
    context.strokeStyle = 'white';
    context.stroke();

//shark fin
    context.beginPath();
    context.moveTo(198, 300);
    context.lineTo(298, 100);
    context.lineTo(398, 300);
    context.lineJoin = 'miter';
    context.fillStyle = 'grey';
    context.fill();
    context.strokeStyle = 'grey';
    context.stroke();
   
    

///////////// end above this line ????????????

};

</script>
 </head>
 <body>
 <canvas id="myCanvas" width="800" height="600"></canvas>
 </body>
 </html>

Wednesday, September 12, 2012

Aggravated...(Heart Assignment)

10:08 am, I keep attempting to make this heart but it is either turning out sideways, not connecting, or simply not showing at all and I have been going at it since last night. Still making an attempt to complete but receiving no such luck....ughhhh! Once my finished project is completed, it will be posted.

As of 1:53pm, I FINALLY was able to get something to show up with this assignment. I literally have been working on this since last night. Tried again this morning during the class time until now and my brainis fried. If THIS was suppose to be an easy assignment, then I need to take a valium to calm my nerves for next weeks project. My end result looks a little funky but the lines are connecting. We will call this piece "A Heart Attack".

 
 
<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
/////////// start below this line ??????????
var controlX1=300;
var controlY1=0;
var controlX2=100;
var controlY2=200;
var endX=200;
var endY=320;
var controlX3=380;
var controlY3=400;
var endX2=300;
var endY2=450;
var controlX4=425;
var controlY4=300;
var endX3=500;
var endY3=325;
var controlX5=600;
var controlY5=200;
var controlX6=550;
var controlY6=0;
var endX4=300;
var endY4=100;
var grdstartX=300;
var grdstartY=0;
var grdendX=300;
var grdendY=500;
//Rectangle
context.beginPath();
context.rect(0, 0, 800, 600);
var grd = context.createLinearGradient(grdstartX, grdstartY, grdendX, grdendY);
grd.addColorStop(0, 'rgb(255,0,255)');
grd.addColorStop(1, 'rgb(0,0,250)');
context.fillStyle= grd;
context.fill();
context.stroke();
//Heart
context.beginPath();
context.moveTo( 400,200 );
context.bezierCurveTo(controlX1, controlY1, controlX2, controlY2, endX, endY);
context.quadraticCurveTo(controlX3, controlY3, endX2, endY2);
context.quadraticCurveTo(controlX4, controlY4, endX3, endY3);
context.bezierCurveTo(controlX5, controlY5, controlX6, controlY6, endX4, endY4);
context.fillStyle='rgb(255,0,250)';
context.fill();
context.lineWidth=5;
context.lineCap='round';
context.strokeStyle='rgb(255,255,255)'
context.stroke();
/////////// end above this line ?????????
};
</script>
</head>
<body>
<canvas id="myCanvas" width="800" height="600"></canvas>
</body>
</html> 

Sunday, September 2, 2012

No Idea What I Am Doing BUT Trying!

I attempted to complete the assignment given for Wednesdays class. I was more lost than Stevie Wonder trying to run a marathon with no guidance..smh. But nonetheless, I followed the tutorial and made a few adjustments which ended up in the following:





I can not honestly say I fully understand this assignment but hopefully throughout class and me being PRESENT, I will gain some type of knowledge.