'+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; })); }); -->

Idiot

An idiot, dolt, dullard or (archaically) mome is a person perceived to be lacking intelligence, or someone who acts in a self-defeating or significantly counterproductive way. Along with the similar terms moron, imbecile, and cretin, the word archaically referred to the intellectually disabled, but have all since gained specialized meanings in modern times. An idiot is said to be idiotic, and to suffer from idiocy. A dunce is an idiot who is specifically incapable of learning. An idiot differs from a fool (who is unwise) and an ignoramus (who is uneducated/an ignorant), neither of which refers to someone with low intelligence. In modern English usage, the terms "idiot" and "idiocy" describe an extreme folly or stupidity, and its symptoms (foolish or stupid utterance or deed). In psychology, it is a historical term for the state or condition now called profound intellectual disability.

Etymology

Idiot is a word derived from the Greek ἰδιώτης, idiōtēs ("person lacking professional skill", "a private citizen", "individual"), from ἴδιος, idios ("private", "one's own"). In Latin the word idiota ("ordinary person, layman") preceded the Late Latin meaning "uneducated or ignorant person". Its modern meaning and form dates back to Middle English around the year 1300, from the Old French idiote ("uneducated or ignorant person"). The related word idiocy dates to 1487 and may have been analogously modeled on the words prophet and prophecy. The word has cognates in many other languages.

Idiot (2012 film)

Idiot is a 2012 Bengali film directed by Rajib Biswas starring Ankush Hazra and Srabanti Chatterjee in lead roles . This is a remake of 2006 Tamil language comedy film Thiruvilaiyaadal Aarambam. The film is a Super Hit.

Plot

Samrat falls in love with Anjali. Their love life gets on track. It was smooth sailing until the Anjali's ruthless brother gets into the picture. He does not accept Samrat. So Samrat tricks him and becomes a bigger business magnet and as a result, is accepted by everyone.

Cast

  • Ankush Hazra as Samrat
  • Srabanti Chatterjee as Anjali
  • Aditya Pancholi as Anjali's Brother
  • Debjani Chattopadhyay as Anjali's sister-in-law
  • Music

  • "Sajna Paas Aa Tu Jara" - Shaan And Mahalakshmi Iyer
  • "Pagli Toke Rakhbo Boro Adore" - Zubeen Garg And Akriti Kakkar
  • "Hori Din To Gelo" - Zubeen Garg
  • "Havvy Lagche" - Zubeen Garg
  • "Jhor Othe Mone" - Zubeen Garg And Mahalakshmi Iyer
  • References

    Idiot (1992 film)

    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.

    Cast

  • Shahrukh Khan
  • Ayub Khan-Din
  • Mita Vashisht
  • Production and release

    The film was first released as a four-part television mini-series on state-run Doordarshan channel in 1991, and despite it outing at debuted at the New York Film Festival in October 1992, it was never commercially released.

    Awards

  • 1993 Filmfare Awards: Critics Award For Best Movie
  • References

    External links


    Podcasts:

    Idiot

    ALBUMS

    Idiot

    • ရေမွန်(Idiots)-သုံ့ပန်း(Thone Pann)

      published: 27 Jun 2021
    • Raymond(ရေမွန်) - idiots

      #raymond #ရေမွန် #idiots #ချန်ခဲ့ #ဝမ်းနည်းတတ်တဲ့ချစ်သူ #ဘာလိုနေသေးလဲ #သုံ့ပန်း #သေလို့ရတယ် #မင်းနဲ့နီးဖို့

      published: 30 Jul 2023
    • Idiot | Tamil Full Movie | Mirchi Shiva | Nikki Galrani | 4K (English Subtitle)

      The descendants of two men who betrayed a royal family centuries ago are caught up in events that involve ghosts, revenge and kidnapping. Movie - Idiot Starring - Mirchi Shiva, Nikki Galrani, Anandraj, Oorvasi, Akshara Gowda Directed by Rambhala Produced by Screen Scene Media Entertainment Pvt Ltd Watch the full movie in ⬇️ ► YouTube: https://bit.ly/Idiot_YT #UnitedIndiaExporters #TamilMovies #HitMovies Watch your favorite movies & scenes from our other handles ⬇️ ► UIE Telegu: http://bit.ly/UIEMoviesTelugu ► UIE Tamil Scenes: http://bit.ly/UIETamilScenes For more exclusive updates follow us on ⬇️ ► Twitter: http://bit.ly/UIETwitter ► Instagram: http://bit.ly/UIEInstagram ► Facebook: http://bit.ly/UIEFacebook ► Website: http://bit.ly/UIEWebsite In Association with Divo ⬇️ ► Faceboo...

      published: 19 May 2022
    • ပျော်ပျော်နေ - IDIOTS

      #IDIOTS_NEW_SONG #ပျော်ပျော်နေ ---------------------------------------------------- Idiots Facebook Page - https://www.facebook.com/IdiotsRockBand/ Apple Music - https://music.apple.com/us/artist/idiots/1701370198 Spotify - https://open.spotify.com/artist/4FNDlNeRMeQYQCHnrmYUHB Instagram - https://www.instagram.com/raymond_idiots_waimonoo #Idiotsmusicband #Idiots ---------------------------------------------------- Don't forget to subscribe - https://www.youtube.com/c/IdiotsOfficial ----------------------------------------------------

      published: 23 Jun 2024
    • Idiots - ဆုလာဘ်

      https://open.spotify.com/artist/4FNDlNeRMeQYQCHnrmYUHB https://music.apple.com/us/artist/idiots/1701370198 https://www.facebook.com/IdiotsMyanmarOfficial https://www.instagram.com/raymond_idiots_waimonoo

      published: 11 Oct 2019
    • ဘာလိုနေသေးလဲ - Idiots [THAISUB/LYRICS](ยังต้องการอะไร - แปลไทย)

      Title :​ ​ဘာလိုနေသေးလဲ Artist : Idiots Myanmarsong เพลงพม่าแปลไทย

      published: 29 May 2023
    • TOTAL IDIOTS AT WORK #18 / Instant Regret Fails Compilation 2024

      Welcome to BTS _ Idiots At Work! Here, you’ll witness the funniest fails and blunders straight from the workplace. Watch as the idiots at work turn simple tasks into chaotic, laugh-out-loud moments! Whether it’s unexpected accidents, moments of instant regret, or mishaps no one saw coming, these workplace idiots always know how to keep you entertained. Join us for weekly doses of laughter as we bring you the most unpredictable and hilarious moments from the world of workplace fails! Hit SUBSCRIBE and enjoy the ride with the funniest idiots at work! ✅ If you enjoyed the video, drop a comment with the number "1"; if not, let me know with a like. And don’t forget to hit like and subscribe if you had a good time! 01:09 idiots at work 06:12 instant regret fails 11:28 fails compilation 15:11 ...

      published: 09 Nov 2024
    • 35 Crazy Moments Car Crashes of Idiots In Cars Got Instant Karma You Wouldn't Believe if Not Filmed

      35 Crazy Moments Car Crashes of Idiots In Cars Got Instant Karma You Wouldn't Believe if Not Filmed I re-uploaded this video for everyone to enjoy again. Thanks for your continued support! Welcome to CRASH CASES - Idiots In Cars, your go-to YouTube channel for the most jaw-dropping car crashes, driving fails, and those unforgettable moments featuring reckless drivers. Our videos aim to raise awareness about road safety and help viewers learn from the mistakes made by others. Remember, it's crucial to follow traffic laws, stay aware of road conditions, and drive responsibly. The content featured in this video is not entirely owned by us; it is sourced from various individuals and organizations, whose rights we respect. We use this material under the Copyright Disclaimer Section 107 of the...

      published: 01 Nov 2024
    • ထွက်သွားလိုက်ပါ - IDIOTS

      ---------------------------------------------------- https://open.spotify.com/artist/4FNDlNeRMeQYQCHnrmYUHB https://music.apple.com/us/artist/idiots/1701370198 https://www.facebook.com/IdiotsMyanmarOfficial https://www.instagram.com/raymond_idiots_waimonoo #Idiotsmusicband #Idiots #ထွက်သွားလိုက်ပါ #htut_thwar_lite_par ---------------------------------------------------- Don't forget to subscribe - https://www.youtube.com/c/IdiotsOfficial ----------------------------------------------------

      published: 02 Jan 2024
    • Total Idiots at Work Caught on Camera

      Get ready to see our new compilation of the wildest workplace fails - from hilarious to downright disastrous! The video features materials that are copyright to Newsflare. https://www.tiktok.com/@austins.pov?lang=en

      published: 09 Nov 2024
    developed with YouTube
    ရေမွန်(Idiots)-သုံ့ပန်း(Thone Pann)
    4:59

    ရေမွန်(Idiots)-သုံ့ပန်း(Thone Pann)

    • Order:
    • Duration: 4:59
    • Uploaded Date: 27 Jun 2021
    • views: 12003824
    https://wn.com/ရေမွန်(Idiots)_သုံ့ပန်း(Thone_Pann)
    Raymond(ရေမွန်) - idiots
    22:09

    Raymond(ရေမွန်) - idiots

    • Order:
    • Duration: 22:09
    • Uploaded Date: 30 Jul 2023
    • views: 2823255
    #raymond #ရေမွန် #idiots #ချန်ခဲ့ #ဝမ်းနည်းတတ်တဲ့ချစ်သူ #ဘာလိုနေသေးလဲ #သုံ့ပန်း #သေလို့ရတယ် #မင်းနဲ့နီးဖို့
    https://wn.com/Raymond(ရေမွန်)_Idiots
    Idiot | Tamil Full Movie | Mirchi Shiva | Nikki Galrani | 4K (English Subtitle)
    1:58:03

    Idiot | Tamil Full Movie | Mirchi Shiva | Nikki Galrani | 4K (English Subtitle)

    • Order:
    • Duration: 1:58:03
    • Uploaded Date: 19 May 2022
    • views: 1795298
    The descendants of two men who betrayed a royal family centuries ago are caught up in events that involve ghosts, revenge and kidnapping. Movie - Idiot Starring - Mirchi Shiva, Nikki Galrani, Anandraj, Oorvasi, Akshara Gowda Directed by Rambhala Produced by Screen Scene Media Entertainment Pvt Ltd Watch the full movie in ⬇️ ► YouTube: https://bit.ly/Idiot_YT #UnitedIndiaExporters #TamilMovies #HitMovies Watch your favorite movies & scenes from our other handles ⬇️ ► UIE Telegu: http://bit.ly/UIEMoviesTelugu ► UIE Tamil Scenes: http://bit.ly/UIETamilScenes For more exclusive updates follow us on ⬇️ ► Twitter: http://bit.ly/UIETwitter ► Instagram: http://bit.ly/UIEInstagram ► Facebook: http://bit.ly/UIEFacebook ► Website: http://bit.ly/UIEWebsite In Association with Divo ⬇️ ► Facebook: https://www.facebook.com/divomovies/ ► Twitter: https://www.twitter.com/divomovies/ ► Instagram: https://www.instagram.com/divomovies/
    https://wn.com/Idiot_|_Tamil_Full_Movie_|_Mirchi_Shiva_|_Nikki_Galrani_|_4K_(English_Subtitle)
    ပျော်ပျော်နေ - IDIOTS
    4:13

    ပျော်ပျော်နေ - IDIOTS

    • Order:
    • Duration: 4:13
    • Uploaded Date: 23 Jun 2024
    • views: 704719
    #IDIOTS_NEW_SONG #ပျော်ပျော်နေ ---------------------------------------------------- Idiots Facebook Page - https://www.facebook.com/IdiotsRockBand/ Apple Music - https://music.apple.com/us/artist/idiots/1701370198 Spotify - https://open.spotify.com/artist/4FNDlNeRMeQYQCHnrmYUHB Instagram - https://www.instagram.com/raymond_idiots_waimonoo #Idiotsmusicband #Idiots ---------------------------------------------------- Don't forget to subscribe - https://www.youtube.com/c/IdiotsOfficial ----------------------------------------------------
    https://wn.com/ပျော်ပျော်နေ_Idiots
    Idiots - ဆုလာဘ်
    3:10

    Idiots - ဆုလာဘ်

    • Order:
    • Duration: 3:10
    • Uploaded Date: 11 Oct 2019
    • views: 3557172
    https://open.spotify.com/artist/4FNDlNeRMeQYQCHnrmYUHB https://music.apple.com/us/artist/idiots/1701370198 https://www.facebook.com/IdiotsMyanmarOfficial https://www.instagram.com/raymond_idiots_waimonoo
    https://wn.com/Idiots_ဆုလာဘ်
    ဘာလိုနေသေးလဲ - Idiots [THAISUB/LYRICS](ยังต้องการอะไร - แปลไทย)
    4:16

    ဘာလိုနေသေးလဲ - Idiots [THAISUB/LYRICS](ยังต้องการอะไร - แปลไทย)

    • Order:
    • Duration: 4:16
    • Uploaded Date: 29 May 2023
    • views: 2370924
    Title :​ ​ဘာလိုနေသေးလဲ Artist : Idiots Myanmarsong เพลงพม่าแปลไทย
    https://wn.com/ဘာလိုနေသေးလဲ_Idiots_Thaisub_Lyrics_(ยังต้องการอะไร_แปลไทย)
    TOTAL IDIOTS AT WORK #18 / Instant Regret Fails Compilation 2024
    18:48

    TOTAL IDIOTS AT WORK #18 / Instant Regret Fails Compilation 2024

    • Order:
    • Duration: 18:48
    • Uploaded Date: 09 Nov 2024
    • views: 76517
    Welcome to BTS _ Idiots At Work! Here, you’ll witness the funniest fails and blunders straight from the workplace. Watch as the idiots at work turn simple tasks into chaotic, laugh-out-loud moments! Whether it’s unexpected accidents, moments of instant regret, or mishaps no one saw coming, these workplace idiots always know how to keep you entertained. Join us for weekly doses of laughter as we bring you the most unpredictable and hilarious moments from the world of workplace fails! Hit SUBSCRIBE and enjoy the ride with the funniest idiots at work! ✅ If you enjoyed the video, drop a comment with the number "1"; if not, let me know with a like. And don’t forget to hit like and subscribe if you had a good time! 01:09 idiots at work 06:12 instant regret fails 11:28 fails compilation 15:11 total idiots at work The "Total Idiots at Work" video complies with YouTube guidelines and is made for educational and entertainment purposes. No one was harmed during the making of this videos. The material in this video was collected from various sources. It belongs to individuals and organizations who deserve to be respected. Copyright Disclaimer: This video adheres to the "fair use" policy under Section 107 of the Copyright Act 1976. For copyright issues, please contact: trangdenimst@gmail.com Let’s enjoy the Total Idiots At Work and emotional videos together! #totalidiotsatwork #idiotsatwork #funnyfails #instantregrets #bstidiotsatwork
    https://wn.com/Total_Idiots_At_Work_18_Instant_Regret_Fails_Compilation_2024
    35 Crazy Moments Car Crashes of Idiots In Cars Got Instant Karma You Wouldn't Believe if Not Filmed
    15:54

    35 Crazy Moments Car Crashes of Idiots In Cars Got Instant Karma You Wouldn't Believe if Not Filmed

    • Order:
    • Duration: 15:54
    • Uploaded Date: 01 Nov 2024
    • views: 2776240
    35 Crazy Moments Car Crashes of Idiots In Cars Got Instant Karma You Wouldn't Believe if Not Filmed I re-uploaded this video for everyone to enjoy again. Thanks for your continued support! Welcome to CRASH CASES - Idiots In Cars, your go-to YouTube channel for the most jaw-dropping car crashes, driving fails, and those unforgettable moments featuring reckless drivers. Our videos aim to raise awareness about road safety and help viewers learn from the mistakes made by others. Remember, it's crucial to follow traffic laws, stay aware of road conditions, and drive responsibly. The content featured in this video is not entirely owned by us; it is sourced from various individuals and organizations, whose rights we respect. We use this material under the Copyright Disclaimer Section 107 of the Copyright Act of 1976, which allows "fair use" for purposes such as commentary, news reporting, teaching, scholarship, and research. subscribe: https://www.youtube.com/@CRASHCASES Website: https://crashcases.blogspot.com/ Facebook: https://www.facebook.com/share/44AeR5nTr2thqQTz/?mibextid=LQQJ4d Background Music: The music is provided by Kevin MacLeod and is licensed under the Creative Commons Attribution 4.0 License. Check out more music at https://www.hooksounds.com. #idiotsincars #carcrashes #carcrashcompilation #baddrivers #Insanecarcrashes #crashcases
    https://wn.com/35_Crazy_Moments_Car_Crashes_Of_Idiots_In_Cars_Got_Instant_Karma_You_Wouldn't_Believe_If_Not_Filmed
    ထွက်သွားလိုက်ပါ - IDIOTS
    4:59

    ထွက်သွားလိုက်ပါ - IDIOTS

    • Order:
    • Duration: 4:59
    • Uploaded Date: 02 Jan 2024
    • views: 609989
    ---------------------------------------------------- https://open.spotify.com/artist/4FNDlNeRMeQYQCHnrmYUHB https://music.apple.com/us/artist/idiots/1701370198 https://www.facebook.com/IdiotsMyanmarOfficial https://www.instagram.com/raymond_idiots_waimonoo #Idiotsmusicband #Idiots #ထွက်သွားလိုက်ပါ #htut_thwar_lite_par ---------------------------------------------------- Don't forget to subscribe - https://www.youtube.com/c/IdiotsOfficial ----------------------------------------------------
    https://wn.com/ထွက်သွားလိုက်ပါ_Idiots
    Total Idiots at Work Caught on Camera
    30:09

    Total Idiots at Work Caught on Camera

    • Order:
    • Duration: 30:09
    • Uploaded Date: 09 Nov 2024
    • views: 157191
    Get ready to see our new compilation of the wildest workplace fails - from hilarious to downright disastrous! The video features materials that are copyright to Newsflare. https://www.tiktok.com/@austins.pov?lang=en
    https://wn.com/Total_Idiots_At_Work_Caught_On_Camera
    • Official Trailer | Idiot | Ankush | Srabonti | Latest Bengali Movie 2016

      Click Here to Subscribe :- http://bit.ly/EskayMovies Movie - Idiot Director - Rajeev Biswas Music Director - Shree Pritam Artist - Ankush , Srabonti & others Producer - Eskay Movies Presenter - Himanshu Dhanuka, Ashok Dhanuka Banner - Eskay Movies Meet us on :- Facebook.com/EskayMovies YouTube.com/EskayMoviesOnline Twitter.com/EskayMovies

      published: 29 Sep 2016
    • ইডিয়ট Idiot 2012, Bengoli Movie,Ankush Hazra,Srabanti Chatterjee ll Full Facts And Review

      ইডিয়ট Idiot 2012, Bengoli Movie,Ankush Hazra,Srabanti Chatterjee ll Full Facts And Review

      published: 25 Apr 2023
    • idiot short (Kolkata Movies) channel Mix-Rohim studio

      published: 25 Jun 2022
    • Idiot (2012) Bengali full movie facts | Ankush Hazra | Srabanti Chatterjee

      published: 02 Oct 2023
    • idiot ( ইডিয়েট মুভি অঙ্কুশের ) full movie 2012 bengali ankush subhashree 65 facts & story explain

      idiot ( ইডিয়েট মুভি অঙ্কুশের ) full movie 2012 bengali ankush subhashree 65 facts & story explain #idiot #ইডিয়েট

      published: 12 Nov 2022
    • ৫০০ টাকার খুচরো কেউ যখন দিতে পারে না #Idiot Ankush Hazra

      Ankush Hazra and Aditya Pancholi funny scenes. We hope you will like watching this Comedy Compilation.Please share it with your family and friends. ============================================= This video clips is from Idiot , a Bengali film directed byRajib Biswas and produced by Ashok Dhanuka under the banner of Eskay Movies. The film features Bengali actors Ankush Hazra and Srabanti in the lead roles. https://www.imdb.com/title/tt3054472/ https://en.wikipedia.org/wiki/Idiot_(2012_film) --------------------------------------------------------------------------------------- Note :This Video has been uploaded with permission from original copyright holders/Production Studio Eskay Movies,Kolkata, (http://www.eskaymovies.com/)(https://www.youtube.com/channel/UCZxu0dMOx9JpYsWkyDwunAQ)

      published: 06 Jul 2018
    • The Idiot (2012) I Short Film

      Engulfed by an all pervading Fear a man escapes both from the dream and reality. However, there comes a moment when he faces his adversary. Directed by Moumita Bhattacharyya and Arjun Singh, this film offers hope for all the oppressed and marginalised people living in the gutter of our society.

      published: 29 Mar 2020
    • Saajna Pass Ay Tu Jara (Full Video) | Idiot | Ankush | Srabanti | Love Song | Eskay Movies

      Saajna Pass Ay Tu Jara (Full Video) | Idiot | Ankush | Srabanti | Love Song | Eskay Movies Click Here to Subscribe :- http://bit.ly/EskayMovies Song - Saajna Pass Ay Tu Jara ( Full Video) Movie - Idiot Artist - Ankush, Srabanti & others Singer - Shaan, Mahalaxmi Iyer Lyricist - Shree Pritam Composer - Shree Pritam Director - Rajeev Biswas Post Production - Eskay Digilab Producer - Eskay Movies Banner - Eskay Movies Have fun and stay connected with us !! ► Subscribe to EskayMovies: http://bit.ly/EskayMovies ► Like us on Facebook: https://facebook.com/eskaymovies ► Follow us on Twitter: https://twitter.com/eskaymovies ► Follow us on Instagram: http://instagram.com/eskaymovies Website : http://eskaymovies.com/ #EskayMovies #SaajnaPassAyTuJara #Idiot #Ankush #Srabanti #EskayMusic

      published: 10 Sep 2016
    • Idiot (2012) - Ankush Hazra FULL BENGALI MOVIE Facts and Review, Sabranti Chatterjee

      Idiot (2012) Full Bengali Movie Facts and Review Cast - Ankush Hazra, Sabranti Chatterjee Copyright disclaimer under Section 107 of the Copyright Act: This disclaimer appears on content (commonly YouTube videos) that uses someone else’s copyrighted content. Including this statement of “fair use” helps protect against copyright infringement claims

      published: 06 Oct 2022
    • Hari Din To Gelo (Full Video) | Ankush | Srabanti | Zubeen | Idiot | Eskay Movies

      Hari Din To Gelo (Full Video) | Ankush | Srabanti | Zubeen | Idiot | Eskay Movies Click Here to Subscribe :- http://bit.ly/EskayMovies Song - Hari Din To Gelo Movie - Idiot Artist - Ankush , Srabonti & others Singer - Jubeen Lyricist - Shree Pritam Composer - Shree Pritam Director - Rajeev Biswas Banner - Eskay Movies Post Production - Eskay Digilab Have fun and stay connected with us !! ► Subscribe to EskayMovies: http://bit.ly/EskayMovies ► Like us on Facebook: https://facebook.com/eskaymovies ► Follow us on Twitter: https://twitter.com/eskaymovies ► Follow us on Instagram: http://instagram.com/eskaymovies Website : http://eskaymovies.com/ #EskayMovies #HariDinToGelo #Idiot #Ankush #Srabanti #Zubeen #EskayMusic

      published: 01 Sep 2016
    developed with YouTube
    Official Trailer | Idiot | Ankush | Srabonti  | Latest Bengali Movie 2016
    1:59

    Official Trailer | Idiot | Ankush | Srabonti | Latest Bengali Movie 2016

    • Order:
    • Duration: 1:59
    • Uploaded Date: 29 Sep 2016
    • views: 1618066
    Click Here to Subscribe :- http://bit.ly/EskayMovies Movie - Idiot Director - Rajeev Biswas Music Director - Shree Pritam Artist - Ankush , Srabonti & others Producer - Eskay Movies Presenter - Himanshu Dhanuka, Ashok Dhanuka Banner - Eskay Movies Meet us on :- Facebook.com/EskayMovies YouTube.com/EskayMoviesOnline Twitter.com/EskayMovies
    https://wn.com/Official_Trailer_|_Idiot_|_Ankush_|_Srabonti_|_Latest_Bengali_Movie_2016
    ইডিয়ট Idiot 2012, Bengoli Movie,Ankush Hazra,Srabanti Chatterjee ll Full Facts And Review
    2:04:36

    ইডিয়ট Idiot 2012, Bengoli Movie,Ankush Hazra,Srabanti Chatterjee ll Full Facts And Review

    • Order:
    • Duration: 2:04:36
    • Uploaded Date: 25 Apr 2023
    • views: 164860
    ইডিয়ট Idiot 2012, Bengoli Movie,Ankush Hazra,Srabanti Chatterjee ll Full Facts And Review
    https://wn.com/ইডিয়ট_Idiot_2012,_Bengoli_Movie,Ankush_Hazra,Srabanti_Chatterjee_Ll_Full_Facts_And_Review
    idiot short (Kolkata Movies) channel Mix-Rohim studio
    4:05

    idiot short (Kolkata Movies) channel Mix-Rohim studio

    • Order:
    • Duration: 4:05
    • Uploaded Date: 25 Jun 2022
    • views: 148164
    https://wn.com/Idiot_Short_(Kolkata_Movies)_Channel_Mix_Rohim_Studio
    Idiot (2012) Bengali full movie facts | Ankush Hazra | Srabanti Chatterjee
    2:03:33

    Idiot (2012) Bengali full movie facts | Ankush Hazra | Srabanti Chatterjee

    • Order:
    • Duration: 2:03:33
    • Uploaded Date: 02 Oct 2023
    • views: 407
    https://wn.com/Idiot_(2012)_Bengali_Full_Movie_Facts_|_Ankush_Hazra_|_Srabanti_Chatterjee
    idiot ( ইডিয়েট মুভি অঙ্কুশের ) full movie 2012 bengali ankush subhashree 65 facts & story explain
    2:21:03

    idiot ( ইডিয়েট মুভি অঙ্কুশের ) full movie 2012 bengali ankush subhashree 65 facts & story explain

    • Order:
    • Duration: 2:21:03
    • Uploaded Date: 12 Nov 2022
    • views: 332297
    idiot ( ইডিয়েট মুভি অঙ্কুশের ) full movie 2012 bengali ankush subhashree 65 facts & story explain #idiot #ইডিয়েট
    https://wn.com/Idiot_(_ইডিয়েট_মুভি_অঙ্কুশের_)_Full_Movie_2012_Bengali_Ankush_Subhashree_65_Facts_Story_Explain
    ৫০০ টাকার খুচরো কেউ যখন দিতে পারে না   #Idiot Ankush Hazra
    2:02

    ৫০০ টাকার খুচরো কেউ যখন দিতে পারে না #Idiot Ankush Hazra

    • Order:
    • Duration: 2:02
    • Uploaded Date: 06 Jul 2018
    • views: 793606
    Ankush Hazra and Aditya Pancholi funny scenes. We hope you will like watching this Comedy Compilation.Please share it with your family and friends. ============================================= This video clips is from Idiot , a Bengali film directed byRajib Biswas and produced by Ashok Dhanuka under the banner of Eskay Movies. The film features Bengali actors Ankush Hazra and Srabanti in the lead roles. https://www.imdb.com/title/tt3054472/ https://en.wikipedia.org/wiki/Idiot_(2012_film) --------------------------------------------------------------------------------------- Note :This Video has been uploaded with permission from original copyright holders/Production Studio Eskay Movies,Kolkata, (http://www.eskaymovies.com/)(https://www.youtube.com/channel/UCZxu0dMOx9JpYsWkyDwunAQ)
    https://wn.com/৫০০_টাকার_খুচরো_কেউ_যখন_দিতে_পারে_না_Idiot_Ankush_Hazra
    The Idiot (2012) I Short Film
    7:32

    The Idiot (2012) I Short Film

    • Order:
    • Duration: 7:32
    • Uploaded Date: 29 Mar 2020
    • views: 42
    Engulfed by an all pervading Fear a man escapes both from the dream and reality. However, there comes a moment when he faces his adversary. Directed by Moumita Bhattacharyya and Arjun Singh, this film offers hope for all the oppressed and marginalised people living in the gutter of our society.
    https://wn.com/The_Idiot_(2012)_I_Short_Film
    Saajna Pass Ay Tu Jara (Full Video) | Idiot | Ankush | Srabanti | Love Song | Eskay Movies
    4:26

    Saajna Pass Ay Tu Jara (Full Video) | Idiot | Ankush | Srabanti | Love Song | Eskay Movies

    • Order:
    • Duration: 4:26
    • Uploaded Date: 10 Sep 2016
    • views: 24753427
    Saajna Pass Ay Tu Jara (Full Video) | Idiot | Ankush | Srabanti | Love Song | Eskay Movies Click Here to Subscribe :- http://bit.ly/EskayMovies Song - Saajna Pass Ay Tu Jara ( Full Video) Movie - Idiot Artist - Ankush, Srabanti & others Singer - Shaan, Mahalaxmi Iyer Lyricist - Shree Pritam Composer - Shree Pritam Director - Rajeev Biswas Post Production - Eskay Digilab Producer - Eskay Movies Banner - Eskay Movies Have fun and stay connected with us !! ► Subscribe to EskayMovies: http://bit.ly/EskayMovies ► Like us on Facebook: https://facebook.com/eskaymovies ► Follow us on Twitter: https://twitter.com/eskaymovies ► Follow us on Instagram: http://instagram.com/eskaymovies Website : http://eskaymovies.com/ #EskayMovies #SaajnaPassAyTuJara #Idiot #Ankush #Srabanti #EskayMusic
    https://wn.com/Saajna_Pass_Ay_Tu_Jara_(Full_Video)_|_Idiot_|_Ankush_|_Srabanti_|_Love_Song_|_Eskay_Movies
    Idiot (2012) - Ankush Hazra FULL BENGALI MOVIE Facts and Review, Sabranti Chatterjee
    2:03:41

    Idiot (2012) - Ankush Hazra FULL BENGALI MOVIE Facts and Review, Sabranti Chatterjee

    • Order:
    • Duration: 2:03:41
    • Uploaded Date: 06 Oct 2022
    • views: 135870
    Idiot (2012) Full Bengali Movie Facts and Review Cast - Ankush Hazra, Sabranti Chatterjee Copyright disclaimer under Section 107 of the Copyright Act: This disclaimer appears on content (commonly YouTube videos) that uses someone else’s copyrighted content. Including this statement of “fair use” helps protect against copyright infringement claims
    https://wn.com/Idiot_(2012)_Ankush_Hazra_Full_Bengali_Movie_Facts_And_Review,_Sabranti_Chatterjee
    Hari Din To Gelo (Full Video) | Ankush | Srabanti | Zubeen | Idiot | Eskay Movies
    4:01

    Hari Din To Gelo (Full Video) | Ankush | Srabanti | Zubeen | Idiot | Eskay Movies

    • Order:
    • Duration: 4:01
    • Uploaded Date: 01 Sep 2016
    • views: 10180471
    Hari Din To Gelo (Full Video) | Ankush | Srabanti | Zubeen | Idiot | Eskay Movies Click Here to Subscribe :- http://bit.ly/EskayMovies Song - Hari Din To Gelo Movie - Idiot Artist - Ankush , Srabonti & others Singer - Jubeen Lyricist - Shree Pritam Composer - Shree Pritam Director - Rajeev Biswas Banner - Eskay Movies Post Production - Eskay Digilab Have fun and stay connected with us !! ► Subscribe to EskayMovies: http://bit.ly/EskayMovies ► Like us on Facebook: https://facebook.com/eskaymovies ► Follow us on Twitter: https://twitter.com/eskaymovies ► Follow us on Instagram: http://instagram.com/eskaymovies Website : http://eskaymovies.com/ #EskayMovies #HariDinToGelo #Idiot #Ankush #Srabanti #Zubeen #EskayMusic
    https://wn.com/Hari_Din_To_Gelo_(Full_Video)_|_Ankush_|_Srabanti_|_Zubeen_|_Idiot_|_Eskay_Movies
    • अहमक़ - Ahmaq | The Idiot | 1991 | ShahRukh Khan | Dir - Mani Kaul #shahrukhkhan #fyodordostoyevsky

      With this tour de force of control over a bewilderingly complex narrative and a massive cast of characters (more than 50 key roles) constantly shifting about in both geographic and cinematic spaces, Mani Kaul continues exploring Dostoevsky’s fiction (cf. Nazar, 1989), faithfully following the novel’s original plot transposed into a scathing depiction of a feudal elite, largely bypassed by history, located in Bombay and Goa. The story begins with the return of Myshkin (Ayub Khan), having spent many years in London undergoing treatment for epilepsy. He encounters the beautiful Nastasia (Vasisth), a femme fatale pursued by the rich Pawan Raghujan (Shah Rukh Khan) and the ambitious Ganesh (Mahan). The wealthy milieu seems to live in a vacuum, alongside a formerly productive generation, such as...

      published: 02 Nov 2022
    • Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 1

      Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.

      published: 30 Dec 2021
    • Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 4

      Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.

      published: 30 Dec 2021
    • Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 2

      Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.

      published: 30 Dec 2021
    • The Shahrukh Khan film you don’t know | Idiot/Ahamaq (1992)

      This essay explores our problem taking this film in a context that has its plot copied pretty shamelessly from the original novel with the same name, but Kaul does these magical things with the cinematograph to articulate the psychological impact of the problem in a more lively sense. Shahrukh Khan and Mita Vashisht's antagonistic roles steal the show. Mani Kaul's Idiot/Ahamaq takes us through a journey of Myshkin's noble vision to reform the increasingly corrupt, greedy, manipulative world of 1900s post-colonial Bombay, especially the upper class. The egos are at war with one another and nobody thinks beyond themselves. However, Myshkin is, on the other end, a Nice Guy. Thus, his journey exposes the faults in his own goodness, which thrust him into the deepest forms of insanity that bree...

      published: 07 Aug 2021
    • Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 3

      Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.

      published: 30 Dec 2021
    • Shahrukh Khan in Mani Kaul's Idiot one of his first fillm appearance

      In the very begnning of his film career (1990), Shahrukh Khan worked with Mani Kaul for Ahmek, a film based on Fyodor Dostovesky's classic novel Idiot. The film was produced by Doordarshan.

      published: 02 Nov 2015
    • Idiot Official Trailer | Mirchi Shiva | Nikki Galrani | Rambhala | Vikram Selva | Screen Scene Media

      Screen Scene Media presents the trailer of the upcoming ghost spoof film "Idiot." Here's the Tamil movie trailer starring Mirchi Shiva and Nikki Galrani, Directed by Rambhala. Stay tuned to Screen Scene Media for more updates on the movie. Cast & Crew Details Cast: Mirchi Shiva, Nikki Galrani, Anandraj, Oorvasi, Akshara Gowda, Mayilsamy, Singamuthu, Ravi Mariya, Kingsly & Others Producer By: Screen Scene Media Entertainment Pvt Ltd Executive Producer: Siddharth Ravipati Head of Distribution: Kiran Kumar S Line Producer : Subramanian Narayanan Director: Rambhala Cinematographer: Raja Bhattacharjee Music Director: Vikram Selva Art Director: Videsh Editor: Madhavan Publicity Designer: Pawan Costume Designer: Abhinaya K Production Manager: N.R. Kumar Subscribe to our Channel...

      published: 25 Apr 2021
    • Idiot Full Movie | Ravi Teja, Rakshita, Prakash Raj, Ali | Puri Jagannadh | Chakri

      Watch Idiot Full Movie, Starring Ravi Teja, Rakshita, Prakash Raj, Ali, Kota Srinivasarao among others. Directed and Produced by Puri Jagannadh. Music Composed by Chakri.

      published: 09 Sep 2016
    • Ravi Teja | Idiot Full Movie | South Indian Action Movie Dubbed in Hindi | Prakash Raj

      Here's presenting Idiot Full Hindi Dubbed South (Sauth) Action Comedy Movie starring Ravi Teja, Rakshita, Prakash Raj Censor Certification Number:- DIL/2/531/2019 - MUM Movie (Hindi Dubbed):- Idiot Original Movie Name: Idiot: O Chanti Gaadi Prema Katha in Telugu StarCast:- Ravi Teja, Rakshita, Prakash Raj Music:- Chakri Producer:- Puri Jagannadh Director:- Puri Jagannadh #IdiotMovie #RaviTeja #PrakashRaj Chanti, a young man, is rescued by Suchitra when he is beaten by thugs. He falls in love with her and tries to woo her, but she does not reciprocate his feelings. Disclaimer:- We are only the right holders of this content. Any opinions expressed in this Film may purely be of the director or the original producers but are not our personal opinions and we do not assume any responsib...

      published: 27 Jan 2022
    developed with YouTube
    अहमक़ - Ahmaq | The Idiot | 1991 | ShahRukh Khan | Dir - Mani Kaul #shahrukhkhan #fyodordostoyevsky
    3:10:25

    अहमक़ - Ahmaq | The Idiot | 1991 | ShahRukh Khan | Dir - Mani Kaul #shahrukhkhan #fyodordostoyevsky

    • Order:
    • Duration: 3:10:25
    • Uploaded Date: 02 Nov 2022
    • views: 13452
    With this tour de force of control over a bewilderingly complex narrative and a massive cast of characters (more than 50 key roles) constantly shifting about in both geographic and cinematic spaces, Mani Kaul continues exploring Dostoevsky’s fiction (cf. Nazar, 1989), faithfully following the novel’s original plot transposed into a scathing depiction of a feudal elite, largely bypassed by history, located in Bombay and Goa. The story begins with the return of Myshkin (Ayub Khan), having spent many years in London undergoing treatment for epilepsy. He encounters the beautiful Nastasia (Vasisth), a femme fatale pursued by the rich Pawan Raghujan (Shah Rukh Khan) and the ambitious Ganesh (Mahan). The wealthy milieu seems to live in a vacuum, alongside a formerly productive generation, such as the businessman Mehta (Velani) and his proud daughter Amba (Hansra) or the retired, drunken colonel (Bora) who is accompanied by characters like Killer and the cynical and suicidal Shapit (Thulal) on the beaches of Goa. At Nastasia’s party both Ganesh and Myshkin propose to her, but she leaves with Raghujan who throws a bundle of banknotes at her which she proceeds to burn. After the central sequence in Goa, the colonel leaves home and dies, and Myshkin becomes engaged to Amba. However, he suffers an epileptic fit and the next day Nastasia breaks the engagement, claiming Myshkin for herself. Just before their wedding she again runs away to Raghujan who eventually kills her, after which he spends the night with Myshkin awaiting the police. In the end Myshkin is revealed to have gone mad. Kaul coolly orchestrates with great virtuosity the continuously mobile, elusive points of ‘stress’ (in Kaul’s phrase) as they shift from geographic location to cinematic space and back again, from the editing and gestural rhythms to the discontinuous soundtrack, achieving a multi-layered cinematic texture that at times threatens to stretch beyond the boundaries of the frame. The innovative approach to plot and narration keeps the film on a precarious edge between formal control and random collisions of speech and identity. Much of the film’s successful use of characters as ‘independent vertices’ (as the director describes them) follows the extraordinary performance of British Asian actor Ayub Khan who uses his difficulties with Hindi to considerable advantage as the nervous and culturally dislocated epileptic. The director commented: ‘Whereas for years I dealt on rarefied wholes where the line of the narrative often vanished into thin air, with Idiot I have plunged into an extreme saturation of events. [P]ersonally, I find myself on the brink, exposed to a series of possible disintegrations. Ideas, then, cancel each other out and the form germinates. Content belongs to the future, and that’s how it creeps into the present. The film was made as a four-part TV series running 223’ and edited down to feature length. Writer: Anup Singh; Cinematographer: Piyush Shah; Editor: Lalitha Krishna; Composer: D. Wood, Vikram Joglekar Cast: Ayub Khan Din, Shah Rukh Khan, Mita Vasisht, Navjot Hansra, Vasudeo Bhatt, Deepak Mahan, Babulal Bora, Meenakshi Goswami, Zul Velani, Amritlal Thulal, Amrit Nath, Thulal Parveen, Amritlal Thulal, Dastur Navneet Virk
    https://wn.com/अहमक़_Ahmaq_|_The_Idiot_|_1991_|_Shahrukh_Khan_|_Dir_Mani_Kaul_Shahrukhkhan_Fyodordostoyevsky
    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 1
    58:28

    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 1

    • Order:
    • Duration: 58:28
    • Uploaded Date: 30 Dec 2021
    • views: 3217
    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.
    https://wn.com/Idiot_Aka_Ahmaq_(1992)_W_Esub_||_Shah_Rukh_Khan_||_Mani_Kaul_||_Part_1
    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 4
    56:47

    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 4

    • Order:
    • Duration: 56:47
    • Uploaded Date: 30 Dec 2021
    • views: 1518
    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.
    https://wn.com/Idiot_Aka_Ahmaq_(1992)_W_Esub_||_Shah_Rukh_Khan_||_Mani_Kaul_||_Part_4
    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 2
    58:37

    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 2

    • Order:
    • Duration: 58:37
    • Uploaded Date: 30 Dec 2021
    • views: 931
    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.
    https://wn.com/Idiot_Aka_Ahmaq_(1992)_W_Esub_||_Shah_Rukh_Khan_||_Mani_Kaul_||_Part_2
    The Shahrukh Khan film you don’t know | Idiot/Ahamaq (1992)
    8:25

    The Shahrukh Khan film you don’t know | Idiot/Ahamaq (1992)

    • Order:
    • Duration: 8:25
    • Uploaded Date: 07 Aug 2021
    • views: 1718
    This essay explores our problem taking this film in a context that has its plot copied pretty shamelessly from the original novel with the same name, but Kaul does these magical things with the cinematograph to articulate the psychological impact of the problem in a more lively sense. Shahrukh Khan and Mita Vashisht's antagonistic roles steal the show. Mani Kaul's Idiot/Ahamaq takes us through a journey of Myshkin's noble vision to reform the increasingly corrupt, greedy, manipulative world of 1900s post-colonial Bombay, especially the upper class. The egos are at war with one another and nobody thinks beyond themselves. However, Myshkin is, on the other end, a Nice Guy. Thus, his journey exposes the faults in his own goodness, which thrust him into the deepest forms of insanity that breed in this world. If I had to ever justify my stance, I'd put all my money on this film! Connect with me! Twitter - https://twitter.com/SurveSvanik Tumblr - https://www.tumblr.com/blog/thesuavecritic Facebook - https://www.facebook.com/svanik.surve.12 The Suave Critic Video Essays consist of analysis videos on your favourite Indian and World Arthouse Films that are predominantly focused on shedding light on the morality, art and language of filmmaking. The biggest observation made by us is that most of the video essays today borrow a lot of style from the films in the discussion, instead of focussing on producing a thought-provoking experience through a personal style. A lot of other essays are too fast and detached from the form of good filmmaking. The Suave Critic believes that the video essay is as much of an art as the film it is on. Svanik Surve is a film student who is passionate about Deleuzian film analysis and atmospheric filmmaking that slows down this fast-paced world and introduces thought into the frame. IDIOT // AHAMAQ Analysis | Shahrukh Khan, Mani Kaul tags: Dostoevsky the idiot Indian cinema Srk Chapters 0:00 - The Goodness Problem 1:15 - Mani Kaul's "Idiot" 2:00 - Myshkin the Misfit 2:42 - The Camera and Myshkin's World 3:48 - Amba The Soulmate 5:23 - Raghujan Brother Enemy 6:22 - Nastasya Dark Desire
    https://wn.com/The_Shahrukh_Khan_Film_You_Don’T_Know_|_Idiot_Ahamaq_(1992)
    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 3
    56:07

    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 3

    • Order:
    • Duration: 56:07
    • Uploaded Date: 30 Dec 2021
    • views: 564
    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was directed by Mani Kaul and starred Shah Rukh Khan and Ayub Khan-Din. The film debuted at the New York Film Festival in October 1992. In this version of the tale, placed in contemporary Mumbai, Prince Miskin (Khan-Din) is a man whose epilepsy is mistaken for idiocy.
    https://wn.com/Idiot_Aka_Ahmaq_(1992)_W_Esub_||_Shah_Rukh_Khan_||_Mani_Kaul_||_Part_3
    Shahrukh Khan in Mani Kaul's Idiot one of his first fillm appearance
    4:10

    Shahrukh Khan in Mani Kaul's Idiot one of his first fillm appearance

    • Order:
    • Duration: 4:10
    • Uploaded Date: 02 Nov 2015
    • views: 16650
    In the very begnning of his film career (1990), Shahrukh Khan worked with Mani Kaul for Ahmek, a film based on Fyodor Dostovesky's classic novel Idiot. The film was produced by Doordarshan.
    https://wn.com/Shahrukh_Khan_In_Mani_Kaul's_Idiot_One_Of_His_First_Fillm_Appearance
    Idiot Official Trailer | Mirchi Shiva | Nikki Galrani | Rambhala | Vikram Selva | Screen Scene Media
    1:25

    Idiot Official Trailer | Mirchi Shiva | Nikki Galrani | Rambhala | Vikram Selva | Screen Scene Media

    • Order:
    • Duration: 1:25
    • Uploaded Date: 25 Apr 2021
    • views: 7009842
    Screen Scene Media presents the trailer of the upcoming ghost spoof film "Idiot." Here's the Tamil movie trailer starring Mirchi Shiva and Nikki Galrani, Directed by Rambhala. Stay tuned to Screen Scene Media for more updates on the movie. Cast & Crew Details Cast: Mirchi Shiva, Nikki Galrani, Anandraj, Oorvasi, Akshara Gowda, Mayilsamy, Singamuthu, Ravi Mariya, Kingsly & Others Producer By: Screen Scene Media Entertainment Pvt Ltd Executive Producer: Siddharth Ravipati Head of Distribution: Kiran Kumar S Line Producer : Subramanian Narayanan Director: Rambhala Cinematographer: Raja Bhattacharjee Music Director: Vikram Selva Art Director: Videsh Editor: Madhavan Publicity Designer: Pawan Costume Designer: Abhinaya K Production Manager: N.R. Kumar Subscribe to our Channel - https://bit.ly/2UAQrs0 In Association with Divo http://www.facebook.com/divomovies https://twitter.com/divomovies #idiotofficialtrailer #mirchishiva #nikkigalrani
    https://wn.com/Idiot_Official_Trailer_|_Mirchi_Shiva_|_Nikki_Galrani_|_Rambhala_|_Vikram_Selva_|_Screen_Scene_Media
    Idiot Full Movie | Ravi Teja, Rakshita, Prakash Raj, Ali | Puri Jagannadh | Chakri
    2:13:46

    Idiot Full Movie | Ravi Teja, Rakshita, Prakash Raj, Ali | Puri Jagannadh | Chakri

    • Order:
    • Duration: 2:13:46
    • Uploaded Date: 09 Sep 2016
    • views: 271305
    Watch Idiot Full Movie, Starring Ravi Teja, Rakshita, Prakash Raj, Ali, Kota Srinivasarao among others. Directed and Produced by Puri Jagannadh. Music Composed by Chakri.
    https://wn.com/Idiot_Full_Movie_|_Ravi_Teja,_Rakshita,_Prakash_Raj,_Ali_|_Puri_Jagannadh_|_Chakri
    Ravi Teja | Idiot Full Movie | South Indian Action Movie Dubbed in Hindi | Prakash Raj
    1:50:12

    Ravi Teja | Idiot Full Movie | South Indian Action Movie Dubbed in Hindi | Prakash Raj

    • Order:
    • Duration: 1:50:12
    • Uploaded Date: 27 Jan 2022
    • views: 18715410
    Here's presenting Idiot Full Hindi Dubbed South (Sauth) Action Comedy Movie starring Ravi Teja, Rakshita, Prakash Raj Censor Certification Number:- DIL/2/531/2019 - MUM Movie (Hindi Dubbed):- Idiot Original Movie Name: Idiot: O Chanti Gaadi Prema Katha in Telugu StarCast:- Ravi Teja, Rakshita, Prakash Raj Music:- Chakri Producer:- Puri Jagannadh Director:- Puri Jagannadh #IdiotMovie #RaviTeja #PrakashRaj Chanti, a young man, is rescued by Suchitra when he is beaten by thugs. He falls in love with her and tries to woo her, but she does not reciprocate his feelings. Disclaimer:- We are only the right holders of this content. Any opinions expressed in this Film may purely be of the director or the original producers but are not our personal opinions and we do not assume any responsibility or liability for the same. Kindly subscribe to the channel and Press the BELL ICON to get Instant Notifications from RKD Studios. Subscribe To Our Channel : https://www.youtube.com/channel/UCjBwQ6M9QyCgO5Pp-TQRFUA?sub_confirmation=1 Follow Us On:- Facebook: https://www.facebook.com/RKDStudiosOfficial/ Instagram:- https://www.instagram.com/rkdstudios
    https://wn.com/Ravi_Teja_|_Idiot_Full_Movie_|_South_Indian_Action_Movie_Dubbed_In_Hindi_|_Prakash_Raj
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    ရေမွန်(Idiots)-သုံ့ပန်း(Thone Pann)

    4:59
    ရေမွန်(Idiots)-သုံ့ပန်း(Thone Pann)
    published: 27 Jun 2021
    Play in Full Screen
    22:09
    Raymond(ရေမွန်) - idiots
    #raymond #ရေမွန် #idiots #ချန်ခဲ့ #ဝမ်းနည်းတတ်တဲ့ချစ်သူ #ဘာလိုနေသေးလဲ #သုံ့ပန်း #သေလို့ရတယ...
    published: 30 Jul 2023
    Play in Full Screen
    1:58:03
    Idiot | Tamil Full Movie | Mirchi Shiva | Nikki Galrani | 4K (English Subtitle)
    The descendants of two men who betrayed a royal family centuries ago are caught up in even...
    published: 19 May 2022
    Play in Full Screen
    4:13
    ပျော်ပျော်နေ - IDIOTS
    #IDIOTS_NEW_SONG #ပျော်ပျော်နေ ---------------------------------------------------- Idiots...
    published: 23 Jun 2024
    Play in Full Screen
    3:10
    Idiots - ဆုလာဘ်
    https://open.spotify.com/artist/4FNDlNeRMeQYQCHnrmYUHB https://music.apple.com/us/artist/i...
    published: 11 Oct 2019
    Play in Full Screen
    4:16
    ဘာလိုနေသေးလဲ - Idiots [THAISUB/LYRICS](ยังต้องการอะไร - แปลไทย)
    Title :​ ​ဘာလိုနေသေးလဲ Artist : Idiots Myanmarsong เพลงพม่าแปลไทย
    published: 29 May 2023
    Play in Full Screen
    18:48
    TOTAL IDIOTS AT WORK #18 / Instant Regret Fails Compilation 2024
    Welcome to BTS _ Idiots At Work! Here, you’ll witness the funniest fails and blunders stra...
    published: 09 Nov 2024
    Play in Full Screen
    15:54
    35 Crazy Moments Car Crashes of Idiots In Cars Got Instant Karma You Wouldn't Believe if Not Filmed
    35 Crazy Moments Car Crashes of Idiots In Cars Got Instant Karma You Wouldn't Believe if N...
    published: 01 Nov 2024
    Play in Full Screen
    4:59
    ထွက်သွားလိုက်ပါ - IDIOTS
    ---------------------------------------------------- https://open.spotify.com/artist/4FNDl...
    published: 02 Jan 2024
    Play in Full Screen
    30:09
    Total Idiots at Work Caught on Camera
    Get ready to see our new compilation of the wildest workplace fails - from hilarious to do...
    published: 09 Nov 2024
    Play in Full Screen

    Idiot

    An idiot, dolt, dullard or (archaically) mome is a person perceived to be lacking intelligence, or someone who acts in a self-defeating or significantly counterproductive way. Along with the similar terms moron, imbecile, and cretin, the word archaically referred to the intellectually disabled, but have all since gained specialized meanings in modern times. An idiot is said to be idiotic, and to suffer from idiocy. A dunce is an idiot who is specifically incapable of learning. An idiot differs from a fool (who is unwise) and an ignoramus (who is uneducated/an ignorant), neither of which refers to someone with low intelligence. In modern English usage, the terms "idiot" and "idiocy" describe an extreme folly or stupidity, and its symptoms (foolish or stupid utterance or deed). In psychology, it is a historical term for the state or condition now called profound intellectual disability.

    Etymology

    Idiot is a word derived from the Greek ἰδιώτης, idiōtēs ("person lacking professional skill", "a private citizen", "individual"), from ἴδιος, idios ("private", "one's own"). In Latin the word idiota ("ordinary person, layman") preceded the Late Latin meaning "uneducated or ignorant person". Its modern meaning and form dates back to Middle English around the year 1300, from the Old French idiote ("uneducated or ignorant person"). The related word idiocy dates to 1487 and may have been analogously modeled on the words prophet and prophecy. The word has cognates in many other languages.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Official Trailer | Idiot | Ankush | Srabonti | Latest Bengali Movie 2016

    Click Here to Subscribe :- http://bit.ly/EskayMovies Movie - Idiot Director - Rajeev Biswas Music Director - Shree Pritam Artist - Ankush , Srabonti & others Producer - Eskay Movies Presenter - Himanshu Dhanuka, Ashok Dhanuka Banner - Eskay Movies Meet us on :- Facebook.com/EskayMovies YouTube.com/EskayMoviesOnline Twitter.com/EskayMovies
    1:59
    Official Trailer | Idiot | Ankush | Srabonti | Latest Bengali Movie 2016
    Click Here to Subscribe :- http://bit.ly/EskayMovies Movie - Idiot Director - Rajeev Bisw...
    published: 29 Sep 2016
    Play in Full Screen
    2:04:36
    ইডিয়ট Idiot 2012, Bengoli Movie,Ankush Hazra,Srabanti Chatterjee ll Full Facts And Review
    ইডিয়ট Idiot 2012, Bengoli Movie,Ankush Hazra,Srabanti Chatterjee ll Full Facts And Review
    published: 25 Apr 2023
    Play in Full Screen
    4:05
    idiot short (Kolkata Movies) channel Mix-Rohim studio
    published: 25 Jun 2022
    Play in Full Screen
    2:03:33
    Idiot (2012) Bengali full movie facts | Ankush Hazra | Srabanti Chatterjee
    published: 02 Oct 2023
    Play in Full Screen
    2:21:03
    idiot ( ইডিয়েট মুভি অঙ্কুশের ) full movie 2012 bengali ankush subhashree 65 facts & story explain
    idiot ( ইডিয়েট মুভি অঙ্কুশের ) full movie 2012 bengali ankush subhashree 65 facts & story...
    published: 12 Nov 2022
    Play in Full Screen
    2:02
    ৫০০ টাকার খুচরো কেউ যখন দিতে পারে না #Idiot Ankush Hazra
    Ankush Hazra and Aditya Pancholi funny scenes. We hope you will like watching this Comedy ...
    published: 06 Jul 2018
    Play in Full Screen
    7:32
    The Idiot (2012) I Short Film
    Engulfed by an all pervading Fear a man escapes both from the dream and reality. However, ...
    published: 29 Mar 2020
    Play in Full Screen
    4:26
    Saajna Pass Ay Tu Jara (Full Video) | Idiot | Ankush | Srabanti | Love Song | Eskay Movies
    Saajna Pass Ay Tu Jara (Full Video) | Idiot | Ankush | Srabanti | Love Song | Eskay Movies...
    published: 10 Sep 2016
    Play in Full Screen
    2:03:41
    Idiot (2012) - Ankush Hazra FULL BENGALI MOVIE Facts and Review, Sabranti Chatterjee
    Idiot (2012) Full Bengali Movie Facts and Review Cast - Ankush Hazra, Sabranti Chatterjee...
    published: 06 Oct 2022
    Play in Full Screen
    4:01
    Hari Din To Gelo (Full Video) | Ankush | Srabanti | Zubeen | Idiot | Eskay Movies
    Hari Din To Gelo (Full Video) | Ankush | Srabanti | Zubeen | Idiot | Eskay Movies Click H...
    published: 01 Sep 2016
    Play in Full Screen
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    अहमक़ - Ahmaq | The Idiot | 1991 | ShahRukh Khan | Dir - Mani Kaul #shahrukhkhan #fyodordostoyevsky

    With this tour de force of control over a bewilderingly complex narrative and a massive cast of characters (more than 50 key roles) constantly shifting about in both geographic and cinematic spaces, Mani Kaul continues exploring Dostoevsky’s fiction (cf. Nazar, 1989), faithfully following the novel’s original plot transposed into a scathing depiction of a feudal elite, largely bypassed by history, located in Bombay and Goa. The story begins with the return of Myshkin (Ayub Khan), having spent many years in London undergoing treatment for epilepsy. He encounters the beautiful Nastasia (Vasisth), a femme fatale pursued by the rich Pawan Raghujan (Shah Rukh Khan) and the ambitious Ganesh (Mahan). The wealthy milieu seems to live in a vacuum, alongside a formerly productive generation, such as the businessman Mehta (Velani) and his proud daughter Amba (Hansra) or the retired, drunken colonel (Bora) who is accompanied by characters like Killer and the cynical and suicidal Shapit (Thulal) on the beaches of Goa. At Nastasia’s party both Ganesh and Myshkin propose to her, but she leaves with Raghujan who throws a bundle of banknotes at her which she proceeds to burn. After the central sequence in Goa, the colonel leaves home and dies, and Myshkin becomes engaged to Amba. However, he suffers an epileptic fit and the next day Nastasia breaks the engagement, claiming Myshkin for herself. Just before their wedding she again runs away to Raghujan who eventually kills her, after which he spends the night with Myshkin awaiting the police. In the end Myshkin is revealed to have gone mad. Kaul coolly orchestrates with great virtuosity the continuously mobile, elusive points of ‘stress’ (in Kaul’s phrase) as they shift from geographic location to cinematic space and back again, from the editing and gestural rhythms to the discontinuous soundtrack, achieving a multi-layered cinematic texture that at times threatens to stretch beyond the boundaries of the frame. The innovative approach to plot and narration keeps the film on a precarious edge between formal control and random collisions of speech and identity. Much of the film’s successful use of characters as ‘independent vertices’ (as the director describes them) follows the extraordinary performance of British Asian actor Ayub Khan who uses his difficulties with Hindi to considerable advantage as the nervous and culturally dislocated epileptic. The director commented: ‘Whereas for years I dealt on rarefied wholes where the line of the narrative often vanished into thin air, with Idiot I have plunged into an extreme saturation of events. [P]ersonally, I find myself on the brink, exposed to a series of possible disintegrations. Ideas, then, cancel each other out and the form germinates. Content belongs to the future, and that’s how it creeps into the present. The film was made as a four-part TV series running 223’ and edited down to feature length. Writer: Anup Singh; Cinematographer: Piyush Shah; Editor: Lalitha Krishna; Composer: D. Wood, Vikram Joglekar Cast: Ayub Khan Din, Shah Rukh Khan, Mita Vasisht, Navjot Hansra, Vasudeo Bhatt, Deepak Mahan, Babulal Bora, Meenakshi Goswami, Zul Velani, Amritlal Thulal, Amrit Nath, Thulal Parveen, Amritlal Thulal, Dastur Navneet Virk
    3:10:25
    अहमक़ - Ahmaq | The Idiot | 1991 | ShahRukh Khan | Dir - Mani Kaul #shahrukhkhan #fyodordostoyevsky
    With this tour de force of control over a bewilderingly complex narrative and a massive ca...
    published: 02 Nov 2022
    Play in Full Screen
    58:28
    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 1
    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was dire...
    published: 30 Dec 2021
    Play in Full Screen
    56:47
    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 4
    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was dire...
    published: 30 Dec 2021
    Play in Full Screen
    58:37
    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 2
    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was dire...
    published: 30 Dec 2021
    Play in Full Screen
    8:25
    The Shahrukh Khan film you don’t know | Idiot/Ahamaq (1992)
    This essay explores our problem taking this film in a context that has its plot copied pre...
    published: 07 Aug 2021
    Play in Full Screen
    56:07
    Idiot aka Ahmaq (1992) w/Esub || Shah Rukh Khan || Mani Kaul || Part 3
    Idiot is a 1992 Hindi film based on Fyodor Dostoevsky's 1869 novel, The Idiot. It was dire...
    published: 30 Dec 2021
    Play in Full Screen
    4:10
    Shahrukh Khan in Mani Kaul's Idiot one of his first fillm appearance
    In the very begnning of his film career (1990), Shahrukh Khan worked with Mani Kaul for Ah...
    published: 02 Nov 2015
    Play in Full Screen
    1:25
    Idiot Official Trailer | Mirchi Shiva | Nikki Galrani | Rambhala | Vikram Selva | Screen Scene Media
    Screen Scene Media presents the trailer of the upcoming ghost spoof film "Idiot." Here's t...
    published: 25 Apr 2021
    Play in Full Screen
    2:13:46
    Idiot Full Movie | Ravi Teja, Rakshita, Prakash Raj, Ali | Puri Jagannadh | Chakri
    Watch Idiot Full Movie, Starring Ravi Teja, Rakshita, Prakash Raj, Ali, Kota Srinivasarao ...
    published: 09 Sep 2016
    Play in Full Screen
    1:50:12
    Ravi Teja | Idiot Full Movie | South Indian Action Movie Dubbed in Hindi | Prakash Raj
    Here's presenting Idiot Full Hindi Dubbed South (Sauth) Action Comedy Movie starring Ravi ...
    published: 27 Jan 2022
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×