Skip to main content

Posts

Enum Design Solutions - A startup design firm? Maybe...

Scribus + Inkscape = Cohesive

I did this calendar/flyer for Intercultural Affairs at my University. Here is a sample screenshot. Not the best resolution but I liked the way it turned out using opensource programs Scribus+Inkscape.

Graphical Work for WebWork

I finally finished the achievement icons that one of my professor requested for the web work system. Here is a screenshot. I'll post the SVG file on my next post.

Achievements: Here be Achievements

Here are the first set of finished Icons

Sculptris: Women's Face

Having this be the first time I tried out Sculptris. I decided to model a woman's face. This is my WIP. Next TODO: Clean up model and then import to Blender for texturing and add hair.

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.