Creative Meat Blog
Freebies

Oneupweb : What the font? Some tools to get you by.

Posted by David in Design, Freebies, Tools on February 9, 2012 - 6:38 pm

14,281. That’s the number of fonts currently available on dafont.com. With sites like dafont and fontspace, everyone has access to thousands of free fonts. So many available fonts can create problems, especially for graphic designers. Here are a few free online tools that can help you identify and sort through the abundance of fonts out there.

Font Picker
Font Picker allows you to view a custom preview of all the fonts on your computer inside your browser window.

myFontbook
myFontbook
is another in-browser font viewer. It allows you to review and catalog all of your installed fonts. Features include tagging, favorites and a glyph viewer.

WhatTheFont
WhatTheFont
is a fun tool that can help you identify a font by using an image of the font or a url. If you can’t find the name of the font that way, you can post your image to the WhatTheFont Forum and get help from other font enthusiasts.

WhatFont (not to be confused with WhatTheFont)
This is my favorite tool to use when I need to know what font is being used on a webpage. The WhatFont tool gives you the font, size, line height and color and, if you feel its necessary, you can tweet it.

FontDropper 1000
Alright this one is just fun and I had to add it to this post. FontDropper 1000 is an easy way to test or design with web fonts from WebINK. You just drag the font from the palette to the text you want to replace in your browser screen.

GD Star Rating
loading...
Freebies

Oneupweb : So You Want to be A Graphic Designer?

Posted by admin in Design, Freebies, Opinions, Tools on January 24, 2012 - 4:42 pm

You want to be a Graphic Designer but no one will hire you because you don’t have any experience. Sound familiar? In general, for any fresh person trying to break into a career pathway, it can be incredibly difficult to get hired. No awesome employer wants to hire a person with no experience but you can’t get experience without someone taking a chance, right? WRONG!

What to do, what to do!?!?

Not to worry, friend, your life is not bleak and meaningless. Many employers won’t hire you without experience, so make your own! This is especially easy in the design world, seeing as how everyone and their mom seems to need something from you. That website you built for Timmy’s Aunt Nancy’s Kitten Mitten business? EXPERIENCE! That logo you drew for that awesome death metal band? GUESS WHAT?!?!?! It wasn’t only fun it was also experience!!!

To make it look and sound professional you need to specify whether is was contract or freelance. Did I hear someone whisper if there is a difference? Why yes, of course there is, silly goose! Contract is someone you do repeat business with on a non-regular basis. You have been contracted to do multiple items or have gone back for more. Freelance is that weirdo you picked up off of Craigslist that needed their hair created into vector art. You signed up for one project and probably won’t be doing more.

But, I don’t have any friends and I don’t want to venture on Craigslist as I am nervous about creepers, help me!

Not to worry there is another, completely viable option: Volunteer!

Not only does volunteering make you look super awesome on your resume, but it also gives you that ever coveted experience. You might also get a chance to make a difference in your community, even around the world! My favorite place to go for volunteering is Sparked. You don’t have to leave your couch and you get the opportunity to help the causes that you are passionate about. If you are a lucky duck you’ll even get the chance to work with some highly recognized causes and companies. Lastly, it’s super easy and walks you through every step of the way, plus you no longer have to feel like a bum for sitting on your couch not showering for weeks on end.

To recap: You need to create your own opportunities to get a kick-ass job. Volunteering is a great resource because it makes you feel good, you get some great experience, you are helping people and with Sparked, you don’t have to leave your cozy man cave.

GD Star Rating
loading...
Freebies

Oneupweb : Magento Module Development Part 1: Creating the module

Posted by Brian in Development, Freebies, Tutorials on November 11, 2011 - 4:44 pm

Magento is a great eCommerce platform. It is extremely flexible. So flexible in fact that it is hard to know everything that is available to you as a developer. It’s even harder to know because the Magento community seems to keep its craft a secret… documentation is getting better, but it is sparse. Finding examples can be a chore. The best way to start developing extensions for Magento is to hop in and get your feet a little mucky.

In this first article, I am going to talk about what it takes to even get Magento to recognize your custom module.

What files and where?

The most important thing to remember is that the initialization magic happens in the “app” folder of your Magento installation.

Step 1: Create your configuration xml file for the module

Location: app/etc/modules
Let’s go ahead and create our module xml.

<config>
    <modules>
        <Oneupweb_ProductColorBox>
            <active>true</active>
            <codePool>local</codePool>
        </Oneupweb_ProductColorBox>
    </modules>
</config>

Please note the capitalization. It does matter. For example: codePool vs. codepool.
What does this all mean?

Oneupweb_ProductColorBox
The name of our module. This also reflects the path to our module using this pattern:
/app/code/{codePool}/Oneupweb/ProductColorBox where {codePool} is the value supplied to the module xml, in this case local
active
Is this module active, true enough, it is
codePool
Where your module files will reside /app/code/{codePool}

Go ahead and save the file as Oneupweb_ProductColorBox.xml.

Login to the Magento admin and head over to the System tab and click on the Configuration item. From there go to the “Advanced” tab on the left, and click the “Advanced” tab that is inside of that one to verify our module installed correctly:

BOOM. Our module is installed and recognized by Magento. The first battle has been won, but the war is not over!

Step two setup your module directory

As mentioned the directory structure for your module files follows the convention (referencing the module xml file from above):
/app/code/{codePool}/Oneupweb/ProductColorBox *Notice the underscore from the name becomes the directory separator

So go ahead and create the following directories:
/app/code/local/Oneupweb/
/app/code/local/Oneupweb/ProductColorBox

Within this folder we will be adding the typical directories (thought we may not use them all):
/app/code/local/Oneupweb/ProductColorBox/Block/
/app/code/local/Oneupweb/ProductColorBox/etc/
/app/code/local/Oneupweb/ProductColorBox/Helper/
/app/code/local/Oneupweb/ProductColorBox/Model/
/app/code/local/Oneupweb/ProductColorBox/controllers/
If your module does any kind of installation setup like creating tables then you will also have:
/app/code/local/Oneupweb/ProductColorBox/sql/

The following is a brief explanation of what these folders are for:

Block
This is where the Blocks used in managing views for your module will be stored
etc
This is the directory to store configuration xml files like config.xml or system.xml
Helper
Where you store, well…. helpers. Files that will help you manage data, additional functionality…whatever. Loaded with Mage::getHelper()
Model
Where you store data models used in your module. Loaded with Mage::getModel() or Mage::getSingleton()
controllers
Controllers are what handle the requests for your module. They are essential the pages of your module
sql
Contains installation scripts for your modules that need to create tables

Conclusion

This is the first step to getting your module going in Magento. If you want to download the module skeleton created in this chapter, you can grab it here Stay tuned for more in this series as we build our very own Magento module!

GD Star Rating
loading...
Freebies

Oneupweb : Before and After—Halloween 2011

Posted by Robert in Design, Freebies on October 31, 2011 - 8:47 pm

Oneupweb celebrated Halloween with a costume party this past Friday. Over half of the employees dressed up for the event which included pizza, games and a costume contest; the winners of which received a gift certificate to a delicious local restaurant named Trattoria Stella (usually referred to as Stella’s).

To express my excitement for the return of the Arrested Development series (and new movie), I dressed as Tobias Funke, who as a reoccurring joke is painted as a member of the Blue Man Group.

Below is a group photo of us, followed by an identical photo with some alterations.

Can you find all seven changes? (click photo to enlarge)

Give up? Click here to see the alterations.

GD Star Rating
loading...
Freebies

Oneupweb : Fonts, Fonts & More Fonts

Posted by admin in Design, Freebies, Tools on August 18, 2011 - 8:41 pm

Fonts can make or break a design. You either have the perfect font that brings your design together and makes it look fantastic, or you have a font that makes your design look incomplete. Here are some resources that can help make your design (whether it’s for print or web) look perfect.

Dafont.com and UrbanFonts.com are awesome resources to locate thousands of free fonts. While some may be used for personal use only, there are still a ton that can be used commercially.

Google web fonts is made up of hundreds of free, open-source fonts optimized for the web.

MyFonts allows you to input any flat image, then it will inform you of what font was used in the image. If their generator can’t figure out what font it is, they will upload it to a forum where thousands of font gurus dwell, just waiting to solve all your problems.


Llama font is one of the most enjoyable things I’ve seen in a long time. It allows you to type whatever you’d like then spells it out in a font made entirely out of llamas in different positions. While it may not be practical it is definitely adorable.

Have a great online resource for fonts? Please share your typography digital hangouts in the comments section!

GD Star Rating
loading...