Skip to main content

Mr. Ashe: CD cover competition

Caden Painter is throwing a CD cover competition for his new Album Mr. Ashe and the the top five submissions will receive a free copy of Mr. Ashe and will have their artwork featured on the album cover art. For more information visit his site http://www.banmier.com.


Here is a w.i.p of the CD cover I am currently working on.



This work is licensed under the creative commons. All rights reserve to the original artist.

Comments

Popular posts from this blog

New Angry Birds(Maybe)

So I'm a huge fan of angry birds and while playing the game I thought hey I want to make some birds to break things. So here are some of the birds I created (with the exception of the first one). Let me know what you guys think. If you would like to study the drawing feel free to download the Inkscape SVG file. Right click then hit save link as: newbirds.svg All rights reserve to the original artists.

Inkscape Game Character #1

Heres a work of mine I did using Inkscape to reproduce the green pig from Angry Birds the video game by Rovio Mobile . If you would like to study the drawing feel free to download the Inkscape SVG file:. Right click then hit save link as:  pig.svg All rights reserve to the original artists.

Python 3.2 Bug: input() Module

After countless hours of programming of trial and error. I have found the solution to the input() bug. Option 1: Revert back to python 2.7 until this is fixed. Option 2:  It seems that \r is trailing the input so the fix is... #python version 3.2 string = input("-> Your input here: ") #The fix string.strip("/r") And that's is pretty much it.