<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Rutenso | SFiO.org</title><link>https://www.sfio.org/tags/rutenso/</link><atom:link href="https://www.sfio.org/tags/rutenso/index.xml" rel="self" type="application/rss+xml"/><description>Rutenso</description><generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en-us</language><copyright>© 2016 - 2026 ASFIO - All Rights Reserved</copyright><lastBuildDate>Mon, 21 Apr 2025 00:00:00 +0000</lastBuildDate><image><url>https://www.sfio.org/images/logo.svg</url><title>Rutenso</title><link>https://www.sfio.org/tags/rutenso/</link></image><item><title>Solution Focus and Rutenso</title><link>https://www.sfio.org/interaction/2025-1/sf-and-rutenso/</link><pubDate>Mon, 21 Apr 2025 00:00:00 +0000</pubDate><guid>https://www.sfio.org/interaction/2025-1/sf-and-rutenso/</guid><description>&lt;p>&lt;a href="https://www.sfio.org/authors/mark-mckergow/">Mark McKergow&lt;/a>&lt;/p>
&lt;figure >
&lt;a data-fancybox="" href="https://www.sfio.org/interaction/2025-1/sf-and-rutenso/featured_hu16106342460168367447.jpg" >
&lt;img data-src="https://www.sfio.org/interaction/2025-1/sf-and-rutenso/featured_hu16106342460168367447.jpg" class="lazyload" alt="" width="1456" height="640">
&lt;/a>
&lt;/figure>
&lt;h4 id="read-or-download-the-full-article-after-the-synopsis">Read or download the full article after the synopsis.&lt;/h4>
&lt;h2 class="red-heading">Article Synopsis&lt;/h2>
&lt;p>Mark’s article introduces and explores &amp;ldquo;rutenso&amp;rdquo;, a concept he coined to describe the art of thriving amidst constant and ceaseless change, inspired by Japanese cultural attitudes toward impermanence. &lt;br/>
Originating from the Japanese word &amp;ldquo;ruten,&amp;rdquo; meaning continuous change, &amp;ldquo;rutenso&amp;rdquo; emphasises proactively working with ongoing shifts instead of resisting them. This approach contrasts sharply with traditional &amp;ldquo;koteiso&amp;rdquo; management methods, which presume stability and prioritise fixed goals and detailed plans. &lt;br/>
Rutenso advocates for appreciating and leveraging differences, taking measured and thoughtful actions rather than rushed responses, and viewing leaders as facilitators who enable change instead of controlling it. &lt;br/>
Drawing parallels with contemporary political events and leadership styles, the article suggests that rutenso principles - such as looking widely, slowing down to observe during difficulties, and hosting rather than driving — are especially pertinent in the current global climate marked by unpredictability and shifting alliances. &lt;br/>
Ultimately, rutenso aligns closely with Solution-Focused practices, emphasising incremental steps, adaptability, and building collaborative relationships to foster constructive outcomes amid uncertainty.&lt;br/>&lt;/p>
&lt;h4 id="constant-change-flows-onbr">Constant change flows on;&lt;br/>&lt;/h4>
&lt;h4 id="embrace-shifts-slow-down-observebr">Embrace shifts; slow down; observe;&lt;br/>&lt;/h4>
&lt;h4 id="rutenso-guides-usbr">Rutenso guides us.&lt;br/>&lt;/h4>
&lt;h3 id="please-download-the-article-to-use-links-br">Please DOWNLOAD the article to use links &lt;br/>&lt;/h3>
&lt;h2 class="red-heading">Full Article&lt;/h2>
&lt;script src="https://www.sfio.org/js/pdf.js">&lt;/script>
&lt;div style="margin-left: 20px; margin-bottom: 20px;">
&lt;button id="prev">Previous&lt;/button>&amp;nbsp; &amp;nbsp;
&lt;button id="next">Next&lt;/button>&amp;nbsp; &amp;nbsp;
&lt;a href="article.pdf" download="article.pdf" target="_blank">Download&lt;/a>
&amp;nbsp; &amp;nbsp;
&lt;span>Page: &lt;span id="page_num">&lt;/span> / &lt;span id="page_count">&lt;/span>&lt;/span>
&lt;/div>
&lt;p>&lt;canvas id="the-canvas" style="border: 1px solid black; direction: ltr; width: 800px;">&lt;/canvas>&lt;/p>
&lt;script id="script">
// If absolute URL from the remote server is provided, configure the CORS
// header on that server.
var url = './article.pdf';
// Loaded via &lt;script> tag, create shortcut to access PDF.js exports.
var pdfjsLib = window['pdfjs-dist/build/pdf'];
// The workerSrc property shall be specified.
pdfjsLib.GlobalWorkerOptions.workerSrc = '/js/pdf.worker.js';
var pdfDoc = null,
pageNum = 1,
pageRendering = false,
pageNumPending = null,
scale = 2,
canvas = document.getElementById('the-canvas'),
ctx = canvas.getContext('2d');
/**
* Get page info from document, resize canvas accordingly, and render page.
* @param num Page number.
*/
function renderPage(num) {
pageRendering = true;
// Using promise to fetch the page
pdfDoc.getPage(num).then(function(page) {
var viewport = page.getViewport({scale: scale});
canvas.height = viewport.height;
canvas.width = viewport.width;
// Render PDF page into canvas context
var renderContext = {
canvasContext: ctx,
viewport: viewport
};
var renderTask = page.render(renderContext);
// Wait for rendering to finish
renderTask.promise.then(function() {
pageRendering = false;
if (pageNumPending !== null) {
// New page rendering is pending
renderPage(pageNumPending);
pageNumPending = null;
}
});
});
// Update page counters
document.getElementById('page_num').textContent = num;
}
/**
* If another page rendering in progress, waits until the rendering is
* finised. Otherwise, executes rendering immediately.
*/
function queueRenderPage(num) {
if (pageRendering) {
pageNumPending = num;
} else {
renderPage(num);
}
}
/**
* Displays previous page.
*/
function onPrevPage() {
if (pageNum &lt;= 1) {
return;
}
pageNum--;
queueRenderPage(pageNum);
}
document.getElementById('prev').addEventListener('click', onPrevPage);
/**
* Displays next page.
*/
function onNextPage() {
if (pageNum >= pdfDoc.numPages) {
return;
}
pageNum++;
queueRenderPage(pageNum);
}
document.getElementById('next').addEventListener('click', onNextPage);
/**
* Asynchronously downloads PDF.
*/
pdfjsLib.getDocument(url).promise.then(function(pdfDoc_) {
pdfDoc = pdfDoc_;
document.getElementById('page_count').textContent = pdfDoc.numPages;
// Initial/first page rendering
renderPage(pageNum);
});
&lt;/script></description></item></channel></rss>