What is Web 2.0?



Click on the link to learn more about Web 2.0 tools Web 2.0
Welcome to the New Web, most often called Web 2.0. It is all about the free new tools such as blogs, wikis, photo and video sharing, and social networking that people are talking about and that many are using already. Our students are growing up and changing the way they learn.
Our students are text messaging, blogging, social networking with MySpace and other Web 2.0 tools. The digital Native enters our classrooms each day powered up. As teachers we do not want them to be powering down. The latest brain research shows that brains of digital natives are developing and responding differently than the brains of digital immigrants and even some of us digital dinosaurs! This research strongly suggests that we rethink the way we engage, empower and educate our students for life in a digital world.
All information in this posting came directly from: http://dcpsintech.edublogs.org/

Photosharing with Flickr

What is Flickr? (http://www.flickr.com/)

Flickr is almost certainly the best online photo management and sharing application in the world. Let us show you why! Flickr is a way to get your photos and videos to the people who matter to you. And since basic accounts are free, there's no reason not to explore further...


Upload
Upload from your desktop, send by email, or use your cameraphone.

Edit
Get rid of red eye, crop a photo, or get creative with fonts and effects!


Organize
Use collections, sets, and tags to organize your photos and videos.


Share
Use groups and privacy controls to share your photos and videos.

Maps
Share where your photos and videos were taken, and see photos and videos taken near you.

Make Stuff
Greeting cards, photo books, framed prints, Target pick up, DVDs, etc.

Keep in Touch
Get updates from family and friends.

How to Upload Photos
There are 5 simple ways to upload your photos and videos to Flickr
*via the Flickr Uploadr (available for both PC and Mac)
*via iPhoto, Aperture, or Windows XP plugins
*via our upload web page
*via email
* via various free third-party desktop programs

And if you're not near a computer? Snap a photo or video on your mobile phone, email it to Flickr, and have it appear on the site in seconds.

How to Edit Photos
Editing your photos is easy with our partner, Picnik. Get rid of red eye, crop a photo or get creative with loads of different effects! Start by clicking the "Edit Photo" button in the toolbar above your photo.

If this is the first time you've clicked on the "Edit Photos" button, you will be asked to pass through the step of authorizing Picnik to load up your photos. (You'll only have to do this once.) After you've authorized Picnik, edit your photo to your heart's content! Then just click "Save" and you're all done.

Organize
Sets are a grouping of photos and videos that you can organize around a certain theme, such as Our Hawaii Trip. You can use them to highlight your favorite photos and videos, or make an album that is only pictures of your dog, or of photos and videos you've taken with a particular camera.

Collections are a grouping of Sets (or other Collections) so you can organize around grander themes, such as People, Travels, or by year (2007, 2006, etc).

The Organizr is where both Collections and Sets are created. It also allows you to perform common tasks on large batches of photos and videos, such as tagging, changing permissions, or editing timestamps. It’s really rather handy.

Share
With millions of users, and hundreds of millions of photos and videos, Flickr is an amazing photographic community, with sharing at its heart. Groups are a way for people to come together around a common interest, be it a love of small dogs, a passion for food, a recent wedding, or an interest in exploring photographic techniques. And if you can’t find a group which interests you, it’s super-easy to start your own. Groups can either be public, public (invite only), or completely private. Every group has a pool for sharing photos and videos and a discussion board for talking.


Privacy is a common area for concern on the web, but on Flickr it’s easy to control who you share your images with. For each of your photos and videos on Flickr you can set:
*privacy level, which determines who can see your image
*usage license, so your copyrights are protected
*content type, flag your photos and videos as either photos and videos, artwork/illustrations, or screenshots
*safety level, so other members only see images within their specified comfort zones

All information in this posting came directly from: http://www.flickr.com/tour/

How to create a 3-column template

First of all, set your template to Minima (not the stretch template, but any color will do!), then follow these instructions:

Go to Template>Edit HTML, leaving the "Expand widget templates" box unchecked. Now, find this section in the HTML code:

#sidebar-wrapper { width: 220px; float: right; word-wrap: break-word; /* fix for long text breaking sidebar float in IE */ overflow: hidden; /* fix for long non-text content breaking IE sidebar float */ }

Copy this entire section, and paste it directly below. We're going to change the elements I've italicized to the following:

#left-sidebar-wrapper (this makes the css for this section unique) float: left (this will make the new sidebar float to the left of the main column)

This will provide the styling for the new sidebar element which we will create next. Now, you need to find this section further down the page.

Let me explain the elements of this code to help you understand what we've just done: This section tells the browser that the left-sidebar element exists here, and to look in the css for the appropriate styling for this element. This tells the browser the class of the sidebar element and all other elements (widgets) which may be included in this section. The ID of this element must be "left-sidebar" in order to make it unique, otherwie this would cause problems when viewing. It is preferred so that it will feature in the layout, even if no widgets are placed within it. If you preview your template, you will notice that the right sidebar will be beneath the main section at the moment. This is because the outer-wrapper is still only wide enough to accomodate one sidebar. So now we need to expand the oputer wrapper to accomodate this new sidebar. Find this section in the HTML code:

/* Outer-Wrapper ----------------------------------------------- */ #outer-wrapper { width: 660px; margin:0 auto; padding:10px; text-align:left; font: $bodyfont; }

We need to increase the width of the wrapper by the width of the left-sidebar-wrapper, in this case 220px. So, change the value italicized to 880px. You may also want to change the width of the header-wrapper to 880px so that it spans the new width of your blog:

#header-wrapper { width:880px; margin:0 auto 10px; border:1px solid $bordercolor; }

At this point, you should save your template. At present, your new sidebar will not be seen as there are no widgets contained within it, though it will still be present in the markup of the page. Once you have saved your template, go to Template>Page elements in your Blogger dashboard.

We need to create this space in the template's HTML. To do this, we will add a margin to the left hand side of the main posts section. Find the following code in your template's HTML and add the code italicized:

#main-wrapper { width: 410px; float: left; margin-left: 20px; word-wrap: break-word; /* fix for long text breaking sidebar float in IE */ overflow: hidden; /* fix for long non-text content breaking IE sidebar float */ }

This defines a margin space of 20px between the left-sidebar and the main column. You should also ensure you adjust thw width of the outer-wrapper from 880px to 900px to ensure the width of your blog is enough to accomodate this margin too. Either that, or you could reduce the width of your main column/a sidebar by 20px to serve the same purpose.

Finally, save your template and enjoy your new sidebar!

The same principles described here can help you create a three column template from any Blogger template, though you may find that you'll need to adjust the width, margins and padding for your new sidebar in order for it to look the way you would like.

Also, you can configure your new sidebar to float to the right, and have two sidebars on the right of the main column if you prefer. Simply set the CSS of your new sidebar to float: right; instead.

The information in this posting came directly from: http://www.bloggerbuster.com/2007/07/create-three-column-blogger-template.html