Free, Online Photoshop alternatives

3 online-based free alternatives to Photoshop are available now.

Each has it's own special features, but they are all available anywhere with an internet connection.  So please try them out and tell me which ones you like best, and why.

1.  Aviary - "Online Image Editing Suite" of design applications, including photo and vector apps.

    image

2.  Pixlr - Quick photo editing at your fingertips.   It has more of a Photoshop feel to it.

    image

3.  Picnik - Designed to work directly with Flickr, Facebook, and Myspace galleries, but also works fine directly from their site.

    image

Of course we should all know about Paint.net and GIMP as portable USB alternatives too.

Winter Holiday Wallpaper and a theme pack!

 

Here are some winter interface options for you.

First are a set of winter wallpapers compiled by Lifehacker.

These are just a couple examples:

500x_01438_digitalsnowflake_1024x768

500x_stratosphere-brother

I also have a link to a Winter Fun Theme for Windows 7.

This is a nice new Windows 7 theme for winter, with new sounds and high quality wallpapers.

Running vSphere Client on Windows7 x64

Install vSphere Client from the frontend default website of the ESX server as normal.

When you launch the client and try to login, you will receive an error like this:

If you have Windows 7, you will not be able to run VIC.

This issue is related to .NET version installed on Windows 7 (.NET 3.5 SP1)

Following steps will help you to run vSphere VIC on Windows 7:

  1. Obtain a copy of %SystemRoot%\Microsoft.NET\Framework\v2.0.50727\System.dll from a non Windows 7 machine that has .NET 3.5 SP1 installed.
  2. Create a folder in the Windows 7 machine where the vSphere client is installed and copy the file from step 1 into this folder. For example, create the folder under the vSphere client launcher installation directory (+%ProgramFiles%\VMware\Infrastructure\Virtual Infrastructure Client\Launcher\Lib+).
  3. In the vSphere client launcher directory, open the VpxClient.exe.config file in a text editor and add a <runtime> element and a <developmentMode> element as shown below. Save the file.
  4. <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    ...
    <runtime>
    <developmentMode developerInstallation="true"/>
    </runtime>
    </configuration> 

  5. Create a batch file (e.g. *VpxClient.cmd*) in a suitable location. In this file add a command to set the DEVPATH environment variable to the folder where you copied the System.dll assembly in step 2 and a second command to launch the vSphere client. Save the file. For example,
  6. SET DEVPATH=%ProgramFiles%\VMware\Infrastructure\Virtual Infrastructure Client\Launcher\Lib 
    "%ProgramFiles%\VMware\Infrastructure\Virtual Infrastructure Client\Launcher\VpxClient.exe" 

  7. (Optional) Replace the shortcut on the start menu to point to the batch file created in the previous step. Change the shortcut properties to run minimized so that the command window is not shown.

the VpxClient.cmd (or the shortcut) to launch the vSphere client in Windows 7.

Note that this workaround bypasses the normal .NET Framework loading mechanism so that assembly versions in the DEVPATH folder are no longer checked. Handle with care

Sending Email via Telnet


You do/type this Server responds with
Telnet to hostname on port 25
220 (then identifies itself - possibly with several
lines of 220 + text)
HELO your_domain_name or whatever
250 (followed by human readable message)
MAIL FROM:you@hostname.com (ie, your email address)
250 you@hostname.com is syntactically correct (or similar)
RCPT TO:them@someplace_else.com (email address you want to send to)
250 them@someplace_else.com is syntactically correct
DATA
Tells you to send data then CRLF period CRLF at end
You type your message then CRLF period CRLF (ie, type a
period on a line by itself then hit ENTER)
250
QUIT
Signoff message