- published: 14 Aug 2019
- views: 812283
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Joseph Rudyard Kipling (/ˈrʌdjərd ˈkɪplɪŋ/ RUD-yərd KIP-ling; 30 December 1865 – 18 January 1936) was an English short-story writer, poet, and novelist.
Kipling's works of fiction include The Jungle Book (1894), Kim (1901), and many short stories, including "The Man Who Would Be King" (1888). His poems include "Mandalay" (1890), "Gunga Din" (1890), "The Gods of the Copybook Headings" (1919), "The White Man's Burden" (1899), and "If—" (1910). He is regarded as a major innovator in the art of the short story; his children's books are classics of children's literature; and one critic described his work as exhibiting "a versatile and luminous narrative gift".
Kipling was one of the most popular writers in the United Kingdom, in both prose and verse, in the late 19th and early 20th centuries.Henry James said: "Kipling strikes me personally as the most complete man of genius (as distinct from fine intelligence) that I have ever known." In 1907, he was awarded the Nobel Prize in Literature, making him the first English-language writer to receive the prize, and its youngest recipient to date. He was also sounded out for the British Poet Laureateship and on several occasions for a knighthood, both of which he declined.
The Rudyard Kipling was a British steam trawler launched in 1920 that undertook fishing operations off the coasts of Great Britain and Ireland for almost 20 years. On 16 September 1939, shortly after the outbreak of World War II, the trawler was captured 40 miles west of Clare Island by the German submarine U-27. After removing food, equipment, and the crew from the ship, the Germans sunk her with the use of scuttling charges. Several hours later the crew of the Rudyard Kipling were cast adrift 5 miles (8.0 km) off the coast of Ireland. They eventually landed their lifeboats at Killybegs.
The Rudyard Kipling was the 27th merchant ship, the 26th British merchant ship, and the second British trawler to be sunk by a German U-boat in World War II.
The Rudyard Kipling was constructed in the town of Selby by the shipbuilder Cochrane & Sons Ltd. The trawler was launched from yard number 686 on 11 November 1920. Named the Rudyard Kipling by the ship's owner Newington Steam Trawling Co Ltd., she was registered in the port of Hull on 4 February 1921 and completed later that month. Her official number was 144068. She had a net tonnage of 140 and her gross tonnage was 333. The trawler was 138.8 feet (42.3 m) from bow to stern with a draught of 12.9 feet (3.9 m) and a breadth of 23.7 feet (7.2 m). Her engine was a T.3-cylinder from C. D. Holmes & Co Ltd., also of Hull.
In science and philosophy, a just-so story, also called an ad hoc fallacy, is an unverifiable and unfalsifiable narrative explanation for a cultural practice, a biological trait, or behavior of humans or other animals. The pejorative nature of the expression is an implicit criticism that reminds the hearer of the essentially fictional and unprovable nature of such an explanation. Such tales are common in folklore and mythology (where they are known as etiological myths—see etiology).
This phrase was popularized by the publication in 1902 of Rudyard Kipling's Just So Stories, containing fictional and deliberately fanciful tales for children, in which the stories pretend to explain animal characteristics, such as the origin of the spots on the leopard.
This phrase has been used to criticize evolutionary explanations of traits that have been proposed to be adaptations, particularly in the evolution–creation debates and in debates regarding research methods in sociobiology and evolutionary psychology.
The Just So Stories for Little Children are a collection written by the British author Rudyard Kipling. Highly fantasised origin stories, especially for differences among animals, they are among Kipling's best known works.
For the fallacy named after Kipling's work see Just-so story.
The stories, first published in 1902, are pourquoi (French for "why") or origin stories, fantastic accounts of how various phenomena came about. A forerunner of these stories is Kipling's "How Fear Came," included in his The Second Jungle Book (1895). In it, Mowgli hears the story of how the tiger got his stripes.
The Just So Stories typically have the theme of a particular animal being modified from an original form to its current form by the acts of man, or some magical being. For example, the Whale has a tiny throat because he swallowed a mariner, who tied a raft inside to block the whale from swallowing other men. The Camel has a hump given to him by a djinn as punishment for the camel's refusing to work (the hump allows the camel to work longer between times of eating). The Leopard's spots were painted by an Ethiopian (after the Ethiopian painted himself black). The Kangaroo gets its powerful hind legs, long tail, and hopping gait after being chased all day by a dingo, sent by a minor god responding to the Kangaroo's request to be made different from all other animals.
The life of the youngest-ever winner of the Nobel Prize for literature, Rudyard Kipling, was filled with tragedy. He survived a difficult childhood to go on to become one of the most celebrated authors of his day, penning such classics as "The Jungle Book" and "Just So Stories". But, only one of his children would survive him and his legacy has been tied to some of his out-dated political beliefs. The History Guy remembers the tragic life of Rudyard Kipling. Thank you to NetGalley and the publisher for a free advance reader's copy of "If: The Untold Story of Kipling's American Years" by Christopher Benfey. Those interested in reading a review of "If" by Ms. History (Heidi) can see it here: https://bit.ly/31DcGkL If you would like to purchase a copy of Benfey's new book to learn more abou...
A poem with an excellent popularity-to-title-length ratio. The timeless classic. A father talks to his son about how to be a good man. If any son ever lived up to all the virtues described, he would certainly be impressive. Support me on Patreon: https://www.patreon.com/Lindybeige Buy the music - the music played at the end of my videos is now available here: https://lindybeige.bandcamp.com/track/the-mandeville-march Buy tat (merch): https://www.bonfire.com/results/Lindybeige/ More videos here: All Lindybeige: https://www.youtube.com/playlist?list=PLzzh7AuEBkEmMWChgPPOQqjhkkPq_eP1X Lindybeige: a channel of archaeology, ancient and medieval warfare, rants, swing dance, travelogues, evolution, and whatever else occurs to me to make. ▼ Follow me... Twitter: https://twitter.com/Lindy...
Rudyard Kipling was a prolific poet, novelist and journalist and one of the most well-known Victorian writers of his time. In 1907, he was awarded the Nobel Prize for Literature for his great body of work which included 'The Jungle Book' and his enduring poetic masterpiece 'If'. In perhaps one of the most inspirational poems ever written, Kipling outlines for his son the behaviours and attitudes it takes to become a man, advising his son about how to perceive the world and life's challenges so that he can both learn from his experiences and resolutely overcome barriers. This poem is one of our favourites and we hope you find our rendition of it worthy of the words. We worked with the following artists to produce this reading: Exclusive voice-over by Shane Morris Score by MusicBed Sub...
Sir Michael Caine's rendition of his favorite poem, "IF" by Rudyard Kipling. Kindly overlook the missing 20 seconds and focus on the overall meaning of this eternal verse. It brings together all the virtues of life: perseverance, humility, and integrity, in a way as to create the ultimate dose of inspiration. If— by RUDYARD KIPLING If you can keep your head when all about you Are losing theirs and blaming it on you, If you can trust yourself when all men doubt you, But make allowance for their doubting too; If you can wait and not be tired by waiting, Or being lied about, don’t deal in lies, Or being hated, don’t give way to hating, And yet don’t look too good, nor talk too wise: If you can dream—and not make dreams your master; If you can think—and not ...
visit http://www.norwichenglish.co.uk for more poetry Read in a southern British accent. Audio (c) 2012 Martin Harris ------------------------------------------------------------------ If you can keep your head when all about you Are losing theirs and blaming it on you, If you can trust yourself when all men doubt you, But make allowance for their doubting too; If you can wait and not be tired by waiting, Or being lied about, don't deal in lies, Or being hated, don't give way to hating, And yet don't look too good, nor talk too wise: If you can dream -- and not make dreams your master; If you can think -- and not make thoughts your aim; If you can meet with Triumph and Disaster And treat those two impostors just the same; If you can bear to hear the truth you've spoken Twisted by knaves ...
If by Rudyard Kipling narrated by Tom O' Bedlam. If you can keep your head when all about you Are losing theirs and blaming it on you, If you can trust yourself when all men doubt you, But make allowance for their doubting too; If you can wait and not be tired by waiting, Or being lied about, don’t deal in lies, Or being hated, don’t give way to hating, And yet don’t look too good, nor talk too wise: If you can dream—and not make dreams your master; If you can think—and not make thoughts your aim; If you can meet with Triumph and Disaster And treat those two impostors just the same; If you can bear to hear the truth you’ve spoken Twisted by knaves to make a trap for fools, Or watch the things you gave your life to, broken, And stoop and b...
This is a poem by Rudyard Kipling titled If. It is a father giving advice to his son. If you can keep your head when all about you Are losing theirs and blaming it on you, If you can trust yourself when all men doubt you, But make allowance for their doubting too; If you can wait and not be tired by waiting, Or being lied about, don’t deal in lies, Or being hated, don’t give way to hating, And yet don’t look too good, nor talk too wise: If you can dream—and not make dreams your master; If you can think—and not make thoughts your aim; If you can meet with Triumph and Disaster And treat those two impostors just the same; If you can bear to hear the truth you’ve spoken Twisted by knaves to make a trap for fools, Or watch the things you gave your...
Description: Discover the timeless wisdom of Rudyard Kipling's poem If—, a masterpiece that inspires resilience, integrity, and strength of character. This poem speaks to anyone facing challenges in life, reminding us of the power of patience, humility, and self-confidence. Whether you're navigating personal struggles or seeking motivation, If— offers guidance for overcoming adversity and remaining true to yourself. Hashtags: #Kipling #IfPoem #Motivation #Resilience #Poetry #LifeAdvice #Character #SelfGrowth #Wisdom #Inspiration #Strength
Voice by Clark Fulton Poem: If you can keep your head when all about you Are losing theirs and blaming it on you; If you can trust yourself when all men doubt you, But make allowance for their doubting too: If you can wait and not be tired by waiting, Or being lied about, don't deal in lies, Or being hated don't give way to hating, And yet don't look too good, nor talk too wise; If you can dream—and not make dreams your master; If you can think—and not make thoughts your aim, If you can meet with Triumph and Disaster And treat those two impostors just the same: If you can bear to hear the truth you've spoken Twisted by knaves to make a trap for fools, Or watch the things you gave your life to, broken, And stoop and build 'em up with worn-out tools; If you...
JUST SO STORIES by Rudyard Kipling - FULL AudioBook | Greatest AudioBooks The stories, first published in 1902, are pourquoi (French for "why") or origin stories, fantastic accounts of how various phenomena came about. A forerunner of these stories is Kipling's "How Fear Came," included in his The Second Jungle Book (1895). In it, Mowgli hears the story of how the tiger got his stripes. The Just So Stories typically have the theme of a particular animal being modified from an original form to its current form by the acts of man, or some magical being. For example, the Whale has a tiny throat because he swallowed a mariner, who tied a raft inside to block the whale from swallowing other men. The Camel has a hump given to him by a djinn as punishment for the camel's refusing to work (the hu...
Rudyard Kipling's "Just so Stories", written more than a century ago, are still incredibly modern.Made to be told or read aloud, they use the magic of the language to carry the listener into a poetic universe, a world in motion, a world still pure where everything is possible: the world of "all beginnings".
4 сентября. 2015 Концерт, посвященный открытию нового корпуса НГУ. Open Space Picnic September 4th 2015 Live At Open Space Picnic Just So Story Links: http://vk.com/justsostoryband https://justsostoryband.bandcamp.com/ http://www.lastfm.ru/music/Just+So+Story http://www.facebook.com/JustSoStoryBand https://twitter.com/JustSoStoryBand http://www.youtube.com/JustSoStoryBand http://instagram.com/justsostoryband
Подписаться на канал: https://goo.gl/PR8zsV Купить альбом: https://goo.gl/XnkghK VK: vk.com/justsostoryband Telegram: t.me/justsostoryband Bandcamp: justsostoryband.bandcamp.com Режиссер, сценарий: Настя Вишнивецкая Съёмка: Виктор Терентьев, Юра Лыткин, Александра Михайлова Монтаж, цвет: Александр Райтер Отдельное спасибо пространству "Чердачок", а также всем, кто помогал с декорациями, поучаствовал в танцах и разрушениях!
A beautiful new edition of Rudyard Kipling's much-loved classic, Just So Stories, features five delightful retellings: How the Whale got his Throat How the Camel got his Hump How the Rhinoceros got his Skin The Elephant's Child The Cat that Walked by Himself This book combines the wonderful rhyming talent of Elli Woollard with stunning illustrations from award-winning Marta Altés. These imaginative stories, which tell of how the animals acquired their most distinctive features, have delighted both children and adults for generations - find out more about why here: https://www.panmacmillan.com/authors/elli-woollard/rudyard-kipling-s-just-so-stories-retold-by-elli
You can support us on the following links: Album Step Forward: AMAZON: http://amzn.to/1uIvUxu BANDCAMP: http://bit.ly/UkLmor GOOGLEPLAY: http://bit.ly/1iO1tR9 ITUNES: http://bit.ly/1oN7plw Mixed By: Chris Beeble (The Blasting Room) Mastering by: Jason Livermore (The Blasting Room) Just So Story: http://vk.com/justsostoryband http://www.lastfm.ru/music/Just+So+Story http://www.facebook.com/JustSoStoryBand https://twitter.com/JustSoStoryBand
4 сентября. 2015 Концерт, посвященный открытию нового корпуса НГУ. Open Space Picnic September 4th 2015 Live At Open Space Picnic Just So Story Links: http://vk.com/justsostoryband https://justsostoryband.bandcamp.com/ http://www.lastfm.ru/music/Just+So+Story http://www.facebook.com/JustSoStoryBand https://twitter.com/JustSoStoryBand http://www.youtube.com/JustSoStoryBand http://instagram.com/justsostoryband
Just So Stories audiobook Rudyard KIPLING (1868 - 1936) http://free-audio-books.info/short-stories/just-so-stories-audiobook/ The stories, first published in 1902, are fantastic accounts of how various natural phenomena came about. The original editions of Just So Stories were illustrated with woodcuts by Kipling himself. Each story is accompanied by a poem, in a somewhat ballad style. Many of the stories are addressed to "Best Beloved" (they were first written for Kipling's eldest daughter, Josephine, who had died during an outbreak of influenza in 1899), and throughout they use a comically elevated style inspired by the formal speech of India, full of long and improbable-sounding words, some of them made up. As a result, it is a delight to read them aloud, and easy to memorize passages f...
On the banks of the Turbid Amazon, Painted Jaguar is hungry. How can Stickly-Prickly Hedgehog and Slow-and-Solid Tortoise escape him? A strange new animal that Painted Jaguar doesn’t know appears. Re-written, illustrated and told by British children's author and illustrator, Shoo Rayner this is one of the classic Just So Stories written by Rudyard Kipling - brought up to date with a fresh new text. Get the book or ebook from amazon here in the UK: https://amzn.to/3sorYZB and here in the USA https://amzn.to/334Y5oy and here in Canada https://amzn.to/3GuPZTS All material ©shoorayner https://www.shoorayner.com music by http://www.youtube.com/cleffernotes Shoo Rayner is an award-winning British illustrator and author of over 200 books for children.
See our complete collection of Long Playing Record Albums at http://www.kiddierecords.com.
Joseph Rudyard Kipling (/ˈrʌdjərd ˈkɪplɪŋ/ RUD-yərd KIP-ling; 30 December 1865 – 18 January 1936) was an English short-story writer, poet, and novelist.
Kipling's works of fiction include The Jungle Book (1894), Kim (1901), and many short stories, including "The Man Who Would Be King" (1888). His poems include "Mandalay" (1890), "Gunga Din" (1890), "The Gods of the Copybook Headings" (1919), "The White Man's Burden" (1899), and "If—" (1910). He is regarded as a major innovator in the art of the short story; his children's books are classics of children's literature; and one critic described his work as exhibiting "a versatile and luminous narrative gift".
Kipling was one of the most popular writers in the United Kingdom, in both prose and verse, in the late 19th and early 20th centuries.Henry James said: "Kipling strikes me personally as the most complete man of genius (as distinct from fine intelligence) that I have ever known." In 1907, he was awarded the Nobel Prize in Literature, making him the first English-language writer to receive the prize, and its youngest recipient to date. He was also sounded out for the British Poet Laureateship and on several occasions for a knighthood, both of which he declined.
We're marchin' on relief over Injia's sunny plains,
A little front o' Christmas-time an' just be'ind the Rains;
Ho! get away you bullock-man, you've 'eard the bugle blowed,
There's a regiment a-comin' down the Grand Trunk Road;
With its best foot first
And the road a-sliding past,
An' every bloomin' campin'-ground exactly like the last;
While the Big Drum says,
With 'is "rowdy-dowdy-dow!"—
"Kiko kissywarsti don't you hamsher argy jow?"
Oh, there's them Injian temples to admire when you see,
There's the peacock round the corner an' the monkey up the tree,
An' there's that rummy silver grass a-wavin' in the wind,
An' the old Grand Trunk a-trailin' like a rifle-sling be'ind.
While it's best foot first, . . .
Oh, then it's open order, an' we lights our pipes an' sings,
An' we talks about our rations an' a lot of other things,
An' we thinks o' friends in England, an' we wonders what they're at,
An' 'ow they would admire for to hear us sling the bat.
So 'ark an' 'eed, you rookies, which is always grumblin' sore,
There's worser things than marchin' from Umballa to Cawnpore;
An' if your 'eels are blistered an' they feels to 'urt like 'ell,
You drop some tallow in your socks an' that will make 'em well.
For it's best foot first, . . .
We're marchin' on relief over Injia's coral strand,
Eight 'undred fightin' Englishmen, the Colonel, and the Band;
Ho! get away you bullock-man, you've 'eard the bugle blowed,
There's a regiment a-comin' down the Grand Trunk Road;
With its best foot first
And the road a-sliding past,
An' every bloomin' campin'-ground exactly like the last;
While the Big Drum says,
With 'is "rowdy-dowdy-dow!" --