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

Chief Justice

The Chief Justice is the presiding member of a supreme court in any of many countries with a justice system based on English common law, such as the Supreme Court of Canada, the Supreme Court of Singapore, the Court of Final Appeal of Hong Kong, the Supreme Court of Japan, the Supreme Court of India, the Supreme Court of Pakistan, the Supreme Court of Nepal, the Constitutional Court of South Africa, the Supreme Court of Ireland, the Supreme Court of New Zealand, the High Court of Australia, the Supreme Court of the United States, and provincial or state supreme courts.

The situation is slightly different in the three legal jurisdictions within the United Kingdom. The courts of England and Wales are headed by the Lord Chief Justice of England and Wales; in Northern Ireland's courts, the equivalent position is the Lord Chief Justice of Northern Ireland and in Scottish courts, the equivalent is the Lord President of the Court of Session. These three judges are not, though, part of the Supreme Court of the United Kingdom, which operates across all three jurisdictions and is headed by the President of the Supreme Court of the United Kingdom.

Chief Justice of the United States

The Chief Justice of the United States is the head of the United States federal court system (the judicial branch of the federal government of the United States) and the chief judge of the Supreme Court of the United States. The Chief Justice is one of nine Supreme Court justices; the other eight are the Associate Justices of the Supreme Court of the United States. From 1789 until 1866, the office was known as the Chief Justice of the Supreme Court.

The Chief Justice is the highest judicial officer in the country, and acts as a chief administrative officer for the federal courts and as head of the Judicial Conference of the United States appoints the director of the Administrative Office of the United States Courts. The Chief Justice also serves as a spokesperson for the judicial branch.

The Chief Justice leads the business of the Supreme Court and presides over oral arguments before the court. When the court renders an opinion, the Chief Justice—when in the majority—decides who writes the court's opinion. The Chief Justice also has significant agenda-setting power over the court's meetings. In the case of an impeachment of a President of the United States, which has occurred twice, the Chief Justice presides over the trial in the Senate. In modern tradition, the Chief Justice has the ceremonial duty of administering the oath of office of the President of the United States.

Chief Justice of Hungary

The chief justice (Hungarian: királyi személynök,Latin: personalis praesentiae regiae in judiciis locumtenens,German: Königliche Personalis) was the personal legal representative of the King of Hungary, who issued decrees of judicial character on behalf of the monarch authenticated with the royal seal, performed national notarial activities and played an important role in the organisation of lawyers training. Later the chief justice was the head of the Royal Court of Justice (Hungarian: Királyi Ítélőtábla, Latin: Tabula Regia Iudiciaria) and the Tribunal of the Chief Justice (Hungarian: személynöki szék, Latin: sedes personalitia), the highest legal forum of civil cases.

Origins

The office of personalis evolved since the early 15th century within the royal chancellery. In the beginning, the king was represented by the secret chancellor in the judiciary (judge of personal presence). The first known chief justice was Janus Pannonius, a Croato-Hungarian humanist poet who returned to Hungary after finishing studies at the University of Padua in 1458, the coronation year of Matthias Corvinus. Pannonius served as chief justice until 1459, when he was elected as the Bishop of Pécs. Until the 1464 reform, the complete list of chief justices is unknown. It is certain that Albert Vetési, Bishop of Veszprém held the office for a short time around 1460.

Podcasts:

  • Sorry, Chief Justice Chandrachud! You Don't Get to Blame God for Your Own Awful Ayodhya Judgment

    Siddharth Varadarajan explains why the CJI’s explanation for the Supreme Court judgment in the Ayodhya case should alarm us all. Read here: https://thewire.in/law/justice-chandrachud-should-not-blame-god-for-his-own-awful-ayodhya-judgment Join The Wire's Youtube Membership and get exclusive content, member-only emojis, live interaction with The Wire's founders, editors and reporters and much more. Memberships to The Wire Crew start at Rs 89/month. https://www.youtube.com/channel/UChWtJey46brNr7qHQpN6KLQ/join

    published: 22 Oct 2024
  • Deputy Chief Justice Philomena Mwilu: The impeachment process of DP Gachagua is not unique

    Deputy Chief Justice Philomena Mwilu: The impeachment process of DP Gachagua is not unique. It is an application of the constitution.

    published: 17 Oct 2024
  • Profile of Sanjiv Khanna, new Chief Justice of India

    Justice Sanjiv Khanna takes over as the 51st Chief Justice of India on November 11th for a brief tenure of six months till his retirement in May 2025. The incumbent CJI, Dr D.Y. Chandrachud, is slated to demit office on November 10th after nearly two years in office. We look at Justice Khanna’s illustrious family legacy, his rise from Tis Hazari court to Delhi High Court, his controversial elevation to the Supreme Court, his five years as a Supreme Court judge, and some of the important cases that lie ahead for him. Presentation and script: Aaratrika Bhaumik Editing: Sabika Syed Thank you for watching our video! You can subscribe to our channel here: https://bit.ly/3c8Adi6 Visit https://www.thehindu.com/ for the latest updates, analysis, opinions, and more. You can also download ou...

    published: 08 Nov 2024
  • Should Judges Have a Retirement Age? | Chief Justice D.Y. Chandrachud on Ginsburg's Legacy | Adda

    In a conversation at Express Adda with Anant Goenka, Chief Justice D.Y. Chandrachud discusses the importance of retirement age for judges, drawing insights from Ruth Bader Ginsburg's legacy and comparing Indian and American judicial systems. Chandrachud highlights the necessity of making way for future perspectives, reflecting on his own experience of overturning past judgments, including those of his father. #ChiefJustice #DYChandrachud #JudicialReform #RuthBaderGinsburg #ExpressAdda The Indian Express covers all national & international news, which includes daily news updates, political news, election news, gadgets and Mobile reviews, technology updates, Entertainment News, Bollywood news, public opinions and views on daily trends. Indian Express newspaper offers a comprehensive pac...

    published: 18 Nov 2024
  • Swearing-in-Ceremony of the 51st Chief Justice of India Sanjiv Khanna at Rashtrapati Bhavan

    Sansad Television is the Parliamentary channel of India. It was created in 2021 by merging Lok Sabha Television and Rajya Sabha Television. Follow us on: -Twitter: https://twitter.com/sansad_tv -Insta: https://www.instagram.com/sansad.tv -FB: https://www.facebook.com/SansadTelevision/ -https://whatsapp.com/channel/0029VanOx2c3wtbCBjvk2617 -WhatsApp: https://whatsapp.com/channel/0029VanOx2c3wtbCBjvk2617 -https://www.linkedin.com/company/105232558/admin/page-posts/published/ Visit Sansad TV website: https://sansadtv.nic.in/

    published: 11 Nov 2024
  • CJI DY Chandrachud Names His Favourite Musician #shorts

    CJI DY Chandrachud Names His Favourite Musician #shorts #BestOfConclave #indiatodayconclave2023 #chandrachud #cji #shorts Chief Justice exclusive interview at India Today Conclave 2023 on what he believes is the importance of separation of powers in a democracy. Watch India Today Conclave 2023 as exciting innovators, thought leaders, impact creators, policy makers, and path-finders driving change talk to India Today about their vision of the role of ‘New India’ in the new world. With the 20th anniversary edition of the India Today Conclave, India is slated to become a magnetic new centre and it’s stewardship of the G20 this year offers a big opportunity for it to imprint its agenda in an emerging multipolar world. This is the India Moment. #cjidychandrachud #indiatodayconclave2023 #i...

    published: 06 May 2023
  • CJI DY Chandrachud | How AI Responded To Chief Justice DY Chandrachud's Death Penalty Question

    Chief Justice of India DY Chandrachud, known to pull up lawyers for breaking court decorum, had an Artificial Intelligence (AI) lawyer to deal with today. The interaction took place at the inauguration ceremony of the National Judicial Museum and Archive. To test the AI lawyer's knowledge, the Chief Justice asked, "Is the death penalty constitutional in India?" The AI lawyer, in the form of a spectacled man wearing an advocate's bow tie and coat, replied, "Yes, the death penalty is constitutional in India. It is reserved for the rarest of rare cases as determined by the Supreme Court where the crime is exceptionally heinous and warrants such a punishment." The Chief Justice looked impressed by the response. Justice Sanjiv Khanna, who is set to take over as the next Chief Justice on Monday...

    published: 07 Nov 2024
  • Hear what Justice Roberts did behind the scenes before Trump immunity ruling

    The Supreme Court’s toughest cases during Chief Justice John Roberts’ tenure have often generated internal suspense, with shifting votes, last-minute switches and the chief’s own push toward compromises that would lessen the appearance of politics. Not so this spring, when the six Republican-appointed conservatives established a far-reaching immunity from prosecution for former President Donald Trump. CNN’s Joan Biskupic reports. #CNN #News Want to stay up to date on the day’s top stories? Sign up for CNN’s 5 Things newsletter, and we’ll give you the 5 biggest stories you need to know, videos people are watching, and more! Sign up here: https://www.cnn.com/newsletters/5-things?source=nl-acq_social_youtubedesc&utm_source=nl-acq_social_youtubedesc

    published: 30 Jul 2024
  • ‘Shocking’, ‘Absurd’: Chief Justice Roberts urged to act as Supreme Court scandals mount

    Congressman Dan Goldman joins to discuss Justice Samuel Alito rejecting calls for him to recuse from Jan. 6 cases amid his flag scandals. “It is up to Chief Justice Roberts to save the court's legitimacy right now,” says Goldman.  » Subscribe to MSNBC: https://www.youtube.com/msnbc Download our new MSNBC app for the latest breaking news and daily headlines at a glance: https://www.msnbc.com/information/download-msnbc-app-n1241692 Follow MSNBC Show Blogs MaddowBlog: https://www.msnbc.com/maddowblog ReidOut Blog: https://www.msnbc.com/reidoutblog MSNBC delivers breaking news, in-depth analysis of politics headlines, as well as commentary and informed perspectives. Find video clips and segments from The Rachel Maddow Show, Morning Joe, The Beat with Ari Melber, Deadline: White House, Th...

    published: 30 May 2024
  • Justice Sanjiv Khanna: The 51st Chief Justice Of India.

    #JusticeSanjivKhanna #51stCJI #ChiefJusticeOfIndia #CJI #LiveLaw #IndianJudiciary #LegalJourney #SupremeCourtIndia #JudicialLeadership #CJI51 #DelhiHighCourt #FamilyLegacy #LandmarkJudgments #JudicialTransparency #ConstitutionalLaw #ElectionCommission #ElectoralBonds #LegalInsights #JusticeWithIntegrity #NewCJI #IndiaLegalNews #JudicialMilestone #LegalCommunity #JusticeSanjivKhannaInFocus LiveLaw brings you the latest legal news and updates from India and beyond. We are into fact based legal journalism. Endeavour of LiveLaw is to play an active role for a transparent and democratic legal ecosystem, in the larger public interest. This video is an intellectual property belonging to LiveLaw Media Pvt Ltd. Any unauthorised usage of this video/script in any format is prohibited and will be...

    published: 11 Nov 2024
Sorry, Chief Justice Chandrachud! You Don't Get to Blame God for Your Own Awful Ayodhya Judgment
7:52

Sorry, Chief Justice Chandrachud! You Don't Get to Blame God for Your Own Awful Ayodhya Judgment

  • Order:
  • Duration: 7:52
  • Uploaded Date: 22 Oct 2024
  • views: 128778
Siddharth Varadarajan explains why the CJI’s explanation for the Supreme Court judgment in the Ayodhya case should alarm us all. Read here: https://thewire.in/law/justice-chandrachud-should-not-blame-god-for-his-own-awful-ayodhya-judgment Join The Wire's Youtube Membership and get exclusive content, member-only emojis, live interaction with The Wire's founders, editors and reporters and much more. Memberships to The Wire Crew start at Rs 89/month. https://www.youtube.com/channel/UChWtJey46brNr7qHQpN6KLQ/join
https://wn.com/Sorry,_Chief_Justice_Chandrachud_You_Don't_Get_To_Blame_God_For_Your_Own_Awful_Ayodhya_Judgment
Deputy Chief Justice Philomena Mwilu: The impeachment process of DP Gachagua is not unique
1:21

Deputy Chief Justice Philomena Mwilu: The impeachment process of DP Gachagua is not unique

  • Order:
  • Duration: 1:21
  • Uploaded Date: 17 Oct 2024
  • views: 44608
Deputy Chief Justice Philomena Mwilu: The impeachment process of DP Gachagua is not unique. It is an application of the constitution.
https://wn.com/Deputy_Chief_Justice_Philomena_Mwilu_The_Impeachment_Process_Of_Dp_Gachagua_Is_Not_Unique
Profile of Sanjiv Khanna, new Chief Justice of India
7:15

Profile of Sanjiv Khanna, new Chief Justice of India

  • Order:
  • Duration: 7:15
  • Uploaded Date: 08 Nov 2024
  • views: 98810
Justice Sanjiv Khanna takes over as the 51st Chief Justice of India on November 11th for a brief tenure of six months till his retirement in May 2025. The incumbent CJI, Dr D.Y. Chandrachud, is slated to demit office on November 10th after nearly two years in office. We look at Justice Khanna’s illustrious family legacy, his rise from Tis Hazari court to Delhi High Court, his controversial elevation to the Supreme Court, his five years as a Supreme Court judge, and some of the important cases that lie ahead for him. Presentation and script: Aaratrika Bhaumik Editing: Sabika Syed Thank you for watching our video! You can subscribe to our channel here: https://bit.ly/3c8Adi6 Visit https://www.thehindu.com/ for the latest updates, analysis, opinions, and more. You can also download our apps: Android: https://bit.ly/3nboBEi iOs: https://apple.co/3EDCwt4 The Hindu is committed to keeping you up-to-date with information on the developments in India and the world. We promise to deliver quality journalism that stays away from vested interest and political propaganda. You can support us by subscribing to our digital offerings here: https://bit.ly/3emywiz Follow us: Twitter: https://twitter.com/the_hindu Instagram: https://www.instagram.com/the_hindu/
https://wn.com/Profile_Of_Sanjiv_Khanna,_New_Chief_Justice_Of_India
Should Judges Have a Retirement Age? | Chief Justice D.Y. Chandrachud on Ginsburg's Legacy | Adda
3:24

Should Judges Have a Retirement Age? | Chief Justice D.Y. Chandrachud on Ginsburg's Legacy | Adda

  • Order:
  • Duration: 3:24
  • Uploaded Date: 18 Nov 2024
  • views: 2582
In a conversation at Express Adda with Anant Goenka, Chief Justice D.Y. Chandrachud discusses the importance of retirement age for judges, drawing insights from Ruth Bader Ginsburg's legacy and comparing Indian and American judicial systems. Chandrachud highlights the necessity of making way for future perspectives, reflecting on his own experience of overturning past judgments, including those of his father. #ChiefJustice #DYChandrachud #JudicialReform #RuthBaderGinsburg #ExpressAdda The Indian Express covers all national & international news, which includes daily news updates, political news, election news, gadgets and Mobile reviews, technology updates, Entertainment News, Bollywood news, public opinions and views on daily trends. Indian Express newspaper offers a comprehensive package of news, including Indian Express editorial analysis and Indian Express analysis today. This well-respected publication covers a wide range of topics in its Indian Express editorial and Indian Express news sections. Stay informed with the Indian Express newspaper today. You can search us on YouTube by: @indianexpress, indian express, indian express newspaper today,indian express newspaper,indian express editorial analysis,indian express analysis,indian express analysis today,indian express,indian express news,the indian express newspaper analysis,the indian express,the indian express newspaper analysis today,the indian express editorial analysis,the indian express newspaper. Stay Tuned To Indian Express For More Updates: https://indianexpress.com/ Watch Out Our Weekly Shows: 🡆 Political Pulse - https://youtube.com/playlist?list=PLrDg7LoYgk9yWQFKrxgIIWgWV-Mbq2jwC 🡆 Express Explained In 60 Seconds - https://youtube.com/playlist?list=PLrDg7LoYgk9wf6MYiN9rR3zN3f-lWmfaS 🡆 Zero Hour with Derek O' Brien - https://youtube.com/playlist?list=PLrDg7LoYgk9w95L5sHxAhGVlNgsRFhMHq 🡆 Indian Express Explained - https://youtube.com/playlist?list=PLrDg7LoYgk9y8Wm50M57nutw5usWUkb-k 🡆 UPSC Essentials- https://www.youtube.com/watch?v=TuhtH8j4stw&list=PLrDg7LoYgk9wBTnLuSQmbj1_6U1K6IOYI #LatestNews #BreakingNews #EnglishNews Subscribe to our Channel: The Indian Express: https://www.youtube.com/c/indianexpress Subscribe to our Network Channels: Jansatta (Hindi): https://www.youtube.com/c/Jansatta Loksatta (Marathi): https://www.youtube.com/LOKSATTA The Financial Express https://www.youtube.com/c/FinancialExpress Express Drives (Auto): https://www.youtube.com/c/ExpressDrives Inuth (Youth): https://www.youtube.com/c/InUthdotcom Indian Express Bangla: https://www.youtube.com/c/IndianExpressBangla Indian Express Punjab: https://www.youtube.com/@indianexpresspunjab Indian Express Malayalam: https://www.youtube.com/c/iemalayalam Indian Express Tamil: https://www.youtube.com/@indianexpresstamil Connect with us: Facebook: https://www.facebook.com/indianexpress Twitter: https://twitter.com/indianexpress Indian Express App: http://indianexpress.com/apps/ Official Website: https://indianexpress.com/
https://wn.com/Should_Judges_Have_A_Retirement_Age_|_Chief_Justice_D.Y._Chandrachud_On_Ginsburg's_Legacy_|_Adda
Swearing-in-Ceremony of the 51st Chief Justice of India Sanjiv Khanna at Rashtrapati Bhavan
5:50

Swearing-in-Ceremony of the 51st Chief Justice of India Sanjiv Khanna at Rashtrapati Bhavan

  • Order:
  • Duration: 5:50
  • Uploaded Date: 11 Nov 2024
  • views: 462008
Sansad Television is the Parliamentary channel of India. It was created in 2021 by merging Lok Sabha Television and Rajya Sabha Television. Follow us on: -Twitter: https://twitter.com/sansad_tv -Insta: https://www.instagram.com/sansad.tv -FB: https://www.facebook.com/SansadTelevision/ -https://whatsapp.com/channel/0029VanOx2c3wtbCBjvk2617 -WhatsApp: https://whatsapp.com/channel/0029VanOx2c3wtbCBjvk2617 -https://www.linkedin.com/company/105232558/admin/page-posts/published/ Visit Sansad TV website: https://sansadtv.nic.in/
https://wn.com/Swearing_In_Ceremony_Of_The_51St_Chief_Justice_Of_India_Sanjiv_Khanna_At_Rashtrapati_Bhavan
CJI DY Chandrachud Names His Favourite Musician #shorts
0:34

CJI DY Chandrachud Names His Favourite Musician #shorts

  • Order:
  • Duration: 0:34
  • Uploaded Date: 06 May 2023
  • views: 295208
CJI DY Chandrachud Names His Favourite Musician #shorts #BestOfConclave #indiatodayconclave2023 #chandrachud #cji #shorts Chief Justice exclusive interview at India Today Conclave 2023 on what he believes is the importance of separation of powers in a democracy. Watch India Today Conclave 2023 as exciting innovators, thought leaders, impact creators, policy makers, and path-finders driving change talk to India Today about their vision of the role of ‘New India’ in the new world. With the 20th anniversary edition of the India Today Conclave, India is slated to become a magnetic new centre and it’s stewardship of the G20 this year offers a big opportunity for it to imprint its agenda in an emerging multipolar world. This is the India Moment. #cjidychandrachud #indiatodayconclave2023 #indiatoday #shorts Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and in-depth analysis of news from India and around the world! Download App: https://indiatoday.link/wHaj Follow us: Official website: https://www.indiatoday.in/ Twitter: https://twitter.com/IndiaToday Facebook: https://www.facebook.com/IndiaToday
https://wn.com/Cji_Dy_Chandrachud_Names_His_Favourite_Musician_Shorts
CJI DY Chandrachud | How AI Responded To Chief Justice DY Chandrachud's Death Penalty Question
1:02

CJI DY Chandrachud | How AI Responded To Chief Justice DY Chandrachud's Death Penalty Question

  • Order:
  • Duration: 1:02
  • Uploaded Date: 07 Nov 2024
  • views: 34828
Chief Justice of India DY Chandrachud, known to pull up lawyers for breaking court decorum, had an Artificial Intelligence (AI) lawyer to deal with today. The interaction took place at the inauguration ceremony of the National Judicial Museum and Archive. To test the AI lawyer's knowledge, the Chief Justice asked, "Is the death penalty constitutional in India?" The AI lawyer, in the form of a spectacled man wearing an advocate's bow tie and coat, replied, "Yes, the death penalty is constitutional in India. It is reserved for the rarest of rare cases as determined by the Supreme Court where the crime is exceptionally heinous and warrants such a punishment." The Chief Justice looked impressed by the response. Justice Sanjiv Khanna, who is set to take over as the next Chief Justice on Monday, was also present. Other Supreme Court judges also attended the inauguration. #CJI #Chandrachud #ChiefJusticeofIndia #DeathPenaltyQuestion #ArtificialIntelligence #AI #AITechnology About NDTV (English news channel): NDTV is India's Most-Trusted News Broadcaster with the latest updates in news, sports, entertainment and much more from within India and around the world. Watch big political debates, exclusive entertainment interviews, news bulletins, current affairs, talk shows and tech reviews with our 24x7 news live streams, packed with credible information across all platforms: TV, Internet and Mobile. For Latest Videos, click here: https://www.youtube.com/playlist?list=PLYSfYVdrOZvh5iPadUPTAg3sxFD_DZpT_ To watch NDTV 24x7's premium shows listed together for your easy access, click here: https://www.youtube.com/@NDTV/playlists?view=50&sort=dd&shelf_id=5 For Ground Reports and Analysis from NDTV's reporters and anchors of day's top news stories, click here: https://www.youtube.com/playlist?list=PLYSfYVdrOZvgHr6OHiZYKbr_21MOmvk04 For News in Shorts, click here: https://www.youtube.com/playlist?list=PLYSfYVdrOZvjJ8fhLPk_Fz4tFARkpG-Y- Subscribe to our channel to get latest news updates. Follow us on Social Media: Like us on Facebook: https://www.facebook.com/ndtv/ Follow us on Twitter: https://twitter.com/ndtv/ Follow us on Instagram: https://www.instagram.com/ndtv/ Follow us on WhatsApp: https://whatsapp.com/channel/0029Va4lixw7z4kcvZI9JM12 Join NDTV on Telegram Messenger: https://t.me/NDTVbot/?start=hi Follow us on Google News for Breaking and Latest News Updates: NDTV: https://bit.ly/3e5ngbP NDTV India (Hindi News): https://bit.ly/3mNVwMY Download NDTV Mobile Apps: http://www.ndtv.com/page/apps #BreakingNews #LatestNews #TodayNews #News #IndiaNews #NDTV #CurrentAffairs
https://wn.com/Cji_Dy_Chandrachud_|_How_Ai_Responded_To_Chief_Justice_Dy_Chandrachud's_Death_Penalty_Question
Hear what Justice Roberts did behind the scenes before Trump immunity ruling
5:22

Hear what Justice Roberts did behind the scenes before Trump immunity ruling

  • Order:
  • Duration: 5:22
  • Uploaded Date: 30 Jul 2024
  • views: 840548
The Supreme Court’s toughest cases during Chief Justice John Roberts’ tenure have often generated internal suspense, with shifting votes, last-minute switches and the chief’s own push toward compromises that would lessen the appearance of politics. Not so this spring, when the six Republican-appointed conservatives established a far-reaching immunity from prosecution for former President Donald Trump. CNN’s Joan Biskupic reports. #CNN #News Want to stay up to date on the day’s top stories? Sign up for CNN’s 5 Things newsletter, and we’ll give you the 5 biggest stories you need to know, videos people are watching, and more! Sign up here: https://www.cnn.com/newsletters/5-things?source=nl-acq_social_youtubedesc&utm_source=nl-acq_social_youtubedesc
https://wn.com/Hear_What_Justice_Roberts_Did_Behind_The_Scenes_Before_Trump_Immunity_Ruling
‘Shocking’, ‘Absurd’: Chief Justice Roberts urged to act as Supreme Court scandals mount
7:42

‘Shocking’, ‘Absurd’: Chief Justice Roberts urged to act as Supreme Court scandals mount

  • Order:
  • Duration: 7:42
  • Uploaded Date: 30 May 2024
  • views: 212158
Congressman Dan Goldman joins to discuss Justice Samuel Alito rejecting calls for him to recuse from Jan. 6 cases amid his flag scandals. “It is up to Chief Justice Roberts to save the court's legitimacy right now,” says Goldman.  » Subscribe to MSNBC: https://www.youtube.com/msnbc Download our new MSNBC app for the latest breaking news and daily headlines at a glance: https://www.msnbc.com/information/download-msnbc-app-n1241692 Follow MSNBC Show Blogs MaddowBlog: https://www.msnbc.com/maddowblog ReidOut Blog: https://www.msnbc.com/reidoutblog MSNBC delivers breaking news, in-depth analysis of politics headlines, as well as commentary and informed perspectives. Find video clips and segments from The Rachel Maddow Show, Morning Joe, The Beat with Ari Melber, Deadline: White House, The ReidOut, All In, Last Word, 11th Hour, and Alex Wagner who brings her breadth of reporting experience to MSNBC primetime. Watch “Alex Wagner Tonight” Tuesday through Friday at 9pm Eastern. Connect with MSNBC Online Visit msnbc.com: https://www.msnbc.com/ Subscribe to the MSNBC Daily Newsletter: https://link.msnbc.com/join/5ck/msnbc-daily-signup Find MSNBC on Facebook: https://www.facebook.com/msnbc/ Follow MSNBC on Twitter: https://twitter.com/MSNBC Follow MSNBC on Instagram: https://www.instagram.com/msnbc #SCOTUS #JusticeAlito #ChiefJustice
https://wn.com/‘Shocking’,_‘Absurd’_Chief_Justice_Roberts_Urged_To_Act_As_Supreme_Court_Scandals_Mount
Justice Sanjiv Khanna: The 51st Chief Justice Of India.
8:51

Justice Sanjiv Khanna: The 51st Chief Justice Of India.

  • Order:
  • Duration: 8:51
  • Uploaded Date: 11 Nov 2024
  • views: 24806
#JusticeSanjivKhanna #51stCJI #ChiefJusticeOfIndia #CJI #LiveLaw #IndianJudiciary #LegalJourney #SupremeCourtIndia #JudicialLeadership #CJI51 #DelhiHighCourt #FamilyLegacy #LandmarkJudgments #JudicialTransparency #ConstitutionalLaw #ElectionCommission #ElectoralBonds #LegalInsights #JusticeWithIntegrity #NewCJI #IndiaLegalNews #JudicialMilestone #LegalCommunity #JusticeSanjivKhannaInFocus LiveLaw brings you the latest legal news and updates from India and beyond. We are into fact based legal journalism. Endeavour of LiveLaw is to play an active role for a transparent and democratic legal ecosystem, in the larger public interest. This video is an intellectual property belonging to LiveLaw Media Pvt Ltd. Any unauthorised usage of this video/script in any format is prohibited and will be subject to prosecution. Stay updated. Subscribe to our channel https://bit.ly/2pskgB3 Support Us: https://bit.ly/35qFj6A Visit Our Website: https://www.livelaw.in/ https://hindi.livelaw.in Facebook: https://www.facebook.com/livelawindia https://www.facebook.com/LiveLawHindi Twitter: https://twitter.com/livelawindia https://twitter.com/LivelawH Instagram: https://www.instagram.com/livelaw.in/ https://www.instagram.com/livelawhindi/ Linkedin: https://www.linkedin.com/company/livelaw https://www.linkedin.com/company/livelaw-hindi Live Law app is India's fastest legal news app that will keep you updated on the latest law/legal news from India and across the world. Download now. Android: https://bit.ly/2toaimp iOS: https://apple.co/39dQ0vh
https://wn.com/Justice_Sanjiv_Khanna_The_51St_Chief_Justice_Of_India.
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Sorry, Chief Justice Chandrachud! You Don't Get to Blame God for Your Own Awful Ayodhya Judgment
    7:52
    Sorry, Chief Justice Chandrachud! You Don't Get to Blame God for Your Own Awful Ayodhya Judgmentremove from playlist
  • Profile of Sanjiv Khanna, new Chief Justice of India
    7:15
    Profile of Sanjiv Khanna, new Chief Justice of Indiaremove from playlist
  • Should Judges Have a Retirement Age? | Chief Justice D.Y. Chandrachud on Ginsburg's Legacy | Adda
    3:24
    Should Judges Have a Retirement Age? | Chief Justice D.Y. Chandrachud on Ginsburg's Legacy | Addaremove from playlist
  • Swearing-in-Ceremony of the 51st Chief Justice of India Sanjiv Khanna at Rashtrapati Bhavan
    5:50
    Swearing-in-Ceremony of the 51st Chief Justice of India Sanjiv Khanna at Rashtrapati Bhavanremove from playlist
  • CJI DY Chandrachud Names His Favourite Musician #shorts
    0:34
    CJI DY Chandrachud Names His Favourite Musician #shortsremove from playlist
  • CJI DY Chandrachud | How AI Responded To Chief Justice DY Chandrachud's Death Penalty Question
    1:02
    CJI DY Chandrachud | How AI Responded To Chief Justice DY Chandrachud's Death Penalty Questionremove from playlist
  • Hear what Justice Roberts did behind the scenes before Trump immunity ruling
    5:22
    Hear what Justice Roberts did behind the scenes before Trump immunity rulingremove from playlist
  • ‘Shocking’, ‘Absurd’: Chief Justice Roberts urged to act as Supreme Court scandals mount
    7:42
    ‘Shocking’, ‘Absurd’: Chief Justice Roberts urged to act as Supreme Court scandals mountremove from playlist
  • Justice Sanjiv Khanna: The 51st Chief Justice Of India.
    8:51
    Justice Sanjiv Khanna: The 51st Chief Justice Of India.remove from playlist
PLAYLIST TIME:

Sorry, Chief Justice Chandrachud! You Don't Get to Blame God for Your Own Awful Ayodhya Judgment

Siddharth Varadarajan explains why the CJI’s explanation for the Supreme Court judgment in the Ayodhya case should alarm us all. Read here: https://thewire.in/law/justice-chandrachud-should-not-blame-god-for-his-own-awful-ayodhya-judgment Join The Wire's Youtube Membership and get exclusive content, member-only emojis, live interaction with The Wire's founders, editors and reporters and much more. Memberships to The Wire Crew start at Rs 89/month. https://www.youtube.com/channel/UChWtJey46brNr7qHQpN6KLQ/join
7:52
Sorry, Chief Justice Chandrachud! You Don't Get to Blame God for Your Own Awful Ayodhya Judgment
Siddharth Varadarajan explains why the CJI’s explanation for the Supreme Court judgment in...
published: 22 Oct 2024
Play in Full Screen
1:21
Deputy Chief Justice Philomena Mwilu: The impeachment process of DP Gachagua is not unique
Deputy Chief Justice Philomena Mwilu: The impeachment process of DP Gachagua is not unique...
published: 17 Oct 2024
Play in Full Screen
7:15
Profile of Sanjiv Khanna, new Chief Justice of India
Justice Sanjiv Khanna takes over as the 51st Chief Justice of India on November 11th for a...
published: 08 Nov 2024
Play in Full Screen
3:24
Should Judges Have a Retirement Age? | Chief Justice D.Y. Chandrachud on Ginsburg's Legacy | Adda
In a conversation at Express Adda with Anant Goenka, Chief Justice D.Y. Chandrachud discus...
published: 18 Nov 2024
Play in Full Screen
5:50
Swearing-in-Ceremony of the 51st Chief Justice of India Sanjiv Khanna at Rashtrapati Bhavan
Sansad Television is the Parliamentary channel of India. It was created in 2021 by merging...
published: 11 Nov 2024
Play in Full Screen
0:34
CJI DY Chandrachud Names His Favourite Musician #shorts
CJI DY Chandrachud Names His Favourite Musician #shorts #BestOfConclave #indiatodayconcl...
published: 06 May 2023
Play in Full Screen
1:02
CJI DY Chandrachud | How AI Responded To Chief Justice DY Chandrachud's Death Penalty Question
Chief Justice of India DY Chandrachud, known to pull up lawyers for breaking court decorum...
published: 07 Nov 2024
Play in Full Screen
5:22
Hear what Justice Roberts did behind the scenes before Trump immunity ruling
The Supreme Court’s toughest cases during Chief Justice John Roberts’ tenure have often ge...
published: 30 Jul 2024
Play in Full Screen
7:42
‘Shocking’, ‘Absurd’: Chief Justice Roberts urged to act as Supreme Court scandals mount
Congressman Dan Goldman joins to discuss Justice Samuel Alito rejecting calls for him to r...
published: 30 May 2024
Play in Full Screen
8:51
Justice Sanjiv Khanna: The 51st Chief Justice Of India.
#JusticeSanjivKhanna #51stCJI #ChiefJusticeOfIndia #CJI #LiveLaw #IndianJudiciary #LegalJo...
published: 11 Nov 2024
Play in Full Screen

Chief Justice

The Chief Justice is the presiding member of a supreme court in any of many countries with a justice system based on English common law, such as the Supreme Court of Canada, the Supreme Court of Singapore, the Court of Final Appeal of Hong Kong, the Supreme Court of Japan, the Supreme Court of India, the Supreme Court of Pakistan, the Supreme Court of Nepal, the Constitutional Court of South Africa, the Supreme Court of Ireland, the Supreme Court of New Zealand, the High Court of Australia, the Supreme Court of the United States, and provincial or state supreme courts.

The situation is slightly different in the three legal jurisdictions within the United Kingdom. The courts of England and Wales are headed by the Lord Chief Justice of England and Wales; in Northern Ireland's courts, the equivalent position is the Lord Chief Justice of Northern Ireland and in Scottish courts, the equivalent is the Lord President of the Court of Session. These three judges are not, though, part of the Supreme Court of the United Kingdom, which operates across all three jurisdictions and is headed by the President of the Supreme Court of the United Kingdom.

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

Latest News for: chief justice

Edit

'Calcutta HC can't be dumping ground': Lawyers strike over Delhi judge shift

The Times of India 02 Apr 2025
... HC - Calcutta HC Bar Association, Bar Library Club and Incorporated Law Society - to write to Chief Justice TS Sivagnanam that their members would boycott the swearing-in ceremony of Justice Sharma.
Edit

Chief Justice Roberts Used a Federalist Myth to Threaten Trump - the Myth Began With Marbury

ACCESSWIRE 01 Apr 2025
JOHNS, FLORIDA / ACCESS Newswire / April 1, 2025 / On the first day of 2025, Chief Justice John G ... John Marshall was Secretary of State under John Adams when he was nominated to be Chief Justice - the ...
Edit

04/01/2025—New Chief Justice Sworn In (Supreme Court of Georgia)

Public Technologies 01 Apr 2025
Peterson was sworn in as the 35th Chief Justice of the Supreme Court of Georgia on Tuesday, April 1, 2025, at the State Capitol ... Outgoing Chief Justice Michael P.
Edit

How top court handles graft charges against SC and HC judges

The Times of India 01 Apr 2025
... Khanna formed a three-member panel comprising Punjab and Haryana Chief Justice Sheel Nagu, Himachal Pradesh Chief Justice GS Sandhawalia and Karnataka HC’s Justice Anu Sivaraman to probe the matter.
Edit

Explained: What happens if a judge is suspected to be corrupt?

The Times of India 01 Apr 2025
... Khanna formed a three-member panel comprising Punjab and Haryana Chief Justice Sheel Nagu, Himachal Pradesh Chief Justice GS Sandhawalia and Karnataka HC’s Justice Anu Sivaraman to probe the matter.
Edit

NJ Supreme Court grills both sides in battle over state takeover of Paterson police

northjersey.com 01 Apr 2025
New Jersey Supreme Court justices grilled ... “How does one view that if not as actual support and validation for what the attorney general has already done?” Chief Justice Stuart Rabner asked Gramiccioni.
Edit

Have a feeling govt playing game with us, says Col Bath's wife in assault case

Hindustan Times 01 Apr 2025
On Monday, Punjab Chief Minister Bhagwant Mann had assured them that justice would be delivered in the case of "assault" on the Army officer ... Kaur also said the chief minister will be holding a meeting with officials in this regard.
Edit

John Marshall’s Boyhood Home Gifted to Friends of the Hollow

ACCESSWIRE 01 Apr 2025
David & Mary Collins Donate Chief Justice John Marshall's Boyhood Home for Preservation and Public Education ... Collins and his wife Mary Collins.The Hollow - Humble Boyhood Home of Chief Justice John Marshall.
Edit

Cal HC lawyers skip court, to boycott Justice Sharma oath

The Times of India 01 Apr 2025
The three lawyers' bodies of Calcutta High Court on Tuesday wrote to Chief Justice TS Sivagnanam informing him of their decision to boycott the swearing-in ceremony of Justice Dinesh Kumar Sharma.
Edit

Judges & GOI: A Murky Tale

The Times of India 01 Apr 2025
On Jan 26, 1950, the first chief justice of India took office under the new Constitution ... directly — this involved a manoeuvre in which Justice Sabharwal was first sent to Bombay HC, as chief justice.
Edit

Don’t assign judicial work to new judge, lawyers tell Calcutta high court

Hindustan Times 01 Apr 2025
We adopted a resolution and wrote to the chief justice of the high court that we will not attend any hearing at justice Sharma’s court and skip his swearing-in-ceremony as well,” a senior member of the Bar Association told HT.
Edit

HC rejects PIL against Entally bus shelter

The Times of India 01 Apr 2025
'...if the project is for the public, the petitioner can't put fetters on it,' the Chief Justice held.
Edit

Punjab CM Bhagwant Mann assured justice will be delivered: Colonel’s family

Hindustan Times 01 Apr 2025
The family of Colonel Pushpinder Singh Bath on Monday said chief minister Bhagwant Mann has assured them that justice will be delivered in the case of assault on the army officer ... “The chief minister ...
Edit

Iowa Supreme Court justices grill magistrate over racial slur, comments in sex-abuse case

Des Moines Register 01 Apr 2025
Hanson said he had not realized the term wetback was offensive — a claim the chief justice immediately rejected — before pivoting to a critique of the U.S ... Chief justice cites ‘damage’ to victims ... I didn’t know what was right or wrong.”Chief justice.
×