Skip to content

Instantly share code, notes, and snippets.

@zEvg
Created March 14, 2011 09:28
Show Gist options
  • Save zEvg/868935 to your computer and use it in GitHub Desktop.
Save zEvg/868935 to your computer and use it in GitHub Desktop.
<?php
$argv = $GLOBALS['argv'];
if (count($argv) < 2) {
print <<<EOT
Usage php ted_downloader.php <path_to_file_with_links> [<direcoty_to_save>]
EOT;
exit(255);
}
if (!function_exists('curl_init')) {
print 'You don\'t have curl in your php' . PHP_EOL;
exit(1);
}
$list_file = $argv[1];
$save_dir = !empty($argv[3]) ? $argv[3] : realpath(dirname(__FILE__));
if (!is_file($list_file)) {
print "There is no file $list_file" . PHP_EOL;
exit(1);
}
$talk_pattern = '/http:\/\/www.ted.com\/talks\/(.*).html/';
$fp = fopen($list_file, 'r');
while ( ($talk_url = fgets($fp)) !== false) {
$matches = array();
if (preg_match($talk_pattern, $talk_url, $matches)) {
print 'Processing: ' . $talk_url;
print 'Retrieving the video download url' . PHP_EOL;
if ( $video_url = getDownloadUrl($talk_url) ) {
print 'Downloading the video ' . $video_url . PHP_EOL;
downloadFile($video_url, $matches[1], $save_dir);
} else {
print 'Retrieving is failed!' . PHP_EOL;
}
}
}
exit();
function getDownloadUrl($talk_url)
{
$result = false;
$pattern = '/<a href="(.*)">Download video to desktop \(MP4\)<\/a>/';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $talk_url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$data = curl_exec($ch);
curl_close($ch);
$matches = array();
if (preg_match($pattern, $data, $matches)) {
$result = 'http://www.ted.com' . $matches[1];
}
return $result;
}
function downloadFile($url, $file_name,$save_dir)
{
$fp = fopen($save_dir . DIRECTORY_SEPARATOR . $file_name . '.mp4', 'w');
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_NOPROGRESS, false);
curl_setopt($ch, CURLOPT_BUFFERSIZE, 2048);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);
}
http://www.ted.com/talks/dan_pink_on_motivation.html
http://www.ted.com/talks/pranav_mistry_the_thrilling_potential_of_sixthsense_technology.html
http://www.ted.com/talks/blaise_aguera.html
http://www.ted.com/talks/david_merrill_demos_siftables_the_smart_blocks.html
http://www.ted.com/talks/ken_robinson_says_schools_kill_creativity.html
http://www.ted.com/talks/julian_assange_why_the_world_needs_wikileaks.html
http://www.ted.com/talks/pattie_maes_demos_the_sixth_sense.html
http://www.ted.com/talks/sir_ken_robinson_bring_on_the_revolution.html
http://www.ted.com/talks/simon_sinek_how_great_leaders_inspire_action.html
http://www.ted.com/talks/jamie_oliver.html
http://www.ted.com/talks/elizabeth_gilbert_on_genius.html
http://www.ted.com/talks/david_mccandless_the_beauty_of_data_visualization.html
http://www.ted.com/talks/john_underkoffler_drive_3d_data_with_a_gesture.html
http://www.ted.com/talks/tan_le_a_headset_that_reads_your_brainwaves.html
http://www.ted.com/talks/matt_ridley_when_ideas_have_sex.html
http://www.ted.com/talks/steve_jobs_how_to_live_before_you_die.html
http://www.ted.com/talks/jane_mcgonigal_gaming_can_make_a_better_world.html
http://www.ted.com/talks/clay_shirky_how_cellphones_twitter_facebook_can_make_history.html
http://www.ted.com/talks/hans_rosling_on_global_population_growth.html
http://www.ted.com/talks/rory_sutherland_life_lessons_from_an_ad_man.html
http://www.ted.com/talks/clay_shirky_how_cognitive_surplus_will_change_the_world.html
http://www.ted.com/talks/michael_pritchard_invents_a_water_filter.html
http://www.ted.com/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs.html
http://www.ted.com/talks/sam_harris_science_can_show_what_s_right.html
http://www.ted.com/talks/eric_giler_demos_wireless_electricity.html
http://www.ted.com/talks/seth_priebatsch_the_game_layer_on_top_of_the_world.html
http://www.ted.com/talks/elif_shafak_the_politics_of_fiction.html
http://www.ted.com/talks/michael_specter_the_danger_of_science_denial.html
http://www.ted.com/talks/ethan_zuckerman.html
http://www.ted.com/talks/sheena_iyengar_on_the_art_of_choosing.html
http://www.ted.com/talks/david_byrne_how_architecture_helped_music_evolve.html
http://www.ted.com/talks/bill_gates.html
http://www.ted.com/talks/jill_bolte_taylor_s_powerful_stroke_of_insight.html
http://www.ted.com/talks/stefan_sagmeister_the_power_of_time_off.html
http://www.ted.com/talks/derek_sivers_how_to_start_a_movement.html
http://www.ted.com/talks/dan_meyer_math_curriculum_makeover.html
http://www.ted.com/talks/chip_conley_measuring_what_makes_life_worthwhile.html
http://www.ted.com/talks/adora_svitak.html
http://www.ted.com/talks/william_li.html
http://www.ted.com/talks/david_blaine_how_i_held_my_breath_for_17_min.html
http://www.ted.com/talks/gary_flake_is_pivot_a_turning_point_for_web_exploration.html
http://www.ted.com/talks/beau_lotto_optical_illusions_show_how_we_see.html
http://www.ted.com/talks/nicholas_christakis_the_hidden_influence_of_social_networks.html
http://www.ted.com/talks/johanna_blakley_lessons_from_fashion_s_free_culture.html
http://www.ted.com/talks/barry_schwartz_on_our_loss_of_wisdom.html
http://www.ted.com/talks/hans_rosling_shows_the_best_stats_you_ve_ever_seen.html
http://www.ted.com/talks/richard_dawkins_growing_up_in_the_universe.html
http://www.ted.com/talks/laurie_santos.html
http://www.ted.com/talks/chimamanda_adichie_the_danger_of_a_single_story.html
http://www.ted.com/talks/christopher_m00t_poole_the_case_for_anonymity_online.html
http://www.ted.com/talks/rory_sutherland_sweat_the_small_stuff.html
http://www.ted.com/talks/taryn_simon_photographs_secret_sites.html
http://www.ted.com/talks/jeff_bezos_gifts_vs_choices.html
http://www.ted.com/talks/craig_venter_unveils_synthetic_life.html
http://www.ted.com/talks/james_balog_time_lapse_proof_of_extreme_ice_loss.html
http://www.ted.com/talks/margaret_stewart_how_youtube_thinks_about_copyright.html
http://www.ted.com/talks/debate_does_the_world_need_nuclear_energy.html
http://www.ted.com/talks/jk_rowling_the_fringe_benefits_of_failure.html
http://www.ted.com/talks/brian_skerry_reveals_ocean_s_glory_and_horror.html
http://www.ted.com/talks/michael_shermer_the_pattern_behind_self_deception.html
http://www.ted.com/talks/benoit_mandelbrot_fractals_the_art_of_roughness.html
http://www.ted.com/talks/nic_marks_the_happy_planet_index.html
http://www.ted.com/talks/temple_grandin_the_world_needs_all_kinds_of_minds.html
http://www.ted.com/talks/carter_emmart_demos_a_3d_atlas_of_the_universe.html
http://www.ted.com/talks/benjamin_zander_on_music_and_passion.html
http://www.ted.com/talks/charles_leadbeater_on_education.html
http://www.ted.com/talks/mike_rowe_celebrates_dirty_jobs.html
http://www.ted.com/talks/julian_treasure_the_4_ways_sound_affects_us.html
http://www.ted.com/talks/qi_zhang_s_electrifying_organ_performance.html
http://www.ted.com/talks/richard_st_john_s_8_secrets_of_success.html
http://www.ted.com/talks/dan_buettner_how_to_live_to_be_100.html
http://www.ted.com/talks/stephen_wolfram_computing_a_theory_of_everything.html
http://www.ted.com/talks/barry_schwartz_on_the_paradox_of_choice.html
http://www.ted.com/talks/tony_robbins_asks_why_we_do_what_we_do.html
http://www.ted.com/talks/daniel_kahneman_the_riddle_of_experience_vs_memory.html
http://www.ted.com/talks/dan_gilbert_researches_happiness.html
http://www.ted.com/talks/naif_al_mutawa_superheroes_inspired_by_islam.html
http://www.ted.com/talks/evan_williams_on_listening_to_twitter_users.html
http://www.ted.com/talks/arthur_benjamin_s_formula_for_changing_math_education.html
http://www.ted.com/talks/hans_rosling_asia_s_rise_how_and_when.html
http://www.ted.com/talks/wade_davis_on_endangered_cultures.html
http://www.ted.com/talks/dan_cobley_what_physics_taught_me_about_marketing.html
http://www.ted.com/talks/jonathan_zittrain_the_web_is_a_random_act_of_kindness.html
http://www.ted.com/talks/alexis_ohanian_how_to_make_a_splash_in_social_media.html
http://www.ted.com/talks/hans_rosling_reveals_new_insights_on_poverty.html
http://www.ted.com/talks/tom_wujec_on_3_ways_the_brain_creates_meaning.html
http://www.ted.com/talks/adam_sadowsky_engineers_a_viral_music_video.html
http://www.ted.com/talks/dan_barber_how_i_fell_in_love_with_a_fish.html
http://www.ted.com/talks/rebecca_saxe_how_brains_make_moral_judgments.html
http://www.ted.com/talks/tim_berners_lee_on_the_next_web.html
http://www.ted.com/talks/robert_lang_folds_way_new_origami.html
http://www.ted.com/talks/hans_rosling_at_state.html
http://www.ted.com/talks/marian_bantjes_intricate_beauty_by_design.html
http://www.ted.com/talks/john_wooden_on_the_difference_between_winning_and_success.html
http://www.ted.com/talks/sheryl_wudunn_our_century_s_greatest_injustice.html
http://www.ted.com/talks/philip_zimbardo_prescribes_a_healthy_take_on_time.html
http://www.ted.com/talks/malcolm_gladwell_on_spaghetti_sauce.html
http://www.ted.com/talks/william_kamkwamba_how_i_harnessed_the_wind.html
http://www.ted.com/talks/seth_godin_on_the_tribes_we_lead.html
http://www.ted.com/talks/gary_vaynerchuk_do_what_you_love_no_excuses.html
http://www.ted.com/talks/graham_hill_weekday_vegetarian.html
http://www.ted.com/talks/aditi_shankardass_a_second_opinion_on_learning_disorders.html
http://www.ted.com/talks/tim_berners_lee_the_year_open_data_went_worldwide.html
http://www.ted.com/talks/lewis_pugh_s_mind_shifting_mt_everest_swim.html
http://www.ted.com/talks/jeremy_rifkin_on_the_empathic_civilization.html
http://www.ted.com/talks/eric_sanderson_pictures_new_york_before_the_city.html
http://www.ted.com/talks/itay_talgam_lead_like_the_great_conductors.html
http://www.ted.com/talks/tim_brown_urges_designers_to_think_big.html
http://www.ted.com/talks/jason_clay_how_big_brands_can_save_biodiversity.html
http://www.ted.com/talks/brian_cox_why_we_need_the_explorers.html
http://www.ted.com/talks/devdutt_pattanaik.html
http://www.ted.com/talks/hillel_cooperman_legos_for_grownups.html
http://www.ted.com/talks/david_logan_on_tribal_leadership.html
http://www.ted.com/talks/kiran_bir_sethi_teaches_kids_to_take_charge.html
http://www.ted.com/talks/viktor_frankl_youth_in_search_of_meaning.html
http://www.ted.com/talks/bjarke_ingels_3_warp_speed_architecture_tales.html
http://www.ted.com/talks/stewart_brand_proclaims_4_environmental_heresies.html
http://www.ted.com/talks/blaise_aguera_y_arcas_demos_photosynth.html
http://www.ted.com/talks/james_cameron_before_avatar_a_curious_boy.html
http://www.ted.com/talks/james_randi.html
http://www.ted.com/talks/juan_enriquez_shares_mindboggling_new_science.html
http://www.ted.com/talks/seth_godin_on_sliced_bread.html
http://www.ted.com/talks/maz_jobrani_make_jokes_not_bombs.html
http://www.ted.com/talks/janine_benyus_biomimicry_in_action.html
http://www.ted.com/talks/david_deutsch_a_new_way_to_explain_explanation.html
http://www.ted.com/talks/michael_sandel_the_lost_art_of_democratic_debate.html
http://www.ted.com/talks/j_j_abrams_mystery_box.html
http://www.ted.com/talks/vilayanur_ramachandran_on_your_mind.html
http://www.ted.com/talks/ellen_gustafson_obesity_hunger_1_global_food_issue.html
http://www.ted.com/talks/vs_ramachandran_the_neurons_that_shaped_civilization.html
http://www.ted.com/talks/a_j_jacobs_year_of_living_biblically.html
http://www.ted.com/talks/george_whitesides_a_lab_the_size_of_a_postage_stamp.html
http://www.ted.com/talks/jeremy_jackson.html
http://www.ted.com/talks/ellen_dunham_jones_retrofitting_suburbia.html
http://www.ted.com/talks/gordon_brown.html
http://www.ted.com/talks/julia_sweeney_has_the_talk.html
http://www.ted.com/talks/dan_ariely_on_our_buggy_moral_code.html
http://www.ted.com/talks/robert_sapolsky_the_uniqueness_of_humans.html
http://www.ted.com/talks/paul_debevec_animates_a_photo_real_digital_face.html
http://www.ted.com/talks/oliver_sacks_what_hallucination_reveals_about_our_minds.html
http://www.ted.com/talks/lessig_nyed.html
http://www.ted.com/talks/larry_lessig_says_the_law_is_strangling_creativity.html
http://www.ted.com/talks/kary_mullis_next_gen_cure_for_killer_infections.html
http://www.ted.com/talks/stefana_broadbent_how_the_internet_enables_intimacy.html
http://www.ted.com/talks/henry_markram_supercomputing_the_brain_s_secrets.html
http://www.ted.com/talks/jonathan_klein_photos_that_changed_the_world.html
http://www.ted.com/talks/jesse_schell_when_games_invade_real_life.html
http://www.ted.com/talks/nick_veasey_exposing_the_invisible_1.html
http://www.ted.com/talks/bobby_mcferrin_hacks_your_brain_with_music.html
http://www.ted.com/talks/richard_dawkins_on_militant_atheism.html
http://www.ted.com/talks/eric_topol_the_wireless_future_of_medicine.html
http://www.ted.com/talks/david_cameron.html
http://www.ted.com/talks/elaine_morgan_says_we_evolved_from_aquatic_apes.html
http://www.ted.com/talks/diane_j_savino_the_case_for_same_sex_marriage.html
http://www.ted.com/talks/kevin_bales_how_to_combat_modern_slavery.html
http://www.ted.com/talks/kaki_king_rocks_out_to_pink_noise.html
http://www.ted.com/talks/marc_koska_the_devastating_toll_of_syringe_reuse.html
http://www.ted.com/talks/paul_stamets_on_6_ways_mushrooms_can_save_the_world.html
http://www.ted.com/talks/carolyn_steel_how_food_shapes_our_cities.html
http://www.ted.com/talks/rives_on_4_a_m.html
http://www.ted.com/talks/derek_sivers_keep_your_goals_to_yourself.html
http://www.ted.com/talks/sharmeen_obaid_chinoy_inside_a_school_for_suicide_bombers.html
http://www.ted.com/talks/sunitha_krishnan_tedindia.html
http://www.ted.com/talks/daniel_kraft_invents_a_better_way_to_harvest_bone_marrow.html
http://www.ted.com/talks/shashi_tharoor.html
http://www.ted.com/talks/david_hanson_robots_that_relate_to_you.html
http://www.ted.com/talks/susan_shaw_the_oil_spill_s_toxic_trade_off.html
http://www.ted.com/talks/richard_sears_planning_for_the_end_of_oil.html
http://www.ted.com/talks/dean_kamen_the_emotion_behind_invention.html
http://www.ted.com/talks/eve_ensler_embrace_your_inner_girl.html
http://www.ted.com/talks/the_design_genius_of_charles_and_ray_eames.html
http://www.ted.com/talks/aimee_mullins_the_opportunity_of_adversity.html
http://www.ted.com/talks/mary_roach_10_things_you_didn_t_know_about_orgasm.html
http://www.ted.com/talks/nathan_myhrvold_could_this_laser_zap_malaria.html
http://www.ted.com/talks/kamal_meattle_on_how_to_grow_your_own_fresh_air.html
http://www.ted.com/talks/peter_eigen_how_to_expose_the_corrupt.html
http://www.ted.com/talks/theo_jansen_creates_new_creatures.html
http://www.ted.com/talks/johnny_lee_demos_wii_remote_hacks.html
http://www.ted.com/talks/jacek_utko_asks_can_design_save_the_newspaper.html
http://www.ted.com/talks/robert_full_learning_from_the_gecko_s_tail.html
http://www.ted.com/talks/john_lloyd_inventories_the_invisible.html
http://www.ted.com/talks/gary_lauder_s_new_traffic_sign_take_turns.html
http://www.ted.com/talks/anthony_atala_growing_organs_engineering_tissue.html
http://www.ted.com/talks/natalie_merchant_sings_old_poems_to_life.html
http://www.ted.com/talks/paul_collier_s_new_rules_for_rebuilding_a_broken_nation.html
http://www.ted.com/talks/keith_barry_does_brain_magic.html
http://www.ted.com/talks/john_gerzema_the_post_crisis_consumer.html
http://www.ted.com/talks/arthur_benjamin_does_mathemagic.html
http://www.ted.com/talks/taylor_mali_what_teachers_make.html
http://www.ted.com/talks/mark_roth_suspended_animation.html
http://www.ted.com/talks/magnus_larsson_turning_dunes_into_architecture.html
http://www.ted.com/talks/tim_brown_on_creativity_and_play.html
http://www.ted.com/talks/paul_romer.html
http://www.ted.com/talks/clay_shirky_on_institutions_versus_collaboration.html
http://www.ted.com/talks/evan_grant_cymatics.html
http://www.ted.com/talks/alan_siegel_let_s_simplify_legal_jargon.html
http://www.ted.com/talks/esther_duflo_social_experiments_to_fight_poverty.html
http://www.ted.com/talks/kevin_stone_the_bio_future_of_joint_replacement.html
http://www.ted.com/talks/ron_eglash_on_african_fractals.html
http://www.ted.com/talks/evgeny_morozov_is_the_internet_what_orwell_feared.html
http://www.ted.com/talks/aimee_mullins_prosthetic_aesthetics.html
http://www.ted.com/talks/philip_howard.html
http://www.ted.com/talks/mark_bittman_on_what_s_wrong_with_what_we_eat.html
http://www.ted.com/talks/dennis_hong_my_seven_species_of_robot.html
http://www.ted.com/talks/emmanuel_jal_the_music_of_a_war_child.html
http://www.ted.com/talks/john_delaney_wiring_an_interactive_ocean.html
http://www.ted.com/talks/evelyn_glennie_shows_how_to_listen.html
http://www.ted.com/talks/richard_st_john_success_is_a_continuous_journey.html
http://www.ted.com/talks/ananda_shankar_jayant_fights_cancer_with_a_dance.html
http://www.ted.com/talks/david_gallo_shows_underwater_astonishments.html
http://www.ted.com/talks/lisa_margonelli_the_political_chemistry_of_oil.html
http://www.ted.com/talks/parag_khanna_maps_the_future_of_countries.html
http://www.ted.com/talks/johan_rockstrom_let_the_environment_guide_our_development.html
http://www.ted.com/talks/capt_charles_moore_on_the_seas_of_plastic.html
http://www.ted.com/talks/isabel_allende_tells_tales_of_passion.html
http://www.ted.com/talks/michael_shermer_on_believing_strange_things.html
http://www.ted.com/talks/bill_gross_on_new_energy.html
http://www.ted.com/talks/rachel_armstrong_architecture_that_repairs_itself.html
http://www.ted.com/talks/george_whitesides_toward_a_science_of_simplicity.html
http://www.ted.com/talks/rob_hopkins_transition_to_a_world_without_oil.html
http://www.ted.com/talks/anil_gupta_india_s_hidden_hotbeds_of_invention.html
http://www.ted.com/talks/roz_savage_why_i_m_rowing_across_the_pacific.html
http://www.ted.com/talks/nalini_nadkarni_life_science_in_prison.html
http://www.ted.com/talks/omar_ahmad_political_change_with_pen_and_paper.html
http://www.ted.com/talks/jonathan_haidt_on_the_moral_mind.html
http://www.ted.com/talks/randy_pausch_really_achieving_your_childhood_dreams.html
http://www.ted.com/talks/srikumar_rao_plug_into_your_hard_wired_happiness.html
http://www.ted.com/talks/john_kasaona_from_poachers_to_caretakers.html
http://www.ted.com/talks/jonathan_harris_tells_the_web_s_secret_stories.html
http://www.ted.com/talks/philippe_starck_thinks_deep_on_design.html
http://www.ted.com/talks/shai_agassi_on_electric_cars.html
http://www.ted.com/talks/philip_zimbardo_on_the_psychology_of_evil.html
http://www.ted.com/talks/gever_tulley_s_tinkering_school_in_action.html
http://www.ted.com/talks/golan_levin_ted2009.html
http://www.ted.com/talks/david_agus_a_new_strategy_in_the_war_on_cancer.html
http://www.ted.com/talks/jamie_heywood_the_big_idea_my_brother_inspired.html
http://www.ted.com/talks/jane_poynter_life_in_biosphere_2.html
http://www.ted.com/talks/kevin_kelly_tells_technology_s_epic_story.html
http://www.ted.com/talks/bertrand_piccard_s_solar_powered_adventure.html
http://www.ted.com/talks/lewis_pugh_swims_the_north_pole.html
http://www.ted.com/talks/lee_hotz_inside_an_antarctic_time_machine.html
http://www.ted.com/talks/willard_wigan_hold_your_breath_for_micro_sculpture.html
http://www.ted.com/talks/sylvia_earle_s_ted_prize_wish_to_protect_our_oceans.html
http://www.ted.com/talks/jamil_abu_wardeh_bringing_comedy_to_the_axis_of_evil.html
http://www.ted.com/talks/dave_eggers_makes_his_ted_prize_wish_once_upon_a_school.html
http://www.ted.com/talks/ed_ulbrich_shows_how_benjamin_button_got_his_face.html
http://www.ted.com/talks/sean_gourley_on_the_mathematics_of_war.html
http://www.ted.com/talks/mihaly_csikszentmihalyi_on_flow.html
http://www.ted.com/talks/jay_walker_on_the_world_s_english_mania.html
http://www.ted.com/talks/his_holiness_the_karmapa_the_technology_of_the_heart.html
http://www.ted.com/talks/chris_jordan_pictures_some_shocking_stats.html
http://www.ted.com/talks/jeff_han_demos_his_breakthrough_touchscreen.html
http://www.ted.com/talks/catherine_mohr_builds_green.html
http://www.ted.com/talks/raghava_kk_five_lives_of_an_artist.html
http://www.ted.com/talks/matthieu_ricard_on_the_habits_of_happiness.html
http://www.ted.com/talks/susan_savage_rumbaugh_on_apes_that_write.html
http://www.ted.com/talks/martin_luther_king_jr_i_have_a_dream.html
http://www.ted.com/talks/natasha_tsakos_multimedia_theatrical_adventure.html
http://www.ted.com/talks/sam_martin_builds_a_room_of_his_own.html
http://www.ted.com/talks/ray_kurzweil_announces_singularity_university.html
http://www.ted.com/talks/ze_frank_s_nerdcore_comedy.html
http://www.ted.com/talks/joshua_klein_on_the_intelligence_of_crows.html
http://www.ted.com/talks/sendhil_mullainathan.html
http://www.ted.com/talks/jim_toomey_learning_from_sherman_the_shark.html
http://www.ted.com/talks/scott_mccloud_on_comics.html
http://www.ted.com/talks/helen_fisher_tells_us_why_we_love_cheat.html
http://www.ted.com/talks/steven_cowley_fusion_is_energy_s_future.html
http://www.ted.com/talks/peter_tyack_the_intriguing_sound_of_marine_mammals.html
http://www.ted.com/talks/liz_coleman_s_call_to_reinvent_liberal_arts_education.html
http://www.ted.com/talks/sugata_mitra_shows_how_kids_teach_themselves.html
http://www.ted.com/talks/tom_wujec_demos_the_13th_century_astrolabe.html
http://www.ted.com/talks/misha_glenny_investigates_global_crime_networks.html
http://www.ted.com/talks/david_pogue_says_simplicity_sells.html
http://www.ted.com/talks/stephen_palumbi_following_the_mercury_trail.html
http://www.ted.com/talks/ray_kurzweil_on_how_technology_will_transform_us.html
http://www.ted.com/talks/shaffi_mather_a_new_way_to_fight_corruption.html
http://www.ted.com/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves.html
http://www.ted.com/talks/yann_arthus_bertrand_captures_fragile_earth_in_wide_angle.html
http://www.ted.com/talks/nick_sears_demos_the_orb.html
http://www.ted.com/talks/david_griffin_on_how_photography_connects.html
http://www.ted.com/talks/steven_pinker_on_the_myth_of_violence.html
http://www.ted.com/talks/anupam_mishra_the_ancient_ingenuity_of_water_harvesting.html
http://www.ted.com/talks/tom_rielly_delivers_a_comic_send_up_of_ted2006.html
http://www.ted.com/talks/stuart_brown_says_play_is_more_than_fun_it_s_vital.html
http://www.ted.com/talks/gever_tulley_on_5_dangerous_things_for_kids.html
http://www.ted.com/talks/loretta_napoleoni_the_intricate_economics_of_terrorism.html
http://www.ted.com/talks/charles_leadbeater_on_innovation.html
http://www.ted.com/talks/don_norman_on_design_and_emotion.html
http://www.ted.com/talks/willie_smits_restores_a_rainforest.html
http://www.ted.com/talks/james_howard_kunstler_dissects_suburbia.html
http://www.ted.com/talks/stefan_sagmeister_shares_happy_design.html
http://www.ted.com/talks/charles_fleischer_insists_all_things_are_moleeds.html
http://www.ted.com/talks/david_carson_on_design.html
http://www.ted.com/talks/pawan_sinha_on_how_brains_learn_to_see.html
http://www.ted.com/talks/thelma_golden_how_art_gives_shape_to_cultural_change.html
http://www.ted.com/talks/joel_levine.html
http://www.ted.com/talks/bill_davenhall_your_health_depends_on_where_you_live.html
http://www.ted.com/talks/rachel_sussman_the_world_s_oldest_living_things.html
http://www.ted.com/talks/scott_kim_takes_apart_the_art_of_puzzles.html
http://www.ted.com/talks/karen_armstrong_let_s_revive_the_golden_rule.html
http://www.ted.com/talks/bonnie_bassler_on_how_bacteria_communicate.html
http://www.ted.com/talks/erin_mckean_redefines_the_dictionary.html
http://www.ted.com/talks/last_ditch_appeal_to_save_the_planet.html
http://www.ted.com/talks/edith_widder_glowing_life_in_an_underwater_world.html
http://www.ted.com/talks/josh_silver_demos_adjustable_liquid_filled_eyeglasses.html
http://www.ted.com/talks/nancy_etcoff_on_happiness_and_why_we_want_it.html
http://www.ted.com/talks/jim_fallon_exploring_the_mind_of_a_killer.html
http://www.ted.com/talks/herbie_hancock_s_all_star_set.html
http://www.ted.com/talks/lennart_green_does_close_up_card_magic.html
http://www.ted.com/talks/ryan_lobo_through_the_lens_of_compassion.html
http://www.ted.com/talks/miru_kim_s_underground_art.html
http://www.ted.com/talks/pilobolus_perform_symbiosis.html
http://www.ted.com/talks/jose_abreu_on_kids_transformed_by_music.html
http://www.ted.com/talks/dimitar_sasselov_how_we_found_hundreds_of_potential_earth_like_planets.html
http://www.ted.com/talks/becky_blanton_the_year_i_was_homeless.html
http://www.ted.com/talks/daniel_libeskind_s_17_words_of_architectural_inspiration.html
http://www.ted.com/talks/ex_moonie_diane_benscoter_how_cults_think.html
http://www.ted.com/talks/dan_barber_s_surprising_foie_gras_parable.html
http://www.ted.com/talks/imogen_heap_wait.html
http://www.ted.com/talks/aubrey_de_grey_says_we_can_avoid_aging.html
http://www.ted.com/talks/joshua_prince_ramus_building_a_theater_that_remakes_itself.html
http://www.ted.com/talks/jane_chen_a_warm_embrace_that_saves_lives.html
http://www.ted.com/talks/ben_dunlap_talks_about_a_passionate_life.html
http://www.ted.com/talks/eric_mead_the_magic_of_the_placebo.html
http://www.ted.com/talks/jonathan_drori_every_pollen_grain_has_a_story.html
http://www.ted.com/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy.html
http://www.ted.com/talks/carl_honore_praises_slowness.html
http://www.ted.com/talks/edward_burtynsky_photographs_the_landscape_of_oil.html
http://www.ted.com/talks/eric_lewis_strikes_chords_to_rock_the_jazz_world.html
http://www.ted.com/talks/katherine_fulton_you_are_the_future_of_philanthropy.html
http://www.ted.com/talks/clifford_stoll_on_everything.html
http://www.ted.com/talks/eric_dishman_take_health_care_off_the_mainframe.html
http://www.ted.com/talks/amy_tan_on_creativity.html
http://www.ted.com/talks/ian_goldin_navigating_our_global_future.html
http://www.ted.com/talks/martin_seligman_on_the_state_of_psychology.html
http://www.ted.com/talks/julia_sweeney_on_letting_go_of_god.html
http://www.ted.com/talks/bill_stone_explores_the_earth_and_space.html
http://www.ted.com/talks/jacqueline_novogratz_a_third_way_to_think_about_aid.html
http://www.ted.com/talks/mallika_sarabhai.html
http://www.ted.com/talks/carolyn_porco_flies_us_to_saturn.html
http://www.ted.com/talks/jeff_hawkins_on_how_brain_science_will_change_computing.html
http://www.ted.com/talks/a_choir_as_big_as_the_internet.html
http://www.ted.com/talks/brian_greene_on_string_theory.html
http://www.ted.com/talks/dee_boersma_pay_attention_to_penguins.html
http://www.ted.com/talks/enric_sala.html
http://www.ted.com/talks/joann_kuchera_morin_tours_the_allosphere.html
http://www.ted.com/talks/kwabena_boahen_on_a_computer_that_works_like_the_brain.html
http://www.ted.com/talks/shukla_bose_teaching_one_child_at_a_time.html
http://www.ted.com/talks/marc_pachter_the_art_of_the_interview.html
http://www.ted.com/talks/steve_truglia_a_leap_from_the_edge_of_space.html
http://www.ted.com/talks/cynthia_schneider_the_surprising_spread_of_idol_tv.html
http://www.ted.com/talks/nina_jablonski_breaks_the_illusion_of_skin_color.html
http://www.ted.com/talks/dan_dennett_on_dangerous_memes.html
http://www.ted.com/talks/anand_agarawala_demos_his_bumptop_desktop.html
http://www.ted.com/talks/william_kamkwamba_on_building_a_windmill.html
http://www.ted.com/talks/ray_anderson_on_the_business_logic_of_sustainability.html
http://www.ted.com/talks/margaret_wertheim_crochets_the_coral_reef.html
http://www.ted.com/talks/william_mcdonough_on_cradle_to_cradle_design.html
http://www.ted.com/talks/john_maeda_on_the_simple_life.html
http://www.ted.com/talks/rick_warren_on_a_life_of_purpose.html
http://www.ted.com/talks/thulasiraj_ravilla_how_low_cost_eye_care_can_be_world_class.html
http://www.ted.com/talks/kevin_kelly_on_how_technology_evolves.html
http://www.ted.com/talks/olafur_eliasson_playing_with_space_and_light.html
http://www.ted.com/talks/nandan_nilekani_s_ideas_for_india_s_future.html
http://www.ted.com/talks/michael_sandel_what_s_the_right_thing_to_do.html
http://www.ted.com/talks/garrett_lisi_on_his_theory_of_everything.html
http://www.ted.com/talks/sirena_huang_dazzles_on_violin.html
http://www.ted.com/talks/rives_controls_the_internet.html
http://www.ted.com/talks/karen_armstrong_makes_her_ted_prize_wish_the_charter_for_compassion.html
http://www.ted.com/talks/cameron_sinclair_on_open_source_architecture.html
http://www.ted.com/talks/mathieu_lehanneur_demos_science_inspired_design.html
http://www.ted.com/talks/robert_wright_the_evolution_of_compassion.html
http://www.ted.com/talks/majora_carter_s_tale_of_urban_renewal.html
http://www.ted.com/talks/christopher_decharms_scans_the_brain_in_real_time.html
http://www.ted.com/talks/ueli_gegenschatz_extreme_wingsuit_jumping.html
http://www.ted.com/talks/susan_blackmore_on_memes_and_temes.html
http://www.ted.com/talks/richard_feynman.html
http://www.ted.com/talks/michael_pollan_gives_a_plant_s_eye_view.html
http://www.ted.com/talks/brian_cox_on_cern_s_supercollider.html
http://www.ted.com/talks/richard_baraniuk_on_open_source_learning.html
http://www.ted.com/talks/astonishing_performance_by_a_venezuelan_youth_orchestra_1.html
http://www.ted.com/talks/alisa_miller_shares_the_news_about_the_news.html
http://www.ted.com/talks/paula_scher_gets_serious.html
http://www.ted.com/talks/renny_gleeson_on_antisocial_phone_tricks.html
http://www.ted.com/talks/tom_shannon_the_painter_and_the_pendulum.html
http://www.ted.com/talks/ravin_agrawal_10_young_indian_artists_to_watch.html
http://www.ted.com/talks/joseph_pine_on_what_consumers_want.html
http://www.ted.com/talks/yossi_vardi_fights_local_warming.html
http://www.ted.com/talks/adam_savage_s_obsessions.html
http://www.ted.com/talks/woody_norris_invents_amazing_things.html
http://www.ted.com/talks/billy_graham_on_technology_faith_and_suffering.html
http://www.ted.com/talks/john_la_grou_plugs_smart_power_outlets_1.html
http://www.ted.com/talks/dan_dennett_s_response_to_rick_warren.html
http://www.ted.com/talks/george_dyson_at_the_birth_of_the_computer.html
http://www.ted.com/talks/rachel_pike_the_science_behind_a_climate_headline.html
http://www.ted.com/talks/pete_alcorn_s_vision_of_a_better_world.html
http://www.ted.com/talks/richard_dawkins_on_our_queer_universe.html
http://www.ted.com/talks/jimmy_wales_on_the_birth_of_wikipedia.html
http://www.ted.com/talks/ursus_wehrli_tidies_up_art.html
http://www.ted.com/talks/jill_tarter_s_call_to_join_the_seti_search.html
http://www.ted.com/talks/rives_tells_a_story_of_mixed_emoticons.html
http://www.ted.com/talks/janine_benyus_shares_nature_s_designs.html
http://www.ted.com/talks/michelle_obama.html
http://www.ted.com/talks/howard_rheingold_on_collaboration.html
http://www.ted.com/talks/mike_degruy_hooked_by_octopus.html
http://www.ted.com/talks/naturally_7_jams_fly_baby_with_an_orchestra_of_vocals.html
http://www.ted.com/talks/stefan_sagmeister_on_what_he_has_learned.html
http://www.ted.com/talks/david_bolinsky_animates_a_cell.html
http://www.ted.com/talks/asher_hasan_s_message_of_peace_from_pakistan.html
http://www.ted.com/talks/alan_kay_shares_a_powerful_idea_about_ideas.html
http://www.ted.com/talks/james_nachtwey_s_searing_pictures_of_war.html
http://www.ted.com/talks/jennifer_lin_improvs_piano_magic.html
http://www.ted.com/talks/frederick_balagadde_bio_lab_on_a_microchip.html
http://www.ted.com/talks/garik_israelian_what_s_inside_a_star.html
http://www.ted.com/talks/vishal_vaid_s_hypnotic_song.html
http://www.ted.com/talks/yochai_benkler_on_the_new_open_source_economics.html
http://www.ted.com/talks/al_gore_s_new_thinking_on_the_climate_crisis.html
http://www.ted.com/talks/pamelia_kurstin_plays_the_theremin.html
http://www.ted.com/talks/eddi_reader_sings_about_what_you_ve_got.html
http://www.ted.com/talks/michael_moschen_juggles_rhythm_and_motion.html
http://www.ted.com/talks/shereen_el_feki_pop_culture_in_the_arab_world.html
http://www.ted.com/talks/jane_goodall_at_tedglobal_07.html
http://www.ted.com/talks/ann_cooper_talks_school_lunches.html
http://www.ted.com/talks/jacqueline_novogratz_on_an_escape_from_poverty.html
http://www.ted.com/talks/david_s_rose_on_pitching_to_vcs.html
http://www.ted.com/talks/hans_rosling_the_truth_about_hiv.html
http://www.ted.com/talks/rory_bremner_s_one_man_world_summit.html
http://www.ted.com/talks/jennifer_8_lee_looks_for_general_tso.html
http://www.ted.com/talks/juliana_machado_ferreira.html
http://www.ted.com/talks/charles_anderson_discovers_dragonflies_that_cross_oceans.html
http://www.ted.com/talks/patsy_rodenburg_why_i_do_theater.html
http://www.ted.com/talks/sarah_jones_as_a_one_woman_global_village.html
http://www.ted.com/talks/david_deutsch_on_our_place_in_the_cosmos.html
http://www.ted.com/talks/edward_burtynsky_on_manufactured_landscapes.html
http://www.ted.com/talks/john_francis_walks_the_earth.html
http://www.ted.com/talks/jonathan_drori_why_we_re_storing_billions_of_seeds.html
http://www.ted.com/talks/craig_venter_is_on_the_verge_of_creating_synthetic_life.html
http://www.ted.com/talks/jan_chipchase_on_our_mobile_phones.html
http://www.ted.com/talks/cameron_sinclair_the_refugees_of_boom_and_bust.html
http://www.ted.com/talks/pistol.html
http://www.ted.com/talks/andrea_ghez_the_hunt_for_a_supermassive_black_hole.html
http://www.ted.com/talks/peter_donnelly_shows_how_stats_fool_juries.html
http://www.ted.com/talks/romulus_whitaker_the_real_danger_lurking_in_the_water.html
http://www.ted.com/talks/kevin_surace_fixing_drywall_to_heal_the_planet.html
http://www.ted.com/talks/jane_goodall_on_what_separates_us_from_the_apes.html
http://www.ted.com/talks/sean_carroll_on_the_arrow_of_time.html
http://www.ted.com/talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual.html
http://www.ted.com/talks/patrick_awuah_on_educating_leaders.html
http://www.ted.com/talks/stephen_hawking_asks_big_questions_about_the_universe.html
http://www.ted.com/talks/jaime_lerner_sings_of_the_city.html
http://www.ted.com/talks/ken_kamler_medical_miracle_on_everest.html
http://www.ted.com/talks/gordon_brown_on_global_ethic_vs_national_interest.html
http://www.ted.com/talks/robert_wright_on_optimism.html
http://www.ted.com/talks/e_o_wilson_on_saving_life_on_earth.html
http://www.ted.com/talks/thomas_barnett_draws_a_new_map_for_peace.html
http://www.ted.com/talks/kartick_satyanarayan_how_we_rescued_the_dancing_bears.html
http://www.ted.com/talks/steven_pinker_on_language_and_thought.html
http://www.ted.com/talks/helen_fisher_studies_the_brain_in_love.html
http://www.ted.com/talks/will_wright_makes_toys_that_make_worlds.html
http://www.ted.com/talks/steven_levitt_analyzes_crack_economics.html
http://www.ted.com/talks/arthur_ganson_makes_moving_sculpture.html
http://www.ted.com/talks/david_perry_on_videogames.html
http://www.ted.com/talks/eve_ensler_on_happiness_in_body_and_soul.html
http://www.ted.com/talks/david_keith_s_surprising_ideas_on_climate_change.html
http://www.ted.com/talks/al_seckel_says_our_brains_are_mis_wired.html
http://www.ted.com/talks/kenichi_ebina_s_magic_moves.html
http://www.ted.com/talks/andrew_mwenda_takes_a_new_look_at_africa.html
http://www.ted.com/talks/ray_zahab_treks_to_the_south_pole.html
http://www.ted.com/talks/jared_diamond_on_why_societies_collapse.html
http://www.ted.com/talks/eva_vertes_looks_to_the_future_of_medicine.html
http://www.ted.com/talks/jonathan_harris_collects_stories.html
http://www.ted.com/talks/dean_ornish_says_your_genes_are_not_your_fate.html
http://www.ted.com/talks/murray_gell_mann_on_beauty_and_truth_in_physics.html
http://www.ted.com/talks/chris_abani_muses_on_humanity.html
http://www.ted.com/talks/alex_steffen_sees_a_sustainable_future.html
http://www.ted.com/talks/laura_trice_suggests_we_all_say_thank_you.html
http://www.ted.com/talks/michael_merzenich_on_the_elastic_brain.html
http://www.ted.com/talks/bruce_bueno_de_mesquita_predicts_iran_s_future.html
http://www.ted.com/talks/paul_bennett_finds_design_in_the_details.html
http://www.ted.com/talks/bjorn_lomborg_sets_global_priorities.html
http://www.ted.com/talks/bill_strickland_makes_change_with_a_slide_show.html
http://www.ted.com/talks/emily_levine_s_theory_of_everything.html
http://www.ted.com/talks/erik_hersman_on_reporting_crisis_via_texting.html
http://www.ted.com/talks/yves_behar_on_designing_objects_that_tell_stories.html
http://www.ted.com/talks/ross_lovegrove_shares_organic_designs.html
http://www.ted.com/talks/alan_russell_on_regenerating_our_bodies.html
http://www.ted.com/talks/matt_weinstein_what_bernie_madoff_couldn_t_steal_from_me.html
http://www.ted.com/talks/publisher_felix_dennis_odes_to_vice_and_consequences.html
http://www.ted.com/talks/eve_ensler_on_security.html
http://www.ted.com/talks/david_pogue_on_cool_phone_tricks.html
http://www.ted.com/talks/george_ayittey_on_cheetahs_vs_hippos.html
http://www.ted.com/talks/neil_gershenfeld_on_fab_labs.html
http://www.ted.com/talks/eddi_reader_sings_kiteflyer_s_hill.html
http://www.ted.com/talks/wade_davis_on_the_worldwide_web_of_belief_and_ritual.html
http://www.ted.com/talks/sherwin_nuland_on_electroshock_therapy.html
http://www.ted.com/talks/dean_ornish_on_the_world_s_killer_diet.html
http://www.ted.com/talks/cat_laine_engineering_a_better_life_for_all.html
http://www.ted.com/talks/jeff_bezos_on_the_next_web_innovation.html
http://www.ted.com/talks/martin_rees_asks_is_this_our_final_century.html
http://www.ted.com/talks/brenda_laurel_on_making_games_for_girls.html
http://www.ted.com/talks/milton_glaser_on_using_design_to_make_ideas_new.html
http://www.ted.com/talks/saul_griffith_on_kites_as_the_future_of_renewable_energy.html
http://www.ted.com/talks/matthew_white_gives_the_euphonium_a_new_voice.html
http://www.ted.com/talks/matthew_childs_9_rules_of_rock_climbing.html
http://www.ted.com/talks/robert_thurman_on_compassion.html
http://www.ted.com/talks/rick_smolan_tells_the_story_of_a_girl.html
http://www.ted.com/talks/frans_lanting_s_lyrical_nature_photos.html
http://www.ted.com/talks/paul_collier_shares_4_ways_to_help_the_bottom_billion.html
http://www.ted.com/talks/tod_machover_and_dan_ellsey_play_new_music.html
http://www.ted.com/talks/golan_levin_on_software_as_art.html
http://www.ted.com/talks/einstein_the_parrot_talks_and_squawks.html
http://www.ted.com/talks/john_doerr_sees_salvation_and_profit_in_greentech.html
http://www.ted.com/talks/burt_rutan_sees_the_future_of_space.html
http://www.ted.com/talks/benjamin_wallace_on_the_price_of_happiness.html
http://www.ted.com/talks/bob_thurman_says_we_can_be_buddhas.html
http://www.ted.com/talks/paola_antonelli_treats_design_as_art.html
http://www.ted.com/talks/iqbal_quadir_says_mobiles_fight_poverty.html
http://www.ted.com/talks/pw_singer_on_robots_of_war.html
http://www.ted.com/talks/george_smoot_on_the_design_of_the_universe.html
http://www.ted.com/talks/richard_preston_on_the_giant_trees.html
http://www.ted.com/talks/mae_jemison_on_teaching_arts_and_sciences_together.html
http://www.ted.com/talks/robert_ballard_on_exploring_the_oceans.html
http://www.ted.com/talks/al_gore_warns_on_latest_climate_trends.html
http://www.ted.com/talks/daniel_goleman_on_compassion.html
http://www.ted.com/talks/deborah_gordon_digs_ants.html
http://www.ted.com/talks/jeff_skoll_makes_movies_that_make_change.html
http://www.ted.com/talks/alex_tabarrok_foresees_economic_growth.html
http://www.ted.com/talks/steven_strogatz_on_sync.html
http://www.ted.com/talks/swami_dayananda_saraswati.html
http://www.ted.com/talks/jay_walker_s_library_of_human_imagination.html
http://www.ted.com/talks/dan_dennett_on_our_consciousness.html
http://www.ted.com/talks/the_raspyni_brothers_juggle_and_jest.html
http://www.ted.com/talks/adam_grosser_and_his_sustainable_fridge.html
http://www.ted.com/talks/louise_fresco_on_feeding_the_whole_world.html
http://www.ted.com/talks/chris_anderson_of_wired_on_tech_s_long_tail.html
http://www.ted.com/talks/robert_neuwirth_on_our_shadow_cities.html
http://www.ted.com/talks/sophal_ear_escaping_the_khmer_rouge.html
http://www.ted.com/talks/ian_dunbar_on_dog_friendly_dog_training.html
http://www.ted.com/talks/dean_ornish_on_healing.html
http://www.ted.com/talks/sheila_patek_clocks_the_fastest_animals.html
http://www.ted.com/talks/brewster_kahle_builds_a_free_digital_library.html
http://www.ted.com/talks/nellie_mckay_sings_feminists_and_if_i_had_you.html
http://www.ted.com/talks/joshua_prince_ramus_on_seattle_s_library.html
http://www.ted.com/talks/amory_lovins_on_winning_the_oil_endgame.html
http://www.ted.com/talks/peter_reinhart_on_bread.html
http://www.ted.com/talks/siegfried_woldhek_shows_how_he_found_the_true_face_of_leonardo.html
http://www.ted.com/talks/dennis_vanengelsdorp_a_plea_for_bees.html
http://www.ted.com/talks/eric_lewis_plays_chaos_and_harmony.html
http://www.ted.com/talks/chris_bangle_says_great_cars_are_art.html
http://www.ted.com/talks/al_gore_on_averting_climate_crisis.html
http://www.ted.com/talks/patricia_burchat_leads_a_search_for_dark_energy.html
http://www.ted.com/talks/mena_trott_tours_her_blog_world.html
http://www.ted.com/talks/edwidge_danticat_stories_of_haiti.html
http://www.ted.com/talks/nicholas_negroponte_takes_olpc_to_colombia.html
http://www.ted.com/talks/hod_lipson_builds_self_aware_robots.html
http://www.ted.com/talks/kary_mullis_on_what_scientists_do.html
http://www.ted.com/talks/sergey_brin_and_larry_page_on_google.html
http://www.ted.com/talks/nicholas_negroponte_on_one_laptop_per_child.html
http://www.ted.com/talks/dean_kamen_previews_a_new_prosthetic_arm.html
http://www.ted.com/talks/james_burchfield_plays_invisible_turntables.html
http://www.ted.com/talks/david_gallo_on_life_in_the_deep_oceans.html
http://www.ted.com/talks/aimee_mullins_on_running.html
http://www.ted.com/talks/juan_enriquez_on_genomics_and_our_future.html
http://www.ted.com/talks/the_inspiration_of_second_life.html
http://www.ted.com/talks/robert_full_on_engineering_and_evolution.html
http://www.ted.com/talks/david_kelley_on_human_centered_design.html
http://www.ted.com/talks/ben_saunders_skis_to_the_north_pole.html
http://www.ted.com/talks/david_hoffman_on_losing_everything.html
http://www.ted.com/talks/raul_midon_plays_all_the_answers_and_tembererana.html
http://www.ted.com/talks/niels_diffrient_rethinks_the_way_we_sit_at_work.html
http://www.ted.com/talks/eva_zeisel_on_the_playful_search_for_beauty.html
http://www.ted.com/talks/gregory_stock_to_upgrade_is_human.html
http://www.ted.com/talks/jacqueline_novogratz_on_patient_capitalism.html
http://www.ted.com/talks/phil_borges_on_endangered_cultures.html
http://www.ted.com/talks/steven_pinker_chalks_it_up_to_the_blank_slate.html
http://www.ted.com/talks/juan_enriquez_wants_to_grow_energy.html
http://www.ted.com/talks/bono_s_call_to_action_for_africa.html
http://www.ted.com/talks/natalie_macmaster_fiddles_in_reel_time.html
http://www.ted.com/talks/robin_chase_on_zipcar_and_her_next_big_idea.html
http://www.ted.com/talks/carolyn_porco_could_a_saturn_moon_harbor_life.html
http://www.ted.com/talks/natalie_macmaster_and_donnell_leahy_play_the_cape_breton_fiddle.html
http://www.ted.com/talks/steven_levitt_on_child_carseats.html
http://www.ted.com/talks/jonathan_drori_on_what_we_think_we_know.html
http://www.ted.com/talks/andy_hobsbawm_says_do_the_green_thing.html
http://www.ted.com/talks/paola_antonelli_previews_design_and_the_elastic_mind.html
http://www.ted.com/talks/stephen_petranek_counts_down_to_armageddon.html
http://www.ted.com/talks/james_surowiecki_on_the_turning_point_for_social_media.html
http://www.ted.com/talks/ory_okolloh_on_becoming_an_activist.html
http://www.ted.com/talks/tom_shannon_s_magnetic_sculpture.html
http://www.ted.com/talks/liz_diller_plays_with_architecture.html
http://www.ted.com/talks/torsten_reil_studies_biology_to_make_animation.html
http://www.ted.com/talks/james_watson_on_how_he_discovered_dna.html
http://www.ted.com/talks/ashraf_ghani_on_rebuilding_broken_states.html
http://www.ted.com/talks/steven_johnson_tours_the_ghost_map.html
http://www.ted.com/talks/nathan_wolfe_hunts_for_the_next_aids.html
http://www.ted.com/talks/tom_honey_on_god_and_the_tsunami.html
http://www.ted.com/talks/richard_pyle_dives_the_twilight_zone.html
http://www.ted.com/talks/frank_gehry_asks_then_what.html
http://www.ted.com/talks/larry_brilliant_wants_to_stop_pandemics.html
http://www.ted.com/talks/peter_diamandis_on_our_next_giant_leap.html
http://www.ted.com/talks/rodney_brooks_on_robots.html
http://www.ted.com/talks/jacqueline_novogratz_invests_in_ending_poverty.html
http://www.ted.com/talks/nalini_nadkani_on_conserving_the_canopy.html
http://www.ted.com/talks/peter_ward_on_mass_extinctions.html
http://www.ted.com/talks/chris_abani_on_the_stories_of_africa.html
http://www.ted.com/talks/chris_anderson_shares_his_vision_for_ted.html
http://www.ted.com/talks/norman_foster_s_green_agenda.html
http://www.ted.com/talks/david_pogue_on_the_music_wars.html
http://www.ted.com/talks/anna_deavere_smith_s_american_character.html
http://www.ted.com/talks/luca_turin_on_the_science_of_scent.html
http://www.ted.com/talks/caleb_chung_plays_with_pleo.html
http://www.ted.com/talks/paul_rothemund_details_dna_folding.html
http://www.ted.com/talks/tierney_thys_swims_with_the_giant_sunfish.html
http://www.ted.com/talks/rives_remixes_ted2006.html
http://www.ted.com/talks/hector_ruiz_on_connecting_the_world.html
http://www.ted.com/talks/emily_oster_flips_our_thinking_on_aids_in_africa.html
http://www.ted.com/talks/ngozi_okonjo_iweala_on_doing_business_in_africa.html
http://www.ted.com/talks/raul_midon_plays_everybody_and_peace_on_earth.html
http://www.ted.com/talks/jackie_tabick.html
http://www.ted.com/talks/james_forbes.html
http://www.ted.com/talks/peter_hirshberg_on_tv_and_the_web.html
http://www.ted.com/talks/lakshmi_pratury_on_letter_writing.html
http://www.ted.com/talks/carmen_agra_deedy_spins_stories.html
http://www.ted.com/talks/robert_full_on_animal_movement.html
http://www.ted.com/talks/spencer_wells_is_building_a_family_tree_for_all_humanity.html
http://www.ted.com/talks/ngozi_okonjo_iweala_on_aid_versus_trade.html
http://www.ted.com/talks/bruce_mccall_s_faux_nostalgia.html
http://www.ted.com/talks/samantha_power_on_a_complicated_hero.html
http://www.ted.com/talks/nate_silver_on_race_and_politics.html
http://www.ted.com/talks/thomas_dolby_and_rachelle_garniez.html
http://www.ted.com/talks/neil_turok_makes_his_ted_prize_wish.html
http://www.ted.com/talks/ernest_madu_on_world_class_health_care.html
http://www.ted.com/talks/brian_cox_what_went_wrong_at_the_lhc.html
http://www.ted.com/talks/steven_johnson_on_the_web_as_a_city.html
http://www.ted.com/talks/nellie_mckay_sings_the_dog_song.html
http://www.ted.com/talks/bill_clinton_on_rebuilding_rwanda.html
http://www.ted.com/talks/yves_behar_s_supercharged_motorcycle_design.html
http://www.ted.com/talks/deborah_scranton_on_her_war_tapes.html
http://www.ted.com/talks/peter_gabriel_fights_injustice_with_video.html
http://www.ted.com/talks/greg_lynn_on_organic_design.html
http://www.ted.com/talks/larry_brilliant_makes_the_case_for_optimism.html
http://www.ted.com/talks/virginia_postrel_on_glamour.html
http://www.ted.com/talks/moshe_safdie_on_building_uniqueness.html
http://www.ted.com/talks/toys_from_the_future.html
http://www.ted.com/talks/craig_venter_on_dna_and_the_sea.html
http://www.ted.com/talks/nick_bostrom_on_our_biggest_problems.html
http://www.ted.com/talks/allison_hunt_gets_a_new_hip.html
http://www.ted.com/talks/stewart_brand_on_squatter_cities.html
http://www.ted.com/talks/kristen_ashburn_s_heart_rending_pictures_of_aids.html
http://www.ted.com/talks/jakob_trollback_rethinks_the_music_video.html
http://www.ted.com/talks/penelope_boston.html
http://www.ted.com/talks/laurie_garrett_on_lessons_from_the_1918_flu.html
http://www.ted.com/talks/stewart_brand_on_the_long_now.html
http://www.ted.com/talks/vusi_mahlasela_sings_thula_mama.html
http://www.ted.com/talks/barry_schuler_genomics_101.html
http://www.ted.com/talks/stew_says_black_men_ski.html
http://www.ted.com/talks/gregory_petsko_on_the_coming_neurological_epidemic.html
http://www.ted.com/talks/george_dyson_on_project_orion.html
http://www.ted.com/talks/david_holt_plays_mountain_music.html
http://www.ted.com/talks/roy_gould_and_curtis_wong_preview_the_worldwide_telescope.html
http://www.ted.com/talks/lee_smolin_on_science_and_democracy.html
http://www.ted.com/talks/irwin_redlener_warns_of_nuclear_terrorism.html
http://www.ted.com/talks/nellie_mckay_sings_clonie_1.html
http://www.ted.com/talks/steve_jurvetson_on_model_rocketry.html
http://www.ted.com/talks/joe_derisi_hunts_the_next_killer_virus.html
http://www.ted.com/talks/rokia_traore_sings_m_bifo.html
http://www.ted.com/talks/doris_kearns_goodwin_on_learning_from_past_presidents.html
http://www.ted.com/talks/james_nachtwey_fights_xdrtb.html
http://www.ted.com/talks/sxip_shirey_at_the_breathing_place.html
http://www.ted.com/talks/david_macaulay_s_rome_antics.html
http://www.ted.com/talks/nathaniel_kahn_on_my_architect.html
http://www.ted.com/talks/paul_rothemund_casts_a_spell_with_dna.html
http://www.ted.com/talks/elene_gabre_madhin_on_ethiopian_economics.html
http://www.ted.com/talks/c_k_williams_reads_poetry_of_youth_and_age.html
http://www.ted.com/talks/jamais_cascio_looks_ahead.html
http://www.ted.com/talks/frank_gehry_as_a_young_rebel.html
http://www.ted.com/talks/jehane_noujaim_inspires_a_global_day_of_film.html
http://www.ted.com/talks/dean_kamen_on_inventing_and_giving.html
http://www.ted.com/talks/marvin_minsky_on_health_and_the_human_mind.html
http://www.ted.com/talks/isaac_mizrahi_on_fashion_and_creativity.html
http://www.ted.com/talks/murray_gell_mann_on_the_ancestor_of_language.html
http://www.ted.com/talks/saul_griffith_on_everyday_inventions.html
http://www.ted.com/talks/sasa_vucinic_invests_in_free_press.html
http://www.ted.com/talks/alison_jackson_looks_at_celebrity.html
http://www.ted.com/talks/sean_carroll_on_the_arrow_of_time_part_2.html
http://www.ted.com/talks/charles_elachi_on_the_mars_rovers.html
http://www.ted.com/talks/louise_leakey_digs_for_humanity_s_origins.html
http://www.ted.com/talks/jill_sobule_sings_to_al_gore.html
http://www.ted.com/talks/rob_forbes_on_ways_of_seeing.html
http://www.ted.com/talks/john_maeda_on_design.html
http://www.ted.com/talks/freeman_dyson_says_let_s_look_for_life_in_the_outer_solar_system.html
http://www.ted.com/talks/robert_fischell_on_medical_inventing.html
http://www.ted.com/talks/paul_sereno_digs_up_dinosaurs.html
http://www.ted.com/talks/rokia_traore_sings_kounandi.html
http://www.ted.com/talks/thom_mayne_on_architecture_as_connection.html
http://www.ted.com/talks/paul_moller_on_the_skycar.html
http://www.ted.com/talks/noah_feldman_says_politics_and_religion_are_technologies.html
http://www.ted.com/talks/bruno_bowden_folds_while_rufus_cappadocia_plays.html
http://www.ted.com/talks/corneille_ewango_is_a_hero_of_the_congo_forest.html
http://www.ted.com/talks/paul_maccready_flies_on_solar_wings.html
http://www.ted.com/talks/stephen_lawler_tours_microsoft_virtual_earth.html
http://www.ted.com/talks/euvin_naidoo_on_investing_in_africa.html
http://www.ted.com/talks/they_might_be_giants_play_at_8_30_am.html
http://www.ted.com/talks/michael_milken_on_activism.html
http://www.ted.com/talks/zeresenay_alemseged_looks_for_humanity_s_roots.html
http://www.ted.com/talks/newton_aduaka_tells_the_story_of_ezra.html
http://www.ted.com/talks/reinventing_the_car.html
http://www.ted.com/talks/the_jill_and_julia_show.html
http://www.ted.com/talks/ben_katchor_s_comics_of_old_new_york.html
http://www.ted.com/talks/paul_maccready_on_nature_vs_humans.html
http://www.ted.com/talks/john_walker_re_creates_great_performances.html
http://www.ted.com/talks/joseph_lekuton_tells_a_parable_for_kenya.html
http://www.ted.com/talks/peter_diamandis_on_stephen_hawking_in_zero_g.html
http://www.ted.com/talks/dr_seyi_oyesola_tours_a_hospital_in_nigeria.html
http://www.ted.com/talks/nora_york_sings_what_i_want.html
http://www.ted.com/talks/david_hoffman_shares_his_sputnik_mania.html
http://www.ted.com/talks/sherwin_nuland_on_hope.html
http://www.ted.com/talks/franco_sacchi_on_nollywood.html
http://www.ted.com/talks/christopher_deam_restyles_the_airstream.html
http://www.ted.com/talks/ethel_performs_blue_room.html
http://www.ted.com/talks/reed_kroloff_on_modern_and_romantic_architecture.html
http://www.ted.com/talks/graham_hawkes_flies_through_the_ocean.html
http://www.ted.com/talks/caroline_lavelle_casts_a_spell_on_cello.html
http://www.ted.com/talks/keith_bellows_on_the_camel_s_hump.html
http://www.ted.com/talks/marisa_fick_jordan_shares_the_wonder_of_zulu_wire_art.html
http://www.ted.com/talks/david_rockwell_builds_at_ground_zero.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment