<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>f3yourmind | african software developer by birth, by choice, for life</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="https://f3yourmind.net/xmlrpc.php" />
<!--[if lt IE 9]>
<script src="https://s2.wp.com/wp-content/themes/pub/truly-minimal/js/html5.js?m=1365430708i" type="text/javascript"></script>
<![endif]-->

		<style type="text/css">
			#wp-calendar td {
				border-color: # !important;
			}
		</style>
	<meta name='robots' content='max-image-preview:large' />
<meta name="google-site-verification" content="cP8UeqtNrXUHC0pc-uFfuCtQe3DtVGZW7ocxxnRLBW0" />

<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=824'
					+ '&is_singular=';
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9mM3lvdXJtaW5kLm5ldA%3D%3D"
		+ "&wpcomid=61765992"
		+ "&time=" + Math.floor( Date.now() / 1000 );
	document.body.appendChild( iframe );
}, false );
</script>
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//fonts-api.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="f3yourmind &raquo; Feed" href="https://f3yourmind.net/feed/" />
<link rel="alternate" type="application/rss+xml" title="f3yourmind &raquo; Comments Feed" href="https://f3yourmind.net/comments/feed/" />
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='/wp-content/mu-plugins/jetpack-plugin/sun/modules/infinite-scroll/infinity.css?m=1777406400i&cssminify=yes' type='text/css' media='all' />
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/common.min.css */
</style>
<style id="wp-block-library-inline-css-extra">
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}
/*# sourceURL=wp-block-library-inline-css */
</style>

<style id="classic-theme-styles-inline-css">
.wp-block-button__link{background-color:#32373c;border-radius:9999px;box-shadow:none;color:#fff;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-file__button{background:#32373c;color:#fff}.wp-block-accordion-heading{margin:0}.wp-block-accordion-heading__toggle{background-color:inherit!important;color:inherit!important}.wp-block-accordion-heading__toggle:not(:focus-visible){outline:none}.wp-block-accordion-heading__toggle:focus,.wp-block-accordion-heading__toggle:hover{background-color:inherit!important;border:none;box-shadow:none;color:inherit;padding:var(--wp--preset--spacing--20,1em) 0;text-decoration:none}.wp-block-accordion-heading__toggle:focus-visible{outline:auto;outline-offset:0}.wp-block-tab:not(.has-text-color){color:inherit!important}.wp-block-tab:not(.has-background){background-color:inherit!important}.wp-block-tab:focus,.wp-block-tab:hover{text-decoration:none}.wp-block-tab:focus-visible{outline:auto;outline-offset:0}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/classic.min.css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='/_static/??-eJx9jEEOAiEQBD/kQECjeDC+ZWEnijIwYWA3/l72op689KFTVXplCCU3zE1z6reYRYfiUwlP0VYZpwxIJE4IFRd10HOU9iFA2iuhCiI7/ROiDt9WxfETT20jCOc4YUIa2D9t5eGA91xRBMZS7ATtPkTZvCtdzNEZt7f2fHq8Afl7R7w=&cssminify=yes' type='text/css' media='all' />
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}.wp-block-button{--wp--preset--dimension--25: 25%;--wp--preset--dimension--50: 50%;--wp--preset--dimension--75: 75%;--wp--preset--dimension--100: 100%;}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
/*# sourceURL=global-styles-inline-css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-10-1' href='/wp-content/themes/pub/truly-minimal/style.css?m=1741693348i&cssminify=yes' type='text/css' media='all' />
<link rel='stylesheet' id='truly-minimal-droid-serif-css' href='https://fonts-api.wp.com/css?family=Droid+Serif:400,700,400italic,700italic&#038;ver=7.0-RC4-62382' media='all' />
<link rel='stylesheet' id='truly-minimal-droid-sans-css' href='https://fonts-api.wp.com/css?family=Droid+Sans:400,700&#038;ver=7.0-RC4-62382' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='all-css-14-1' href='/_static/??-eJx9y0EOwjAMRNELYSxEqegCcZY0MsHIsaPEUdXbt+zKht18aR4uBaKpkzr6mzI1LH1Gr11WyKycgyBrxOarECwlWj7H1k54gLlDkZ5YG1aaxdI+E+6vQ/5DiQzEYnA2/Ql4SeD6pc/8uAz3620Yp3H6bLR4Q10=&cssminify=yes' type='text/css' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='print-css-15-1' href='/wp-content/mu-plugins/global-print/global-print.css?m=1465851035i&cssminify=yes' type='text/css' media='print' />
<style id="jetpack-global-styles-frontend-style-inline-css">
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
/*# sourceURL=jetpack-global-styles-frontend-style-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-18-1' href='/wp-content/themes/h4/global.css?m=1420737423i&cssminify=yes' type='text/css' media='all' />
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"61765992","postID":"0","siteURL":"https://f3yourmind.net","xhrURL":"https://f3yourmind.net/wp-admin/admin-ajax.php","nonce":"3d7b26cb98","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https://s0.wp.com/wp-content/js/wpcom-proxy-request.js?m=1513050504i&amp;ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your \u003Ca href=\"https://wordpress.com/reader\"\u003EReader\u003C/a\u003E","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","shortLinkCopied":"Shortlink copied to clipboard."}};
//# sourceURL=wpcom-actionbar-placeholder-js-extra
</script>
<script id="jetpack-mu-wpcom-settings-js-before">
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https://s1.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/sun/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/"};
//# sourceURL=jetpack-mu-wpcom-settings-js-before
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/js/rlt-proxy.js?m=1720530689i'></script>
<script id="rlt-proxy-js-after">
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
//# sourceURL=rlt-proxy-js-after
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://aslamkhn.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/4ba9G' />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="f3yourmind" />
<meta property="og:description" content="african software developer by birth, by choice, for life" />
<meta property="og:url" content="https://f3yourmind.net/" />
<meta property="og:site_name" content="f3yourmind" />
<meta property="og:image" content="https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=200&#038;ts=1780966602" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:creator" content="@aslamkhn" />
<meta name="twitter:site" content="@aslamkhn" />

<!-- End Jetpack Open Graph Tags -->
<link rel="shortcut icon" type="image/x-icon" href="https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=32" sizes="16x16" />
<link rel="icon" type="image/x-icon" href="https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=32" sizes="16x16" />
<link rel="apple-touch-icon" href="https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=114" />
<link rel='openid.server' href='https://f3yourmind.net/?openidserver=1' />
<link rel='openid.delegate' href='https://f3yourmind.net/' />
<link rel="search" type="application/opensearchdescription+xml" href="https://f3yourmind.net/osd.xml" title="f3yourmind" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<meta name="description" content="african software developer by birth, by choice, for life" />
	<style type="text/css">
			.site-title a {
			color: #dd3333;
		}
		</style>
				<link rel="stylesheet" id="custom-css-css" type="text/css" href="https://s1.wp.com/?custom-css=1&#038;csblog=4ba9G&#038;cscache=6&#038;csrev=4" />
			<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-4' href='/_static/??-eJydjssKwjAQRX/IdCIUsxI/RdrJUKadPMgkFP/eig9wI+ryXC6HA2s2mGKlWCE0k6VNHBVmqnnA5cGgLcKZI8IoCRcFXTlT6VB1B18LQvJNSAGHkpqSvD7P4UffPaix+A1HxcK5ctq+b9QFjn+GVhbyZhpEqFw+0c1/Cse9c663h97a+QpPeIHQ&cssminify=yes' type='text/css' media='all' />

</head>

<body class="home blog custom-background wp-theme-pubtruly-minimal customizer-styles-applied sidebar-right jetpack-reblog-enabled">
<div id="page" class="hfeed site">
		<header id="masthead" class="site-header clear" role="banner">
		<hgroup>
						<h1 class="site-title"><a href="https://f3yourmind.net/" title="f3yourmind" rel="home">f3yourmind</a></h1>
			<h2 class="site-description">african software developer by birth, by choice, for life</h2>
		</hgroup>

		<nav id="site-navigation" class="navigation-main" role="navigation">
			<h1 class="menu-toggle">Menu</h1>
			<div class="screen-reader-text skip-link"><a href="#content" title="Skip to content">Skip to content</a></div>

			<div class="menu-menu-1-container"><ul id="menu-menu-1" class="menu"><li id="menu-item-207" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-207"><a href="http://aslamkhn.com/">Home</a></li>
<li id="menu-item-208" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-208"><a href="https://f3yourmind.net/about-2/">About Me</a></li>
<li id="menu-item-447" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-447"><a href="https://f3yourmind.net/feed/">RSS Feed</a></li>
</ul></div>		</nav><!-- #site-navigation -->
	</header><!-- #masthead -->

	<div id="main" class="site-main">

	<div id="primary" class="content-area">
		<div id="content" class="site-content" role="main">

		
						
				
<article id="post-824" class="post-824 post type-post status-publish format-standard hentry category-software-development">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2017/10/17/making-a-mess-less/" rel="bookmark">Making a mess&nbsp;less</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2017/10/17/making-a-mess-less/" title="10:20 am" rel="bookmark"><time class="entry-date" datetime="2017-10-17T10:20:37+02:00">October 17, 2017</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<p><img data-attachment-id="826" data-permalink="https://f3yourmind.net/2017/10/17/making-a-mess-less/bty/#main" data-orig-file="https://f3yourmind.net/wp-content/uploads/2017/10/img_20171017_094708-1.jpg" data-orig-size="2448,3264" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.9&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;VIE-L29&quot;,&quot;caption&quot;:&quot;bty&quot;,&quot;created_timestamp&quot;:&quot;1508233629&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.38&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.04&quot;,&quot;title&quot;:&quot;bty&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="" data-image-description="" data-image-caption="" data-large-file="https://f3yourmind.net/wp-content/uploads/2017/10/img_20171017_094708-1.jpg?w=630" class="alignright size-medium wp-image-826" src="https://f3yourmind.net/wp-content/uploads/2017/10/img_20171017_094708-1.jpg?w=225&#038;h=300" alt="" width="225" height="300" srcset="https://f3yourmind.net/wp-content/uploads/2017/10/img_20171017_094708-1.jpg?w=225 225w, https://f3yourmind.net/wp-content/uploads/2017/10/img_20171017_094708-1.jpg?w=450 450w, https://f3yourmind.net/wp-content/uploads/2017/10/img_20171017_094708-1.jpg?w=113 113w" sizes="(max-width: 225px) 100vw, 225px" />All my models start messy.  Yet, I find that my messy models are actually quite useful.  It forces me to acknowledge my ignorance.  The longer I feign ignorance, the longer it takes for the mess to surface.  The more I appeal to my ego with &#8220;Hey, look!  My model is very cool!&#8221;, the longer I delay learning something useful.</p>
<p>I caught myself saying this the other day and it made me think about how I deal with a mess.  For me, a messy problem is one that has more than 2 inputs and outputs.  My brain struggles to resolve that.  I just can&#8217;t do NxM matrices in my head.</p>
<h2>Making a mess less</h2>
<p>The first thing I do is <strong>accept the mess</strong>  and then I play with these 3 techniques.  There are others but I find that I lean on these early in the exploration.  I also don&#8217;t have a recipe or process of which technique I use when.  I simply try something that looks interesting to me, or the focus on a part that is most obscure.</p>
<h3>Find the range</h3>
<p>I pick just one visible dimension in problem &#8211; a single input or output.  I play a seemingly bizarre games of extremes with that variable, and adjust the extremes of that variable towards what feels &#8220;normal&#8221;.  I want to find the range of usefulness.</p>
<p>Say I want to model the time it should take to open a bank account. I will ask &#8220;How about 1 minute?&#8221;, and then <em>&#8220;</em>How about 1 month?&#8221; I play with the answers and adjust so that it <em>sort of</em> makes sense that it is somewhere between a few hours and a day.  Now I know that anything outside of that time range is irrelevant.  I can shift focus on other variables &#8211; progress!</p>
<p>Setting the range gives me a feedback loop.  When I play with other variables, I can see if they shift values outside the useful range.  Sometimes, the range is consistently being violated by other variables.  In such a case, I just discard what I thought was the useful range, and play elsewhere in the mess.  The true range will reveal itself eventually.</p>
<h3>Find reactive pairs</h3>
<p>I look for pairs of variables where the change in one results in a change in another.  Here, I am trying to understand moving parts, or cause and effect. Certainly, changing one may result in several other changes but I am interested in just one pair. Sometimes I just guess. Other times I just get lucky. The most interesting are the ones that take me by surprise, accidentally.</p>
<p>For example, I want to figure out how best to process a very long queue of insurance claims. I may start with the sort order for the queue. If I set sort order by descending monetary value then we may find that the assessment process requires different steps, different processing time. And so I learn that the sort order results in different claim assessment processes. This may then trigger a thought around batching claims by classifying incoming claims and look at size of the resulting batches.</p>
<p>I find that the most useful pairs are the ones that oppose each other.  These reveal a natural tension and offer a powerful starting point for finding a solution.  The solution lies in answering the question &#8220;How do I release or control that tension?&#8221;.  I am aware, though, that finding the solution will create tension elsewhere.  That&#8217;s design &#8211; focus energy on the part that has the highest yield and live with the rest.</p>
<h3>Make linear systems</h3>
<p>These messy problems have many inputs and outputs making it difficult to model. So, for the variables that are known to me, I fix them to sensible defaults. Then I play with just one variable. In essence, I make the system a first order system &#8211; just one input and one output. Such models are easier to handle, even in thought experiments.  Once I understand how that &#8220;linear version&#8221; of the system works, I have more options available. I can choose to fix this variable to a constant and make another &#8220;linear version&#8221; with another variable.  I can also opt to finding its range or looking for its (reactive) pair.</p>
<h2>Using the techniques</h2>
<h3>It&#8217;s a great way to collaborate</h3>
<p>When working in a group, each person has a different view and a different degree of knowledge about the problem.  Using these techniques with a whiteboard, or sitting in a circle and talking through thought experiments, forces conversation to small meaningful parts and drives convergence quite naturally.  Group ignorance is revealed safely, and shared understanding is the outcome.</p>
<h3>Validate the mess early</h3>
<p>Because the less messy parts that are actually useful are revealed.  Never forget, though, that it is still a messy model and needs validation.  Find a way to test these less messy parts.  You may model it in a spreadsheet, throw data at it, write some code.  Pause, find the cheapest way to validate, and come back for more.  Remember that it is a mess and there is still a lot to do.</p>
<h3>Focus on learning, not the backlog</h3>
<p>It is easy to get carried away and drift focus to building a backlog of work as the primary goal.  A backlog derived from a mess is not valuable.  The objective is to learn more, not build more.  The more we learn, the greater the chance that we will build the most useful aspects.  This is not about ignoring deadlines.  Instead, we are aiming for highest impact in each time box.  That impact comes from making the mess less.  Validating early, collaborating consistently helps keep focus.</p>
<h2>Closing thought</h2>
<p>The mess creates a virtuous cycle when I allow myself to acknowledge the mess, find use and value in the mess, validate the less messy useful parts early. I keep forward momentum with awareness of my ignorance.  My messy models are still a lot better than no model.</p>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2017/10/17/making-a-mess-less/#respond">Leave a comment</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-544" class="post-544 post type-post status-publish format-standard hentry category-published-elsewhere category-software-development tag-design tag-functional-programming tag-grokking-functional-programming tag-user-experience">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2014/10/30/update-on-grokking-functional-programming/" rel="bookmark">Update on Grokking Functional&nbsp;Programming</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2014/10/30/update-on-grokking-functional-programming/" title="1:59 pm" rel="bookmark"><time class="entry-date" datetime="2014-10-30T13:59:59+02:00">October 30, 2014</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<p><a href="http://www.manning.com/khan/" target="_blank"><img class="alignleft" style="margin-right:40px;" src="https://i0.wp.com/www.manning.com/khan/khan_cover150.jpg" alt="" width="150" height="188" /></a>Writing this book has been quite a journey.  Being a personal experiment in user experience design in a non-interactive medium has proven to be quite a challenge.  The constraints are significant from page size, typography and then to consider cognitive overload and leaps from concept to concept.  Yet, at the core I am still aiming for a pairing experience.  I want to create an experience that someone is working with me at the same computer and sheets of paper.</p>
<p>This is what is emerged as a workflow.</p>
<ul>
<li>sketch out a plan for the chapter;</li>
<li>focus on what are the main takeaway points;</li>
<li>what pre-requisite knowledge is needed for the chapter; and</li>
<li>fill in some examples and exercise, pretty much faux-code</li>
</ul>
<p>The gap that surfaced this week with my editors is that we swirl around the main takeaway points a lot.  The fundamental question that I now ask is &#8220;What is the one super power that we receive with this chapter?&#8221;.  That&#8217;s a hard question to answer and it forces me to ask very abstract and pointed questions about the main concept of the chapter.  Often, the answer is philosophical which forces me to reduce it to something practical.</p>
<p>Sometimes, answering the super power question has left me admitting &#8220;Well, that&#8217;s pretty unremarkable!&#8221;.  Initially, I was disappointed when that happened.  Now, I use that as a feedback to dig further.  It forces me to seek for my own deeper understanding.  The bottom line is that I am still hindered by my own ignorance.  It takes effort to break through ignorance barriers and it is not about pounding on the same door all the time.  It is about circling around and attempting to find tiny cracks to chip into.</p>
<p>In addition, I have now realised is that UX can only be solved after the philosophical and abstract are reduced to concrete.  Having tight UI constraints is actually a blessing for UX.  I now appreciate the limitations as it simply removes options not worth their bandwidth consumption.</p>
<p><a href="https://f3yourmind.net/wp-content/uploads/2014/10/gfp-journey.png"><img data-attachment-id="545" data-permalink="https://f3yourmind.net/2014/10/30/update-on-grokking-functional-programming/gfp-journey/#main" data-orig-file="https://f3yourmind.net/wp-content/uploads/2014/10/gfp-journey.png" data-orig-size="249,1065" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Grokking FP Journey" data-image-description="" data-image-caption="" data-large-file="https://f3yourmind.net/wp-content/uploads/2014/10/gfp-journey.png?w=239" class="alignright wp-image-545" src="https://f3yourmind.net/wp-content/uploads/2014/10/gfp-journey.png?w=100&#038;h=428" alt="Grokking FP Journey" width="100" height="428" srcset="https://f3yourmind.net/wp-content/uploads/2014/10/gfp-journey.png?w=100 100w, https://f3yourmind.net/wp-content/uploads/2014/10/gfp-journey.png?w=200 200w, https://f3yourmind.net/wp-content/uploads/2014/10/gfp-journey.png?w=35 35w" sizes="(max-width: 100px) 100vw, 100px" /></a>Where have I taken people on this journey so far?  On the right is what I&#8217;ve covered so far.  Next up are algebraic data types and then more in depth coverage of high order functions.  Very surprising for me is that this journey of constraints, user experience challenges, asking super power questions has led me to shifting this chapter on high order functions from being chapter 2 to chapter 7.  That was unexpected.</p>
<blockquote><p>Keep an eye out for tweets on discounts on the book.  The latest promo from Manning is for 30 October 2014.  Using discount code <em></em><strong>dotd103014au</strong> at <a href="http://manning.com/khan" target="_blank">http://manning.com/khan</a> will give you 50% off the list price.</p></blockquote>
<p>&nbsp;</p>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/published-elsewhere/" rel="category tag">Published Elsewhere</a>, <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/design/" rel="tag">Design</a>, <a href="https://f3yourmind.net/tag/functional-programming/" rel="tag">functional programming</a>, <a href="https://f3yourmind.net/tag/grokking-functional-programming/" rel="tag">Grokking Functional Programming</a>, <a href="https://f3yourmind.net/tag/user-experience/" rel="tag">User Experience</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2014/10/30/update-on-grokking-functional-programming/#comments">2 Comments</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-538" class="post-538 post type-post status-publish format-standard hentry category-published-elsewhere category-software-development tag-functional-programming tag-grokking-functional-programming">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2014/06/16/a-book-is-born/" rel="bookmark">A Book is&nbsp;Born</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2014/06/16/a-book-is-born/" title="4:12 pm" rel="bookmark"><time class="entry-date" datetime="2014-06-16T16:12:14+02:00">June 16, 2014</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<p><a href="http://www.manning.com/khan/"><img data-attachment-id="539" data-permalink="https://f3yourmind.net/2014/06/16/a-book-is-born/khan_cover150/#main" data-orig-file="https://f3yourmind.net/wp-content/uploads/2014/06/khan_cover150.jpg" data-orig-size="150,189" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Grokking Functional Programming" data-image-description="" data-image-caption="" data-large-file="https://f3yourmind.net/wp-content/uploads/2014/06/khan_cover150.jpg?w=150" loading="lazy" class="alignright size-full wp-image-539" src="https://f3yourmind.net/wp-content/uploads/2014/06/khan_cover150.jpg?w=630" alt="Grokking Functional Programming"   srcset="https://f3yourmind.net/wp-content/uploads/2014/06/khan_cover150.jpg 150w, https://f3yourmind.net/wp-content/uploads/2014/06/khan_cover150.jpg?w=119&amp;h=150 119w" sizes="(max-width: 150px) 100vw, 150px" /></a></p>
<p>Over the last year I have been spending some of my time writing a book on functional programming.  Finally, it is available on Manning&#8217;s early access program.  The first three chapters have been published and my commitment is to produce new content every month or sooner.</p>
<p>This has got to be one the most difficult pieces of work that I have ever attempted.  In many ways, this is an experimental book.  It takes my brain on two orthogonal paths.  The first is about the topic of functional programming (FP).  And the second is about cognitive learning.  FP is a difficult subject and large too.  I&#8217;ve attempted learning it several times and threw it to one side in frustration.  So this book is my crazy attempt to apply a few aspects of learning to a complex topic.  My hope is that it is an accessible book for most software developers.</p>
<p>Early and gracious thanks must go to the team at Manning for putting their trust in me on this experimental journey.  And to say that my editor has been patient is a gross understatement.</p>
<p>If you are going to read this book, please do provide feedback on the book&#8217;s <a href="http://www.manning-sandbox.com/forum.jspa?forumID=918">forum</a>.  I really want to know where you got confused, which sections are too fast paced, which pages made you take ridiculously giant mental leaps.</p>
<p><strong>Update: </strong>Anybody can get 50% off the book by using the discount code <em>mlkhan</em> at <a href="http://manning.com/khan/" target="_blank">manning.com/khan/</a>.</p>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/published-elsewhere/" rel="category tag">Published Elsewhere</a>, <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/functional-programming/" rel="tag">functional programming</a>, <a href="https://f3yourmind.net/tag/grokking-functional-programming/" rel="tag">Grokking Functional Programming</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2014/06/16/a-book-is-born/#comments">1 Comment</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-530" class="post-530 post type-post status-publish format-standard hentry category-conferences category-software-development tag-diversity tag-pan-african-software">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2014/05/14/event-inclusivity-and-innovation-in-s-african-software/" rel="bookmark">Event: Inclusivity and Innovation in S.African&nbsp;Software</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2014/05/14/event-inclusivity-and-innovation-in-s-african-software/" title="7:37 pm" rel="bookmark"><time class="entry-date" datetime="2014-05-14T19:37:10+02:00">May 14, 2014</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<div style="color:#222222;"><img loading="lazy" class="alignright" src="https://i0.wp.com/www.wdccapetown2014.com/static/8VOqt24OqGD5VLvnu38oQNDJRzLgYNhBIspFN5VCG0B.jpg" alt="" width="178" height="170" />I am facilitating a panel discussion as one of Cape Town&#8217;s World Design Capital 2014 events, in collaboration with the IEEE.  Attendance is <strong>free</strong>.</div>
<div style="color:#222222;"></div>
<div style="color:#222222;"><strong>This is the brief that I have given to the panelists.</strong></div>
<blockquote>
<div style="color:#222222;">Software development in South Africa is still a closed society.  It is also a consumer society.  It is closed because we are not inclusive nor embracing of our cultural diversity.  It is a consumer society because we are net importers of technology, fed by global technology companies motivated by profit in a third world market.  This is the lifestyle of software development &#8211; import ideas, import technology, and restricted participation. A desired future state is a lifestyle of software developers where we are net exporters of ideas, exporters technology and encouraging inclusive participation.  In this session, we want to explore why this future state is valuable, and what we need to do to achieve this.</div>
</blockquote>
<div style="color:#222222;"><strong>And the panelists are &#8230;</strong></div>
<div>
<ul>
<li><span style="color:#222222;"><em>Philip Copeman</em> of Pink Software.  He is the custodian of TurboCash, most probably South Africa&#8217;s most successful open source software</span></li>
<li><em>Brain Leke</em> of ThoughtWorks.  Brain is a long time champion of equality of demographics in African software communities.</li>
<li><em>Lorraine Steyn</em> of local startup I&#8217;m Bored.  Lor has been in the trenches of helping young developers kick start their careers for over 25 years.</li>
</ul>
<p><strong>When, where &#8230;</strong></p>
<ul>
<li><em>Date:</em> May 20, 2014</li>
<li><em>Time:</em> 12.30PM to 1.30PM.  It&#8217;s deliberately being held over lunch, and it&#8217;s a free attendance.</li>
<li><em>Where:</em> 3rd Floor, Bandwidth Barn, Woodstock Exchange</li>
<li><em>Address:</em> 66-68 Albert Road, Woodstock, Cape Town (here&#8217;s the <a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;q=66+-+68+Albert+Road%2C+Woodstock+Exchange%2C+Cape+Town%2C+za">map</a>)</li>
<li><em>Cost:</em> <strong>Free</strong></li>
</ul>
<p><strong>Why are we doing this?</strong></p>
<p>&#8230; because it is an important for the sustainability of software development as a thriving sector, and this spurs further discussion and action too; and to a much wider audience.</p>
<p>&#8230; and because we should care.</p>
</div>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/conferences/" rel="category tag">Conferences</a>, <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/diversity/" rel="tag">diversity</a>, <a href="https://f3yourmind.net/tag/pan-african-software/" rel="tag">pan african software</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2014/05/14/event-inclusivity-and-innovation-in-s-african-software/#respond">Leave a comment</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-524" class="post-524 post type-post status-publish format-standard hentry category-general tag-politics">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2014/04/27/freedom-day-and-those-crazy-bald-heads/" rel="bookmark">Freedom day and those crazy bald&nbsp;heads</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2014/04/27/freedom-day-and-those-crazy-bald-heads/" title="3:35 pm" rel="bookmark"><time class="entry-date" datetime="2014-04-27T15:35:26+02:00">April 27, 2014</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<div data-shortcode="caption" id="attachment_525" style="width: 202px" class="wp-caption alignright"><a href="https://f3yourmind.net/wp-content/uploads/2014/04/192px-jacob_g-_zuma_-_world_economic_forum_annual_meeting_davos_2010.jpg"><img aria-describedby="caption-attachment-525" data-attachment-id="525" data-permalink="https://f3yourmind.net/2014/04/27/freedom-day-and-those-crazy-bald-heads/192px-jacob_g-_zuma_-_world_economic_forum_annual_meeting_davos_2010/#main" data-orig-file="https://f3yourmind.net/wp-content/uploads/2014/04/192px-jacob_g-_zuma_-_world_economic_forum_annual_meeting_davos_2010.jpg" data-orig-size="192,240" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Jacob Zuma" data-image-description="" data-image-caption="&lt;p&gt;Image taken from http://en.wikipedia.org/wiki/Jacob_Zuma&lt;/p&gt;
" data-large-file="https://f3yourmind.net/wp-content/uploads/2014/04/192px-jacob_g-_zuma_-_world_economic_forum_annual_meeting_davos_2010.jpg?w=192" loading="lazy" class="size-full wp-image-525" src="https://f3yourmind.net/wp-content/uploads/2014/04/192px-jacob_g-_zuma_-_world_economic_forum_annual_meeting_davos_2010.jpg?w=630" alt="Image taken from http://en.wikipedia.org/wiki/Jacob_Zuma"   srcset="https://f3yourmind.net/wp-content/uploads/2014/04/192px-jacob_g-_zuma_-_world_economic_forum_annual_meeting_davos_2010.jpg 192w, https://f3yourmind.net/wp-content/uploads/2014/04/192px-jacob_g-_zuma_-_world_economic_forum_annual_meeting_davos_2010.jpg?w=120&amp;h=150 120w" sizes="(max-width: 192px) 100vw, 192px" /></a><p id="caption-attachment-525" class="wp-caption-text">Image taken from <a href="http://en.wikipedia.org/wiki/Jacob_Zuma" rel="nofollow">http://en.wikipedia.org/wiki/Jacob_Zuma</a></p></div>
<p>Today is April 27, 2014.  It is 20 years and a few days since I voted for the ANC as a free and equal citizen of South Africa.  I never thought that I would live free of apartheid for almost half my life.  Some days more cherished than others, but always, I will take this freedom over apartheid.</p>
<p>In recent times, the leadership of the ANC, especially our State President Jacob Zuma, has been disappointing.  And this word &#8211; <em>disappointing</em> &#8211; is an understatement.   We cannot pause to feel sorry for ourselves, disillusioned.  The ANC has lost my vote. It is time for another struggle.  Vote with your head and your heart, but not out of sentiment and nostalgia.</p>
<p>Back then, Bob Marley protested against colonialism.  It&#8217;s ironic that these same words apply perfectly to the current ANC leadership. It is time to chase these crazy bald heads out of town.</p>
<blockquote><p><span style="color:#474747;">Them crazy, them crazy</span><br style="color:#474747;" /><span style="color:#474747;">We gonna chase those crazy</span><br style="color:#474747;" /><span style="color:#474747;">Baldheads out of town</span><br style="color:#474747;" /><span style="color:#474747;">Chase those crazy baldheads</span><br style="color:#474747;" /><span style="color:#474747;">Out of town</span></p>
<p><span style="color:#474747;">I and I build a cabin</span><br style="color:#474747;" /><span style="color:#474747;">I and I plant the corn</span><br style="color:#474747;" /><span style="color:#474747;">Didn&#8217;t my people before me</span><br style="color:#474747;" /><span style="color:#474747;">Slave for this country</span><br style="color:#474747;" /><span style="color:#474747;">Now you look me with a scorn</span><br style="color:#474747;" /><span style="color:#474747;">Then you eat up all my corn</span></p>
<p><span style="color:#474747;">We gonna chase those crazy baldheads</span><br style="color:#474747;" /><span style="color:#474747;">Chase them crazy</span><br style="color:#474747;" /><span style="color:#474747;">Chase those crazy baldheads out of town</span></p>
<p><span style="color:#474747;">Build your penitentiary, we build your schools</span><br style="color:#474747;" /><span style="color:#474747;">Brainwash education to make us the fools</span><br style="color:#474747;" /><span style="color:#474747;">Hate is your reward for our love</span><br style="color:#474747;" /><span style="color:#474747;">Telling us of your God above</span><br style="color:#474747;" /><span style="color:#474747;">We gonna chase those crazy</span></p>
<p><span style="color:#474747;">Chase those crazy bunkheads</span><br style="color:#474747;" /><span style="color:#474747;">Chase those crazy baldheads out of town</span></p>
<p><span style="color:#474747;">Here comes the conman</span><br style="color:#474747;" /><span style="color:#474747;">Coming with his con plan</span><br style="color:#474747;" /><span style="color:#474747;">We won&#8217;t take no bribe, we got to stay alive</span><br style="color:#474747;" /><span style="color:#474747;">We gonna chase those crazy</span></p>
<p><span style="color:#474747;">Chase those crazy baldheads</span><br style="color:#474747;" /><span style="color:#474747;">Chase those crazy baldheads out of town</span></p>
<p style="text-align:left;"><strong><em>&#8212; Bob Marley, Crazy Baldheads</em></strong></p>
</blockquote>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/general/" rel="category tag">General</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/politics/" rel="tag">politics</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2014/04/27/freedom-day-and-those-crazy-bald-heads/#respond">Leave a comment</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-504" class="post-504 post type-post status-publish format-standard hentry category-software-development tag-agile">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2014/02/10/james-the-shoe-shiner/" rel="bookmark">James the Shoe&nbsp;Shiner</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2014/02/10/james-the-shoe-shiner/" title="2:11 pm" rel="bookmark"><time class="entry-date" datetime="2014-02-10T14:11:36+02:00">February 10, 2014</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<p>A few weeks back I was humbled by about 100 graduates.  They attended an event called Level Up hosted by <a href="http://thoughtworks.com" target="_blank">ThoughtWorks</a> in Johannesburg.  I was speaking last and everything that I wanted to say was said by the time I stood up.  So, I went impromptu and spoke about why we change jobs, that a focus on design will see you through in the world of software, and that life is a cycle and we will do well to do the same as is being done to us right now to start our careers.</p>
<p>Then I rushed off to the airport, and the content of my improv talk hit me fully with stark reality.  When the airport is quiet, like it was that Saturday evening, I know that business is bad for the shoe shiners.  Here was James, the only shoe-shiner around.  It was 6.30pm.  He finishes work at 7pm.  I asked him how much short was he of his daily quota.  It was a slow day, he said.  I opted for an expensive shoe shine so that James met his quota.  I know that if James didn&#8217;t meet his quota, it is taken off his weekly wages.</p>
<p>James, it turns out, is from the Eastern Cape.  He graduated last year with a Diploma in Electrical Engineering.  He came to Johannesburg to get a job.  It is a tough job market, but he was finally offered a job.  But he couldn&#8217;t take it because the job required him to have a driver&#8217;s license.  Now he shines shoes to save money to take driving lessons, then he enters the job market again.  That job won&#8217;t wait for him.</p>
<p>My talk from half hour before of why we change jobs hit me hard.  In John&#8217;s mind, the only thing he needed was an education, and everything will work out.  Then he discovers these hidden constraints.  He changes jobs &#8211; temporarily, he hopes.</p>
<p>This moment has lingered with me for weeks and it clarified three things only today.</p>
<ul>
<li><strong>Indignity is imposed, humility is a choice.</strong>  To make a person kneel before another to polish shoes is an indignity.  That a person has chosen to polish shoes as the needs to an end is humility.  The work we do is not what defines us.  We define our work.  I have heard several agile coaches telling people that if they are unhappy, then they should change their company or change their company.  Most have changed jobs feeling an indignity that was imposed upon them.  I wonder, though, whether life would have been better when that same &#8220;horrible&#8221; job was embraced with humility.  I know sometimes we have to flee.  In my life, when I fled too quickly, the real issue was never resolved.  It just surfaced some time later.</li>
<li><strong>Living in the promise of the future or the longing for the past is to live in limbo.</strong>  The past ends in this moment, and the future starts in this moment too.  We live in the present.  That is part of being truly agile.  Just changing jobs because of something in the past or the lure of the future somewhere else is to lose what we have in the moment.  It is not enough, though, to live in the moment.  To be in the moment demands an awareness.  Adjusting a course based on awareness beats reacting to stimulus.  Reacting to a stimulus puts us into a fight or flight choice.  Adjusting with awareness keeps us in a contemplative place.  Agility is about continuous transitions, each so tiny, that we can&#8217;t see the jagged edges over time.</li>
<li><strong>Unexpected constraints take us into uncharted places.</strong>  James needing a  driver&#8217;s license is his unknown constraint.  Now he shines shoes.  We don&#8217;t know who he might meet shining shoes that may take his life on a different path.  Similarly, the truly agile team will embrace an unexpected constraint and look for opportunity in the uncharted beyond.  The process religious agile team will try to reject the unexpected constraint, fearful of the great beyond &#8211; like anti-bodies fighting a virus.  To be truly agile, we need to just embrace the unexpected as it pops up.  I see many teams attempting agile software development by just tweaking settings on known constraints.  That works for a short time only.  Our  software, after all, is only one requirement away from being hopelessly invalidated.</li>
</ul>
<p>One shoe at a time, James&#8217; life is changing.  James is agile.  Working with humility, embracing the unexpected constraint of needing a driver&#8217;s license, living in the moment, being aware of an empty airport and short of his daily quota.  That is how we should build software &#8211; living in the moment with awareness, letting it change our life daily.</p>
<p>I believe this is possible.</p>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/agile/" rel="tag">agile</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2014/02/10/james-the-shoe-shiner/#respond">Leave a comment</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-466" class="post-466 post type-post status-publish format-standard hentry category-software-development tag-agile tag-ubuntu tag-xp">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2014/01/13/many-teams-co-operate-not-collaborate/" rel="bookmark">Many teams co-operate, not&nbsp;collaborate</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2014/01/13/many-teams-co-operate-not-collaborate/" title="9:39 am" rel="bookmark"><time class="entry-date" datetime="2014-01-13T09:39:02+02:00">January 13, 2014</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<p>At <a href="http://agileafrica.jcse.org.za/" target="_blank">Agile Africa 2013</a>, I presented a session about lessons learned living through apartheid to democracy and how this manifest itself in teams in which I found myself during those times.  Each period has many little stories, all relevant to the way we behave when we work together, especially in quite diverse teams.  I&#8217;m not going to focus on these stories, but rather on the main theme of that talk.  The slide deck for this session is available <a href="http://www.slideshare.net/aslamkhn/beyond-apartheid-and-democracy" target="_blank">here</a>.</p>
<p>The first time I spoke about this publicly was in 2010.  It&#8217;s taken me a while to articulate this particular aspect.  This is the first time I&#8217;ve written about it and I want to share that.  It is my take on a concept that I find is handed out too easily in agile software teams &#8211; collaboration.  I have chosen specific words to describe different kinds of relationships.  My usage might differ from their dictionary meanings.</p>
<p>Now let us start with the first period &#8211; the days of apartheid.</p>
<h1><a href="https://f3yourmind.net/wp-content/uploads/2014/01/contempt.png"><img data-attachment-id="493" data-permalink="https://f3yourmind.net/2014/01/13/many-teams-co-operate-not-collaborate/contempt/#main" data-orig-file="https://f3yourmind.net/wp-content/uploads/2014/01/contempt.png" data-orig-size="312,335" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Contempt" data-image-description="" data-image-caption="" data-large-file="https://f3yourmind.net/wp-content/uploads/2014/01/contempt.png?w=312" loading="lazy" class="size-medium wp-image-493 alignright" alt="Contempt" src="https://f3yourmind.net/wp-content/uploads/2014/01/contempt.png?w=279&#038;h=300" width="279" height="300" srcset="https://f3yourmind.net/wp-content/uploads/2014/01/contempt.png?w=279 279w, https://f3yourmind.net/wp-content/uploads/2014/01/contempt.png?w=140 140w, https://f3yourmind.net/wp-content/uploads/2014/01/contempt.png 312w" sizes="(max-width: 279px) 100vw, 279px" /></a>Contempt</h1>
<p><b></b>In the apartheid years of S.Africa we had a distinct &#8220;us and them&#8221; political and social structure.  It was whites holding a superior position over blacks.  It was only beneficial to one &#8211; those that held the superior position.</p>
<p>I call this kind of relationship contempt.  There is no trust between people and no shared values too.  The only value system that matters is that of superior.  This is a case of oppression.  It is the oppression of another&#8217;s values and identity and of freedom of choice.  Hence, we feel imprisoned.  The consequence of this is the under development of the oppressed.</p>
<p><strong>When have contempt, there is no chance of working for mutual benefit in any kind of way.</strong>  It is just enslavement.  In software teams, I&#8217;ve experienced this overtly, without any facade or subtleties.  Some have been extreme cases, reflecting the bitterness of racism entrenched in our bigger society.  More common, though, are subtle situations of contempt.  For example, a developer considers another developer as less skilled &#8211; stupid to be precise &#8211; then we have relationship of contempt.  Architects and developers, managers and team &#8211; these are instances of &#8220;us and them&#8221;.  We can have such titles, but it is the attitude that arises when we build a culture where one holds themselves superior to others.</p>
<h1><a href="https://f3yourmind.net/wp-content/uploads/2014/01/cooperation.png"><img data-attachment-id="494" data-permalink="https://f3yourmind.net/2014/01/13/many-teams-co-operate-not-collaborate/cooperation/#main" data-orig-file="https://f3yourmind.net/wp-content/uploads/2014/01/cooperation.png" data-orig-size="403,307" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Co-operation" data-image-description="" data-image-caption="" data-large-file="https://f3yourmind.net/wp-content/uploads/2014/01/cooperation.png?w=403" loading="lazy" class="size-medium wp-image-494 alignright" alt="Co-operation" src="https://f3yourmind.net/wp-content/uploads/2014/01/cooperation.png?w=300&#038;h=228" width="300" height="228" srcset="https://f3yourmind.net/wp-content/uploads/2014/01/cooperation.png?w=300 300w, https://f3yourmind.net/wp-content/uploads/2014/01/cooperation.png?w=150 150w, https://f3yourmind.net/wp-content/uploads/2014/01/cooperation.png 403w" sizes="(max-width: 300px) 100vw, 300px" /></a>Co-operation</h1>
<p>In the early 1990&#8217;s South Africa entered a period of transition.  We were dismantling apartheid and building a new political and social system that ensured that we never go back to subhuman bondage.  This required enemies to find a way to work together for the survival of both.</p>
<p>I call this a co-operative relationship.  It is when both sides still retain their own values, but find a way to fulfil a common objective.  To achieve this common objective requires them to build trust.  <strong>I imagine trust as the payload carried in every action.</strong></p>
<p>I sometimes explain it like this.  If we were renovating a kitchen, then the brick layer, the plumber and painter need to co-operate in order to complete the kitchen on time.  Each of them have their own work ethic, which is largely tucked away and insulated from the rest.  They need to agree on certain things like the bricklayer will complete the kitchen before the plumber can put in the taps, and the carpenter waits for the plumber before building the cupboards.  Should one not honour their commitment, then trust is destroyed because it affects the integrity of the others as seen through the eyes of the home owner.</p>
<p><strong>This is the most common type of relationship that the majority of software teams practice.</strong>  We only need a co-operative relationship to build a reasonably efficient cross-functional team. Unlike contempt, people are no longer treated as inferiors.  Instead, everyone stands on their own pedestals of similar height.  The only thing that binds the team is the trust that comes from executing specific actions to achieve the common goal.</p>
<p><span style="line-height:1.5em;"><strong>Most people call this collaboration, but I call it co-operation.</strong>  I can understand why we consider this collaboration.  It is the degree of trust that is necessary for this to emerge.  </span>It is also reinforced by giving a team a name as a sense of common identity.  For me, that kind of naming leads to tribalism.  We gather to paint our faces in familiar markings, exhibiting the same brand.  Our behaviour becomes one of exclusivity than inclusivity.  It reminds me of the tribes that formed in the somewhat controversial book <a href="http://www.amazon.com/Lord-Flies-William-Golding/dp/0399501487">Lord of the Flies</a>.  Pretty soon, we have intertribal tension.  This actually pops up quite quickly in multi-team Scrum implementations where all teams are working of a common backlog.  That backlog introduces real or invented dependencies between tribes, and so the tension starts emerging; just a shadow of first but easy enough to envelope all in darkness.</p>
<p>So, what then, do I consider collaboration?</p>
<h1><a href="https://f3yourmind.net/wp-content/uploads/2014/01/collaboration.png"><img data-attachment-id="492" data-permalink="https://f3yourmind.net/2014/01/13/many-teams-co-operate-not-collaborate/collaboration/#main" data-orig-file="https://f3yourmind.net/wp-content/uploads/2014/01/collaboration.png" data-orig-size="351,251" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="collaboration" data-image-description="" data-image-caption="" data-large-file="https://f3yourmind.net/wp-content/uploads/2014/01/collaboration.png?w=351" loading="lazy" class="size-medium wp-image-492 alignright" alt="collaboration" src="https://f3yourmind.net/wp-content/uploads/2014/01/collaboration.png?w=300&#038;h=214" width="300" height="214" srcset="https://f3yourmind.net/wp-content/uploads/2014/01/collaboration.png?w=300 300w, https://f3yourmind.net/wp-content/uploads/2014/01/collaboration.png?w=150 150w, https://f3yourmind.net/wp-content/uploads/2014/01/collaboration.png 351w" sizes="(max-width: 300px) 100vw, 300px" /></a>Collaboration</h1>
<p>After South Africa ushered in a new constitution, and successfully held its first democratic elections, the cracks started to appear.  We heard words such as &#8220;we need nation building&#8221;, &#8220;we are a rainbow nation&#8221;, and more recently &#8220;everyone can lead S.A.&#8221;.  All these words refer to one thing &#8211; we need to share a common identity.  That is what collaboration is for me &#8211; we have trust and now we focusing to share a set of values that exposes a powerful new identity.  It does not mean that we ignore or assume the presence of trust.  Our actions still carry a high payload of trust.  That never stops.</p>
<p><b>Building a shared value system is not easy, nor quick</b>.  It is a challenge because each of us in this collaborative relationship have our own hierarchy of values.  N<span style="line-height:1.5em;">ow we are being challenged to reconfigure personal hierarchies to overlap.  When we identify those intersections, then we are standing on the same pedestal.</span></p>
<p><b style="line-height:1.5em;">When we work of a common platform &#8211; of even just one common value &#8211; then our basis for existence changes</b><span style="line-height:1.5em;">.  We stop becoming exclusive and starting behaving inclusively.  When a &#8220;stranger&#8221; walks in, seeking participation, then we look for that tiny tendril that allows them to plug into our shared values. Over time that tiny tendril grows stronger, and deep roots are planted.  Sometime the new person enlightens us and we expand our value system too.</span></p>
<p><b>What happens if that new person does not have that thin tendril that we can plug in?</b>  This maybe a meta-value.  The one value that is necessary for collaboration to take root is that we respect all values; being prepared to explore the adoption of any value.  If we don&#8217;t have this single meta-value then we can&#8217;t bootstrap collaboration.  Without this meta-value we are unable to explore any value.  Collaboration comes to a halt.</p>
<p><b>The good news is that the each person does not have to have deep roots into the value system.</b>  Tapping in lightly is enough.  The depth of the roots that are grown is tied to each person on that platform.  Those with shallow roots will move on to other teams that allows them to grow a deep root.  The period of time when they planted that root so shallow is still a wonderful time because we shared an identity.  That we cannot take away.  Inclusion is a way of growing.</p>
<p><b>When people anchor themselves deeply into the value system, we will find that those teams have a longer life.</b> This is because we have a pathway to succession.  Having strong roots means that we create sufficient time for others to grow strong roots too.  In this collaboration, our sense of tribe is meaningless because the values will nourish and support generations of people.  Having a name becomes a label for the values that define us.</p>
<h1><b>A closing thought agile adoption</b></h1>
<p>I&#8217;ve tagged this with XP (extreme programming) as well as agile, and ubuntu &#8211; the zulu philosophy.  XP is what made me aware of the power of values in a team.  In my ignorance, I often attempted to instil values very early in a team.   I thought that I needed to build from a solid foundation.  It never worked.  I found that building a collaborative team is inverted.  We build the walls and the roof before we build the foundation.  The walls and the roof is trust that is needed, and the foundation is the values that are nurtured.</p>
<p>A collaborative team, as I describe it, is rare. It may take years to establish that foundation, with lots of corrections along the way.  That is ok.  That is the journey.  Enjoy it for exactly that.</p>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/agile/" rel="tag">agile</a>, <a href="https://f3yourmind.net/tag/ubuntu/" rel="tag">ubuntu</a>, <a href="https://f3yourmind.net/tag/xp/" rel="tag">XP</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2014/01/13/many-teams-co-operate-not-collaborate/#comments">1 Comment</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-441" class="post-441 post type-post status-publish format-standard hentry category-software-development tag-agile tag-xp">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2014/01/06/the-relevance-of-xp/" rel="bookmark">Extreme Programming is as relevant now as&nbsp;before</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2014/01/06/the-relevance-of-xp/" title="9:30 am" rel="bookmark"><time class="entry-date" datetime="2014-01-06T09:30:06+02:00">January 6, 2014</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<p><a href="http://www.amazon.com/Extreme-Programming-Explained-Embrace-Edition/dp/0321278658"><img data-attachment-id="448" data-permalink="https://f3yourmind.net/2014/01/06/the-relevance-of-xp/51qxx561dil/#main" data-orig-file="https://f3yourmind.net/wp-content/uploads/2013/12/51qxx561dil.jpg" data-orig-size="398,500" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Extreme Programming" data-image-description="" data-image-caption="" data-large-file="https://f3yourmind.net/wp-content/uploads/2013/12/51qxx561dil.jpg?w=398" loading="lazy" class="alignright size-medium wp-image-448" alt="Extreme Programming" src="https://f3yourmind.net/wp-content/uploads/2013/12/51qxx561dil.jpg?w=238&#038;h=300" width="238" height="300" srcset="https://f3yourmind.net/wp-content/uploads/2013/12/51qxx561dil.jpg?w=238 238w, https://f3yourmind.net/wp-content/uploads/2013/12/51qxx561dil.jpg?w=119 119w, https://f3yourmind.net/wp-content/uploads/2013/12/51qxx561dil.jpg 398w" sizes="(max-width: 238px) 100vw, 238px" /></a>Last year I met a few people that had never experienced a waterfall project.  Their first software project was with Scrum.   What stood out for me was that these developers had not read Kent Beck&#8217;s <a href="http://www.amazon.com/Extreme-Programming-Explained-Embrace-Edition/dp/0321278658">Extreme Programming</a>.  I also discovered the same for several that were years into their agile development journey &#8211; never read the XP book.</p>
<p>Perhaps we are past the sceptical stage, and the notion of working in 2 to 3 week cycles is not considered so extreme any more.  XP may not be as popular as Scrum and Kanban at the moment, but it is still intrinsic to successful agile software development.</p>
<p>I confess that I find a lot of the XP practices are difficult and I have certainly not mastered any.  I think it might be simply that software development is just difficult.  Another reason may be that XP warrants that I change my approach, shifting my attitude to software development quite fundamentally.  That is the extreme part of XP for me, not the 3 week cadence.</p>
<p>Here are a few aspects of XP that I have grown to appreciate over time.</p>
<h2>XP makes being a decent human explicit</h2>
<p>XP has a lot to offer for the welfare of each person, and for our collective welfare too.  In a software world where we are learning to embrace our diversity, these insights are valuable for nurturing what is still a comparatively young sector.  Certainly, XP offers values.  However, just declaring a set of values does not mean that we live our values.  That&#8217;s where XP&#8217;s principles and practices kick in.  These exist to nurture those values.  Having a shared set of values and principles is essential in a team, because we use these to help us eliminate options and make decisions.  Value based decisions always seem like choosing the harder option, but the payback is often greater.</p>
<h2>XP is about fine grained feedback</h2>
<p>XP introduced me to the idea of feedback and made me aware of the theory of constraints &#8211; that we just shift problems around when we introduce or remove constraints.  Now we see the rise of lean which focuses on one piece flow, not short time cycles.  That is a different constraint and we have new feedback points like pivoting and waiting until  the last responsible moment.  All these require explicitly designed feedback paths.</p>
<p>Producing a piece of software with one piece flow means that we must bake the feedback into the software we produce.  For example, if we redesign the landing page for a web site, then we need to bake in measuring page views and time spent on the page as part of the release.  Without explicitly thinking about how we receive feedback, we just end up producing a chunk of software that has very little value.  Once we have feedback loops baked in, we are back to observing the shifting of constraints.</p>
<p>XP practices such as continuous integration, collective code ownership, simplifying vigorously, small and frequent releases all aid in building precise feedback loops.  These practices directly support one-piece flow, devops, and continuous delivery.  Yet, most people are unaware that some of these practices are there to increase collaboration.  For example, when there is a problem in the build pipeline, then people will swarm to fix the problem.  It is the high signal conversation after the failure that is valuable.  XP helps increase the signal to noise ratio in our feedback  loops.</p>
<h2>XP is not just process centric</h2>
<p><span style="line-height:1.5em;">As a developer, I am yet to find a set of practices that appeal directly to my work at the most basic level &#8211; working with code.  I&#8217;ve noticed that many teams that embark on an agile journey tend to focus more on an agile process, than their code base. After a while their code base becomes their biggest bottleneck.  Not obvious is that the potential to regress to a waterfall-like development process is high.  When we have little control over the code base, then we may well reach for more grand planning upfront, less frequent and larger releases, and longer testing cycles.</span></p>
<p><strong>The code base becoming a bottleneck is not an event that suddenly happens</strong>.  It is an accumulative effect.  It sneaks up on us.  Some symptoms are a drop in throughput; it becomes more painful to build, release and deploy; and introducing a new feature needs design contortions.  I&#8217;ve referred to this before as &#8220;trying to sprint in mud&#8221;.   We expend a lot of energy, without going far.</p>
<p>The consequences of a code base out of control is the real kicker.  The code we write affects everyone, not just developers and our customers.  It introduces stress to everyone associated with the software &#8211; analysts, managers, customers, family and friends too.  That&#8217;s why in XP there are practices that help us keep the code malleable, interwoven with practices that deal with our collective welfare.</p>
<p>With a code base out of control, we can forget  about one piece flow, lean style.  The same goes for continuous delivery and devops too.  Even with the best build pipeline tools, a badly managed code base will not make life easier.  It is like using really bad quality ingredients to make an exquisite meal.</p>
<h2>XP keeps a focus on design all the time</h2>
<p><strong>XP introduced us to test driven development and continuous refactoring to keep our code bases under control</strong>.  Some people use test coverage as measure of that.  I don&#8217;t subscribe to coverage as a measure of control.  I prefer weighing up the cost of defects against cost of releasing late.  For example, if getting a feature out means securing a market position, then I would go for lower coverage because releasing late will hurt more than releasing early with defects.  This might be a controversial statement but it is still a viable feedback option.</p>
<p>By the way, it is worth noting that <strong>TDD does not yield good designs</strong>.  Instead, it raises warnings of problems with our design.  Good design comes from another XP practice of always aiming for simple designs.  Simplicity comes when we gain deep insights into the domain.  Acquiring knowledge takes time &#8211; it is a slower feedback loop.  Consequently, achieving a simpler design occurs slower than churning out software at the end of each cycle.</p>
<h2>XP allows for code first agile adoption</h2>
<p><span style="line-height:1.5em;"><strong>I prefer to emphasise getting the code base under control as my main target in an agile adoption.  </strong>I lean on XP heavily for achieving this goal.  Along the way, the people and process aspects slot in quite naturally.  As the code base is brought under control, it creates breathing room to introduce other non-technical practices.  </span>I&#8217;ve found that it is less painful to focus on the code base first, XP style, and slot in other practices along the way.</p>
<p>When I&#8217;ve tried it the other way &#8211; process before code &#8211; <strong>I&#8217;ve experienced a kind of agility that is only skin deep</strong>.  The reason is that the act of adopting the code centric practices requires significant change in developers.  Until developers embrace changes in themselves, in the way they approach coding, the agile adoption will remain superficial.  By &#8220;superficial&#8221; I mean that it does not penetrate down to the code itself.</p>
<p>Superficial agile is not a bad thing.  I know of some organisations that will benefit from this approach, but only for a while.  For some, that is sufficient.  If we really want to go beyond skin deep agility, then I think it is necessary to reach for XP&#8217;s practices that deal with code.  There really is nothing else that deals with writing code in short cycles or one piece.</p>
<h2>Should you read Extreme Programming?</h2>
<p>My answer is a resounding yes.  It is a wonderful book, written with a lightness and easiness.  Yet is dense with deep insights in every sentence.  The one last aspect of XP that I cherish is that I could ease into to it slowly and deliberately.  I did not have to apply the entire body of work instantaneously, in one huge swoop.  And I am still easing into it.</p>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/agile/" rel="tag">agile</a>, <a href="https://f3yourmind.net/tag/xp/" rel="tag">XP</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2014/01/06/the-relevance-of-xp/#comments">5 Comments</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-405" class="post-405 post type-post status-publish format-standard hentry category-software-development tag-diversity tag-pan-african-software tag-politics">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2013/12/22/categorywe-are-better-than-this/" rel="bookmark">We are better than&nbsp;this</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2013/12/22/categorywe-are-better-than-this/" title="3:22 pm" rel="bookmark"><time class="entry-date" datetime="2013-12-22T15:22:53+02:00">December 22, 2013</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<p>The people whose contributions to a public Twitter conversation that I mentioned in my last blog post were offended by my opinion on themes that we touched upon. &nbsp;I&#8217;ve apologised over Twitter that my intention was not to be personal, negative nor offensive. &nbsp;I&#8217;ve read my blog post again, taken in the feedback over Twitter and from <a target="_blank" href="http://kevintrethewey.com/Pages/AslamConversation.html">Kevin&#8217;s blog</a><span>. &nbsp;I believe that I could have given better context by acknowledging the value of the code retreat and Kevin&#8217;s efforts in the community. &nbsp;Also, I could have expressed my initial tweet differently or at a different time. &nbsp;That it distracted Kevin from his code retreat was insensitive of me.</span></p>
<p><span>Events like Kevin&#8217;s code retreats, Black Girls Code, and other initiatives are important to improving our community and software development in South Africa, in general. &nbsp;Yet, we are still facing glaring disparities in our sector and in our country that I find difficult to ignore. &nbsp;My fear is if we all take defensive positions, we may never ever discuss such matters openly and respectfully. &nbsp;Like I said in my twitter conversation to Kevin, this is not about him and not about me too. &nbsp;It is about us and our future.</span></p>
<p>The fight for equality is so much tougher when we have freedom.</p>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/diversity/" rel="tag">diversity</a>, <a href="https://f3yourmind.net/tag/pan-african-software/" rel="tag">pan african software</a>, <a href="https://f3yourmind.net/tag/politics/" rel="tag">politics</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2013/12/22/categorywe-are-better-than-this/#comments">1 Comment</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				
<article id="post-2" class="post-2 post type-post status-publish format-standard hentry category-software-development tag-diversity tag-pan-african-software tag-politics">
	<header class="entry-header">
		<h1 class="entry-title"><a href="https://f3yourmind.net/2013/12/17/categorya-question-of-demographics-and-then-some/" rel="bookmark">A question of demographics and then&nbsp;some</a></h1>
				<div class="entry-meta">
			Posted on <a href="https://f3yourmind.net/2013/12/17/categorya-question-of-demographics-and-then-some/" title="11:59 am" rel="bookmark"><time class="entry-date" datetime="2013-12-17T11:59:13+02:00">December 17, 2013</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="https://f3yourmind.net/author/aslamkhn/" title="View all posts by Aslam Khan" rel="author">Aslam Khan</a></span></span>		</div><!-- .entry-meta -->
			</header><!-- .entry-header -->

		<div class="entry-content">
		<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b02e12e4b0f7406a3c5dfd/1387277843432/jhb-code-retreat.png" width="290" height="331" /></p>
<p><strong>Update:</strong> Kevin Trethewey has extended this conversation on <a href="http://kevintrethewey.com/Pages/AslamConversation.html" target="_blank">his blog</a>.</p>
<p>I commented on a photograph that <a href="https://twitter.com/KevinTrethewey" target="_blank">Kevin Trethewey</a> shared of the code retreat that was hosted in Johannesburg, South Africa recently.  His response was very defensive and it clearly showed that he was taking my observation personally.  That was something that I didn&#8217;t anticipate, as I have not seen Kevin carry prejudices of other race groups.</p>
<p>What followed was quite an interesting conversation on the disproportionate representation of non-whites in the South African software community.  I&#8217;m going to comment on parts of this conversation.  For the full conversation, go <a href="https://twitter.com/aslamkhn/status/411766965691506688" target="_blank">here</a>.</p>
<p>A point to note here is how quickly people focused on racial composition as opposed to gender composition of the group.  That is a problem in itself, even for the most gender-aware man in a software community.</p>
<p>This is a long, long, long post, mostly because it is a brain dump of the themes that were flowing in this conversation.</p>
<hr />
<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b02d88e4b01438ef9df78a/1387277705888/cr-2.png" width="455" height="92" /></p>
<h2><strong>There  is adequate opportunity and access for everyone</strong></h2>
<p>Kevin believes that there is fair access and opportunity for all of us to attend an event such as the code retreat.  I disagree. For example, I know a few black software developers that don&#8217;t live in a conveniently accessible middle class suburb.  For them, getting to work is a challenge.  To get to a community event outside of the peak public transport service hours is a huge issue.  The same applies to people attending university.  A black kid living in a township with minimal to zero essential services loses at least 3 hours of study time a day when compared to her more privileged peers.  Accumulate that over a month and we find that she loses about 6 days of work a month.  Our lives are not equal in far more fundamental ways than we wish to acknowledge.</p>
<p>It is also a matter of survival, and not that people lack ambition to be better developers.  When we have less than enough of everything that is essential for living, then a meagre salary is a big deal.  Many black developers I know are supporting their entire family, if not an extended family.  When we&#8217;re in survival mode, ambition is lower priority.</p>
<p>I would love to see events hosted closer to the people that have greater logistical challenges.  That&#8217;s why Braamfontein was a good venue for Agile Africa.  Maybe in 2014, we will have a software conference in Soweto for the first time.  When I want to help someone out of a dark place, I prefer to go into the dark and walk out with them, taking the bumps together, than to just stand outside and shine a light in the distance to where they should go.</p>
<hr />
<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b030f8e4b015164372b94d/1387278584413/cr-4.png" width="470" height="93" /></p>
<h2><strong>People are apathetic</strong></h2>
<p><a href="https://twitter.com/simonstewart">Simon Stewart</a> was of the opinion that it is a lack of caring &#8211; an apathy.  I don&#8217;t know which group of people Simon refers to here so I will steer clear of making assumptions.  What I have noticed is that the majority of software developers don&#8217;t care much for self-learning.  The code retreat that sparked this discussion is a case in point.  Twenty seven developers pitch up to practice their TDD skills.  I don&#8217;t know how many developers there are in Johannesburg, but I guess that this is less than 1% of the total.  Regardless, I don&#8217;t have a problem with this apathy.  Some people &#8220;give a shit&#8221; about different things, like earning a salary first.  Because they care less for self-learning, does not mean they don&#8217;t care at all.  It just means that their value system is stacked differently from others.</p>
<p><span style="font-size:14px;">I don&#8217;t believe it is about software craftsmanship either.  I think software craftsmanship as a community appeals to people that share that value system and the way that community engages with others.  I&#8217;m not one for the craftsmanship movement for reasons that are irrelevant here.  However, I do respect that this community has a right to exist alongside all the others.  Not caring about software craftsmanship does not mean that a developer does not care about growing.  Some of the most accomplished, self-taught developers I know care far less for craftsmanship than I do.</span>  <span style="font-size:14px;">We need to help people understand their potential, and provide diverse ways in which they can fulfil their potential.  Sometimes people will break through that ceiling, setting up a new potential to fulfil.</span></p>
<hr />
<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b02f66e4b0324b1f665b6b/1387278182641/cr-3.png" width="444" height="91" /></p>
<h2><strong>Lack of diversity is commonplace</strong></h2>
<p>Simon rightfully points out that the lack of diversity is common.  I concur.  I&#8217;ve spoken at a few conferences outside our continent and it is the same in most places, as much as it is within ours.  Again, that it is so does not mean that we should accept this.  Make up your own mind, but I cannot accept that.  I&#8217;ve been talking about diversity publicly for several years now.  I&#8217;ve been on projects where the direct result of us not working with our diversity resulted in a tragic cost of the human spirit.  I cannot accept that we are prepared to allow that to happen again and again and again.</p>
<p>I try to be a lot more aware, a lot more empathetic.  I&#8217;ve been fighting my own unsettling biases to appreciate our diversity, to celebrate our differences and embrace our uniqueness.  The scary part is this very process of appreciation demands that we drop all our prejudices.  To do that requires self-reflection and clarity to face the truths of our deeply internalised, and camouflaged stereotypes.  Be prepared to cry for ourselves.  Be prepared to feel lighter on the other side of that.</p>
<hr />
<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b02fafe4b04b55eedc188b/1387278255874/cr-5.png" width="469" height="95" /></p>
<h2><strong>Quotas and Meritocracy</strong></h2>
<p><a href="https://twitter.com/StevenMcD">Steven</a> asked what he thought was a silly question.  But it is not silly at all &#8211; <em>&#8220;How should a code retreat represent the demographics of the country?&#8221;</em>  For me it comes down to us building a significant software development sector in South Africa.  The white minority cannot satisfy that agenda alone because there aren&#8217;t enough of them.  We need black software developers too.  Parallel to this, we need fair and equal gender representation too.  South Africa has one of the most humane constitutions in the world.  Yet, I see many software developers adopt the non-inclusive behaviour of frat boys, country clubs and colonial style thinking of the west and north.  That is a learned behaviour that I refuse subscribe to.  Given our history of the inhumanity of apartheid, I find this behaviour equally abhorrent.  Incidentally, I was part of a very diverse group of developers that were reflecting on what we don&#8217;t like of the software development community, locally and globally.  What emerged were distinct pointers to this imported, inhumane subculture: elitism, arrogance, fear, bullying, sexism, racism, monopolies, nepotism and a lot more.</p>
<p>Steven also dangled the option of quotas.  South Africans are masters of quotas.  We&#8217;ve tried that in almost everything from sports to business.  It turns out that Steven is not offering quotas as an option.  What is relevant for me is the other side of the quota argument &#8211; inclusion by merit.  Meritocracy is a subtle form of exclusion.  In Africa, where we have significant disparity on multiple levels.  Meritocracy just widens the gap between those that have excelled and those that may excel but don&#8217;t have opportunity to do so.</p>
<p>I&#8217;ve been guilty of exercising meritocracy to the extent of building a company based on inclusion by merit.  Being elitist is one of the easiest ways of being exclusive, and oh so easy to cover up whilst staring in the face of everyone.  What changed for me was a change in my attitude.  I now carry an <em>attitude</em> where I respect the potential of each individual.  I realised that we need people to contribute in their own little way, acknowledge that contribution and then help that person raise their own ceiling.</p>
<hr />
<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b0306be4b026ca4485c2d9/1387278444114/cr-6.png" width="457" height="293" /></p>
<h2><strong>We must challenge the bias of minorities</strong></h2>
<p>Here is Steven&#8217;s alternative to quotas.  I ask that we not flame him or attack his position.  This is his position and I want us to respect that.  If I want to change Steven&#8217;s mind, then I need to offer him alternatives, not antagonise him.</p>
<p>I agree that tech events are open to everyone.  I don&#8217;t accept that non-whites and women &#8211; the &#8220;minorities&#8221; &#8211; don&#8217;t attend because they hold prejudices against the pale males.  I think the problem is to do with accessibility, opportunity and a necessity for survival prioritised higher than self-learning, as discussed above.  By the way, Steven, as a white male, you are the minority.</p>
<p>Yet, there is a strong element of intimidation.  This, we cannot ignore.  I&#8217;ve been on the receiving side of intimidation.  It is subtle and, strangely, more powerful in its exclusionary effect.  It exhibits itself as quiet arrogance, and other times as open boorishness.  Tech conferences are testosterone events where geeks flex their muscles using absurd measurements of superiority like &#8220;my big data is bigger than your big data&#8221; or &#8220;I&#8217;ve got more pull requests accepted on blah-blah-blah repo than you&#8221;.  All it takes is one moment of acknowledgement, a moment where there is a little light shining on us and people smile and say that we are awesome.  It is that moment when we pack the soap box in our suitcase and take it everywhere.  From that moment, the superior position is taken and others struggle to fit in, white or not, male or not.  Tech events are open for those of us with soap boxes. Oh, and you must make sure your soap  box is bigger than other soap boxes.</p>
<p>This is why I promised myself to always step off the podium and be accessible to everyone in the room and beyond.  This topic of soapboxes, self appointed popes, cardinals and priests of industry, blogging, tweeting, etc deserves deeper discussion more than this already far too long blog post.  And, yes, I know that my irony is that I&#8217;m blogging and tweeting too.</p>
<hr />
<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b03573e4b0532c166072bf/1387279732507/cr-7.png" width="466" height="215" /></p>
<h2><strong>Tell me when you&#8217;re done talking</strong></h2>
<p>I was uncertain by what Kevin meant when he asked me to let him know when I&#8217;m done talking.  It would have been easy for me to fire a flame attack along the lines of &#8220;WTF makes you think I&#8217;m all talk and no action?&#8221;.  That&#8217;s not useful because twitter is a horrible medium that draws assumptions out of people.  So, I just asked for clarity first.  This is important; a behaviour that I try to instil in myself all the time &#8211; pause, listen, think and ask for clarification if I have even the slightest doubt.  That double check saves me a lot of unnecessary flaming.  I also found that asking for clarification in the face of cynicism does defuse the situation. Then again, rushing around with a burning flamethrower, defending every single one my opinions is a horrible way to spend my life.  It doesn&#8217;t take me forward in the least bit.  Worse, still, is that it causes me to stagnate.</p>
<p>I do try my best to not draw public attention to the work that I do.  I respect the privacy of being in a group and have learnt a long time ago that it is self-serving to tweet about such work.  As a mentor to a few people for many years, I respect that unspoken code of confidentiality.  Being a mentor, for me, is a two way street.  I need to be equally open and honest as I expect of the other.  Sometimes, that means being quite personal and deeply private.  So, I don&#8217;t crow about my work.  But I blog and open conversations based on observations which I&#8217;ve extracted from my time with others.</p>
<p>Those that work closely with me know the extents to which I go to change the status quo.  Then there are those that are even closer that know the extent to which it pains me when I can&#8217;t change the status quo.  At a deeply philosophical level, is it possible to give unconditionally &#8211; without even the tiniest drop of self-serving satisfaction?</p>
<hr />
<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b035a1e4b0532c166072d1/1387279777533/cr-8.png" width="459" height="117" /></p>
<h2><strong>Celebrate the success</strong></h2>
<p>Mark Pearl, on a separate conversation stream, reminded me that that progress was being made.  That is true, there is progress being made.  I mentioned that at Agile Africa that the demographics are changing, slowly for the better.  I think we are moving forward and I am not so concerned about the pace either.  There is a part of me, though, that is cautious of grand celebrations for small steps.  That is just me.  I prefer constant acknowledgment of progress for each tiny step.  It keeps me humble, knowing that the big picture is still not fully painted.</p>
<hr />
<p><img loading="lazy" class="alignright" alt="" src="https://i0.wp.com/static.squarespace.com/static/5006a671e4b09ef2252cfad4/50081442e4b03ccef57870b3/52b035bde4b0324077fb129e/1387279806294/cr-9.png" width="469" height="227" /></p>
<h2><strong>Can I plug in, please?</strong></h2>
<p>Hearing that I am doing something, Kevin invited me to breakfast to hear more so that he can plug in.  I&#8217;m happy to share with most people, but this work isn&#8217;t about plugging in.  It is not a thing at all.  It is about my individual behaviour and attitude.  There are no recipes that I can offer to make this better.  It requires me to find a connection with myself.  It is about holding a heightened sense of self-awareness, of each thought, each action and each consequence.  It demands a level of honesty with myself that is, at times, extremely hard to face.  This is a journey that I&#8217;ve been trying to walk.  It is painful to look in the mirror and see beyond the reflection.  I am motivated by a belief that we have a primal encoding for decency and an inclusive humane culture.  Everything else is an invention that is designed to obscure that basic encoding.</p>
<p>For more than 50% of the time, I get it wrong &#8211; my behavior and attitude.  So, I cannot stop here and I must persevere with this.  This is why demographic representation is important.  It is a measure of our collective shedding of invented biases and a statement of us including each other without prejudice.</p>
<p>To Kevin and the others, thanks for opening a powerful, multi-faceted conversation.  And if you want to plug-in to this inclusive, humane culture, then you will need to plug-in to yourself first.  This is not something I can help others plug in to.  I can only behave in a way that I want our software community to behave.  I believe that others will change in step.</p>
			</div><!-- .entry-content -->
	
	<footer class="entry-meta">
								<span class="cat-links">
				Posted in <a href="https://f3yourmind.net/category/software-development/" rel="category tag">Software Development</a>			</span>
			
						<span class="sep"> / </span>
			<span class="tags-links">
				Tagged <a href="https://f3yourmind.net/tag/diversity/" rel="tag">diversity</a>, <a href="https://f3yourmind.net/tag/pan-african-software/" rel="tag">pan african software</a>, <a href="https://f3yourmind.net/tag/politics/" rel="tag">politics</a>			</span>
					
				<span class="sep"> / </span>
		<span class="comments-link"><a href="https://f3yourmind.net/2013/12/17/categorya-question-of-demographics-and-then-some/#comments">2 Comments</a></span>
		
			</footer><!-- .entry-meta -->
	</article><!-- #post-## -->

			
				<nav role="navigation" id="nav-below" class="navigation-paging">
		<h1 class="screen-reader-text">Post navigation</h1>

	
				<div class="previous"><a href="https://f3yourmind.net/page/2/" ><span class="meta-nav">&larr;</span> Older posts</a></div>
		
		
	
	</nav><!-- #nav-below -->
	
		
		</div><!-- #content -->
	</div><!-- #primary -->

	<div id="secondary" class="widget-area" role="complementary">
				<aside id="media_image-2" class="widget widget_media_image"><h1 class="widget-title">My Book</h1><style>.widget.widget_media_image { overflow: hidden; }.widget.widget_media_image img { height: auto; max-width: 100%; }</style><a href="http://www.manning.com/khan/"><img class="image alignnone" src="http://www.manning.com/khan/khan_cover150.jpg" alt="Grokking Functional Programming" width="150" height="189" /></a></aside><aside id="blog_subscription-2" class="widget widget_blog_subscription jetpack_subscription_widget"><h1 class="widget-title"><label for="subscribe-field">Follow Blog via Email</label></h1>

			<div class="wp-block-jetpack-subscriptions__container">
			<form
				action="https://subscribe.wordpress.com"
				method="post"
				accept-charset="utf-8"
				data-blog="61765992"
				data-post_access_level="everybody"
				id="subscribe-blog"
			>
				<p>Enter your email address to follow this blog and receive notifications of new posts by email.</p>
				<p id="subscribe-email">
					<label
						id="subscribe-field-label"
						for="subscribe-field"
						class="screen-reader-text"
					>
						Email Address:					</label>

					<input
							type="email"
							name="email"
							autocomplete="email"
							
							style="width: 95%; padding: 1px 10px"
							placeholder="Email Address"
							value=""
							id="subscribe-field"
							required
						/>				</p>

				<p id="subscribe-submit"
									>
					<input type="hidden" name="action" value="subscribe"/>
					<input type="hidden" name="blog_id" value="61765992"/>
					<input type="hidden" name="source" value="https://f3yourmind.net/"/>
					<input type="hidden" name="sub-type" value="widget"/>
					<input type="hidden" name="redirect_fragment" value="subscribe-blog"/>
					<input type="hidden" id="_wpnonce" name="_wpnonce" value="9072b7415c" />					<button type="submit"
													class="wp-block-button__link"
																	>
						Follow					</button>
				</p>
			</form>
						</div>
			
</aside>
		<aside id="recent-posts-2" class="widget widget_recent_entries">
		<h1 class="widget-title">Recent Posts</h1>
		<ul>
											<li>
					<a href="https://f3yourmind.net/2017/10/17/making-a-mess-less/">Making a mess&nbsp;less</a>
									</li>
											<li>
					<a href="https://f3yourmind.net/2014/10/30/update-on-grokking-functional-programming/">Update on Grokking Functional&nbsp;Programming</a>
									</li>
											<li>
					<a href="https://f3yourmind.net/2014/06/16/a-book-is-born/">A Book is&nbsp;Born</a>
									</li>
											<li>
					<a href="https://f3yourmind.net/2014/05/14/event-inclusivity-and-innovation-in-s-african-software/">Event: Inclusivity and Innovation in S.African&nbsp;Software</a>
									</li>
											<li>
					<a href="https://f3yourmind.net/2014/04/27/freedom-day-and-those-crazy-bald-heads/">Freedom day and those crazy bald&nbsp;heads</a>
									</li>
					</ul>

		</aside>	</div><!-- #secondary -->

	</div><!-- #main -->

	<footer id="colophon" class="site-footer" role="contentinfo">
		<div class="site-info">
						<a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a>
			
					</div><!-- .site-info -->
	</footer><!-- #colophon -->
</div><!-- #page -->

		<script type="text/javascript">
		var infiniteScroll = {"settings":{"id":"content","ajaxurl":"https://f3yourmind.net/?infinity=scrolling","type":"click","wrapper":true,"wrapper_class":"infinite-wrap","footer":"page","click_handle":"1","text":"Older posts","totop":"Scroll back to top","currentday":"17.12.13","order":"DESC","scripts":[],"styles":[],"google_analytics":false,"offset":1,"history":{"host":"f3yourmind.net","path":"/page/%d/","use_trailing_slashes":true,"parameters":""},"query_args":{"error":"","m":"","p":0,"post_parent":"","subpost":"","subpost_id":"","attachment":"","attachment_id":0,"name":"","pagename":"","page_id":0,"second":"","minute":"","hour":"","day":0,"monthnum":0,"year":0,"w":0,"category_name":"","tag":"","cat":"","tag_id":"","author":"","author_name":"","feed":"","tb":"","paged":0,"meta_key":"","meta_value":"","preview":"","s":"","sentence":"","title":"","fields":"all","menu_order":"","embed":"","category__in":[],"category__not_in":[],"category__and":[],"post__in":[],"post__not_in":[],"post_name__in":[],"tag__in":[],"tag__not_in":[],"tag__and":[],"tag_slug__in":[],"tag_slug__and":[],"post_parent__in":[],"post_parent__not_in":[],"author__in":[],"author__not_in":[],"search_columns":[],"lazy_load_term_meta":false,"posts_per_page":10,"ignore_sticky_posts":false,"suppress_filters":false,"cache_results":true,"update_post_term_cache":true,"update_menu_item_cache":false,"update_post_meta_cache":true,"post_type":"","nopaging":false,"comments_per_page":"50","no_found_rows":false,"order":"DESC"},"query_before":"2026-06-09 02:56:42","last_post_date":"2013-12-17 11:59:13","body_class":"infinite-scroll","loading_text":"Loading new page","stats":"blog=61765992\u0026v=wpcom\u0026tz=2\u0026user_id=0\u0026arch_home=1\u0026subd=aslamkhn\u0026x_pagetype=infinite-click"}};
		</script>
		<!--  -->
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/files/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/pub/truly-minimal/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="grofiles-cards-js" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202624d1133547e8a1f2801609f51cef12522abe7f6647d869e9fbc974fe356a37e613"></script>
<script id="wpgroho-js-extra">
var WPGroHo = {"my_hash":""};
//# sourceURL=wpgroho-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>

	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}

				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}

				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};

				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile →': 'Edit your profile →',
							'View profile →': 'View profile →',
							'Contact': 'Contact',
							'Send money': 'Send money',
							'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
							'Gravatar not found.': 'Gravatar not found.',
							'Too Many Requests.': 'Too Many Requests.',
							'Internal Server Error.': 'Internal Server Error.',
							'Is this you?': 'Is this you?',
							'Claim your free profile.': 'Claim your free profile.',
							'Email': 'Email',
							'Home Phone': 'Home Phone',
							'Work Phone': 'Work Phone',
							'Cell Phone': 'Cell Phone',
							'Contact Form': 'Contact Form',
							'Calendar': 'Calendar',
						},
					}
				);
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>

		<div style="display:none">
	</div>
		<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-pub-truly-minimal actnbr-has-follow actnbr-has-actions">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="https://f3yourmind.net">
				<img loading='lazy' alt='' src='https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png' srcset='https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1x, https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=75&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1.5x, https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=100&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 2x, https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=150&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 3x, https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=200&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 4x' class='avatar avatar-50' height='50' width='50' />				f3yourmind			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
																						<div class="actnbr-follow-count">Join 30 other subscribers</div>
																					<div>
										<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
										</div>
										<input type="hidden" name="action" value="subscribe" />
										<input type="hidden" name="blog_id" value="61765992" />
										<input type="hidden" name="source" value="https://f3yourmind.net/" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="9072b7415c" />										<div class="actnbr-button-wrap">
											<button type="submit" value="Sign me up">
												Sign me up											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Ff3yourmind.net%252F2017%252F10%252F17%252Fmaking-a-mess-less%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
								<li class="actnbr-sitename">
			<a href="https://f3yourmind.net">
				<img loading='lazy' alt='' src='https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png' srcset='https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1x, https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=75&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1.5x, https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=100&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 2x, https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=150&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 3x, https://secure.gravatar.com/blavatar/f56262ea274c564d672eb917165ccbd83d36b981c9243cfb54f16324e2a4b631?s=200&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 4x' class='avatar avatar-50' height='50' width='50' />				f3yourmind			</a>
		</li>
								<li class="actnbr-folded-follow">
										<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
								</li>
														<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
							<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Ff3yourmind.net%252F2017%252F10%252F17%252Fmaking-a-mess-less%252F">Log in</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://f3yourmind.net" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/feeds/16601637">
										View site in Reader									</a>
								</li>
															<li class="actnbr-subs">
									<a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
								</li>
																<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
														</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<script>
window.addEventListener( "DOMContentLoaded", function( event ) {
	var link = document.createElement( "link" );
	link.href = "/wp-content/mu-plugins/actionbar/actionbar.css?v=20250116";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "/wp-content/mu-plugins/actionbar/actionbar.js?v=20250204";
	document.body.appendChild( script );
} );
</script>

			<div id="jp-carousel-loading-overlay">
			<div id="jp-carousel-loading-wrapper">
				<span id="jp-carousel-library-loading"><svg class="jetpack-spinner" width="40" height="40" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><circle cx="50" cy="50" r="46" fill="none" stroke="#ddd" stroke-width="8"/><path d="M 50 4 A 46 46 0 0 1 96 50" fill="none" stroke="currentColor" stroke-width="8" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" dur="1.4s" from="0 50 50" to="360 50 50" repeatCount="indefinite"/></path></svg></span>
			</div>
		</div>
		<div class="jp-carousel-overlay" style="display: none;">

		<div class="jp-carousel-container">
			<!-- The Carousel Swiper -->
			<div
				class="jp-carousel-wrap swiper jp-carousel-swiper-container jp-carousel-transitions"
				itemscope
				itemtype="https://schema.org/ImageGallery">
				<div class="jp-carousel swiper-wrapper"></div>
				<div class="jp-swiper-button-prev swiper-button-prev">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12">
							<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskPrev)">
							<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
				<div class="jp-swiper-button-next swiper-button-next">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12">
							<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskNext)">
							<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
			</div>
			<!-- The main close buton -->
			<div class="jp-carousel-close-hint">
				<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14">
						<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
					</mask>
					<g mask="url(#maskClose)">
						<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
					</g>
				</svg>
			</div>
			<!-- Image info, comments and meta -->
			<div class="jp-carousel-info">
				<div class="jp-carousel-info-footer">
					<div class="jp-carousel-pagination-container">
						<div class="jp-swiper-pagination swiper-pagination"></div>
						<div class="jp-carousel-pagination"></div>
					</div>
					<div class="jp-carousel-photo-title-container">
						<h2 class="jp-carousel-photo-caption"></h2>
					</div>
					<div class="jp-carousel-photo-icons-container">
						<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
									</mask>
									<g mask="url(#maskInfo)">
										<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
							</span>
						</a>
												<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
									</mask>
									<g mask="url(#maskComments)">
										<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>

								<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span>
							</span>
						</a>
											</div>
				</div>
				<div class="jp-carousel-info-extra">
					<div class="jp-carousel-info-content-wrapper">
						<div class="jp-carousel-photo-title-container">
							<h2 class="jp-carousel-photo-title"></h2>
						</div>
						<div class="jp-carousel-comments-wrapper">
															<div id="jp-carousel-comments-loading">
									<span>Loading Comments...</span>
								</div>
								<div class="jp-carousel-comments"></div>
								<div id="jp-carousel-comment-form-container">
									<span id="jp-carousel-comment-form-spinner"><svg class="jetpack-spinner" width="20" height="20" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><circle cx="50" cy="50" r="46" fill="none" stroke="#ddd" stroke-width="8"/><path d="M 50 4 A 46 46 0 0 1 96 50" fill="none" stroke="currentColor" stroke-width="8" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" dur="1.4s" from="0 50 50" to="360 50 50" repeatCount="indefinite"/></path></svg></span>
									<div id="jp-carousel-comment-post-results"></div>
																														<form id="jp-carousel-comment-form">
												<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
												<textarea
													name="comment"
													class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea"
													id="jp-carousel-comment-form-comment-field"
													placeholder="Write a Comment..."
												></textarea>
												<div id="jp-carousel-comment-form-submit-and-info-wrapper">
													<div id="jp-carousel-comment-form-commenting-as">
																													<fieldset>
																<label for="jp-carousel-comment-form-email-field">Email (Required)</label>
																<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-author-field">Name (Required)</label>
																<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-url-field">Website</label>
																<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" />
															</fieldset>
																											</div>
													<input
														type="submit"
														name="submit"
														class="jp-carousel-comment-form-button"
														id="jp-carousel-comment-form-button-submit"
														value="Post Comment" />
												</div>
											</form>
																											</div>
													</div>
						<div class="jp-carousel-image-meta">
							<div class="jp-carousel-title-and-caption">
								<div class="jp-carousel-photo-info">
									<h3 class="jp-carousel-caption" itemprop="caption description"></h3>
								</div>

								<div class="jp-carousel-photo-description"></div>
							</div>
							<ul class="jp-carousel-image-exif" style="display: none;"></ul>
							<a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/>
									</mask>
									<g mask="url(#mask0)">
										<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-download-text"></span>
							</a>
							<div class="jp-carousel-image-map" style="display: none;"></div>
						</div>
					</div>
				</div>
			</div>
		</div>

		</div>
		
	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',

				toggle_reblog_box_flair: function (obj_id, post_id) {

					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;

					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';

					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
							location.href = url;
						}
					};

					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};

			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
<script id="jetpack-carousel-js-extra">
var jetpackSwiperLibraryPath = {"url":"/wp-content/mu-plugins/jetpack-plugin/sun/_inc/blocks/swiper.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https://f3yourmind.net/wp-admin/admin-ajax.php","nonce":"10caa26cba","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","image_label":"Open image in full-screen.","download_original":"View full size \u003Cspan class=\"photo-size\"\u003E{0}\u003Cspan class=\"photo-size-times\"\u003E\u00d7\u003C/span\u003E{1}\u003C/span\u003E","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https://aslamkhn.wordpress.com/wp-login.php?redirect_to=https%3A%2F%2Ff3yourmind.net%2F2017%2F10%2F17%2Fmaking-a-mess-less%2F","blog_id":"61765992","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=61765992&v=wpcom&tz=2&user_id=0&arch_home=1&subd=aslamkhn","is_public":"1"};
//# sourceURL=jetpack-carousel-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJyVj8EOgjAQRH/IspJo4GL8FFNqwS3bbcN2Uf5eD2CMJz2+yZtJBu7ZuMTFc4GoJpMOyALBl2zduDKIMlyQHXSKdAXkHhmLN+KmRLTxUkXkKsgOPkbLzUcvkLWDMikt5uVgtARBgO2Mgy2Y/mrJiNkQ8mj65FRMj4/v+s9PnJ2Siqe3tgXrlXM81U27P9aHtqnDE3QqcHQ='></script>
<script data-wp-strategy="defer" defer id="tiled-gallery-js" src="/wp-content/mu-plugins/jetpack-plugin/sun/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js?m=1755011788i&#038;ver=15.9-a.8"></script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/carousel-wpcom/carousel-wpcom.js?m=1761899756i'></script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/","ext":".png","svgUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/","svgExt":".svg","source":{"concatemoji":"/wp-includes/js/wp-emoji-release.min.js?m=1764078722i&ver=7.0-RC4-62382"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=/wp-includes/js/wp-emoji-loader.min.js
</script>
		<script type="text/javascript">
			(function() {
				var extend = function(out) {
					out = out || {};

					for (var i = 1; i < arguments.length; i++) {
						if (!arguments[i])
						continue;

						for (var key in arguments[i]) {
						if (arguments[i].hasOwnProperty(key))
							out[key] = arguments[i][key];
						}
					}

					return out;
				};
				extend( window.infiniteScroll.settings.scripts, ["jetpack-mu-wpcom-settings","rlt-proxy","wpcom-actionbar-placeholder","grofiles-cards","wpgroho","the-neverending-homepage","truly-minimal-navigation","truly-minimal-skip-link-focus-fix","jetpack-carousel","tiled-gallery","carousel-wpcom"] );
				extend( window.infiniteScroll.settings.styles, ["the-neverending-homepage","coblocks-frontend","wpcom-core-compat-playlist-styles","wpcom-bbpress2-staff-css","truly-minimal-style","truly_minimal-wpcom","reblogging","geo-location-flair","a8c-global-print","h4-global","wp-emoji-styles","wp-block-library","classic-theme-styles","wp-block-styles-placeholder","wp-global-styles-placeholder","truly-minimal-droid-serif","truly-minimal-droid-sans","jetpack-global-styles-frontend-style","global-styles","jetpack-swiper-library","jetpack-carousel","jetpack-subscriptions","tiled-gallery","core-block-supports-duotone"] );
			})();
		</script>
				<span id="infinite-aria" aria-live="assertive"></span>
		<script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'61765992','blog_tz':'2','user_lang':'en','blog_lang':'en','user_id':'0'}]);
		// Prevent sending pageview tracking from WP-Admin pages.
		_stq.push(['view', {'blog':'61765992','v':'wpcom','tz':'2','user_id':'0','arch_home':'1','subd':'aslamkhn'}]);
		_stq.push(['extra', {'crypt':'UE5tW3cvZGQ/VzhXc0wlMWpCPzM3RkQ3dmQtSzRUSnlNLEN2NzRINDB0dF9vTjVpSW1xeXd1bXFqSmV3SjlJUDh5S01HSlFpRXlIZUJmUmExZytRQk0vU1JPWE1mNDk1SC1IZT9SPz89NnZTdmVZJUt0MWJ5ZmldLFBaWlouOFllW1ZGTC1YZUwsP3J+dU1zUHNQVjgsfEVybCVYN21+WGQvNFBuY2hnU3FrTWguYyZhNXh3RnhKQy5kbmp0SGFrWTI5XStMTFJhbHBbNkNZQjFkK01UZUFMZVF0ckZuVE1DeWN5'}]);
_stq.push([ 'clickTrackerInit', '61765992', '0' ]);
</script>
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<meta id="bilmur" property="bilmur:data" content="" data-provider="wordpress.com" data-service="simple" data-site-tz="Etc/GMT-2" data-custom-props="{&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;pub\/truly-minimal&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}"  >
		<script defer src="/wp-content/js/bilmur.min.js?i=17&amp;m=202624"></script> 	
</body>
</html>