White House confirms potential Supreme Court nominee as the short list grows
January 31, 2022, 10:33 am CST
- !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs'); Tweet
- lang: en_US
Judge J. Michelle Childs, who was nominated by former President Barack Obama, listens during her nomination hearing before the Senate Judiciary Committee in April 2010. President Joe Biden has already narrowed the field for his first U.S. Supreme Court pick. One potential nominee is Childs. File photo by Charles Dharapak/The Associated Press.
The White House confirmed Friday that U.S. District Judge J. Michelle Childs is among several Black women being considered for the U.S. Supreme Court.
The confirmation came after a hearing on Childs’ nomination to a federal appeals court was put on hold, while President Joe Biden considers her to replace retiring Justice Stephen G. Breyer, a White House spokesperson said.
Reuters, the Washington Post and USA Today are among the publications with coverage.
Childs is currently a federal judge based in Columbia, South Carolina, for the District of South Carolina who has been nominated to the U.S. Court of Appeals for the District of Columbia Circuit. She is a graduate of the University of South Carolina School of Law and a former state judge.
White House spokesperson Andrew Bates stressed that “multiple individuals” are under consideration along with Childs, according to the Washington Post.
“Reporting indicating that the president is only seriously considering three potential nominees is incorrect,” he said.
U.S. Circuit Judge Ketanji Brown Jackson of the U.S. Court of Appeals for the District of Columbia Circuit. File photo from the U.S. District Court for the District of Columbia.Past reports indicated that Childs could be a front-runner, along with U.S. Circuit Judge Ketanji Brown Jackson of the D.C. Circuit and California Supreme Court Justice Leondra Kruger.
Childs got some support Sunday from Republican U.S. Sen. Lindsay Graham of South Carolina, report the Washington Post, CBS News and CNN (via How Appealing).
Graham told Face the Nation on CBS News that he “can’t think of a better person for President Biden to consider for the Supreme Court than Michelle Childs.”
Graham said Childs has wide support in South Carolina, and she is “incredibly qualified” and there is “no affirmative action component” if she is nominated.
“She’s considered to be a fair-minded, highly gifted jurist. She’s one of the most decent people I’ve ever met,” he said.
Childs also has the support of U.S. Rep. James Clyburn, the House majority whip and a Democrat of South Carolina.
The Washington Post, USA Today and CNN reported on other potential nominees, besides Jackson and Kruger, who were named by anonymous sources.
California Supreme Court Justice Leondra Kruger. Photo from the Judicial Council of California.They are:
• Nancy Abudu, nominated to the 11th U.S. Circuit Court of Appeals at Atlanta. She is currently the strategic litigation director at the Southern Poverty Law Center. She was previously legal director of the American Civil Liberties Union of Florida and a staff attorney with the ACLU’s Voting Rights Project. She is a graduate of Tulane University Law School.
• U.S. Circuit Judge Tiffany Cunningham of the U.S. Court of Appeals for the Federal Circuit. She is a former partner at Perkins Coie and a graduate of Harvard Law School.
• North Carolina Supreme Court Justice Anita Earls. Earls was formerly deputy assistant attorney general in the U.S. Department of Justice’s Civil Rights Division and a lawyer with the University of North Carolina’s Center for Civil Rights. She is a graduate of Yale Law School.
• Arianna Freeman, nominated to the 3rd Circuit at Philadelphia. She is a managing attorney with the Federal Community Defender Office for the Eastern District of Pennsylvania in Philadelphia. She is a graduate of Yale Law School.
• Sherrilyn Ifill, the outgoing president of the NAACP Legal Defense and Educational Fund. Ifill is a graduate of the New York University School of Law and a former law professor at the University of Maryland.
• Judge Candace Jackson-Akiwumi of the 7th Circuit at Chicago. Jackson-Akiwumi is a former public defender and a former partner at Zuckerman Spaeder.
• Judge Eunice Lee of the 2nd Circuit at New York. She is a Yale Law School graduate and a former federal public defender.
• Melissa Murray, a professor at the NYU School of Law. Murray is a Yale Law School graduate who clerked for Justice Sonia Sotomayor when Sotomayor was a federal appeals judge.
• Judge Holly A. Thomas of the 9th Circuit at San Francisco. She is a Yale Law School graduate and a former state court judge in Los Angeles. She has also worked at the NAACP Legal Defense and Education Fund and in the DOJ’s Civil Rights Division.
• U.S. District Judge Wilhelmina “Mimi” Wright of Minnesota, who formerly served on Minnesota’s supreme and appellate courts. She is a Harvard Law School graduate and a former federal prosecutor.
$( document ).ready(function() { var slidesFetched = false; var handleGalleryClick = function() { var $oldItem = $('.gallery_container'); $('.gallery_container .arrows a').click(function(e) { e.preventDefault(); $arrow = $(this); if (! slidesFetched) { $arrow.closest('.gallery_slide').css('opacity', '0.3'); var url = $(this).attr('href').replace('/gallery/', '/gallery/slides/'); $.get(url, function(data) { var $slides = $(data); $slides = $slides.filter('.gallery_container'); $('.gallery_container').replaceWith($slides); $slides = $('.gallery_container'); $slides.find('.arrows a').click(function(e2) { e2.preventDefault(); var $slideWrapper = $(this).closest('.gallery_container'); var $arrowContainer = $(this).closest('.arrows'); if ($arrowContainer.hasClass('previous')) { $slideWrapper.removeClass('active'); $slideWrapper.prev().addClass('active'); } else if ($arrowContainer.hasClass('next')) { $slideWrapper.removeClass('active'); $slideWrapper.next().addClass('active'); } changeSlide($('.cell-'+$(this).attr('data-slideid'))); }); changeSlide($('.cell-'+$arrow.attr('data-slideid'))); slidesFetched = true; }); } changeSlide($('.cell-'+$(this).attr('data-slideid'))); return false; }); var changeSlide = function($cell) { $('.slide-'+$cell.attr('data-slideid')).addClass('active').siblings().removeClass('active'); $cell.addClass('active').siblings().removeClass('active'); moveFilmstripCells($cell); // Hide filmstrip arrows if we're on the first/last slide. if ($('.gallery_container.active').find('.arrows.previous').length > 0) { $('#filmstrip_container .arrows.previous').css('visibility', 'visible'); } else { $('#filmstrip_container .arrows.previous').css('visibility', 'hidden'); } if ($('.gallery_container.active').find('.arrows.next').length > 0) { $('#filmstrip_container .arrows.next').css('visibility', 'visible'); } else { $('#filmstrip_container .arrows.next').css('visibility', 'hidden'); } }; var $cells = $('#filmstrip_container .cell'); var totalCells = $cells.length; var totalVisibleCells = $cells.filter('.visible').length; var pivotPoint = Math.floor(totalVisibleCells / 2); var moveFilmstripCells = function($activeCell) { var $visibleCells = $cells.filter('.visible'); var activeCellIndex = $cells.index($activeCell); var activeCellVisibleIndex = $visibleCells.index($activeCell); var firstVisibleCellIndex = $cells.index($cells.filter('.visible:first')); var lastVisibleCellIndex = $cells.index($cells.filter('.visible:last')); var cellsToMove = 0; var startingPoint = 0; // Do nothing if active cell is at the pivot point. if (activeCellVisibleIndex == pivotPoint) return; // Active cell is left of the pivot point. if (activeCellVisibleIndex < pivotPoint) { // Do nothing if the cell's index and visible index are identical, because that means // we don't have room to shift. if (activeCellIndexES by OMG
Euro-Savings.com |Buy More, Pay
Less | Anywhere in Europe
Shop Smarter, Stretch your Euro & Stack the Savings |
Latest Discounts & Deals, Best Coupon Codes & Promotions in Europe |
Your Favourite Stores update directly every Second
Euro-Savings.com or ES lets you buy more and pay less anywhere in Europe. Shop Smarter on ES Today. Sign-up to receive Latest Discounts, Deals, Coupon Codes & Promotions. With Direct Brand Updates every second, ES is Every Shopper’s Dream come true! Stretch your dollar now with ES. Start saving today!
Originally posted on: https://www.abajournal.com/news/article/white-house-confirms-one-potential-supreme-court-nominee-as-the-shortlist-grows/?utm_source=feeds&utm_medium=rss&utm_campaign=site_rss_feeds