Art Industry News: Brazil’s New President Vows to Restore the Culture Ministry Dismantled by Jair Bolsonaro + Other Stories – artnet News

Plus, the U.S. returns a looted sarcophagus to Egypt, and the British Museum rolls out a climate plan.
Artnet News,
Art Industry News is a daily digest of the most consequential developments coming out of the art world and art market. Here’s what you need to know on this Tuesday, January 3.
TikTok Is Deemed ‘Digital Fentanyl’ – The Chinese-owned short-video app that has been regarded as an important platform for many artists is “highly addictive and destructive,” like the painkiller fentanyl, and has a “corrosive impact” on young people in America, said Mike Gallagher, the incoming U.S. chair of a new House select committee on China. The app has been accused of circulating misinformation, such as the recent spread of the “fake Rome” theory, and has raised security concerns over whether it sends data to Beijing. The House of Representatives has already banned the app from all its devices. (Daily Mail)
U.S. Returns Ancient Sarcophagus Looted From Egypt – The U.S. has returned to Egypt an ancient sarcophagus long displayed at the Houston Museum of Natural History after it was found to be looted several years ago. The sarcophagus, which may contain the remains of the Egyptian priest Ankhenmaat, was taken from the Abu Sir Necropolis near Cairo, before being smuggled through Germany and into the U.S., in 2008. (Guardian)
Brazil’s New Leftist President Restores Cultural Investment – The return of Luiz Inácio Lula da Silva, who was sworn in as Brazil’s president for a third term on January 1, has brought hope to the local arts and culture community. Lula has pledged to revive the culture ministry that was slashed by the previous far-right president, Jair Bolsonaro, and has already appointed Bahian singer Margareth Menezes as the new culture minister, who will be working with a team to revive cultural policy and funding. (The Art Newspaper)
British Museum Aims at ‘Net Zero Carbon’ Despite Oil Funding – The London institution’s chair, George Osbourne, pledged to make the museum “an example of climate solution” with the Rosetta Project, a plan to address the multiple energy and structural inefficiencies in the building. Yet the museum continues to receive funding from British Petroleum. (Hyperallergic)
Ethereum Transactions Outstripped Bitcoin in 2022 Despite NFT Winter – Total transactions of the cryptocurrency that is quintessential for the NFT market were 338 percent more than Bitcoin over the past year. (Cointelegraph)
Japanese Architect Arata Isozaki Has Died at 91 – The architect famous for his unique blending of Western and Japanese styles died on December 28 at his Okinawa home, according to Misa Shin gallery in Tokyo, which has just concluded a solo show of the architect’s designs. Among his famous designs include the Art Tower Mito in Japan and the Museum of Contemporary Art in Los Angeles. (Washington Post)
Richard Dadd Painting Returns to London Psychiatric Hospital – Portrait of a Young Man, which was executed by the Victorian artist while he was at Bethlem Royal Hospital in south London, will be returning to where it was painted for the first time in 170 years as part of a mental health-themed show at the hospital’s Bethlem Museum of the Mind. Dadd was sent to the hospital after stabbing his father, and he remained there until his death in 1886. (Guardian)
American Artist Dorothy Iannone Has Died at 89 – The Boston-born artist who created a body of work centering around female sexuality, as well as themes of love, romance, eroticism, and spirituality, died on December 26. (Guardian)
Comic Artist Enki Bilal Among the Few Culture Figures Receiving Top French Honor – The Yugoslavian-born French comic artist has been promoted the Chevalier of the Legion of Honor announced this month. A total of 18 figures from the art and culture sector were honored in this year’s Order of the Legion of Honor under the recommendation of the culture ministry, a dramatically low representation among the 340 awardees. (Le Journal de Arts/Actua BD)

A post shared by Enki Bilal (@enkibilal_officiel)

Share
By Jo Lawson-Tancred
By Katy Diamond Hamer
By Artnet News
©2023 Artnet Worldwide Corporation. All Rights Reserved.

if (!window.jQuery) loadJQuery(); var $ = window.jQuery;

function addCss(fileName) { var head = document.head , link = document.createElement('link');

link.type = 'text/css'; link.rel = 'stylesheet'; link.href = fileName;

head.appendChild(link); }

function appendNewsletterSignup() { var signup = '

' + '

';

$('body').append(signup); }

var paywallPagesRegex = /^/subscribe|subscribe-confirm|my-account(/|$)/;

function initNewsletterSignup() { // don't show it on paywall-related pages where the user might be in the process // of subscribing, or managing their account if (paywallPagesRegex.test(window.location.pathname)) { return; }

// Append ouibounce to page var ouibounceScript = '';
$('body').append(ouibounceScript);

// Add animation css
addCss('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css');

if (generalSettings.loadFontAwesome) {
addCss('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
}

// Check if ouibounce exist before calling ouibounce
var initOuibounce = setInterval(function() {
if (typeof ouibounce !== 'undefined') {
appendNewsletterSignup();

var $modal = $('#ouibounce-modal');
SignupForm.init($modal.find('form'), function onSuccess() {
//hide form fields and show thank-you message
$modal.find('.form-row').hide();
$modal.find('.newsletter-signup-thank-you').fadeIn('fast');

setNewsletterCookie('signedUp', 1);

//after successful signup, hide the signup bar after 5 seconds
setTimeout(function() {
closeSignupBar();
}, 5000);
});

// Handler for close signup button
$('body').on( 'click', '.close-signup', function(){
setNewsletterCookie('closedSignupBar', 1);
closeSignupBar();
});

ouibounceAPIaccess = ouibounce(
$modal[0], {
aggressive: true,
sensitivity: 50,
callback: function() {
slideInModal('Down');
}
}
);

clearInterval(initOuibounce);
}
}, 100);
}

function slideInModal(upOrDown) {
$('#ouibounce-modal')
.removeClass('slideOutDown slideOutUp')
.addClass( 'slideIn' + upOrDown );

setNewsletterCookie('recentlyShown', 1);
}

function setNewsletterCookie(cookieName, value) {
//exdays*24*60*60
var settings = cookieSettings[cookieName];
var expirationMinutes = settings.expiration_minutes;
if (!expirationMinutes) {
expirationMinutes = daysToMinutes(settings.expiration_days);
}
setCookie(cookieName, value, expirationMinutes);
}

function daysToMinutes(numDays) {
return numDays * 24 * 60;
}

/**
* Generic setCookie() method, used by setNewsletterCookie().
* There is probably no need to call this directly - use setNewsletterCookie().
*/
function setCookie(cname, cvalue, expMinutes, prefix) {
//default prefix is 'artnet_newsletter_'
if (prefix == undefined) {
prefix = 'artnet_newsletter_';
}
var d = new Date();
d.setTime(d.getTime() + (expMinutes*60*1000));
var expires = "expires="+d.toUTCString();

//console.log(prefix + cname + "=" + cvalue + ";" + expires + ";path=/");
document.cookie = prefix + cname + "=" + cvalue + ";" + expires + ";path=/";
}

function getCookie(cname, prefix) {
//default prefix is 'artnet_newsletter_'
if (prefix == undefined) {
prefix = 'artnet_newsletter_';
}
var name = prefix + cname + "=";
var ca = document.cookie.split(';');
for(var i = 0; i
You are currently logged into this Artnet News Pro account on another device. Please log off from any other devices, and then reload this page continue. To find out if you are eligible for an Artnet News Pro group subscription, please contact [email protected]. Standard subscriptions can be purchased on the subscription page.
Log In

source

Leave a Comment