Tuesday, July 31, 2007

more examle of tinypic

Now I know why Mum said "Don't jump on the bed!" ... (oh and a new freebie of course)

Photo Sharing and Video Hosting at Photobucket

[IMG]http://i12.tinypic.com/6fqjlhw.gif[/IMG]

Example of Use of tinypic.com
Below Image is Hosted on TinyPic.com

tinypic.com

About TinyPic

TinyPic.com is a fast, simple and reliable video and image hosting site. There is no registration or log-in required, simply submit your picture or video. Best of all: it’s FREE. That makes it the perfect site for linking to myspace.com®, eBay®, message boards, blogs, journals and other websites.

Don’t be fooled by the name TinyPic™. The name does not mean your your picture or video will be TINY, it means that the direct link for your picture or video will be tiny (http://tinypic.com/1). Your URL is also guaranteed to be unique, so try it! TinyPic™ exists on a fully redundant, load-balanced web cluster that should guarantee maximum performance.

Terms of Service: TinyPic™ is not responsible, nor holds copyright on the content uploaded. All pictures maintain the copyright of the respective owners. TinyPic™ reserves the right to remove any picture at any time if it is found offensive, pornographic, violates copyright or trade laws, or is consuming large amounts of system resources. As a user of TinyPic™ you agree that TinyPic™ is not liable for your images or any lost business due to the unavailability or loss of the website. TinyPic™ reserves the right to modify the Terms of Service at any time and without prior notice to its users. Pictures can be publically viewed and we do not guarantee picture privacy.

TinyPic™ owned and operated by Photobucket.com, a free Image and Video Hosting company.

Contact me if you have have any questions or run across an offensive picture.

Friday, July 27, 2007

Image Utility

Mosaic Creator

Mosaic Creator

This enables you to create professional looking photo mosaics, using a source image of your choice,...
Shareware2.53 MBJul 14, 2007





Fraps

Fraps

This is a universal Windows application that can be used with all games using DirectX or OpenGL...
Shareware867 KBJul 12, 2007





Imagelys Picture Styles

Imagelys Picture Styles

This is a graphics editor, designed to create seamless backgrounds, wallpapers, textures and...
Freeware6.31 MBJul 05, 2007





Softener

Softener

This is a Photoshop plug-in lets you easily apply dreamy and glossy soft focus effect to your...
Shareware448 KBJul 03, 2007





ColorCache

ColorCache

This is a color picker and palette building tool that allows you to easily select the right colors...
Shareware4.24 MBJul 02, 2007





FunPhotor

FunPhotor

This is a fun software that allows you to create professional looking image blending effects.
Shareware5.92 MBJun 28, 2007





Sketch Master

Sketch Master

This is a Photoshop compatible plug-in to create realistic looking hand-drawings derived from...
Shareware1.32 MBJun 28, 2007





Perfectum plug-in

Perfectum plug-in

Perfectum plugin is a Photoshop compatible plug-in that enables you to quickly remove digital...
Shareware302 KBJun 28, 2007





FirmTools Duplicate Photo Finder

FirmTools Duplicate Photo Finder

This enables you to find duplicate image files on your computer.
SharewareN/A KBJun 13, 2007





DxO FilmPack

DxO FilmPack

This enables you to apply the look and feel of traditional film photos to your digital images.
Shareware69.22 MBJun 12, 2007





PhotoELF

PhotoELF

This program lets you print up to 64 different photos per page, or standard size with four to a...
Shareware8.83 MBJun 08, 2007





Instant Color Picker

Instant Color Picker

This enables you to collect colors from anywhere on your screen and store them in a palette from...
Shareware903 KBJun 08, 2007





RGBmachine

RGBmachine

Unique photo editor for fast manual processing of digital photos. Photographers may appreciate This...
Shareware1.27 MBJun 01, 2007





PSD Repair Tool

PSD Repair Tool

This is a tool for recovering damaged Photoshop (PSD and PDD) files, allowing you to restore images...
Shareware1.5 MBJun 01, 2007

Image Optimizer Software Related Titles

Image Optimizer Software Related Titles:
EasyImage Lite
This software quickly resizes pictures and images to make them more suitable for use on the Web.

Paint.NET
This program is image and photo manipulation program designed to be used on computers that run Windows XP or 2000.

PhotoCleaner
This program is an easy-to-use tool for one-click correction of common scanning or digital camera problems like color shift, lack of dynamic range, unwanted softness etc.

Bearded Frog Enlarger Pro
Bearded Frog Enlarger Pro is a software to create high quality enlargements of your digital images.

PixVillage
This program is a P2P program, that allows you to easily share photos with your friends.

IF Junior
This software is able to calculate images with a theoretically infinite depth of focus.

PhotoMagic
This program is a photo program suite, that enables you to improve, enhance, print, repair your images, and also add effects or create artistic versions of selected pictures.

Imagic Photo
This program is a revolutionary, strong new image enhancement utility that turns your pictures into stunning, professional, straight out of a glamour magazine look.

Web Resizer
This enables you to compress, resize and convert your images, add a watermark, change the DPI, and also make minor image adjustments (brightness, contrast, sharpening).

Anti Red Eye
This program is a Photoshop plug-in that can remove the red-eye effect from your images.

Beauty Pilot
Erase skin imperfections in portraits.

Mobile Photo Enhancer
This program is simple image correction tool, that is intended to correct low resolution camera phone pictures.

PictureScaler
This program is a batch image editor for optimizing digital photos.

eSizeIt
Resize your digital photos without losing quality with This.

Interactive JPEG Optimizer
Use this to compress, crop, tweak and resize complete batches of your existing or newly scanned JPEG images to achieve maximum quality at minimum file size.

TinyPic
This program is a simple but impactful tool to resize one or multiple images by simply dragging them onto the This interface.

Ultra GIF Optimizer
This software for optimizing GIFs can makes your Web pages load faster.

Shortcut PhotoZoom Professional
Render true-to-life image magnifications, without serrated edges, yet focused.

Advanced GIF Optimizer
This allows you to optimize GIF files on the fly, and includes batch conversion and command-line support.

Jpeg Fixer
This software lets you recover images damaged by low-quality JPEG compression.

Image Optimizer Software Related Category Page:

Interacting with TinyPic from C#

void uploadTinyPic(string imagetags, string filename){
foxtrot.xray.WebRobot wrobot = new foxtrot.xray.WebRobot();
foxtrot.xray.Form wform;
foxtrot.xray.Input wtags;
foxtrot.xray.Input wimg;
foxtrot.xray.Input wurl;
wrobot.Base = "http://tinypic.com/";
wrobot.LoadPage("/");
wform = wrobot.Forms[0];
wtags = wform.GetFieldByName("the_tag");
wimg = wform.GetFieldByName("the_file");
wtags.InputValue = imagetags;
wimg.InputValue = filename;
wrobot.SubmitForm(wform);
wform = wrobot.Forms[0];
wtags = wform.GetFieldByName("mytag");
wimg = wform.GetFieldByName("myimg");
wurl = wform.GetFieldByName("myurl");
System.Windows.Forms.MessageBox.Show_
("Image uploaded successfully!\r\n" +
"HTML link: " + (string)wtags.InputValue + "\r\n" +
"[IMG] tag: " + (string)wimg.InputValue + "\r\n" +
"Image URL: " + (string)wurl.InputValue);
}

tinypic download

You know the problem: The new digicam takes great photos, but they are too big to send them via mail. Or your grandma has a new camera, but the last 5 Pictures took you a half hour to download. Tinypic can solve the problem and shrink digital images to 1/20 of the original size without too great a quality loss. This means you can send up to 150 images with one mail! The usage is that simple that even your grandma will be pleased. Just drag the pictures onto the program - ready.

The pictures will be resized and saved again. You can select different ways to preserve your original pictures:

  1. Save to the same folder with extended name (i.e. K1024_oldname.JPG)
  2. Save to a subfolder (i.e. K1024\)
  3. Override the original files (!) Be careful: the original files will be lost.
  4. Select any folder as output path.
The resulting files have a size that is suitable for mailing। TinyPic automatically selects the best compromise between quality and size without asking the user too many questions. The files will be shrinking to 3-10% of the original size without a too grat a quality loss.
Download TinyPic 3.12 (free)

tiny pic bootloader

This is a bootloader for the Microchip PIC microcontrollers.

  • It is the smallest bootloader, taking less than 100 words of program space;
  • It is the only that supports all families of PIC devices: 16F, 18F, dsPIC (those devices that support self-programming)
Download Tiny PIC Bootloader

Features of the firmware

  • Size of only 100 words; (all versions, for 16F,18F,dsPIC occupy less than 100 words);
  • Can write flash, eeprom and configuration bytes(18F);
  • On reset, waits 1 second (adjustable) for a message from the PC, if not received, launch user application;
  • The .asm file can be easily modified and adapted for any frequency (or baudrate);

Features of the PC software

  • Can upload programs into flash (in current version eeprom and cfg bytes can be modified only manually, depending on the device type);
  • Works with PIC16F,PIC18F and dsPIC types; automatically detects HEX content and PIC model;
  • Remembers last settings;
  • In case of errors, performs retransmissions or tries to resynchronize with pic;
  • The communication settings are editable so you can write any COM number or desired baud;
  • If a filename is specified as a command line parameter, it will automatically try to write it;

Wednesday, July 25, 2007

imgspot.com


Stats: over 4 million
images uploaded so far. Thousands of images are uploaded everyday.









Max file size of 650kb. JPG, JPEG, GIF and PNG supported.



blowurmind.org

Links From blowurmind.org

Based on searches by other users, we believe that you may be looking for the following । . .



Thursday, July 19, 2007


tiny pic.com, tinypics.com, tinypic, upload pictures, imageshack.com
Ski school 101Daily Mining Gazette - Dec 28 2004

Resorts welcome a ski-school surge as boomers fade from the slopesSeattle Times - Feb 10 2005

Jaycee ski school registration at Waldron'sThe News-Review - Feb 3 2006

Reservoir illegally used by Orange County water-ski schoolContra Costa Times - May 28 2006

Julie Fiorini, owner of ski school, dies at age 85Seattle Times - Oct 18 2006

Deseret Morning News/KSL Radio Ski School