Title Tag

Title Tag
Score level
Title tag 2.0/10

The Title tag is an important part of a Website. It is a short description of the page, and the most important words should go first. Every HTML (web page) should have a Title tag and all Title tags should be unique. Don't use the same Title tag for multiple documents. It should be inserted into the header of your web page and looks like this:

Professional Marketing Tips


Tips
1.It should always appear immediately after the opening tag.
2.It should be specific keywords and phrases.
3.Use only keywords and phrases that are in the body text on your page.
4.May use the same keyword twice to attain reasonable keyword density, but be sure that you don't put the same words right next to each other or more than twice
5.Consider using both singular and plural forms of the keywords.
6.It should be read like a phrase that makes some grammatical and logical sense, not collection of keywords.
7.Try to place your primary keywords at the starting of the tag.
8.Keep the words in title case ( eg: Professional Marketing Tips )
9.Make sure to avoid using search engine stop words or words like Home, Default, Internet or Index.
10.Avoid using superlatives in your title (e.g. the best, fastest, cheapest, leader )
11.Try to minimize the use of commas in this tag.
12.Strive for a keyword density of 25-35% for each keyword.
13.Always remember to close this tag (eg: )
14.All pages MUST have a unique and descriptive keyword phrase in the title.
(One page on your site might be seen as more relevant for a particular keyword when compared to another)
15.Try to keep title tags as unique as possible in each pages in your website.
16.Do not change the title tag regularly.
17.6 - 12 words ( less than 60 characters ) is a good length for a title tag.

Bad practice:
title Kerala,Rivers,Backwaters,Tourism,Hotels title
title Coir rugs coir doormat coir exporter coir products title

Good practice:
title Kerala - Land of Rivers and Backwaters title
title Natural Coir Doormats and Coir rugs Exporter title

Amazing technology
ReadMore>>

101 Tips On Search Engine Optimization

Increase your web site traffic
in less than a month!

Well-designed sites make the sales. Take some time to seriously evaluate your website and follow the steps in this guide, that will help you for achieving high ranking in all the important search engines to bring you more visitors. If you can implement the methods described in this document, you should have no problem getting a high ranking. All the tips are categorized according to its area.

Following are the main areas in a web page that search engines give more importance in their ranking algorithms:

Title tag, The main body text, Meta tags, Link popularity, Domain name, Heading tags, Proximity of keywords, Bold or italic texts, Folder or file names, Image alt tags, Title attribute and Keyword in the beginning of sentence.

Based on the importance, we can rank those areas as below:

Title                              2.0
Link popularity               2.0
The main body text        1.5
Domain name                1.0
Keyword prominence      1.0
Heading tags                 0.5
Proximity of keywords    0.5
Bold or italic                  0.4
Folder or filename          0.4
Meta description             0.3
Alt tag                          0.2
Title attribute                0.1
Meta keywords              0.1
             Total Score       10

Amazing  technology
ReadMore>>

Java Interview Questions & Answers

Java Interview Questions & Answers

1.What is a transient variable?

Ans : A transient variable is a variable that may not be serialized. .

2.Which containers use a border Layout as their default layout?


Ans : The window, Frame and Dialog classes use a border layout as their default layout..

3.Why do threads block on I/O ?

Ans : Threads block on i/o (that is enters the waiting state) so that other threads may execute while the i/o Operation is performed..

4. How are Observer and Observable used ?


Ans : Objects that subclass the Observable class maintain a list of observers. When an Observable object is updated it invokes the update() method of each of its observers to notify the observers that it has changed state. The Observer interface is implemented by objects that observe Observable objects..


5.What is synchronization and why is it important ?

Ans : With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchronization, it is possible for one thread to modify a shared object while another thread is in the process of using or updating that object’s value.
This often leads to significant errors..

6.Can a lock be acquired on a class ?

Ans : Yes, a lock can be acquired on a class. This lock is acquired on the class’s Class object…

7.What’s new with the stop(), suspend() and resume() methods in JDK 1.2?

Ans : The stop(), suspend() and resume() methods have been deprecated in JDK 1.2..

8.Is null a keyword?

Ans : The null value is not a keyword..

9.What is the preferred size of a component?

Ans : The preferred size of a component is the minimum component size that will allow the component to display normally.


10.What method is used to specify a container’s layout?

Ans : The setLayout() method is used to specify a container’s layout

11.Which containers use a FlowLayout as their default layout?

Ans : The Panel and Applet classes use the FlowLayout as their default layout..

12.What state does a thread enter when it terminates its processing?

Ans : When a thread terminates its processing, it enters the dead state..

13.What is the Collections API?

Ans : The Collections API is a set of classes and interfaces that support operations on collections of objects..

14.Which characters may be used as the second character of an identifier, but not as the first character of an identifier?

Ans :The digits 0 through 9 may not be used as the first character of an identifier but they may be used after the first character of an identifier..

15.What is the List interface?

Ans : The List interface provides support for ordered collections of objects..

16.How does Java handle integer overflows and underflows?

Ans :It uses those low order bytes of the result that can fit into the size of the type allowed by the operation..

17.What is the Vector class?

Ans : The Vector class provides the capability to implement a growable array of objects.

18.What modifiers may be used with an inner class that is a member of an outer class?

Ans : A (non-local) inner class may be declared as public, protected, private, static, final, or abstract..

19.What is an Iterator interface?

Ans : The Iterator interface is used to step through the elements of a Collection..

20.What is the difference between the >> and >>> operators?

Ans : The >> operator carries the sign bit when shifting right. The >>> zero-fills bits that have been shifted out..

21.Which method of the Component class is used to set the position and size of a component?

Ans : setBounds().

22.How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters?

Ans : Unicode requires 16 bits and ASCII require 7 bits. Although the ASCII character set uses only 7 bits, it is usually represented as 8 bits. UTF-8 represents characters using 8, 16, and 18 bit patterns. UTF-16 uses 16-bit and larger bit patterns..

23.What is the difference between yielding and sleeping?

Ans : When a task invokes its yield() method, it returns to the ready state. When a task invokes its sleep() method, it returns to the waiting state..

24.Which java.util classes and interfaces support event handling?

Ans : The EventObject class and the EventListener interface support event processing.

25.Is sizeof a keyword?

Ans : The sizeof operator is not a keyword..

26.What are wrapped classes?

Ans : Wrapped classes are classes that allow primitive types to be accessed as objects..

27.Does garbage collection guarantee that a program will not run out of memory?

Ans : Garbage collection does not guarantee that a program will not run out of memory. It is possible for programs to use up memory resources faster than they are garbage collected.It is also possible for programs to create objects that are not subject to garbage collection.

28.What restrictions are placed on the location of a package statement within a source code file?

Ans : A package statement must appear as the first line in a source code file (excluding blank lines and comments)..

29.Can an object’s finalize() method be invoked while it is reachable?

Ans : An object’s finalize() method cannot be invoked by the garbage collector while the object is still reachable. However, an object’s finalize() method may be invoked by other objects..

30.What is the immediate superclass of the Applet class?

Ans : Panel.

31.What is the difference between preemptive scheduling and time slicing?

Ans : Under preemptive scheduling, the highest priority task executes until it enters the waiting or dead states or a higher priority task comes into existence. Under time slicing, a task executes for a predefined slice of time and then reenters the pool of ready tasks. The scheduler then determines which task should execute next, based on priority and other factors..

32.Name three Component subclasses that support painting.

Ans : The Canvas, Frame, Panel, and Applet classes support painting

33.What value does readLine() return when it has reached the end of a file?

Ans : The readLine() method returns null when it has reached the end of a file..

34.What is the immediate superclass of the Dialog class?

Ans : Window.

35.What is clipping?

Ans : Clipping is the process of confining paint operations to a limited area or shape..

36.What is a native method?

Ans : A native method is a method that is implemented in a language other than Java..

37.Can a for statement loop indefinitely?

Ans :Yes, a for statement can loop indefinitely. For example, consider the following: for(;;) ;.

38.What are order of precedence and associativity, and how are they used?

Ans : Order of precedence determines the order in which operators are evaluated in expressions. Associativity determines whether an expression is evaluated left-to-right or right-to-left.

39.When a thread blocks on I/O, what state does it enter?

Ans : A thread enters the waiting state when it blocks on I/O..

40.To what value is a variable of the String type automatically initialized?

Ans : The default value of an String type is null..

41.What is the catch or declare rule for method declarations?

Ans : If a checked exception may be thrown within the body of a method, the method must either catch the exception or declare it in its throws clause..

42.What is the difference between a MenuItem and a CheckboxMenuItem?

Ans : The CheckboxMenuItem class extends the MenuItem class to support a menu item that may be checked or unchecked..

43.What is a task’s priority and how is it used in scheduling?

Ans : A task’s priority is an integer value that identifies the relative order in which it should be executed with respect to other tasks. The scheduler attempts to schedule higher priority tasks before lower priority tasks..

44.What class is the top of the AWT event hierarchy?

Ans :The java.awt.AWTEvent class is the highest-level class in the AWT event-class hierarchy..

45.When a thread is created and started, what is its initial state?

Ans : A thread is in the ready state after it has been created and started..

46.Can an anonymous class be declared as implementing an interface and extending a class?

Ans :An anonymous class may implement an interface or extend a superclass, but may not be declared to do both..

47.What is the range of the short type?

Ans : The range of the short type is -(2^15) to 2^15 - 1..

48.What is the range of the char type?

Ans :The range of the char type is 0 to 2^16 - 1..

49.In which package are most of the AWT events that support the event-delegation model defined?

Ans : Most of the AWT-related events of the event-delegation model are defined in the java.awt.event package. The AWTEvent class is defined in the java.awt package..

50.What is the immediate superclass of Menu?

Ans : MenuItem.

51. What is Synchornize?

Ans: Synchronize is a technique by which a particular block is made accessible only by a single instance at any time. (OR) When two or more objects try to access a resource, the method of letting in one object to access a resource is called sync

Amazing technology
ReadMore>>

10 most useful mozilla firefox addons

10 most useful mozilla firefox addons
Mozilla Firefox has evolved as a great web browser over the period of time because of its security, simplicity, memory uses and above of all the ability of Mozilla Firefox to let the users use various addons developed by various developers around the world.This makes the Firefox a very safe and secure place.Some of Firefox addons have been very popular and always makes it to most downloaded list of Firefox addons.This time jaystech is publishing a list of most useful Firefox addons.Some of them you might find in my previous list of 15 most downloaded Firefox addons also.

1. Cybersearch - This is customizable Google searches in your firefox awesome Bar? Yes, It is very nice ! It also supports keywords so you can enter things like "firefox addons" and limit your search to a specific web site (like Jaystech, for example). Enter a comma separated list of URLs to search a group of sites.


2. LastPass - I used to use KeePass, but I just like LastPass better. It did a great job of importing (and then removing) my Firefox stored passwords, and its secure password creation tool makes using different passwords on new sites a snap. The web interface is a great way to manage my logins and groups.


3. FEBE - As with anything else on your computer, it's never a bad idea to back up your Firefox install. FEBE will back up everything - extensions, themes, bookmarks - or just what you choose, and you can set up an automated schedule. It's also got integrated Box.net support, which is actually a fairly nice way to roll-you-rown manual Firefox syncing.


4. AdBlock Plus:- I don't really use AdBlock because I hate advertisements, but because I don't like waiting for web pages to load. Flash ads and multiple banners really gum up the works, so I depend on AdBlock to keep things running smoothly. It's also a decent way to cut back on your bandwidth usage.


5. DownThemAll - When a friend first showed me DTA a few years ago, I couldn't believe I was still just using FF2's built-in manager. DTA rocks, and ofcourse it is in my list of Top 10 free download managers . It's simply one of the best download managers out there.

6. OpenItOnline - I don't do enough work with Office-type documents anymore to warrant installing a suite on my laptop. OpenItOnline lets me send DOC, XLS, and all the other supported file types to ZohoViewer for perusal instead of downloading them. It supports all Zoho and Google Docs apps to open files.


7. Deng Google Bookmarks - I'm not sold on Weave yet, so for now I let Google store my bookmarks. I switched to the Deng addon after using GMarks for the longest time - because I got tired of the giant "bookmark" button on my toolbar. Deng displays only a small star icon, and its management interface is superior and you must know how to stop appearing bookmarks in firefox address bar.


8. Screengrab! - To quickly capture an entire web page, Screengrab is a great tool. It can save or copy an entire page, the visible portion, or a rectangular selection. If I don't actually need to print a page, Screengrab is an easy, environmentally friendly way for me to keep a copy of it.

9. Web Of Trust - Web Of Trust is a great way to keep yourself out of malware trouble. I think I'm a pretty responsible surfer, but I don't know the reputation of every site on the Internet. Web Of Trust gives you a heads up about the trustworthiness of a link (based on community input) before you visit it.

10. Shareaholic - Anyone that enjoys sharing links would do well to install this one: it supports a ton of services, including Digg, Delicious, Twitter, Pownce, Reddit, Facebook, MySpace, and Google. It's also a quick way to see how many Diggs or Delicious bookmarks a page has received. Bzzster support gives quick access to sharing items via email.

Amazing technology
ReadMore>>

Camtasia Studio 7 User Guide

1. How to record computer screen using best Screen recorder Camtasia Studio?


Watch the tutorial on youtube: http://www.youtube.com/watch?v=kKLWBT9m4G8

Capturing your computer screen is easy and it can be done in two clicks. F9 to start and F10 Finish. That’s all.

First open Camtasia, select ‘Record the screen’ option then you can select ‘Full screen’ or
‘Custom’ part of the screen. Click on Audio to turn on audio recording. To start screen
record, press "Rec" red button or click ‘Record’ on ‘Capture’ tab or press short cut key
F9.

You can enable highlight cursor and clicks in "effects" tab. I explain this process in coming steps. So just now know how to start, stop recording and save the file.

After finish the recording, use F10. Then save the file with a name. It will be saved as Camtasia project format file. You can use this file to edit and produce video on Camtasia. I will show the edit and produce processes in coming steps.
Remember there are pre-settings needed before you capture the screen. You can do all settings, after captured the screen and before produce the video. For example, you no need to worry about video format, adding watermark, record as HD etc before you record screen. Just capture the screen and then you can produce the video in your preferred format, as HD, with watermark etc.

Amazing technology
ReadMore>>

2. How to import and produce video in Camtasia studio 7.0?

2. How to import and produce video in Camtasia studio 7.0?


Watch the tutorial on youtube: http://www.youtube.com/watch?v=v5IFXxBpags

When you finished record the screen on Camtasia, it asks to give a file name to save the screencast. It saves the screencast as Camtasia project format file. It doesn’t save the file in normal formats like wmv, mp4, mov etc. We have to produce this Camtasia project format file into normal video formats so that we can use it anywhere in online. Camtasia has “Produce video as” option to do this. When you use this option, you can

1. Select the preferred dimension of the output video
2. Select the preferred video format of the output video
3. Add the watermark on video at any place & at any size.

Open Camtasia software. Click on Import media. Once you imported the video, drag and drop the video in timeline.

Then click on produce video and select the dimension

( I prefer to select “custom production settings”, so that I can select my preferred HD (High definition) dimension in next steps). Then go to next.

Select the video format to be produced; I always select “wmv”. Then click next.
Then give dimension. I am giving 1280*720 size for HD. Then go to “next”.
Here you have to select Watermark. I am selecting my blog logo as water mark. You can put the watermark image at any place on the video. There are 9 places to put the watermark image on video. You can adjust the watermark image size. Then go to next. Give the save file name and select the output path.
Then click Ok. Your video rendering process starts. Once the rendering process finished, your video will play on your default desktop media players.

 Amazing  technology
ReadMore>>

3. How to use basic options in Camtasia 7.0?

3. How to use basic options in Camtasia 7.0?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=6Tf9BhVVQsw

Watch this Camtasia basic options video tutorial. In this video, I show you how use cut, copy, split options. I explain how to enable the tracks also.

First Cut Section
Now I show you how to cut any section of the video. First select the particular video
section. Then Click on the cut selection option. You can undo the cut. Then you can redo
the cut also.

Copy Section
Select the part of video section to be copied. Then click on the copy button. Then you can go to place at timeline where you want to paste the copied section. Once you go to that place, click on the paste button. It will paste the cut section.

Next Split option
If you want to split the video, just click the timeline where you want to split the video and click on the split button. It will split your video in that place.

Next Zoom the timeline.
If you want to see the video or audio variations in deep, then select part of that timeline
section, and adjust the zoom bar front and back. By this you can view where the audio is
high and low. Remember this zoom option is not for zooming video. If you want to add
zoom in and out effects, then check this video on how to use Camtasia Zoom effects.

Enable the Track options:

Usually when you import the video and drop it in the timeline, video and audio tracks is
enabled. But you can also add other tracks like Zoom and Pan track, cursor track, Callout
track, PIP track, Marker track, Caption track, Audio 1 track, audio 2 track and audio 3

track. To do this, just click on the "Tracks' option and then tick on the tracks which you want to be displayed on timeline.

Amazing  technology
ReadMore>>

4. How to create HD Video on Camtasia?

4. How to create HD Video on Camtasia?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=b8IOq0Nly60

Usually people search like this in Google and Youtube, “How to Record HD video on
Camtasia?” From this search term, what I understood is, every one thinks that they have
to do some pre-settings in Camtasia before record the video so that it comes as HD video.
In truth, there are no pre-settings required. You can record the screen and save it
normally. And then before producing video, you can select the settings to make the HD
video on Camtasia.
Import the video and drop the video in timeline. It will ask you to select dimension. Here
don’t select any option. Just click on 'OK'. Even if you select something, the changes will
not be saved. So just click Ok. Then click produce video as, then select the dimension as
Youtube HD 1280* 720, then do the normal steps to produce as I said in my previous
step.

Second way, click on produce video as and the select custom production settings, then in next step, give the dimension as 1280 *720. and produce the video. Once the rendering process completed, your video will be a HD video.

Amazing  technology
ReadMore>>

5. How to use Audio section in Camtasia?

5. How to use Audio section in Camtasia?


Watch the tutorial on youtube: http://www.youtube.com/watch?v=XxdvEcL1mkg

I see many Camtasia users complaining about Audio quality. But what the truth is, they
don’t know the awesome features in Camtasia audio section. At least, I was. I were
talking loudly as much as (my nearby house can hear☺) while recording audio in early
days. I didn’t know about there was an option to increase the volume before produce the
video. But nowadays I talk slowly and then I increase the volume through Camtasia audio
section. I explain in this video about how to increase the volume in Camtasia and also I
explain all audio options.
Firs import video, and then you have to unlink audio 1 and audio 2. Click “More”
section. In “More” section, click on “Voice narration”. Use Audio setup wizard, to set
the desktop Mic with your Camtasia (if you haven't done or Camtasia doesn't detect it
automatically).

Then click on “Start recording”. Now you can speak in your Mic and after finish the recording, click “Stop recording”. Then save the audio file.

Then you can click on the audio section. Here you can enable noise removal (manual or
automatic), you can enable volume leveling (i tried this, but it makes more noise), you
can also enable voice optimization (male voice or female voice). Then below there are
"volume down", "volume up", "Fade in", "Fade out" and "Silence" options available.

To increase volume select the audio section in full or a part (where you want to increase
the volume), then click on “volume up” button. The same procedure for “Fade in” and
“Fade out” options. Select the audio section in timeline and click on Fade in or Fade out.
If you want to mute the particular place, just click on “Silence” after selected the audio
section in timeline

Amazing  technology
ReadMore>>

6. How to add highlight cursor & mouse click effects in Camtasia?

6. How to add highlight cursor & mouse click effects in Camtasia?


Watch the tutorial on youtube: http://www.youtube.com/watch?v=jfsO4QpTUao

Viewing cursor and mouse click effects is not new for people. Since long time people love and use these effects in their desktops. Then why your screencast alone should be without these effects? Camtasia has cool set of highlight cursor options and mouse click options. Watch this video to highlight cursor and add mouse click effects.

Open Camtasia, click on “Record screen” then click on “Effects” and then “Cursor” and select the “Highlight cursor and mouse clicks”. Then in “Effects” tab, go to “Options”, click on “Cursors”.

Here you can use actual cursor or custom cursor. You can change the shape of Cursor as
Circle, Rectangular etc, size of cursor highlight area, Color of the cursor from color
picker.

In the same page, you can also use “Highlight mouse clicks”. Select different shapes,
sizes and colors for mouse clicks. You can also use different shape, size and color
settings for your left and right mouse clicks. Once selected the cursor and mouse effects,
click on “Ok”.

Amazing  technology
ReadMore>>

7. How to add captions on Videos in Camtasia studio 7.0?

7. How to add captions on Videos in Camtasia studio 7.0?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=l5smcezgw_4
Open Camtasia and import video to timeline, go to “More” option and go to “Caption”. To insert captions, there are three steps.

First you have to paste the caption texts in the text box. Then you have to click start, then
hear your voice clearly and Camtasia shows three lines at a time, so when you finished
talking three lines, then click on next line when you exactly start to speech. You have to
listen your voice and click on the next starting text after every three lines you talked.

I know this method is hard to do. Listen to this video where I show you how to add captions in Camtasia.

Note: If you are just going to upload the video in youtube alone, then upload your caption text file as .txt format in youtube video caption section. It will automatically overlap the caption in your video.

Amazing  technology
ReadMore>>

8. How to Add PIP(Picture in Picture) in Camtasia?

8. How to Add PIP(Picture in Picture) in Camtasia?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=hHcE_pe8XvQ Usually people search these terms.
How to overlap videos?
How to overlay two videos?
Camtasia has this overlay feature in the name of “PIP”. Through this you can overlay two videos or image on video or video on image or image on video in screencast.

Open Camtasia and import video. Then click on “Track” and enable the “PIP” track and “PIP audio track”. After enable, you can add another video to ‘PIP track’. This video will be overlapped on your first video.

Adjust the size of the overlap video by dragging. See video to view how I drag the video to bottom right. See there! The first video is already in behind. If you want to move the overlap video to different place after a short time of video play, then split the timeline on that place and drag and drop the overlap video. Like that, where ever you want to move, just split the video timeline and drag and drop the overlap video to the place.

Once you have done, play the video, you can see the overlap as you want to see. Camtasia really rocks. Isn’t it?

Amazing  technology
ReadMore>>

9. How to cut individually video or audio without cutting another one?

9. How to cut individually video or audio without cutting another one?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=ObgqjbWK-gQ

This video shows how to cut video/audio without cutting audio/video.
You have to lock any one of the track so that you can cut another one. If you want to cut the audio alone without cutting video on that part, then just lock the video by clicking on 'lock' before the word ‘video 1’ in timeline. Then you can select the audio section which you want to cut, and click on "cut" button. Through the same procedure, you can lock any number of tracks and cut the selective parts on remaining tracks. Remember, Just you have to lock the tracks which you don’t want to cut.

Amazing  technology
ReadMore>>

10. How to use new feature of Camtasia 7.0?

New feature of Camtasia 7.0
10. How to use new feature of Camtasia 7.0?


Watch the tutorial on youtube: http://www.youtube.com/watch?v=mZLibjmYynA
This library contains different video, audio, image files. You can use them as title clips and End clips. These files have been put in totally 7 sections.

One section is for Audio. This audio section contains five music files. You can add them as background music to your videos.

Another Five sections contains video, audio and image files. You can use these video files as start title clips and end title clips. You can also use the background image files as start or end title clips.

Another one section contains sound clips for mouse clicks. You can select different mouse click sounds for Laptop and desktop.

I can't tell in words how useful this new feature. See it in this video.

Amazing  technology
ReadMore>>

11. How to record PowerPoint presentation in Camtasia?

11. How to record PowerPoint presentation in Camtasia?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=oTWU05_i7NA

Camtasia converts your PowerPoint presentation into video. If you have Camtasia, then your MS PowerPoint automatically shows Record or Launch and Recording option in toolbar or you can enable it through “Add in” option in PowerPoint.

To record or convert PowerPoint as video, first open the PowerPoint presentation, click
"Launch and Start recording". Your presentation will now be played and recorded as
screencast video. Once the presentation finished, it will ask you "stop recording" or
"continue recording". Now you can stop the recording and save it. Then you can produce
it as the video. Produce method is same as other screencasts produce method which I said
above.
If you want clear idea, watch this video in which I show how to convert the PowerPoint presentation as video".

Amazing  technology
ReadMore>>

12. How to use Zoom and Callout Options?

12. How to use Zoom and Callout Options?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=7uKm0kiduuc

I can see almost in every screencast videos I see on youtube, there is at least any one of the feature among zoom and callout is used. So every new Camtasia user wants to do that. So I thought it would make sense if I can create on video tutorial for zoom & callout options in Camtasia.

Open Camtasia - Import media - Play the video and stop the video where you want to add zoom effect and click on Zoom -n- Pan and use the scale bar to zoom in. And again play the video and stop the video where you want to zoom-out and then click zoom-n-pan and remove the zoom in. That’s all.

Callout

Click on Call out and select the shape of callout. There are many shapes like bubble, cloud, star etc. You can change the callout border color, background color, text color etc. You can use different transparency also. You can change the call out text size, font type, color etc as you do in word. You can extend the callout appearance time by dragging in timeline. You can also use Fade-in and Fade-out for callouts.

In Camtasia 7.0, there are 5 sketch motion callouts. They are wonderful and make your screencast beautiful. These callouts are red colored and attractive.

Amazing  technology
ReadMore>>

13. How to add title Clips and Transitions in Camtasia 7.0?

13. How to add title Clips and Transitions in Camtasia 7.0?


Watch the tutorial on youtube: http://www.youtube.com/watch?v=U8eWjgQL-Jg Tip to Screencast creators:
Never produce a video just as you recorded. Add some cool effects or Intros. Create a Title Clip and use it in all your screencasts. You can show your blog or website name in your blog. Here I show you how to add title clips (Intro) to your videos.

First import the video, click on "more" and click on “Title clip”. Here you can type text that you want to display in title clip (a clip which can be displayed before your main video starts). You can also upload image from your computer as background image in title clip. Once you customized your title clip, drag and drop it to timeline and play the video to see how it looks.

Transitions:

Click on the ‘Transitions’ icon. There are different transitions available. You can use these transitions between your title clip and main video or you can use these between splits or you can use these transitions between end title and main video.

Amazing  technology
ReadMore>>

14. How to draw on screen in Camtasia studio while record your screen?

14. How to draw on screen in Camtasia studio while record your screen?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=UZIl4t3dEno

While record your screen, you can draw on screen using screen draw tools in Camtasia. To draw on screen, Camtasia provides tools such as Pen, rectangle, arrow, line, ellipse etc. You can also change the screen draw tool colors and width. I show you how to draw on screen in this video.

How to use Marker section in Camtasia studio?

While you record the screen, if you want to do something at some places later (after
recording or when editing), then mark that point using Marker. So that you won’t forget
that while you editing. You can also use ‘Marker’ when editing, to mark in some points
of timeline.

Check the video how to use Marker section in Camtasia.
Procedure:

Click Record or F9, Go to Tools-Options- Select “Effect toolbars” - Ok. After that press
record-While record is going on-expand the Record screen tab from task bar- Select any
one of these tools Pen - Rectangle (highlight option) - ellipse. Use mouse to draw
further.

You can select the color and thickness of drawing. You can also use ‘Highlight option’ in screen draw section. You can change color and width of highlight.

Use Marker Section:

Select Marker from “Effect Toolbars” - Add marker - while recording click ‘marker’ on video to remind later you have to do something when you produce video.

Next video shows screen draw and marker section short cut keys.

Amazing  technology
ReadMore>>

15. How to use screen draw shortcut keys while screen recording in Camtasia?

15. How to use screen draw shortcut keys while screen recording in Camtasia?

Watch the tutorial on youtube: http://www.youtube.com/watch?v=kKLWBT9m4G8

It is little bit hard to use screen draw tools while capturing video. To make it easy, there are number of short cut keys available. You can use short cut keys to change the screen draw tools (Pen, Rectangular, Arrow etc) and colors of tools.

Usually to start screen draw tool, use Ctrl+Shift+D. It will enable the default screen draw tool. To turn off screen draw tool, again use Ctrl+Shift+D.
I show you how to use shortcut keys for Camtasia Screen draw in this video.

Shortcut Keys for Screen draw in Camtasia

• Start recording - shortcut keys- Press Ctrl+shift+D. By default pen will open. To
change color press starting letter of color, for example R key for Red and G for
Green.
• To use highlight rectangle, Press H. You can change color for highlight rectangle.
Press start letter of the color.

• To use Ellipse Press E and to change color, press first letter of color. To change
width, press the number 1 to 9. It will bold the screen draw.

• To use Pen, press E. To use line, press L.
• Press Ctrl+shift+D to stop screen draw.

Amazing  technology
ReadMore>>

Superlearning Systems

Superlearning Systems


One of the great failures of modern society is public education. In the United States, the public education system has been denied adequate funding for so long that teachers frequently resort to buying textbooks for their students with their own money. Many schools lack even fundamental instructional tools like desktop computers, and much about public education remains mired in bureaucracy and political power grabs.
The advancement of modern civilization will require a quantum leap in the approach of public
education. It’s not simply about giving more money to the schools, raising teachers’ salaries,
or buying textbooks for students; it’s about changing our entire approach to teaching our next
generation of human beings the knowledge and skills they need to succeed in tomorrow’s world.
Superlearning systems offer the ability to rapidly accelerate the learning process for children and adults alike. But what is a superlearning system? Today, it’s a largely fictional technology that’s perhaps best described in the sci-fi movie Brainstorm, released in 1983 and starring Christopher Walken. In Brainstorm, a brain monitoring device could record the thoughts and sensory experiences of one person, then replay them into the brain of another person. The promise of the device was perhaps best described by one character in the film who said, “How would you like to learn the entire fifth grade in ten minutes?”
It may have been science fiction in 1983, but today the exploration of superlearning is underway.
In the last two decades, there has been a tremendous amount of research conducted on multi-
sensory learning theory. Researchers have found that the human brain learns best through multi-
sensory association, not rote memorization. A child will learn best, for example, when she is
engaged in a learning activity that uses sight, sound, emotions, tactile feedback, spatial orientation,
and even smell and taste. Learning has also proven to be far more effective when subjects are in
a relaxed mental state.
Compare this to modern day schools and universities, where to this day, tenured professors mumble over a collection of notes to an auditorium full of students who learn little more than how to take notes and pass rote memorization tests. Sadly, many of today’s institutions of learning aren’t very good at their only mission.
Advances in superlearning will require the radical reformation of our learning institutions and yet will simultaneously usher in a new era of prosperity and quality of life. To believe this idea, you have to believe that it is the lack of education that’s largely responsible for the problems of society. And that’s the point I’ll explain next.

of education causes hardship If you take all the people with the most pronounced hardships in life -- the working poor, the criminals, the drug addicts, and so on -- you find they all have one thing in common: a lackluster education. Nearly all the people who fall between the cracks in society share a childhood education crisis: they didn’t get the same education that others received. Or they couldn’t learn in the same way that others learn.

Multiply that situation by twenty or thirty years and you get someone who falls between the cracks of modern society: a petty criminal, a homeless person, a drug addict, or, if you’re lucky, people working from one minimum wage paycheck to the next, just barely surviving, usually with the help of public assistance.

Simultaneously, lack of education also affects everyone I haven’t mentioned yet: the working
middle class and wealthy. If they never learned about the real history of the world, they’re likely
to repeat the same mistakes today. If they never learned about other countries, populations, and
cultures, they will undoubtedly emerge from public schools with an ethnocentric viewpoint and
demonstrate a disturbing intolerance for people of different ethnic backgrounds. If they didn’t
study the great authors, the great artists, or the great poets, they will act in soulless ways, or
without an open heart and mind. If they didn’t learn about the history of the universe, our planet,
the evolution of the species, and ancient man, they will never come to appreciate the sanctity of
their own lives, nor of others’ lives.

See, education does more than just keep people out of the gutter: it transforms an ordinary, closed-minded human being into a world citizen. Studying the great masters -- the philosophers, the healers, the poets, the political figures, the artists, the scientists, the revolutionaries -- is the pathway to being a great citizen of our world.

Education is everything to society. Without it, we are all just berry-hunting primates. Education is
what allows us to carry memories, lessons and advances from one generation to the next. And
it’s a short window: the blink of a human life. In the span of a single lifetime, we as a society must
transfer the entirety of our knowledge and wisdom to the next generation. Inevitably, each of us
will pass on.

Education is the keystone of civilization. And superlearning brings us the promise of accelerating our education processes so that we can, in a sense, multiply the “bandwidth” of information and wisdom being passed to our children.

What is learning? So what kind of superlearning systems might work for us? Answering that requires a closer look at what “learning” is in the first place. At a biological level, learning is simply the building of new associative pathways in the human nervous system. As we learn new things, we don’t increase our brain matter, we simply make new neural pathways in the brain cells that are already there. A “smart” person has more interconnected neural pathways than a “dull” person, although they may possess the same physical brain matter.

The human brain will create these new neural pathways in response to external stimuli -- the more diverse, the better. So a child who is given the definition of the word “weightless” in a verbal format gets that information in one channel: the audio channel. That creates a one-dimensional association in their brain.
But take the same child and show them a movie of a person floating in space while you’re saying the word “weightless,” and you now have a two-dimensional learning experience: the child both sees and hears the word.
Better yet, take the child to a trampoline and start bouncing up and down. Make it fun, because that invokes the emotional channel. Between bounces, when you’re in the air, happily shout, “Weightless!” Now the child gets the word in two more channels, and the understanding of that word is firmly implanted in their brain. They’ll probably never forget the word.
That’s a simplified example of how learning can be made more effective: use immersion and engage multiple channels of experience to introduce people to new concepts.
So getting back to the superlearning machine, how can we use this process of learning to create a superlearning experience? One answer is something I’ve already presented in this report: augmented reality!
Superlearning with augmented reality
Augmented reality can provide a multi-channel, high-immersion learning experience that teaches
new concepts to children or adults at many times the speed and efficiency of today’s standard
teaching approaches. Augmented reality systems can provide the imagery, sounds, user
feedback mechanisms (like using your hands to control virtual objects that appear to be floating
in front of you) and even the tactile sensations that accelerate learning. Properly programmed,
these wearable augmented reality systems could guide students through an unlimited series of
educational exercises that are experiential, multi-channel, self-paced, fun, and highly effective.

As one example, consider the walkthrough history lesson presented earlier in this report: with augmented reality systems, students could physically explore historical events, hold conversations with historical figures, and see, hear and feel history with their own senses. This represents a quantum leap over today’s public school lessons: “Read chapters two and three for tomorrow, there will be a quiz...” Good teachers are always needed
Of course, having good teachers involved in this superlearning process is absolutely essential. A good teacher, by this definition, is one who can properly assess the learning potential of each student, assign the appropriate augmented reality learning programs, keep the students challenged and motivated, and when necessary, enter each student’s own augmented reality to provide assistance with the learning process.

In my own early drafts of such a system, the teacher is networked into each student’s augmented
reality feed and can flip from one student’s reality to another like clicking on software screens in
the Windows operating system. Being fully networked with all the students, the teacher can serve
as an active mentor to either observe or assist the student, depending on the lesson context. The
teacher need not even be physically present: a virtual representation of the teacher will suffice, as
long as both the teacher and the student share the same rendering of the augmented reality.
Also important to superlearning is social collaboration among students. This, in fact, represents the
best first step into the world of superlearning until augmented reality technology comes along. By
engaging in group problem solving, group tests, and group discussions, students can learn from
other students’ associations. As learning theory research has shown, individuals in a group tend
to automatically integrate (“learn”) things originally known by only a few members of that group.
Put simply, if one student knows the solution to a problem, and that answer is shared with other
students in a team setting, the other students tend to quickly grasp the solution very quickly.
Superlearning, then, has two promising fronts so far: technology (augmented reality) and social
learning (group learning environments). Yet there’s another important factor to consider when it
comes to enhancing our society’s ability to do a better job of passing information and knowledge
from one generation to the next... and this is something we can tackle right now: nutrition.

Better learning through better nutrition Nutrition, it turns out, is a strong determining factor in the ability of any human being to make new neural pathways. Unfortunately, the nutritional habits followed by most people today -- and especially children -- present significant obstacles to learning. In fact, it’s accurate to say that the diet of most American children today is a diet that automatically results in a very low level of intelligence. Let’s look at this more closely.

The human brain is a delicate organ. It requires a precise mixture of water, blood sugar, temperature, electrolyte minerals, essential fatty acids and a whole host of other nutrients to function correctly. Alter even one of these just slightly, and brain function suffers dramatically. For example, a 30% drop in blood sugar -- the inevitable result of consuming a breakfast of refined white flour and sugar as found in practically every brand-name breakfast cereal -- causes brain “fuzziness”, moodiness, a drop in the ability to concentrate and even tendencies towards violent behavior, especially in young men.
The lack of sufficient hydration -- a condition affecting the vast majority of Americans -- also affects the brain. Since electrical impulses are impeded by even a slight dehydration of the brain, not getting enough water literally interferes with proper brain function.
Making matters worse, most Americans simply don’t eat enough of the critical nutrients needed to build and maintain the brain from infancy. One of the most common deficiencies is GLA (gamma linolenic acid), an essential fatty acid found in abundance in human breast milk, but entirely missing from cow’s milk. Baby cows don’t have quite the need for brain matter that human babies have. Fortunately, nature has made sure that human breast milk provides the nutrients needed to build large, healthy brains. Not surprisingly, clinical studies have shown that babies raised on cow’s milk score lower on intelligence tests than those raised on human breast milk. (But don’t expect the dairy industry to remind you of this little fact...)
Beyond the lack of essential nutrients found in the American diet, the brain function of children is especially susceptible to the influence of destructive dietary ingredients such as refined white flour, white sugar and high-fructose corn syrup (the primary sweetener in soft drinks). The regular consumption of these ingredients, researchers have now demonstrated, leads to alarming changes in the behavior of adolescents. Such behavior is typically described as “hyperactive” or having a “short attention span.” These children, as you may have now guessed, are typically diagnosed as having ADHD and are frequently dosed with narcotic drugs such as Ritalin. This treatment protocol is entirely unnecessary, since dietary changes alone bring nearly all children back into the realm of “normal” behavior. Studies in the UK with so-called hyperactive children have demonstrated this quite convincingly: change the child’s diet, and their behavior shifts in a matter of days. Read more about this at http://www.SugarFactor.org

So there’s more to superlearning than merely inventing some cool new technology: we have to start getting serious about preparing the bodies and brains of our children to be ready for learning
in the first place. As a society, we cannot have both a quality education system and an adolescent
population that acquires nearly 30% of its dietary calories from junk foods and soft drinks. A child
who regularly consumes soft drinks and junk foods is a child who is not biologically prepared to
learn.
We can address this problem in several ways, but some of the more obvious starting points are
to ban all junk food vending machines in public schools, outlaw all advertising of junk foods to
children (including television, magazines, and retail merchandising), and start educating parents
on the fundamentals of nutrition so that they can make informed choices about what to feed their
children.
Ultimately, in an advanced civilization, the production, distribution and marketing of ingredients like high-fructose corn syrup, refined white flour, refined white sugar, hydrogenated oils, aspartame, sodium nitrite and other metabolic disruptors would be outlawed altogether. These substances have no place in a society of intelligent, healthy human beings. (Read more at http://www. DangerousFoods.org)
In conclusion, advances in superlearning hold tremendous promise for uplifting our civilization, but only if we are biologically prepared for learning (good nutrition). Until the technology arrives, group learning, total immersion learning, and fundamental improvements in health education can deliver great improvements over the current system of teaching and learning.
Where is Nanotechnology?
You probably noticed that nanotechnology isn’t on the top 10 list. This is no oversight. Nanotech
isn’t on the list because nanotechnology isn’t a specific technology in the first place. The term
“nanotechnology” has been so distorted by the popular press and researchers who add “nano” to
their projects in order to get funding that, today, it essentially means “anything that’s really tiny.”

Makers of artificial joints drill tiny holes into the surface of the joint structures and call it
nanotechnology. Why? The holes are nano. Makers of pants that resist stains claim to use
nanotechnology, too: pant fibers are coated with “nano whiskers” which are, essentially, tiny cloth
fibers. Sunscreen makers claim to be using nanotechnology, too. By producing sunscreen lotion
particles smaller than ever, the easier it can be dispersed on the skin and block UV rays.
These are just three of the many examples where manufacturers are jumping on the nanotech
bandwagon with items that fundamentally have nothing to do with the original definition of

nanotechnology. Based on the examples above, a household blender is a nanotech device, because it can blend foods into very tiny particles. This isn’t to say that these innovations aren’t useful. They are. But they’re not nanotech. Yet the hype surrounding nanotechnology has reached insane proportions.
When I was a kid, a friend and I created an imaginary pet dog named Super Mutt. Super Mutt was an all-purpose companion who could perform miracles. He could not only mow the lawn, he could actually take shape as an apparent clone of one of us and go to school for us. When our cars ran out of gasoline, we could just stuff Super Mutt into the gas tank and use him as fuel. Super Mutt could do anything we wanted.
Nanotechnology is the world’s Super Mutt. Anything you can dream up, somebody will tell you that nanotechnology can do it, regardless of its merit. Need to clean up all that nuclear power plant radiation? No problem: nanotech robots will reconfigure the materials so they don’t radiate. Is your body’s immune system failing? No problem: little tiny robots will be your immune system for you. Concerned about global warming? Don’t fret. Airborne nano-robots will process the atmosphere and make sure the greenhouse effect never kicks in.
The popular press stories about nanotechnology are filled with such promises. Nanotechnology
has become, essentially, the scientific community’s Moses. Need a miracle? Call Nanotech
Moses.
The upshot of all this is that expectations about nanotechnology are off the charts. People expect
it to work miracles. The same hype was once observed about ceramics or even superconductors,
but neither panned out. The dot-com Internet hype didn’t pan out, either. Nanotechnology will be
no different.
Beyond the issues already mentioned here, there are other problems with the concept of nanotech that I’d like to point out:
Everything is nano: The physical world around us is made up of molecular building blocks.
Nature is already nano. As human beings, the vast majority of our biological processes operate at
the nano level. Everything is already nano, and has been for a long time. Saying that things are
suddenly nano and using the term “nanotechnology” is akin to saying that things are made up of
matter and claiming to be working on pioneering “matter technology.” Well of course!
Big on hype and government funding: If you’re a researcher seeking a government grant, just
add the word “nano” to your project and your odds of receiving funding quadruple. Dropping the
word “nanotechnology” into your research, no matter how irrelevant the concept may really be, is
a great way to make your work sound important and advanced. I’ve seen many examples of this  nanotech hype in the scientific community. All of a sudden, there’s nano research everywhere! That isn’t because researchers changed their research focus, it’s largely because they attached the word “nanotechnology” to their pet projects. Today, there’s a lot of money being thrown at nano-sounding projects that aren’t nanotechnology at all.
Nanotech may fuel the next big stock market bubble: The discussions about nanotechnology in
the mainstream today seem eerily similar to those about the Internet in the mid 1990’s. Everybody’s
excited, everybody wants to get on board as investors, and yet nobody has demonstrated a
working application of hard-core nanotechnology (nano machines) that would actually generate
revenues and improve peoples’ lives. Nano is shaping up to be the catalyst for the next big stock
market boom and subsequent crash (like the dot-com crash). It is seriously overhyped.
Nanotechnology in medicine is a sham: One of the most frequently mentioned areas of
nanotechnology is in medicine, where researchers promise that an army of millions of nanotech
robots will travel through the bodies of medical patients and repair cells, destroy tumors, rebuild
damaged tissue, and perform other medical miracles. These researchers forget that the body
already has its own nanotechnology that does all this and more! It’s called the immune system
and the best way to improve the quality of life for most people, in terms of health, would be to
support their own natural healing abilities. Injecting a swarm of tiny robots into their bloodstream
-- which is precisely what is being proposed by medical nanotech pioneers -- is a fundamentally
flawed medical strategy that assumes scientists know how to heal people better than the body
itself. The true answers to improved health and quality of life are to be found in nutrition, physical
exercise, avoidance of disease-causing foods, and a wholesale shift away from pharmaceuticals
and Western medicine. Nanotechnology is not a promising solution for health and healing, but it
is a great way to rack up funding grants and, someday, charge patients hundreds of thousands
of dollars for complex-sounding treatments. But remember, the body already has its own
nanotechnology, and it’s far superior to anything the human mind can come up with.
Nanotechnology poses a potential danger to humans: One of the few areas in nanotechnology
actually completing research and producing results is the study of the toxicity of nanotech particles.
Experiments headed by Gunter Oberdurster, Ph.D., professor of Toxicology in Environmental
Medicine and director of the University of Rochester’s EPA Particulate Matter Center recently
revealed that inhaled nano-sized particles end up in the lungs and brains of rats. In other studies,
nano-particles have been shown to cause extensive brain damage in fish and to disrupt normal
liver function. If humans were exposed to such nano-particles, we would very likely start seeing
increases in brain disorders or perhaps even cellular malfunctions throughout the body. Nano-
particles are so small that they can work their way into the mitochondria (the “power plants” of
our cells). The long-term health impact of exposure to these particles is clearly being shown to be
very negative.

Amazing  technology
ReadMore>>

Vibrational Medicine

Vibrational Medicine

Vibrational medicine is a promising area of “technology” (it’s difficult to call it that) that covers a variety of pioneering healing modalities now known to be far more powerful than drugs and surgery in improving the lives of patients. These modalities include:

• Phototherapy: harnessing the healing power of natural sunlight to prevent
cancer, reverse clinical depression, alter moods, increase bone density and
much more.
• Color therapy: using selected wavelengths of natural sunlight to create a
physiological, psychological or energetic response in a patient.
• Homeopathy: using the “memory of water” to imprint a patient with the healing
properties of selected substances.
• Sound therapy: the therapeutic use of sound waves to create a healing response
in the patient. Music therapy is one branch of sound therapy.
• Spiritual healing: harnessing the power of prayer and focused intention to
alter the health outcome for a patient. Also called “non-local medicine.” It is well
supported by double-blind placebo studies.
• Mind/body medicine: harnessing the power of the patient’s own mind to affect
healing. This is typically accomplished through meditation exercises, laughter as
medicine, or creative visualization exercises. The proven power of the placebo
effect demonstrates the enormous healing potential of this modality (in tens of
thousands of medical studies, the placebo effect has been proven more effective
than any prescription drug known to mankind).
• Acupuncture: the use of tiny needles to alter the flow of chi (energy) through the
body for a specific health reason.
• Magnetic therapy: the use of permanent magnets or electromagnets to catalyze
a healing response in the patient. Some magnetic therapies attempt to augment
the Earth’s magnetic field; others deliver high-energy magnetic bursts in an
attempt to destroy cancer tumors.
• Crytals, gems and rocks: the harnessing of vibrations from crystals and other
rocks for healing purposes. All crystals vibrate. In fact, if you are reading this
report, you’re using crystal vibration right now! (The CPU clock in your computer
operates on a timing signal generated by a crystal.)
• Electromedicine: applying small electrical currents to selected points on the
body to accelerate healing, repair broken bones, create changes in muscle
training and body tension, destroy invading bacteria, and other uses. The body
already relies on electromedicine for internal healing. All bones, for example, are
piezo-electric devices that create an electric charge when stressed, attracting
minerals like calcium to the site of the charge. In addition, a continuous electric
current, when applied to the skin over a blood vessel, kills bacteria present in the
blood. Electromedicine has great potential for healing.

There are many other areas as well, but these represent some of the most popular vibrational medicine technologies being used today. Unlike the other technologies mentioned in this report, much of the technology already exists for vibrational medicine. Every therapy mentioned above is being used right now in the United States and around the world. The challenge is to see their use become widespread and accepted by practitioners of western medicine. Unfortunately, most practitioners of modern (western) medicine are steeped in an outdated mindset of drugs and surgery and tend to shun any therapy that isn’t sanctioned by the pharmaceutical industry.
Let’s take a closer look at the kind of paradigm shifts that will be required in modern medicine in order for vibrational medicine to earn increased credibility.
A brief history of western medicine
Looking at the history of western medicine, the modalities and belief systems are readily divided into three chronological phases:

1. Physical medicine.
2. Chemical medicine.
3. Energetic medicine.

Physical medicine describes the sort of medicine practiced by the western world in the 19th early 20th centuries. If a foot became infected, the doctor cut it off. Surgery was regarded as a “heroic” procedure (to a very large degree, it still is), and disease was understood to be caused by the physical malfunctioning of physical organs.
Chemical medicine emerged in response to the discovery of penicillin and the realization that certain chemicals -- prescription drugs or antibiotics -- could target and destroy infectious disease. This belief continues to this day, where diseases are now commonly described as “chemical imbalances” that must be treated with a lifetime of prescription drugs. Today, western medicine is firmly seated in the belief system of chemical medicine. Pharmaceutical companies, which dominate today’s medical landscape, rely exclusively on this paradigm to market their products and convince patients they need potent chemicals in order to be happy, healthy or sane. This is why nearly all diseases and symptoms are presently described as chemical imbalances that can be corrected with expensive drugs. This belief is a distortion, however.
Energetic medicine (vibrational medicine) is just starting to be explored by the medical mainstream.
In energetic medicine, the powerful effects of subtle energy systems are explored and leveraged

for healing. Energetic medicine recognizes the whole of the patient rather than the parts (as in physical medicine). Energetic medicine also believes that the human body is not a chemical dumping ground, and that both disease and health have core underlying causes that go far deeper than mere symptoms. The future of medicine is vibrational
Tomorrow’s medicine will no doubt increasingly rely on vibrational medicine. Not only is it a more advanced perspective on the true causes of disease and health, but it can be offered to patients with virtually no side effects and at very low cost. As one simple example, if a doctor can help a patient laugh heartily for five minutes, the patient will be significantly helped in all three areas: physical, chemical and vibrational.

From a physical point of view, the very act of laughing moves lymph fluid, promotes the oxygenation
of body cells and organs, and improves circulation. From a chemical point of view, laughter results
in the creation of literally tens of thousands of dollars worth of healthful brain chemicals (if you had
to buy them, that is) that improve mood, enhance alertness, etc. From an energetic point of view,
laughter helps relax the patient’s body and mind, opens them to enjoying interaction with others,
and literally restructures their internal energies. That’s just one reason why Dr. Patch Adams,
popularized in the movie with Robin Williams, relied so heavily on laughter as a powerful healing
tool. In a very real way, laughter is perhaps one of the most powerful healing tools available to
mankind, and yet today’s hospitals and doctors’ offices are hardly places that inspire unbridled
joy.
The power of placebo
Interestingly, vibrational medicine has already been proven by literally tens of thousands of clinical
studies to be the single most powerful healing tool known to western medicine, and yet it remains
largely ignored by the very same people conducting the studies. Let me explain: in most clinical
trials, there is something called the placebo effect which describes the level of healing that takes
place in patients who were given no drugs and no surgery but who thought they received the
drugs or surgery. For example, they would be given inert pills or subjected to a “sham surgery”
that actually resulted in no real surgical operation. This is standard practice in clinical trials.

But even though the patients don’t receive the drugs or surgery as part of the study, they routinely show permanent improvements in their health. One study of Parkinson’s patients proved that this genuine health improvement remained strong even twelve months after the placebo surgery, and the measure of improvement was objective: even the medical staff agreed that patients showed measurable improvements.

Obviously, if patients are getting better thanks to the placebo effect, it can’t be the drugs or surgery that’s causing the improvement. The healing effect is caused by the mind of the patient. Their belief in the drug or surgery is what’s causing them to get better, not the actual drug or surgery (since they didn’t receive either).
Now here’s the amazing part: if you take a closer look at these tens of thousands of studies, you’ll find that the placebo effect has been proven effective in treating approximately 30% of all disorders and diseases. That’s right: this single mind/body tool has been scientifically proven to reverse or improve 30% of all diseases and symptoms: heart disease, stroke, arthritis, cancer... you name it. The proof is right there in the studies.
This is astonishing: mind/body medicine offers us a powerful healing tool that works with no
negative side effects and zero cost... and it’s effective against practically any disease or condition.
So what does western medicine do with this knowledge? They discard it. The placebo effect is
routinely tossed or ignored. It’s considered a “false” result by medical researchers, even when the
numbers prove it to be not just real, but perhaps the most powerful healing tool of all.
Truth is whatever agrees with your beliefs
Why does this happen? Doctors, researchers, surgeons and others in the medical community function like everyone else: when presented with evidence that contradicts their firmly held belief systems, they discard the new evidence because it doesn’t fit their internal model of the way the world works. Accordingly, the mountain of evidence supporting the placebo effect gets routinely discarded not because it isn’t compelling and scientific, but because modern medicine doesn’t understand how it could work. It doesn’t fit the model.

And it’s not just the placebo effect that gets ignored. Homeopathy is also routinely ignored or even attacked by western medicine for the simple reason that western medical technology doesn’t understand how it works, either. In a homeopathic remedy, an extract from a particular element such as a flower, a plant, or even a poison like arsenic, is mixed with water and then diluted to such extremes that there’s not a single molecule of the original element remaining in the final mixture. Yet the final mixture holds the “memory” or the “vibration” of the original element that was used, and it exhibits scientifically measurable and verifiable effects on biological systems (both humans and animals) when consumed.
The evidence showing that homeopathic remedies work is not merely compelling, it is scientifically
robust. An honest researcher reviewing the clinical evidence on homeopathy can only reach one
of two conclusions: either homeopathy works, or controlled, double-blind placebo clinical trials
don’t work. In other words, if you measure the effect of homeopathic remedies using the same

science and scrutiny as clinical drug trials, you get a significant result that proves homeopathic remedies work. And yet western medicine continues to throw out this scientific reality, not because it hasn’t been scientifically proven, but because it doesn’t fit the model.
Homeopathy is one of the most promising areas of vibrational medicine. Homeopathic remedies can help people fight infectious disease, reverse cancer and diabetes, improve their brain function, detoxify their systems, recover from wounds more quickly, increase fertility, and accomplish a long list of other health benefits.
Phototherapy
Phototherapy represents a rapidly emerging branch of vibrational medicine, and it’s being slowly accepted by the scientific community. In experiments with infrared light, NASA (National Aeronautics and Space Administration) has shown that flesh wounds like scrapes, cuts and burns, heal 40% faster when exposed to a few minutes of infrared LED light each day. The mere presence of the light causes the body to accelerate its healing.

Light is a powerful healing tool, and no light is more available than our own sun. The sun is a source of tremendous healing potential. With natural sunlight, people can reverse prostate cancer and breast cancer, reverse clinical depression, enhance their bone density and prevent osteoporosis, vastly improve circulation, accelerate wound healing, and experience a long list of other significant health benefits. And yet, remarkably, nearly the entire population of the western world has been taught to believe that sunlight is dangerous.
People are warned to “stay out of the sun!” They slather on sunscreen, they wear heavy clothing,
and they avoid the sun at all costs. Meanwhile, rates of prostate cancer are skyrocketing and
vitamin D deficiency is now one of the most common nutritional deficiencies in America, Canada
and Europe. With daily exposure to natural sunlight, the body creates its own vitamin D and puts
it to work preventing prostate cancer, breast cancer and a long list of other disorders.
People need natural sunlight. It seems so obvious that it’s almost ridiculous having to point it out.
And yet fear of the sun is so deeply ingrained in western societies that merely mentioning the
phrase, “sunlight is good for you...” earns you gaping stares from practically everyone. Clearly, the
human species didn’t evolve under fluorescent lighting: it evolved under the natural sun, and as
human beings, we depend on frequent exposure to the sun for optimum health. Without sunlight,
in fact, we cannot function in a healthy way. The growing problem of Seasonal Affective Disorder,
where people experience deep depression due to lack of sunlight, is just one of the many clues
pointing to the reality that people need natural sunlight in order to be healthy.

Lack of sunlight is even part of the reason we’re seeing an epidemic of obesity: sunlight exposure

diminishes cravings for carbohydrates and sweets by balancing levels of serotonin in the brain. Surgical sound waves
Another promising area of vibrational medicine involves the use of sound waves for manipulating
both physical tissues and energetic fields in the body. For this discussion, I’ll stick with the physical
tissues.

I first discussed this technology concept in 2001 with Jonathan Goldman, a sound healing
pioneer working more on the spiritual side than the medical side of sound therapy (http://www.
HealingSounds.com). By using standing waves of low frequency sound combined with subtle
variations in the frequency and wavelength, we can directly control fluids (like blood and lymph)
and even manipulate tissues in the human body without needing invasive surgery. How?
Cymatics = the study of sound on physical matter
Sound restructures physical matter. This is evidenced by observing the effect of sound waves
on grains of sand spread across the top of a large drum. If you hum into the drum, the sand will
form physical patterns that coalesce across the drum head according to slight variations in pitch
and amplitude. The science is called cymatics, and much of the original work in this area was
conducted by the late Hans Jenny. (See http://www.cymaticsource.com for information.)

In cymatics, we see that sound creates waves of force that can move physical objects either
towards or away from the source of that sound. In my own experiments using tone generator
software, home speakers, sheet metal, and dirt from my back yard (how’s that for high-tech?),
I was able to propagate grains of dirt and sand along a radiating path from the source of the
sound by simply altering the frequency of the sound. (You have to watch the amplitude, however,
because if the sound waves are too strong, the grains of sand will leap right off the sheet metal.)
For example, if you start with a sound frequency of 300 hertz (300 cycles per second), and then slowly reduce the frequency (pitch down the sound), it will elongate the wavelength of the sound and the grains of sand will slowly move away from you. If you start at a low frequency and increase the pitch, the grains of sand will move towards you as if on a conveyer belt.
This same technology, I proposed in 2001, could be used in the bodies of patients to move
body fluids and massage organs, among other uses. Diabetic patients, for example, frequently
experience a critical lack of blood supply to their feet due to diabetic neuropathy. By using sound
generators under the soles of their feet and broadcasting a sound sequence that slowly increases
pitch (then repeats from the original low tone after ramping up), you can actually draw blood into

the feet and minimize damage from neuropathy. The same approach can be used for any organ or limb in the body. Sadly, such medical devices do not exist today.
Yet this merely scratches the surface of potential for sound therapy. Imagine using two sound sources and coordinating their configuration of standing waves so that peaks of force can be pinpointed along the X and Y axis. Now add a third sound source so that you can operate in three dimensions. With such a system, doctors or surgeons could manipulate internal organs or biological structures with precision without needing to slice into the patient’s body with scalpels. It’s non-invasive surgery through the miracle of sound.
To date, no such system exists, but they are theoretically possible. There has been, however, some exciting new research emerging in the world of “medical acoustics.” Dr. Alexander Sutin at the Stevens Institute of Technology in New Jersey recently presented six papers at the Acoustical Society of America where he described a phenomenon known as time-reversal acoustics that promises to revolutionize modern medicine. Time-reversal acoustics will allow a whole new approach to imaging (seeing inside the body), destroying kidney stones, targeting tumors and even conducting surgical procedures without needing to invade the body.
Such technology blends the often mysterious world of vibrational medicine with today’s so-called
“hard core science” to bring significant new healing modalities to the world of medicine. If sound
can be widely accepted as a healing technology by organized medicine, further exploration into
phototherapy, homeopathy and acupuncture is likely to follow. And that’s how modern medicine
graduates from a stage two (chemical medicine) paradigm and moves into stage three (vibrational
medicine).
Wrap up
In all, vibrational medicine represents the next phase in the evolution of healing technology. It delivers powerful healing with no negative side effects and at very low cost. When fully embraced by the medical community, vibrational medicine will make chemicals and prescription drugs virtually obsolete.

When it comes to vibrational medicine, the science is already here: reliable studies prove its efficacy. But what’s needed is the acceptance of this technology by the medical community, and that acceptance will take time to achieve.

Amazing  technology
ReadMore>>

Computer/HumanInterface Systems

Computer/HumanInterface Systems


There’s no mistaking the significant influence of personal computers and the Internet on our modern way of life. Many of us have so quickly adapted to regular use of search engines and web surfing that it’s difficult to imagine life without the Internet.
The Internet allow us to research products and companies, share ideas with the public, research nutritional supplements, find articles on historical figures, and do a million other things that simply weren’t possible a mere two decades ago.
And yet our interface with the Internet remains the lowly personal computer. With its clumsy interface devices (keyboard and mouse, primarily), the personal computer is a makeshift bridge between the ideas of human beings and the world of information found on the Internet. These interface devices are clumsy and simply cannot keep pace with the speed of thought of which the human brain is capable.
Consider this: a person with an idea who wishes to communicate that idea to others must translate
that idea into words, then break those words into individual letters, then direct her fingers to punch
physical buttons (the keyboard) corresponding to each of those letters, all in the correct sequence.
Not surprisingly, typing speed becomes a major limiting factor here: most people can only type
around sixty words per minute. Even a fast typist can barely achieve 120 words per minute. Yet
the spoken word approaches 300 words per minute, and the speed of “thought” is obviously many
times faster than that.
Pushing thoughts through a computer keyboard is sort of like trying to put out a raging fire with a garden hose: there’s simply not enough bandwidth to move things through quickly enough. As a result, today’s computer / human interface devices are significant obstacles to breakthroughs in communicative efficiency.
The computer mouse is also severely limited. I like to think of the mouse as a clumsy translator of intention: if you look at your computer screen, and you intend to open a folder, you have to move your hand from your keyboard to your mouse, slide the mouse to a new location on your desk, watch the mouse pointer move across the screen in an approximate mirror of the mouse movement on your desk, then click a button twice. That’s a far cry from the idea of simply looking at the icon and intending it to open, which would of course be the desired level of computer / human interface as I’ll discuss below.
Today’s interface devices are little more than rudimentary translation tools that allow us to access the world of personal computers and the Internet in a clumsy, inefficient way. Still, the Internet is so valuable that even these clumsy devices grant us immeasurable benefits, but a new generation of computer/human interface devices would greatly multiply those benefits and open up a whole new world of possibilities for exploiting the power of information and knowledge for the benefit of humanity. Let’s take a closer look at those emerging technologies now.

Emerging Computer / Human Interface Technologies The idea of eliminating the gap between human thought and computer responsiveness is an
obvious one, and a number of companies are working hard on promising technologies. One of the
most obvious such technologies is voice recognition software that allows the computer to type as
you speak, or allows users to control software applications by issuing voice commands.

The most advanced and accurate software in this category is Dragon Naturally Speaking, and I’ve spent a considerable number of hours with this software. Its accuracy is impressive, and the technology is far ahead of voice recognition technology from a mere decade ago, but it’s still not at the point where people can walk up to their computer and start issuing voice commands without a whole lot of setup, training, and fine tuning of microphones and sound levels. For many people, that’s just way too much configuration.
This situation is no doubt recognized by the developers of Dragon Naturally Speaking. Nevertheless, widespread, intuitive use of voice recognition technology still appears to be years away.
Hand-controlled computers
Another recent technology that represents a clever approach to computer / human interfaces is the iGesture Pad by a company called Fingerworks (http://www.FingerWorks.com). With the iGesture Pad, users place their hands on a touch sensitive pad (about the size of a mouse pad), then move their fingers in certain patterns (gestures) that are interpreted as application commands. For example, placing your fingers on the pad in a tight group, then rapidly opening and spreading your fingers is interpreted as an Open command.

This technology represents a leap in intuitive interface devices, and it promises a whole new dimension of control versus the one-dimensional mouse click, but it’s still a somewhat clumsy translation of intention through physical limbs.
For more intuitive control of software interfaces, what’s needed is a device that tracks eye
movements and accurately translates them into mouse movements: so you could just look at
an icon on the screen and the mouse would instantly move there. Interestingly, some of the
best technology in this area comes from companies building systems for people with physical
disabilities. For people who can’t move their limbs, computer control through alternate means is
absolutely essential.

Head movement tracking technology One approach to this is tracking the movement of a person’s head and translating that into mouse movements. One device, the HeadMouse (http://www.orin.com/access/hme/index.htm), does exactly that. You stick a reflective dot on your forehead, put the sensor on top of your monitor, then move your head to move your mouse. I haven’t tried the technology, so I can’t say how well it works, but the company (Origin Instruments) has a reputation for providing assistive technologies to physically disabled persons, and the HeadMouse is their latest technology.

Another company called Madentec (http://www.Madentec.com) offers a similar technology called
Tracker One. Place a dot on your forehead, then you can control the mouse simply by moving
your head.
In terms of affordable head tracking products for widespread use, a company called NaturalPoint (http://www.NaturalPoint.com) seems to have the best head tracking technology at the present: a product called SmartNav, priced at a mere $199, allows for hands-free mouse control via head movement. Add a foot switch and you can click with your feet. I’ve used this product myself, and while it definitely presents a learning curve for new users, it works as promised.
Tracking eye movements
While tracking head movement is in many ways better than tracking mouse movement, a more
intuitive approach, it seems, would be to track actual eye movements. A company called LC
Technologies, Inc. is doing precisely that with their EyeGaze systems (http://www.lctinc.com/
PRODUCTS.htm). By mounting one or two cameras under your monitor and calibrating the
software to your screen dimensions, you can control your mouse by simply looking at the desired
position on the screen.

Once again, this technology was originally developed for people with physical disabilities, yet the potential application of it is far greater. In time, I believe that eye tracking systems will become the preferred method of cursor control for users of personal computers.
Eye tracking technology is quickly emerging as a technology with high potential for widespread
adoption by the computing public. Companies such as Tobii Technology (http://www.tobii.se),
Seeing Machines (http://www.SeeingMachines.com), SensoMotoric Instruments (http://www.
smi.de), Arrington Research (http://www.ArringtonResearch.com), and EyeTech Digital Systems
(http://www.eyetechds.com) all offer eye tracking technology with potential for computer / human
interface applications. The two most promising technologies in this list, in terms of widespread
consumer-level use, appear to be Tobii Technology and EyeTech Digital Systems.

Mind control for your PC Moving to the next level of computer / human interface technology, the ability to control your computer with your thoughts alone seems to be an obvious goal. The technology is called Brain Computer Interface technology, or BCI.

Although the idea of brain-controlled computers has been around for a while, it received a spike of popularity in 2004 with the announcement that nerve-sensing circuitry was implanted in a monkey’s brain, allowing it to control a robotic arm by merely thinking. This Washington Post article gives a fascinating account of the breakthrough and training required by the monkey to learn how to use the brain implant:
http://www.washingtonpost.com/ac2/wp-dyn/A17434-2003Oct12?language=printer

The lead researchers in the monkey experiment are now involved in a commercial venture to develop the technology for use in humans. The company, Cyberkinetics Inc. (http://www. cyberkineticsinc.com) hopes to someday implant circuits in the brains of disabled humans, then allow those people to control robotic arms, wheelchairs, computers or other devices through nothing more than brain behavior.
A key obstacle to widespread use is, of course, the requirement that circuitry be surgically implanted in the brain. If the technology can take a quantum leap and work its magic without needing the surgery -- by wearing a sensing helmet, for example -- it will suddenly be a lot more interesting to the population at large, and not just those with severe physical disabilities.
Imagine the limitless applications of direct brain control. People could easily manipulate cursors on the screen or control electromechanical devices. They could direct software applications, enter text on virtual keyboards, or even drive vehicles on public roads. Today, all these tasks are accomplished by our brains moving our limbs, but the limbs, technically speaking, don’t have to be part of the chain of command.
Tactile feedback
Another promising area of computer / human interface technology is being explored by companies like Immersion Corporation (http://www.Immersion.com), which offers tactile feedback hardware that allows users to “feel” their computer interfaces.

Slide on Immersion’s CyberGlove, and your computer can track and translate detailed hand and
finger movements. Add their CyberTouch accessory, and tiny force feedback generators mounted
on the glove deliver the sensation of touch or vibration to your fingers. With proper software

translation, these technologies give users the ability to manipulate virtual objects using their
hands. It’s an intuitive way to manipulate objects in virtual space, since nearly all humans have
the natural ability to perform complex hand movements with practically no training whatsoever.
Another company exploring the world of tactile feedback technologies is SensAble Technologies
(http://www.sensable.com). Their PHANTOM devices allow users to construct and “feel” three-
dimensional objects in virtual space. Their consumer-level products include a utility for gamers
that translates computer game events into tactile feedback (vibrations, hitting objects, gun recoil,
etc.).
On a consumer level, Logitech makes a device called the IFeel Mouse that vibrates or thumps when your mouse cursor passes over certain on-screen features. Clickable icons, for example, feel like “bumps” as you mouse over them. The edges of windows can also deliver subtle feedback. The mouse sells for around $40, but it hasn’t seen much success in the marketplace. Reviews from users reveal that the vibrating mouse is considered more annoying than helpful, so don’t expect to see this technology taking over the world of computer mice.
But tactile feedback has potential for making human / computer interfaces more intuitive and efficient, even if today’s tactile technologies are clunky first attempts. The more senses we can directly involve in our control of computers, the broader the bandwidth of information and intention between human beings and machines.
Three-dimensional displays
The long-promised 3D computer monitor finally seems to be close to reality. Manipulating complex
windows, documents and virtual objects on a two-dimensional display -- as is standard today -- is
rather limiting. With a 3D monitor, we could work in layers or position documents and objects in
3D space rather than squeezing them down to a tiny toolbar at the bottom of one screen.

For human beings, 3D space is intuitive. We get it without training. That’s because we live in a world of 3D objects and space, and our perception is hard-wired to understand spatial relationships. That’s why gamers who play first-person shooters like Quake can mentally retrace their way through enormous maps (levels) in their heads, eyes closed, without even trying: the human brain was built to remember and navigate 3D space.
Recent breakthroughs in 3D displays promise to make computing more intuitive and powerful.
Companies like LightSpace Technologies (http://www.lightspacetech.com) are already selling
desktop 3D display monitors that display true 3D images without the need for special glasses.

The trouble is, Windows and Mac operating systems weren’t written with 3D displays in mind. So

there’s no capability to stack windows or view the depth of objects. It’s a classic chicken-and-egg conundrum: who’s going to buy 3D displays if the software can’t support them, and why would software makers write 3D layering logic if nobody owns the displays? In time, thanks to the “cool” factor of 3D displays, the technology will eventually receive enough
attention to warrant the necessary R&D investment by operating system developers like Microsoft
and Apple. No doubt, future generations will conduct all their computing with the aid of 3D displays,
and the very idea of 2D displays will seem as outdated as black & white movies do to us today.

Another new 3D display device is the Perspecta Spatial 3D globe, seen at:
http://www.actuality-systems.com/index.php/actuality . This device displays 3D objects or
animations inside a globe. Users can walk around the globe and view the objects from any angle.
It’s a rather expensive item, of course, so early applications for this product focus on medical and
research tasks. In time, however, the technology will drop in price, bringing it within reach of more
consumers.
In the category of the more familiar, a German company called SeeReal Technologies (http://
www.SeeReal.com) offers a 20” LCD 3D display that uses eye tracking combined with unique
left/right display technology to create a true 3D image on a flat panel monitor without the need for
special viewing glasses. These monitors are typically used in the CAD/CAM industry where the
visualization of 3D objects is especially helpful. The lack of support for 3D space in the Windows
operating system, however, makes these monitors useless for everyday users... at least for the
moment.
What would 3D displays do for us?
So what should a flat panel 3D display actually do for a typical Windows or Mac user? At the most basic level, operating systems would need to support fundamental 3D features like:

• Layering of windows: Background windows would appear further away, while
foreground windows appear closer.
• Pop out elements: Certain elements of a document or page could appear to
“pop out” of the screen a half inch or so. This might be used similarly to bolding or italicizing.
• Floating cursors: the mouse cursor appears to float above the screen and then,
when clicked, it actually buries itself in the button being clicked, then quickly
returns to its hover status.

Note, however, that a 3D flat panel monitor is not the same as a true 3D display system: you can’t walk to the side of the monitor and see the windows behind it. It’s still essentially a 2D system in
that it can’t display true volumetric shapes and objects that are viewable from multiple angles.
Tabletop 3D displays
For that, we’ll ultimately need a tabletop 3D display system that lays flat on your desk (like an LCD
monitor laying down) and projects 3D images into the space above the panel. This would be a true
volumetric 3D display system, and it’s here that the technology truly represents a breakthrough.
Program application windows could literally be stacked from the rear to the front, and if you
peeked around the side of the display, you could see a side view of all the windows at once.

With proper software control, objects or documents could be placed in true 3D space: desktop icons, for example, could be lined up along the very back row. Games could display true 3D scenes as if you’re actually in them, and CAD engineers would have the ability to observe their designs in true 3D space.
Better yet, if coupled with a motion tracking glove or similar technology, users could use their hands to grasp, move, resize or otherwise manipulate elements in 3D space. This, of course, opens up an unlimited universe of possibilities for computer / human interaction.
Closing the gap
This brief tour of computer / human interface technologies is really only a glimpse of what’s
possible. It’s all about closing the gap between human intention and computing systems. Today,
the gap is very large: a typical keyboard and mouse setup is essentially a two-channel interface
system. But tomorrow, the gap could be very small: add a head tracking system, hand-sensing
glove, foot pedal switches, voice recognition system, 3D display and a brainwave-sensing helmet,
and you’ve created layers of multi-channel interface technologies that allow infinite expression.

In time, as this technology is developed and adopted by mainstream users, the gap will continue to shrink. This has enormous positive implications in the workplace, medicine, science, education, social interaction, entertainment and many other areas, which is why it earns such a lengthy discussion in this report. And it’s not technology that’s “way out there,” either: it’s technology that’s emerging now and will continue to be developed in the years ahead.

Amazing  technology
ReadMore>>