“the chance of people replicating this in schools is very small. Carol Dweck told me that they don’t have a single example of a school successfully changing pupils’ mindsets.”

from: Weekend read: Is growth mindset the new learning styles?

I’ve not really paid much attention to Growth Mindset. I missed Carol Dweck the year she was at SLF but I remember a lot of excitement.

More from the post a quote from Carol Dweck:

“I was asked once, ‘What keeps you up at night?’ It’s the idea that my work – which was designed in opposition to the self-esteem movement – would be used in the way that the self-esteem movement is used.”

Interesting read and Carol Dweck will be a guest on the Tes Podagogy podcast on 18 October I think I’ll huffduff that for a listen.

I love the record of thinking and linking that now stretches back 12 years, 5 months, 4 days on this blog.

I don’t like the breakages.

A lot of the links on this blog are to the blogs of the school I used to work in in Glasgow, Sandaig Primary. The site is now gone. A lot of it is in the internet archive. I had hoped that the Amber plugin would sort that, but since the domain is now up for sale, the links lead to the sale page.

I could go through the posts and fix all the links. I guess someone with more understanding than me could do it in the database. I’ve opted for a cruder solution. I’ve added a bit of JavaScript to the blog which changes all links to Sandaig to the archive.

jQuery(document).ready(function() {
// Stuff to do as soon as the DOM is ready;

jQuery( "a[href^='http://www.sandaigprimary.co.uk']" )
.each(function()
{
this.href = this.href.replace(/^http:\/\/www.sandaigprimary.co.uk/, "https://web.archive.org/web/http://www.sandaigprimary.co.uk/");
});

});

This has probably broken something else and certainly is adding to the pile of oddities that I’ve added to the blog. But hopefully It means that links on posts like this: Impermanence and Comments will work.