0

12 Sites To Create Cartoon Characters Of Yourself

Posted by admin on Aug 5, 2009 in Fun Stuff on the Net, Technology, Web 2.0

cartoon characters

If you are not comfortable using real photos to represent yourself in any online profiles and avatars, why not create a cartoon characters of yourself?
It’ll definitely be fun and unique to others when you are representing
yourself in a cartonized way in any online profiles and avatars,
anywhere from Gravatar to MyBlogLog, blog profiles, Facebook, MySpace, Friendster, etc.

Thanks to many free web services, you don’t have to pay an artist
for your cartoon illustrations. All you have to do is upload your
photo, or perform some mix and match. Here’s 11 websites that allows you to create a cartoon character of yourself.

You might also be interested in these articles:

  1. Portrait Illustration Maker

    Portrait Illustration Maker is a service which provides character
    icons completely free of charge! They are available for your blog site
    or SNS. If you’d like to save the completed avatar, right-click on the
    icon. And then select “Save Picture As… ” from the menu.

  2. WeeWorld

    Create an cartoon character to represent yourself in WeeWord games (WeeMee) or just export it for anywhere else.

  3. Meez

    Social entertainment website that allows users to create their own
    animated avatars, or “3D I.D.” graphics, for the Web, to play casual
    games with their avatars, and to use them in customizable Rooms on
    social networks like Facebook.

  4. Simpsonize Me

    Turn yourself into a simpson character.

  5. Yahoo! Avatars

  6. BeFunky

  7. Buscar Messenger

  8. Cartoon Me

    Cartoonize yourself as simple as uploading your photo, Cartoon Me will do the rest.

  9. Joystiq Mii characters

    Think of it as creating Mii characters, but online so you can use it anywhere.

  10. MyPlay

    By far, one of the most sophisticated cartoon character creating
    free service. However this Taiwanese site is only for those who are
    able to interpret chinese words.

  11. South Park Studio

    For south park fans, now you can become one of them.

  12. Moonjee

    Virtual makeover and Make a face.

 
0

Cheat-Sheets.org (For some great reference guides)

Posted by admin on Jul 30, 2009 in Development (C# .NET), Technology

All cheat sheets, round-ups, quick reference cards, quick reference guides and quick reference sheets in one page. The only one you need.

Some awesome Cheat sheets for C#, .NET, VB and much more

 
0

XBMC MEDIA CENTER

Posted by admin on Jul 30, 2009 in Home Entertainment, Technology

xbmc

XBMC MEDIA CENTER

XBMC is an award winning media center application for Linux, Mac OS X, Windows
and XBox. The ultimate hub for all your media, XBMC is easy to
use, looks slick, and has a large helpful community. Try it now!


download
features

Media Management

XBMC supports viewing and playing a vast library of audio, video and
image formats. XBMC has a sophisticated library management system that
allows you to organize all your media to give you quick and immediate
access.


 

features

Fluid Interface

XBMC provides a user friendly interface that’s intuitive, very
flexible, and easy to use. The interface is completely customizable
through user-created or downloadable skins.


 

features

Plug-ins and Extensibility

XBMC has a built-in Python interpreter that allows users and developers
to write their own scripts and plugins that run inside XBMC using it’s
own widgets and controls. It also has a built-in web server that allows
it to be controlled remotely.


 

features

Visualisations

XBMC’s audio player supports many visualisations including ProjectM and
Goom. In addition, it allows easy development of visualisations using a
simple API.


 
features

Lots More

The above is just the tip of the iceberg. Try it out yourself to experience the ultimate media center experience on Linux, Mac OS X and Windows.

 
0

Dual Boot Windows Vista and Windows Server 2008

Posted by admin on Jul 30, 2009 in Microsoft, Windows

By Doug Holland (Intel) (216 posts)
on February 26, 2008 at 11:19 pm

After researching how to enable Aero on the Windows Server 2008 desktop (see previous blog post)
I proceeded to install Windows Server 2008 onto the third hard drive
within a desktop computer that currently has Windows Vista running on
the first two disks within a RAID configuration.

Windows Server 2008 installed without an issue however upon
rebooting, once the installation was complete, there was no boot menu.
Of course, Microsoft had removed the boot.ini file that users of
previous versions of Windows were so familiar with and replaced it with
the Windows Vista Boot Configuration Data (BCD) store. Windows Server
2008 also uses the same BCD store and the installation does not
enumerate your disks to add boot entries for other operating systems
found, which previous versions of the Windows setup would do
automatically.

Although there are several utilities with nice user interfaces
available to help you edit the BCD store, I decided that I would learn
how to use the bcdedit.exe command line utility that Microsoft provides
for this purpose.

Using bcdedit.exe /enum to enumerate through the current entries within the BCD store you’ll see something like the following:

Windows Boot Manager

--------------------

identifier         {bootmgr}

device             partition=C:

description        Windows Boot Manager

locale             en-US

inherit            {globalsettings}

default            {current}

displayorder       {current}

toolsdisplayorder  {memdiag}

timeout            30

Windows Boot Loader

-------------------

identifier         {current}

device             partition=C:

path               \Windows\system32\winload.exe

description        Microsoft Windows Server 2008

locale             en-US

inherit            {bootloadersettings}

osdevice           partition=C:

systemroot         \Windows

resumeobject       {6d3956ce-e199-11dc-8c11-c156da9e35f2}

nx                 OptOut

To enable the computer to also boot Windows Vista you again use bcdedit.exe with the following command which will copy the current Windows Boot Loader details for Windows Server 2008 to Windows Vista.

bcdedit.exe /copy {current} /d "Microsoft Windows Vista"

bcdedit.exe will respond with something like the following.

The entry was successfully copied to {8677dee0-e502-11dc-9f96-001e4cde5025}.

Using bcdedit.exe /enum to again enumerate through the current entries within the BCD store you’ll see the newly added entry:

Windows Boot Manager

--------------------

identifier         {bootmgr}

device             partition=C:

description        Windows Boot Manager

locale             en-US

inherit            {globalsettings}

default            {current}

displayorder       {current}

toolsdisplayorder  {memdiag}

timeout            30

Windows Boot Loader

-------------------

identifier         {current}

device             partition=C:

path               \Windows\system32\winload.exe

description        Microsoft Windows Server 2008

locale             en-US

inherit            {bootloadersettings}

osdevice           partition=C:

systemroot         \Windows

resumeobject       {6d3956ce-e199-11dc-8c11-c156da9e35f2}

nx                 OptOut

Windows Boot Loader

-------------------

identifier         {8677dee0-e502-11dc-9f96-001e4cde5025}.

device             partition=C:

path               \Windows\system32\winload.exe

description        Microsoft Windows Vista

locale             en-US

inherit            {bootloadersettings}

osdevice           partition=C:

systemroot         \Windows

resumeobject       {6d3956ce-e199-11dc-8c11-c156da9e35f2}

nx                 OptOut

Before you can use the newly created Windows boot loader configuration,
you’ll need to change the partition for Windows Vista using the
following two bcdedit.exe commands.

bcdedit.exe /set {8677dee0-e502-11dc-9f96-001e4cde5025} device partition=D:

bcdedit.exe /set {8677dee0-e502-11dc-9f96-001e4cde5025} osdevice partition=D:

If you now reboot the system you should now be able to boot into either Windows Server 2008 or Windows Vista.


Categories: Manageability, Software Engineering, Virtualization

<<< This information is from http://software.intel.com/en-us/blogs/2008/02/26/dual-boot-windows-vista-and-windows-server-2008/#comment-28743 >>>

 
0

Using 7-Zip as a Blazing Fast File Browser

Posted by admin on Jul 29, 2009 in Uncategorized

One of the most irritating things in Windows is the file browsing
experience… it’s slow, buggy, and never wants to stay in “Details”
mode. If you are already using the awesome 7-Zip utility, you have a
powerful alternative file manager at your disposal.

In case you’re wondering, 7-Zip is our file archiving utility of choice around here. It’s awesome.

Using 7-Zip File Manager

You can quickly find the 7-Zip File Manager under the start menu by just typing “7″ into the search box.

Open 7-Zip 

The default view is a simple details view, that doesn’t go out of
whack every time you browse into another folder. It just works. You can
even browse down into any archive (zip, rar, iso, etc) file as if it
was a folder.

7-Zip Default View

Using the View menu, you can enable a dual pane mode, so you can drag/drop files back and forth between the panes.

7-Zip Dual Pane 

For quickly accessing folders, you can setup Favorites that even
have hotkeys associated to them… makes finding that deeply nested
folder a breeze.

7-Zip Favorites

Inside the options panel are a couple of really useful options that
aren’t enabled by default: You can show the real file icons the same
way Explorer does, enable the regular explorer system menu, and set
full row selection.

7-Zip Settings

Ever browse to a folder, but then forget which one it was? Using the
Alt+F12 shortcut key (or through the View menu) you can bring up the
Folders History dialog, which saves everywhere that you browsed. Very
useful!

7-Zip History 

The context menu for files already has powerful capabilities embedded… we already have a hack to add the Copy To / Move To options to Explorer, but it’s something that should just be there in the first place.

image

You’ll notice in the screenshot that there’s also a very useful option to create a new folder with a hotkey… something you can only do in Explorer with a plugin.

Create a Shortcut to Open a Specific Folder in 7-Zip

You can also setup an icon to open up 7-Zip already set to a
specific folder. Just right-click anywhere and choose New \ Shortcut
from the menu.

New Shortcut 

Use the Browse button to navigate down to the following path (adjusting if you installed elsewhere).

“C:\Program Files\7-Zip\7zFM.exe”

Create Shortcut

Make sure to include the full path in quotes, and then pass in the
path that you want to open as a parameter (with a space between). In
the example above, the shortcut will open the C:\ folder.

Now you should have an icon that will open 7-Zip directly to the C: drive.

7-Zip Icon

It’s simple, easy, and useful… it’s a Stupid Geek Trick. Got any tricks of your own? Share them in the comments.

<<< THIS CONTENTS IS FROM http://www.howtogeek.com/howto/windows-vista/stupid-geek-tricks-using-7-zip-as-a-blazing-fast-file-browser/ >>>

Visit http://www.howtogeek.com for more AWESOME tips

Download 7-Zip from z-zip.org

 
0

Tweaking Windows Vista for a Better Desktop

Posted by admin on May 20, 2009 in Technology

Switcher (in my opinion; THE only option atmo)

One of the most useful tools for Windows actually puts the beautiful Aero presentation system to good use.
The Mac has long had a fantastic Window switcher called Exposé. It
tiles all of the windows on-screen and makes it easy to switch from one
Window to another with only a minimum of key strokes. The Vista
equivalent, called Flip 3D is certainly pretty, but effectively useless. This is where Switcher steps in. Switcher is a clone of Exposé. Unlike other clones,
it uses the Windows desktop manager API (the same one used by Flip 3D).
This means that the preview windows are pretty, windows update as the
content changes, video plays and all is generally right with the world.

Switcher makes good use of Windows Vista Aero.

Tags: , , , , ,

 
0

ICETAG now uses PayPal >>>

Posted by admin on Dec 18, 2008 in Uncategorized

The ICETAG website now supports PayPal

What does this mean to you?

read more>>>

, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

 
0

Icetag website is back!!!

Posted by admin on Dec 9, 2008 in Uncategorized

The long awaited return of the ICETAG website is here.

READ MORE>>>

Technorati Tags: , , , , , , , , , , , , , , ,

 
0

RObdOG Network goes Blogging

Posted by admin on Dec 6, 2008 in Announcements

The RObdOG network has gone Blog crazy in the hope of bringing some good content to the people.

We have started with clean slates on all our channels so that we can deliver the audience specific content you want.

Here is a list of the new Blog sites and their respective parent sites. Please feel free to leave your comments and recomendations.

Happy Blogging.

http://www.robdog.us
http://www.icetag.co.za
http://blog.icetag.co.za
http://www.icetag.robdog.us
http://blog.icetag.robdog.us
http://blog.racegear.robdog.us
http://lida.robdog.us
http://robertgibbon.robdog.us
http://cashback.robdog.us
http://robdog.wordpress.com
http://robertgibbon.wordpress.com
http://icetag.wordpress.com
http://racegear007.wordpress.com
http://lidaho.wordpress.com

In order to be heard, sometimes, we need to speak softly

Technorati Tags: , , , , , , , , , , , ,

 
1

Hello world!

Posted by admin on Nov 25, 2008 in Uncategorized

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Copyright © 2012 All rights reserved. Theme by Laptop Geek.