mysiteprofile.com

   Amperspective   
PROFILE
 
GALLERY
 
BLOGS
 
GUESTBOOK
 
FRIENDS
 
FAVORITES
 
HOME
 


| VIEWING 1 - 7 OUT OF 7 TOTAL


Desktop Teleporter Keeps Your Desktop Clean
DATE: 22 May 2008, 5:33 pm / MOOD: Other

Windows only: Donationware application Desktop Teleporter automatically moves files and folders from your desktop to user-defined folders to keep your desktop clean and neat. Desktop Teleporter is serious about keeping your desktop clean, moving any file that you don't add to the exclude list. If you want more advanced options and support beyond the desktop, check out Lifehacker's very own Belvedere. If all you want is a clean desktop and don't need more advanced options, Desktop Teleporter looks like a winner.

 

Check it out at --- LifeHacker.com


Undergoing MyBlogLog Verification

View Entry | Leave A Comment


Get Recent Documents in One Place with Smart Folders
DATE: 25 Apr 2008, 1:31 pm / MOOD: Other

Get Recent Documents in One Place with Smart Folders


Mac only: Get a dynamic list of recently accessed files using Smart Folders in OS X. MacWorld magazine explains how:

Create a smart folder in the Finder by selecting File -> New Smart Folder, or by pressing Command-Option-N. You'll see two lines of criteria in the folder. In the Kind criterion, select Any, or, if you want to limit it to documents, select Documents. Set Last Modified to Since Yesterday, or if you want to go back further, Within Last N Days, where N is the number of days you want to use.
Click the Other button in the location bar, then click the plus (+) button to add folders.
 
Article Source (LifeHacker.com) 


View Entry | Leave A Comment


Best Flash Based Gallerys
DATE: 25 Apr 2008, 1:27 pm / MOOD: Other

Flash-based Galleries: An Overview

Polaroid Gallery offers a quite unusual way of presenting a bunch of photos online. The script loads images and image titles dynamically from an external XML file. Then the script processes the data and creates an interactive flash gallery in which all images are presented as Polaroid-photos.

The images are kind of thrown on the the table randomly and create a beautiful mess — the idea resembles BumpTop, physics-driven 3D-desktop with draggable folders and files. You can move the polaroids around with the mouse, and you can double click a Polaroid picture to zoom in.

Polaroid Flash Gallery

To use the gallery you simply need to define your images and your galleries by modifying the XML-file accordingly. You can also define the legend to describe the content of the images. Besides, you can specify your Flickr ID and the gallery will automatically load the latest pictures from your Flickr RSS-feed. The loaded pictures are automatically scaled, centred and smoothed.

The script is free and open-source, and the .zip-package includes a .fla-file you can modify to improve the script. To ensure an optimal presentation your images should have a square format; otherwise the Polaroids don’t look particularly pretty.

The Flash XML Gallery offers a flexible solution for integration of multiple albums into one single gallery. The script can integrate popular photo sharing communities such as Flickr and Picasa. You can use a wide range of transition effects.

The Flash XML Gallery

The images can be read from RSS or added manually. To add the images you have to upload them to the specified directory and define them in the XML-file. The only usability issues of The Flash XML Gallery are the facts that you a) can’t navigate through the gallery by clicking on the images and b) you can’t get back from the fullscreen to the overview simply clicking on the image. In both cases you have to use the navigation slider below the displayed image. The slider informs the user whether the next image is already loaded.

The Flash XML Gallery

dfGallery is probably one of the most powerful Flash-based gallery solutions out there. It supports the instant integration of Flickr, Picasa , Fotki and Photobucket; of course, you can add your custom images as well or add an RSS-feed from which the images should be taken.

The gallery is easily customizable, meaning that you can e.g. define the time duration of the slideshow, hide menu system and scale the images from RSS feeds. dfGallery also enables you to switch between the single view mode, full screen mode and the print screen mode.

dfGallery

dfGallery

Apart from wide language support, the gallery makes use of a liquid layout and therefore fits to any size you specify. And it’s also possible to define the background mp3 music for your galleries. The full manual for dfGallery including examples and necessary code snippets for customization is available in the dfGallery Reference Documentation.

Flash Page Flip is a Picasa template based on the free version of the FlashPageFlip flash engine on Flashpageflip.com. It lacks the advanced functions of the commercial versions but still makes a very nice photo album on your website. You can see and hear the pages flip.

Flash Page Flip

The download offers two templates: one for a landscape oriented album, the other for a portrait oriented album. Sizes can be changed by editing the header.xml file in the template folder.

Picasa Flash Photo Stack Gallery is a simple Flash template that enables you to click through a stack of your favourite photographs. Unfortunately available only as plug-in for Picasa.

Flash Photo Stack Gallery

You can find more plugin for Picasa users in the overview Crear galerías de imágenes profesionales con Picasa (Spanish).

Carousel is another interesting approach for showcasing images. The script reads the data from a HTML- or XML-file and displays the images in a circle. Similar to iPhone, visitors can browse through the gallery sliding the mouse along the screen; alternatively also the keyboard can be used.

Flash Page Flip

You can define an automatic rotation of the images (max rotation set to 90°/sec counterclockwise). New modified versions are coming soon - as well as a detailed documentation on how the XML-files should be structured.

Article Souce (hxxp://www.smashingmagazine.com/2007/10/12/flash-based-galleries-for-your-images/) 




View Entry | Leave A Comment


Random Images with php
DATE: 25 Apr 2008, 1:24 pm / MOOD: Other

Every now and then you want to randomize images, usually headers of sorts. This is pretty simple, with just 9 lines of PHP code you can rotate randomly between two images.

The PHP Script

Put this where you want to rotate your headers:

PLAIN TEXT
PHP:
  1. <?php
  2.     $images = array(
  3.         0 => 'image1.gif',
  4.         1 => 'image2.gif',
  5.     );
  6.     $image = $images[ rand(0,(count($images)-1)) ];
  7.     $output = "<img src="/mysite/randomimages/".$image."" alt="" border="0" />";
  8.     print($output);
  9. ?>

This will rotate between image1.gif and image2.gif, which are located in /mysite/randomimages/ on your server.

Adding more images is easy, just continue to add lines, starting with the next digit and has a corresponding file name, in the $images = array(); segment. This is the same code with five images instead of two:

PLAIN TEXT
PHP:
  1. <?php
  2.     $images = array(
  3.         0 => 'image1.gif',
  4.         1 => 'image2.gif',
  5.         3 => 'hello.gif',
  6.         4 => 'monkeys.gif',
  7.         5 => 'ninjas.gif',
  8.     );
  9.     $image = $images[ rand(0,(count($images)-1)) ];
  10.     $output = "<img src="/mysite/randomimages/".$image."" alt="" border="0" />";
  11.     print($output);
  12. ?>

Easy, isn't it?

Now rotate those headers, photos, or whatnot!

 

 

Article source (http://www.devlounge.net/articles/random-images-with-php) 



View Entry | Leave A Comment


Useful Ajax Scripts
DATE: 25 Apr 2008, 1:21 pm / MOOD: Other

This post presents over 60 new useful Ajax scripts, libraries and solutions which you can use in your future projects. License agreements can change from time to time — please read them carefully before using the script in a commercial web-application.

You might want to consider checking out the following related posts:

  • 30 Scripts For Galleries, Slideshows and Lightboxes presents scripts of impressive slideshows, lightboxes and galleries you can use for effective presentations of your images,
  • 40+ Tooltips Scripts With AJAX, JavaScript & CSS with handy tooltips scripts for intuitive and well-designed visual clues,
  • Data Grids with AJAX, DHTML and JavaScript with free solutions for data grids, developed with AJAX, DHTML and/or JavaScript,
  • Powerful CSS-techniques For Effective Coding which features 50 new CSS-techniques, ideas and ready-to-use solutions for effective CSS-coding.

Please notice: the overview presented below is not just a yet-another-one-collection of Ajax-scripts. It’s a collection of really useful ones, the ones you can use in almost every project you’ll be working on.

Useful Ajax Scripts

Mocha UI
Mocha is a web applications user interface library built on the Mootools javascript framework. The Mocha GUI components are made with <canvas> tag graphics.

Ajax Script

An Accessible Slider
“Recently we designed and developed an interface that required a slider control, which allows users to choose one or a range of values on a continuum. Values on a slider can represent anything from hours on a clock to the volume on a music player to a complex, proprietary data set. In its simplest form, the slider is displayed as an axis of values with a handle to drag and select a value, or two handles for selecting a range.”

AJAX Screenshot

FancyUpload
Swf meets Ajax. An upload widget that allows queued multiple-file upload including progress bars.

Modalbox

 

Read all @ smashing magazine 



View Entry | Leave A Comment


HotKeyBind Sets Keyboard Shortcuts for Any Windows Task
DATE: 25 Apr 2008, 1:16 pm / MOOD: Other

Windows only: Free, open source application HotKeyBind creates keyboard shortcuts for common Windows actions, from launching applications and opening files to searching the web and shutting down your computer. HotKeyBind is even useful for Windows actions that already have shortcuts of their own or can be assigned shortcuts, because HotKeyBind provides a universal interface for creating and managing all your custom keyboard shortcuts and existing Windows shortcuts across your system. HotKeyBind is impressively robust on features, including text-replacement (though we still heartily recommend Texter for that), making it a must-have for the keyboard junkie. HotKeyBind is free, Windows only.

 

I pulled this off Lifehacker today.. I set it up, it seem like it works pretty well so I thought I'd share.

HotKeyBind 



View Entry | Leave A Comment


Todays The Day
DATE: 01 Jan 2007, 8:18 pm / MOOD: Other

I have finally made enough progress to submit mysiteprofile.com to the search engine "directories". Overall, I am happy with the design and I'm really looking foward to meeting our new members.

-Cheers-



View Entry | Leave A Comment




mysiteprofile.com