|
|
| About site: News and Media - Christian Science Monitor - Sci/Tech |
Return to Science also Science |
| About site: http://www.csmonitor.com/scitech/ |
Title: News and Media - Christian Science Monitor - Sci/Tech Includes articles and columns on computing, the environment, the Internet and space. |
|
|
|
|
Laboratory_of_Nonlinear_Optics_of_Nanostructures_and_Photonic_Crystals Laboratory of nonlinear optics of nanostructures & photonic crystals, Aktsipetrov O.A., Murzina T.V., Fedyanin A.A., Maidykovsky A.I.
| Saito,_Naoki Applied and computational harmonic analysis, image analysis, pattern recognition, data compression, statistical signal processing, human and machine vision, geophysical inverse problems.
| Department_of_Social_Sciences,_United_States_Military_Academy Information for cadets, cadet candidates, faculty, former faculty, and visitors to West Point.
| Hydrogen_gov Hydrogen.gov is the Federal government's central source of information on R&D activities related to hydrogen and fuel cells. This web site was developed to further the goals of the President's Hyd
| Edgar_Cayce_on_Atlantis Readings by Cayce relating to the lost continent of Atlantis.
| Types_Summer_School_\'99 Giens, France; 30 August -- 10 September 1999. Photos, tutorial notes and software.
|
|
| Alexa statistic for http://www.csmonitor.com/scitech/ |
Please visit: http://www.csmonitor.com/scitech/
|
| Related sites for http://www.csmonitor.com/scitech/ |
| Has_Science_Found_God? Talk by Dr. Norman F. Hall given on September 15, 1996 at a meeting of the Humanist Fellowship of San Diego at the Thomas Paine Coffeehouse. | | Technology_-_Management_-_Serviceclub_Virtualtec_e_V_ A non-profit, independent global network of people and organizations which are working at the interface between management and technology. | | Negi,_Jeetendra Resume of a nuclear technician responsible for maintenance or sales of nuclear instruments. | | Cybernetic_Intelligence_Research_Group Working group at the department of Cybernetics, University of Reading, UK, engaged in the study of intelligence and its application. | | Laboratory_of_Biocybernetics Faculty of Electrical Engineering, University of Ljubljana, Slovenia. | | Vegetable_Crops_-_The_Ohio_State_University Information on cultural details of growing vegetables for the commercial and home gardener. Also covers pest and disease control. | | Marine_Geodesy Topics cover topography and mapping, satellite altimetry, bathymetry, positioning, precise navigation, boundary demarcation and determination, tsunamis, plate/tectonics, geoid determination, acoustics | | Suite101_com Articles at Suite101 relating to forensic psychology. | | Lenntech__Argon Physical data, chemical properties, health and environmental effects. | | Autonomous_Undersea_Systems_Institute_(AUSI) A not for profit research institute that promotes commercial applications of unmanned submersible vehicles, platforms, and sensors. | | Woody_Plant_Seed_Manual Provides comprehensive information relating to the biology of tree and shrub seeds, including genetic improvement and germination. | | British_Journal_of_Developmental_Psychology Includes subscription information, table of contents and full text of sample issue. | | NASA_People The NASA Office of Human Capital Management translates NASA's business strategy into world-class workforce capabilities, maximizes NASA employees' contributions toward the organization's success,and c | | Socio-economics_of_Space Research initiative headed by Gernot Grabher. Includes info on research, publications and teaching. | | British_Academy__Aerial__Survey_for_Archaeology The British Academy reviews new technologies for Aerial Survey and for access to the Photographic Records in this report. | | EnvironmentalChemistry_com__Polonium Atomic structure, chemical and physical properties, and table of nuclides. | | All_About_Telescopes Information on refracting, reflecting and radio telescopes, details on amateur telescopes, eyepieces, mounts, lenses and software. | | Crni_Vrh_Observatory Asteroid and comet observation at Crni Vrh Observatory, Slovenia. | | MAPSLab_Research__Spatial_Databases_and_Visual_Simulation Automated construction of virtual worlds using spatial databases. | | Monitor_Labs Supplier of opacity monitors, flow and particulate monitors, air quality monitors for CO, CO2, NOx, SO2,& ozone, continuous-emissions monitoring, data acquisition systems and system support. |
|
This is websites2007.org cache of m/ as retrieved on 2008.10.10 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
|
Innovation | csmonitor.com
var md_headline = "Innovation";
var md_byline = "Peter N. Spotts";
var md_base_path = location.pathname;
var md_date_parsed = " ";
var md_audio_url = "";
var md_audio_credit = "";
var md_staffline = "Staff Writer for The Christian Science Monitor";
function RightslinkPopUp() {
var url = "https://s100.copyright.com/servlet/DispatchServlet";
var location = url
+ "?PublisherName=" + escape( "The Christian Science Monitor" )
+ "&publication=" + escape( "The Christian Science Monitor" )
+ "&Title=" + escape(md_headline)
+ "&PublicationDate=" + escape(md_date_parsed)
+ "&Author=" + escape(md_byline)
+ "&Install=S"
+ "&ContentID=" + escape( md_base_path );
PopUp = window.open( location, 'Rightslink', 'location=no,toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=550');
}
function LetterToTheEditor()
{
var storyUrl = window.location.href;
var letterURL = 'http://www.csmonitor.com/cgi-bin/encryptmail.pl?ID=CFF0C5E4&url=/'+storyUrl;
window.location.href=letterURL;
}
function handleQuestionClick(pQuestion)
{
// get id of associated answer
var vAnswerId = getAnswerId(pQuestion.id);
// toggle visibility of answer element
toggleVisibility(vAnswerId);
return false;
}
function toggleVisibility(pElementId)
{
var pElement = document.getElementById(pElementId);
if (pElement.style.display != '')
{
pElement.style.display = '';
}
else
{
pElement.style.display = 'block';
}
}
function clearText(thefield){
if
(thefield.defaultValue==thefield.value)
thefield.value = ""
}
function getAnswerId(pQuestionId)
{
// replace last char of $pQuestionId with "a"
var rAnswerId = pQuestionId.substring(0, pQuestionId.length-1) + 'a';
return rAnswerId;
}
$(document).ready(function(){
$(".question .answer:first").css("display", "block"); });
// let's start the jQuery while I wait.
// step 1: onload - capture the submit event on the form.
$(function() { // onload...do
$('#cForm').submit(function() {
// now we're going to capture *all* the fields in the
// form and submit it via ajax.
// :input is a macro that grabs all input types, select boxes
// textarea, etc. Then I'm using the context of the form from
// the initial '#cForm' to narrow down our selector
var inputs = [];
$(':input', this).each(function() {
inputs.push(this.name + '=' + escape(this.value));
})
// now if I join our inputs using '&' we'll have a query string
jQuery.ajax({
data: inputs.join('&'),
url: 'http://features.csmonitor.com/innovation/wp-content/themes/innovation/talkback-post.php',
timeout: 2000,
error: function() {
console.log("Failed to submit");
},
success: function(r) {
$('#contactFormArea').html(r);
//alert(r);
}
}) // checkout http://jquery.com/api for more syntax and options on this method.
// re-test...
// by default - we'll always return false so it doesn't redirect the user.
return false;
})
})
Special Offer: Subscribe to the Monitor and get 32 issues RISK-FREE!
csmonitor.com Home | About Us | Subscribe
World | US | Commentary | Multimedia
Sci / Tech
Pioneers
Responsible Tech
Tech Culture
Chris Gaylord &Andrew Heining
10.10.08
Horizon highlights: Rethinking the basics
Our regular roundup of sci-tech stories from across the Web includes: Professor Pogue teaches some tech basics, five Web 2.0 services that are actually worth your time, and could special lightbulbs replace Wi-Fi hubs? Let’s kick it off:Showdown: BlackBerry Storm vs. iPhone 3G“After teasing us with videos and a vague web site, Research in Motion […]
Continue...
Recent blog posts
10.09.08
Why people like cars with ‘angry faces’
10.09.08
A video game that reads your mind
10.08.08
Update: What’s next in the Palin hacking case?
10.08.08
Another RFID smart card vulnerability exposed
10.06.08
Paris’s ‘Pyramid Project’ casts no shadow
Innovation Briefs
10.10.08
New estimates on global warming
The global climate could warm by 2.5 degrees F. by the end of the century, even if countries undertake stringent efforts to curb greenhouse-gas emissions, according to a new study from a team of climate scientists in the United States, China, Japan, and five European nations.This figure is more than twice as high as the […]
Continue...
10.09.08
Tracking baby-boom galaxies
Some 2 billion to 3 billion years after the big bang, the number of new stars in the universe mushroomed. In the past, many scientists suggested that the bursts of new stars were created because smaller galaxies collided – and as they did, their gravity caused gases in each galaxy to clump together and form […]
Continue...
10.08.08
The evolution of theories of evolution
When a segment of a population splits off genetically and evolves into a new species, it typically happens because the group gets separated from the rest of its kind. But now, researchers say they have demonstrated that evolution from one species to another doesn’t always require geographical isolation between groups of the same species. Instead, […]
Continue...
See all...
Japanese scientist Makoto Kobayashi smiles during a news conference in Tokyo after learning that he won the 2008 Nobel Prize for Physics for discoveries in sub-atomic particles.
10.09.08
Asia trumping US on science R&D
Federal funding for research has been falling in real terms. Is the nation’s economic edge at stake?
makeWimpyPlayer('http://csps.edgeboss.net/download/csps/csm/flash/webmedia2/081009science-spotts.mp3');
Reporter Peter N. Spotts talks about federal funding for scientific research drying up.
Reporter Peter N. Spotts
10.09.08
E-Science: Massive experiments, global networks
Worldwide computer grids mean even small-timers can contribute to ‘big science.’
makeWimpyPlayer('http://csps.edgeboss.net/download/csps/csm/flash/webmedia2/081008computer-spotts.mp3');
Reporter Peter N. Spotts talks about the latest in computer technology that can assist scientists in their work.
Reporter Peter N. Spotts
10.08.08
Wanted: a Prius for the delivery industry
At ‘AltWheels’ expo, inventors bring the hybrid mind-set to gas-guzzling shipping trucks.
makeWimpyPlayer('http://csps.edgeboss.net/download/csps/csm/flash/webmedia2/081008innovation-lamb.mp3');
Reporter Greg Lamb discusses the inspiration for the AltWheels conference.
Reporter Greg Lamb
More headlines
10.07.08
Pro sports leagues give us a mix of digital experiences
Column: Thanks to my phone and computer, I watch more sports than I ever did on TV
10.03.08
How white roofs shine bright green
Painting homes a lighter shade does more than save money on A.C.
makeWimpyPlayer('http://csps.edgeboss.net/download/csps/csm/flash/webmedia2/081001roof-clayton.mp3');
Reporter Mark Clayton talks about the idea of producing roofs in a lighter color to help cool the planet.
Reporter Mark Clayton
10.02.08
One month later, has Chrome’s polish lasted?
Google has attracted few converts with its Web browser but it's thinking long term.
10.02.08
Can we save forests by listening to trees?
Column: Two scientific discoveries could help reduce forest fires and prevent bug infestations.
makeWimpyPlayer('http://csps.edgeboss.net/download/csps/csm/flash/webmedia2/081001science-cowen.mp3');
Science columnist Robert Cowen talks about trees ability to produce electricity and how that could help us keep them healthy.
Science columnist Robert Cowen
10.01.08
Language Weaver: fast in translation
How one firm quickly translates reams of data.
makeWimpyPlayer('http://csps.edgeboss.net/download/csps/csm/flash/webmedia2/081001goodale-translate.mp3');
Reporter Gloria Goodale explains the history of Language Weavers.
Reporter Gloria Goodale
Previous headlines
09.30.08
Racy movie trailers are on the rise
09.25.08
Are some solar projects no longer ‘green’?
09.25.08
China’s first spacewalk: no cold-war race this time
09.24.08
O3b Networks: A far-out plan to deliver the Web
09.23.08
Physical newspapers aren’t dying off – they’re evolving
09.18.08
Video games start to shape classroom curriculum
09.17.08
Strange discoveries: cow magnetism and magpie self-identity
09.16.08
‘Loner’ image out: For teens, video games often social
09.16.08
Marillion’s plan to make money by giving away its albums
09.12.08
Blu-ray and Yahoo inject the Web into television
All headlines...
At a glance
Switching from analog to digital
Many nations are still deciding when they will change from analog to digital TV, but the technology is clearly superior.
More at a glance...
Resources
Consumer Reports
CNET | Reviews
CNET | News.com
AAAS's EurekaAlert
Technology Review
National Science Foundation
US Federal Communications Commission
US Patent and Trademark Office
Findlaw | Intellectual Property
Creative Commons
document.write('(About these ads)');google_ad_client = "pub-6743622525202572";google_ad_width = 300;google_ad_height = 250;google_ad_format = "300x250_as";google_ad_type = "text";google_color_border = "E7E7CE";google_color_bg = "FFFFFF";google_color_link = "341473";google_color_text = "000000";google_color_url = "CC6600";google_alternate_ad_url = "http://www.csmonitor.com/advertising/burst/subscribe300x250.jpg";document.write('');document.write(''); Sponsored Links Apparel T-Shirts Design Online Awards & Trophies Trophies Plaques in 48 Hrs Booking Agency Grabow Entertainment Agency Business ResourcesBusiness CardsChristmas CardsFree Business CardsPhoto CalendarsPostcardsT-Shirts Graphic Design Logo Design - LogoBee Printing Printing Real Estate International ShippingMortgage CalculatorMovingMoving CompaniesReal EstateToronto CondoToronto Condos Speakers Bureau Motivational Speakers Travel Trip Atlas-Travel Guide Web Services Dedicated ServersSEOWeb Hosting Home | About Us/Help | Feedback | Subscribe | Archive | Print Edition | Site Map | Special Projects | Corrections Contact Us | Privacy Policy | Rights & Permissions | Terms of Service | Advertise With Us | Today's Article on Christian Science www.csmonitor.com | Copyright © 2008 The Christian Science Monitor. All rights reserved. _uacct = "UA-69821-1"; urchinTracker(); |
|
| |
Includes | articles | and | columns | on | computing, | the | environment, | the | Internet | and | space. |
|
http://www.csmonitor.com/scitech/
Christian Science Monitor - Sci/Tech 2008 October
dvd rental
dvd
Includes articles and columns on computing, the environment, the Internet and space.
Rules
|
© 2008 Internet Explorer 5+ or Netscape 6+
|
|
Recommended Sites: 1.
Arts -
Business -
Computers -
Games -
Health -
Home -
Kids and Teens -
News -
Recreation -
Reference -
Regional -
Science -
Shopping -
Society -
Sports -
World
Miss Gallery
- Top Anime Hentai
- DVD rental by mail
- Buy PSP - Credit Card - Credit - MPAA - Credit Report
|