Wednesday, October 3, 2012

Logo Critiques

The first logo I'm critiquing is the clothing brand Supreme. the logo itself is extremely simple, however it's instantly recognizable among people who are even the tiniest bit involved in the world of street-wear. The red box makes the white "Supreme" pop out, which helps when it's placed on a darker colored shirt. When stickers of this logo sell anywhere from $5-$30 each, depending on the model, you know it's a great logo.
http://www.brandsoftheworld.com/sites/default/files/styles/logo-thumbnail/public/0020/0698/brand.gif 
 The second logo is of the thrash metal band Anthrax. This is one of their most recent logos, as for years they've used simply their name as the logo. Although I love the band, this logo never really made sense to me. It's based off of an inverted pentagram, a symbol synonymous with satanism and is used by metal bands that cover that topic. However, Anthrax is not known to cover satanism. In fact, I believe there's only one or two songs that talk about Satan or anything of that sorts, so I was always confused as to why they went with this logo.


 http://thevillagesdemocrats.com/wp-content/uploads/2011/09/the-onion-logo1.jpg

The  third logo is of the Onion, a satire news company. One of the things I love about this logo is the fact that it looks like an actual news company logo, which leads many people to believe it's true. Normally a company wouldn't want to misinform their customers. However, the Onion purposely does this as part of their humor style. When you're walking through a city and you see the green onion on the side of a free newspaper box, you know that it's an Onion paper.
http://www.the-rudy.com/images/cbgb_logo-blk_f-up.jpg

Logo four is of the infamous club CBGB's. The club was intended to be for country and blue grass bands, however it became synonymous with the punk movement. Everyone from the Ramones to Blondie to Agnostic front to Beastie Boys have played here. While the logo itself was made during the country years, they decided to keep it the same. This could have been a huge issue for a tourist who has never heard of the club, walking in expecting some country music and instead seeing people going nuts to whatever hardcore band was playing that night. Nowadays, you can ask almost anyone about what this logo means and nine times out of ten they will tell you that it's a club venue.



http://www.backsideonline.com/wp-content/uploads/wpsc/category_images/mishka-logo.jpg
The final logo I chose is of the clothing company Mishka. Like Supreme, they are a street-wear company, except a majority of their clothes have a darker, punk and metal influenced style. If you aren't already familiar with the brand and don't understand Russian, it would be hard to tell what the company is. The Mishka bear is almost as recognizable among street-wear enthusiasts as the Supreme logo, however I personally like this one better.





Caligramme

This is my caligramme, which is a picture made out of words. It is a Nike SB Dunk low, made out of all the names of SB's throughout the years. I am an avid sneaker collector, so this was the first idea that popped into my head when this project was assigned. A large portion of these shoes were inspired by pop culture, including movies (Hulks, Ferris Buellers, Boba Fetts, Oompa Loompas), rock bands (Appetite for Destructions/November Rains, Dinosaur Jr's, Dr. Feelgoods), household products (Band Aids, Shoe Goos, Bruts, Bics), and TV shows (Mork & Mindys, Twin Peaks, Shimuzus). Every design and colorway has some sort of meaning or inspiration, which is what makes Nike SB's different from the generic Nike Outlet shoe.

Monday, September 24, 2012

Fictional Company Ideas

1. Sally's Saxophones: A family owned and operated music store that has been in business since the late 19th century. They specialize in instruments but sell other products such as CD's and old Vinyl.

2. Possessed to Skate: A local skate shop, popular hangout for hardcore skaters and amateurs alike. Name is inspired by the Suicidal Tendencies song of the same name.

3. die Famili: Limited, street-art inspired clothing. Collaborations with street artists and other companies are not uncommon.

4. The Pit: A medium-sized concert venue for ska, hardcore, and metal bands. There are no seats, so dancing, moshing, crowd surfing/stage diving etc. is encouraged. Everyone from local bands to legends such as Bad Brains and Slayer will play here. Light security enforced by law, but only to prevent fights. Imagine a modern day CBGB, except kept a lot tidier.

5. Rampage Riot Punch: An alcoholic beverage that goes down incredibly smooth but packs a crazy punch. Marketed towards college students, this crazy concoction is guaranteed to be the talk on campus. Every bottle has 2 ibuprofen attached, perfect for the morning after.

At first I wanted to do the skate shop, however after thinking for a while I decided on The Pit. Concert-going is one of my favorite hobbies and I really hate how CBGB closed while I was still young. I've been to too many concerts where the band was great but the venue was insanely strict. A venue with a great reputation attracts better bands, and is a great place for underground artists to make it big.

Tuesday, September 18, 2012

Rich Stick Man

Here is my project. It is a stick figure "rich guy", complete with a top hat, cane, and monocle. It took me a long time to complete this. Here is the HTML 5 Code:

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

////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ

context.beginPath();
  context.rect(0, 0, 800, 600);
 var grd = context.createLinearGradient(0, 0, canvas.width, canvas.height);
           grd.addColorStop(0, 'rgb(200, 50, 255)');
         grd.addColorStop(0.5, 'rgb(230, 150, 255)');
        grd.addColorStop(1, 'rgb(255, 255, 255)');
   
        context.fillStyle = grd;
        context.fill();
 


context.beginPath();
context.arc(425, 210, 100, 0, 2 * Math.PI, false);
        context.fillStyle = 'rgb(238, 204, 172)';
                context.fill();
        context.stroke();

 context.beginPath();
        context.rect(325, 125, 210, 30);
        context.fillStyle = 'black';
        context.fill();
        context.stroke();

context.beginPath();
        context.rect(375, 50, 100, 90);
        context.fillStyle = 'black';
        context.fill();

context.beginPath();
context.arc(370, 193, 5, 0, 2 * Math.PI, false);
        context.fillStyle = 'black';
                context.fill();
        context.stroke();

context.beginPath();
context.arc(470, 193, 5, 0, 2 * Math.PI, false);
        context.fillStyle = 'black';
                context.fill();
        context.stroke();

context.beginPath();
context.arc(420, 223, 5, 0, 2 * Math.PI, false);
        context.fillStyle = 'black';
                context.fill();
        context.stroke();
       
        context.beginPath();
context.arc(470, 193, 15, 0, 2 * Math.PI, false);
        context.stroke();
       
          context.beginPath();
  context.moveTo(470, 208);
  context.lineTo(470, 225);
  context.stroke();
       
  context.beginPath();
        context.arc(420, 250, 40, 0, Math.PI, false);
        context.closePath();
        context.lineWidth = 5;
        context.fillStyle = 'red';
         context.fill();
        context.stroke();
       
  context.beginPath();
  context.moveTo(425,310);
  context.lineTo(425,500);
  context.stroke();     
 
context.beginPath();
        context.moveTo(325, 600);
        context.quadraticCurveTo(425, 400, 525, 600);
   context.stroke();
   
   
     context.beginPath();
  context.moveTo(575,390);
  context.lineTo(275,390);
  context.stroke();   
 
  context.beginPath();
       context.moveTo(550, 600);
        context.bezierCurveTo(490, 400, 575, 400, 575, 390);
        context.strokeStyle = 'rgb(139, 90, 43)';
  context.stroke();
////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ

};

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

Wednesday, September 12, 2012

Heart

My heart. Made with numbers and letters and whatnot.

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

////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ

 context.beginPath();
 context.rect(0, 0, 800, 600);
  context.stroke();
 var grd = context.createLinearGradient(0, 250, 800, 250);
  grd.addColorStop(0, 'rgb(200, 190, 255)');
  grd.addColorStop(1, 'rgb(100, 100, 255)');
  context.fillStyle = grd;
  context.fill();
  context.stroke();


 context.beginPath();
  context.moveTo(400,200);
  context.bezierCurveTo(300, 0, 160, 220, 275, 315);
    context.quadraticCurveTo(350, 375, 400, 500);
    context.quadraticCurveTo(450, 375, 525, 315);
  context.bezierCurveTo(650, 200, 520, 0, 400, 200);
   context.lineCap = 'round';
   context.fillStyle = 'rgb(255, 0, 0)';
  context.fill();
    context.lineWidth = 19;
     context.strokeStyle = 'rgb(255, 160, 160)';
       context.stroke();

  //context.bezierCurveTo(300, 0, 160, 220, 400, 500);

  context.stroke();







////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ

};

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

Tuesday, August 28, 2012

First Post

My name is Brian Caples, and I'm an 18 year old freshman at the University of Tampa. I'm from Bay Shore, New York, which is a somewhat large town on Long Island where everyone knows each other and is known for being very racially, religiously, and economically diverse. I love the town to death, but had to take a break from the freezing cold winters so I came down here. I'm currently majoring in New Media production, however that may or may not change as time passes. I hope to expand upon my basic skills of computer programs like photoshop and get a better understanding of technology.