<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Luthar.com | Interfaith Enlightenment Site</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="https://luthar.com/xmlrpc.php" />
<!--[if lt IE 9]>
<script src="https://s2.wp.com/wp-content/themes/premium/pinboard/js/html5.js?m=1370534153i" type="text/javascript"></script>
<![endif]-->

<meta name='robots' content='max-image-preview:large' />

<!-- 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=19650'
					+ '&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=aHR0cHM6Ly9sdXRoYXIuY29t"
		+ "&wpcomid=56823571"
		+ "&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='//s1.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="Luthar.com &raquo; Feed" href="https://luthar.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Luthar.com &raquo; Comments Feed" href="https://luthar.com/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='/_static/??-eJxtjEkKgDAMAD9kjUuhJ/EtUqtE07SYFvH3bnjzMjAwDOxR2cDJcQKfVaQ8IwsQrk5gcSkOdlWPlVakgP/8C18HH8KNMdM1QZ6QMTkldgtEnx/3r/ddbYzRddU2ejkBpDkzwg==&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-image-inline-css">
.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:#5a5a5a40;border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto #5a5a5a40;outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:#5a5a5a40;border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .wp-lightbox-close-button{align-items:center;cursor:pointer;display:flex;font-family:inherit;gap:8px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 4px;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .wp-lightbox-close-button:focus,.wp-lightbox-overlay .wp-lightbox-close-button:hover,.wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg{height:1em;width:1em}.wp-lightbox-overlay .wp-lightbox-close-icon svg{display:block}.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{align-items:center;bottom:16px;cursor:pointer;display:flex;font-family:inherit;gap:4px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 8px;position:absolute;z-index:2000002}.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden],.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden]{display:none}@media (min-width:960px){.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{bottom:50%;transform:translateY(-50%)}}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background),.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background){background:none;border:none;padding:0 8px}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg{display:block;height:1.5em;width:1.5em}.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{left:calc(env(safe-area-inset-left) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-button-next{right:calc(env(safe-area-inset-right) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-icon svg{vertical-align:middle}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:2000001}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/image/style.min.css */
</style>
<style id="wp-block-paragraph-inline-css">
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/paragraph/style.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/??-eJx9jUsOwjAMRC+EY6UgCAvEWZrEKoG4jWq3hduTLvisurFG1nszuBQIQ6/UK5Y8dakXDIPPQ3gINsY6Y0ESl0ww0mwOGJPolwDRVyYTRHb4V8QT/LpGqn8ura4EU0wtZeKKbWlLih1p1eWTQem5rZQ6A96XkUSgXk4Tg97qlqzelS/26KzbN835dH8DjlpbIA==&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/premium/pinboard/style.css?m=1757587232i&cssminify=yes' type='text/css' media='all' />
<link rel='stylesheet' id='pinboard-radley-css' href='https://fonts-api.wp.com/css?family=Radley:400,400italic&#038;ver=7.0-RC4-62382' media='all' />
<link rel='stylesheet' id='pinboard-damion-css' href='https://fonts-api.wp.com/css?family=Damion&#038;ver=7.0-RC4-62382' media='all' />
<style id="jetpack_facebook_likebox-inline-css">
.widget_facebook_likebox {
	overflow: hidden;
}

/*# sourceURL=/wp-content/mu-plugins/jetpack-plugin/moon/modules/widgets/facebook-likebox/style.css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-16-1' href='/_static/??-eJzTLy/QTc7PK0nNK9HPLdUtyClNz8wr1i9KTcrJTwcy0/WTi5G5ekCujj52Temp+bo5+cmJJZn5eSgc3bScxMwikFb7XFtDE1NLExMLc0OTLACohS2q&cssminify=yes' type='text/css' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='print-css-17-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-20-1' href='/_static/??-eJyNjcEKwjAQRH/IuFYqOYmfImk2pFs32dBNKP69rfQigngZZmBmHizFeMk15AqpmcItUlaYQi3OP/YMSWQTbBwUdHRzQIf4fFvK8ehVD/D/052yh6ERI6h4cmxYouhH+PqsY0grfewhsgyOf0EXwhiqwlrZvYkzoXEZDZPWbXtL187a/tJ3p7OdXuVTYfE=&cssminify=yes' type='text/css' media='all' />
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"56823571","postID":"0","siteURL":"https://luthar.com","xhrURL":"https://luthar.com/wp-admin/admin-ajax.php","nonce":"3a5d3261b9","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/moon/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/"};
//# sourceURL=jetpack-mu-wpcom-settings-js-before
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJyFjksOwjAMRC9EmgLit0CcJU2s4ChOTD6U3p4W6AKkipVHmvc0lj0LHUOBUKTLMvkiOMXH0Li8kmOHQftqIE+lu1VIw+c0hOEvJAhtUgWWYCRlIfuoDJglhlSO4XtvfrhcgUaIExBWkoyhiyqZyZpzk3VCLr8mVcG+WgxZ9mgslNfUO4quEos7Qj9aFzqvD5t2t233x5N7AiqIb/w='></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://luthar2.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/3Qqpd' />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Luthar.com" />
<meta property="og:description" content="Yoga, Meditation, Guru, Master, Spirituality, Ramana Maharshi" />
<meta property="og:url" content="https://luthar.com/" />
<meta property="og:site_name" content="Luthar.com" />
<meta property="og:image" content="https://s0.wp.com/_si/?t=eyJpbWciOiJodHRwczpcL1wvbHV0aGFyLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAxOVwvMDNcL2Nyb3BwZWQtaGFyc2gtbHV0aGFyLW5vLW9uZS1naXZlcy15b3UtdGhlLXRydXRoLmpwZz93PTIwMCIsInR4dCI6Ikx1dGhhci5jb20iLCJ0ZW1wbGF0ZSI6ImVkZ2UiLCJmb250IjoiIiwiYmxvZ19pZCI6NTY4MjM1NzF9.n3jK-BJ0_q8W6Vu62rE5wEqjViRPhP11NFYwHn2PX4EMQ" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />

<!-- End Jetpack Open Graph Tags -->
<link rel='openid.server' href='https://luthar.com/?openidserver=1' />
<link rel='openid.delegate' href='https://luthar.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="https://luthar.com/osd.xml" title="Luthar.com" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<meta name="theme-color" content="#fffef1" />
<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>		<style type="text/css">
			.recentcomments a {
				display: inline !important;
				padding: 0 !important;
				margin: 0 !important;
			}

			table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
				border: 0px;
				margin: 0;
			}

			table.recentcommentsavatartop a, table.recentcommentsavatarend a {
				border: 0px !important;
				background-color: transparent !important;
			}

			td.recentcommentsavatarend, td.recentcommentsavatartop {
				padding: 0px 0px 1px 0px;
				margin: 0px;
			}

			td.recentcommentstextend {
				border: none !important;
				padding: 0px 0px 2px 10px;
			}

			.rtl td.recentcommentstextend {
				padding: 0px 10px 2px 0px;
			}

			td.recentcommentstexttop {
				border: none;
				padding: 0px 0px 0px 10px;
			}

			.rtl td.recentcommentstexttop {
				padding: 0px 10px 0px 0px;
			}
		</style>
		<meta name="description" content="Interfaith Enlightenment Site" />
<style id="custom-background-css">
body.custom-background { background-color: #fffef1; background-image: url("https://luthar2.wordpress.com/wp-content/themes/premium/pinboard/images/one.png?m=1391150366i"); background-position: left top; background-size: auto; background-repeat: repeat; background-attachment: fixed; }
</style>
<link rel="icon" href="https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=32" sizes="32x32" />
<link rel="icon" href="https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=192" sizes="192x192" />
<link rel="apple-touch-icon" href="https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=180" />
<meta name="msapplication-TileImage" content="https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=270" />
			<link rel="stylesheet" id="custom-css-css" type="text/css" href="https://s1.wp.com/?custom-css=1&#038;csblog=3Qqpd&#038;cscache=6&#038;csrev=40" />
			<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-5' href='/_static/??-eJydjt0KwjAMhV/ILk4HuxIfRbY2jMy0KUvK2Ns78Qe8Ed1dvnD4zoE5Oy/JMBnE4jKXgZLCiJY7f30yRJEEF0oeehZ/VdCZMk6VV93B74YooTAq+G6Sosjv0Ovxr/AxqRAH0NKrnygbyRr+oCpS2jp1pjCgKZhkl0XXS21h3KozYgxu6JhxWr7RveAcT3Xbtk29Px6a8QZT+qHI&cssminify=yes' type='text/css' media='all' />

</head>

<body class="home blog custom-background wp-theme-premiumpinboard customizer-styles-applied group-blog left-sidebar three-column jetpack-reblog-enabled">
<div id="page" class="hfeed site">
		<header id="masthead" class="site-header" role="banner">
		<hgroup>
			<h1 class="site-title"><a href="https://luthar.com/" title="Luthar.com" rel="home">Luthar.com</a></h1>
			<h2 class="site-description">Interfaith Enlightenment Site</h2>
		</hgroup>

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

			<div class="menu-luthar-menu-container"><ul id="menu-luthar-menu" class="menu"><li id="menu-item-15354" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-has-children menu-item-15354"><a href="https://luthar.com/" aria-current="page">Home</a>
<ul class="sub-menu">
	<li id="menu-item-15358" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15358"><a href="https://luthar.com/general-notice/">General Notice</a></li>
</ul>
</li>
<li id="menu-item-15355" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15355"><a href="https://luthar.com/dr-harsh-k-luthar/">About</a></li>
<li id="menu-item-15357" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15357"><a href="https://luthar.com/testimonials/">Friends Speak</a></li>
<li id="menu-item-15351" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15351"><a href="https://luthar.com/kundalini-yoga/">Kundalini Yoga</a></li>
<li id="menu-item-15352" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15352"><a href="https://luthar.com/disclaimer-and-copyright-notice/">Disclaimer and Copyright Notice</a></li>
<li id="menu-item-15353" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15353"><a href="https://luthar.com/categories/">Categories</a></li>
</ul></div>		</nav><!-- .site-navigation .main-navigation -->

		<div id="search-wrap">
				<form method="get" id="searchform" action="https://luthar.com/" role="search">
		<label for="s" class="assistive-text">Search</label>
		<input type="text" class="field" name="s" id="s" placeholder="Search &hellip;" />
		<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
	</form>
		</div>
	</header><!-- #masthead .site-header -->

	<div id="main">

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

				
					<div id="content-wrapper">

												
							
<article id="post-19650" class="post-19650 post type-post status-publish format-standard hentry category-advaita-yoga category-arunachala category-hinduism category-inspirational category-ramana-maharishi category-spirituality category-teachers category-wisdom category-yoga tag-grace tag-meditation tag-ramana-maharshi tag-self-realization tag-spirituality tag-yoga">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2023/07/14/the-true-master-3/" title="Permalink to The True Master" rel="bookmark">
						</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2023/07/14/the-true-master-3/" rel="bookmark">The True Master</a></h1>

		<a href="https://luthar.com/2023/07/14/the-true-master-3/" title="6:07 pm" rel="bookmark"><time class="entry-date" datetime="2023-07-14T18:07:02-04:00" pubdate>July 14, 2023</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/advaita-yoga/" rel="category tag">ADVAITA &amp; YOGA</a>, <a href="https://luthar.com/category/arunachala/" rel="category tag">Arunachala</a>, <a href="https://luthar.com/category/hinduism/" rel="category tag">Hinduism</a>, <a href="https://luthar.com/category/inspirational/" rel="category tag">INSPIRATIONAL</a>, <a href="https://luthar.com/category/ramana-maharishi/" rel="category tag">Ramana Maharishi</a>, <a href="https://luthar.com/category/spirituality/" rel="category tag">Spirituality</a>, <a href="https://luthar.com/category/teachers/" rel="category tag">TEACHERS</a>, <a href="https://luthar.com/category/wisdom/" rel="category tag">Wisdom</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/grace/" rel="tag">Grace</a>, <a href="https://luthar.com/tag/meditation/" rel="tag">Meditation</a>, <a href="https://luthar.com/tag/ramana-maharshi/" rel="tag">Ramana Maharshi</a>, <a href="https://luthar.com/tag/self-realization/" rel="tag">Self-Realization</a>, <a href="https://luthar.com/tag/spirituality/" rel="tag">Spirituality</a>, <a href="https://luthar.com/tag/yoga/" rel="tag">Yoga</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph">A True Master does not tell you to do this or that. Already, you are anxious and bewildered reading self-help books, going to motivational speakers, Satsang teachers, visiting holy places, and going to one guru after another.</p>



<p class="wp-block-paragraph">All of these things and various practices of yoga and meditation are helpful if they advance our quest for self-knowledge. However, Truth cannot be found in a place or a person outside of us. Truth must be known as our very own nature, our essence.</p>



<p class="wp-block-paragraph">The real pilgrimage we make is not to some holy place but to the Temple of the Heart within. Sri Ramana Maharshi used to say that all deep thinking people are fascinated by the nature of consciousness. This is the sacred quest in life. To know the mystery that reveals all other mysteries. In the words of the Upanishads, “Know That by which all else is known.” </p>



<figure class="wp-block-image size-large"><img data-attachment-id="19652" data-permalink="https://luthar.com/2023/07/14/the-true-master-3/me-smiling-4/#main" data-orig-file="https://luthar.com/wp-content/uploads/2023/07/me-smiling-4.jpg" data-orig-size="1674,2885" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 13 Pro&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1684587330&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;2.71&quot;,&quot;iso&quot;:&quot;64&quot;,&quot;shutter_speed&quot;:&quot;0.0082644628099174&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;42.388430555556&quot;,&quot;longitude&quot;:&quot;-72.526527777778&quot;}" data-image-title="me-smiling-4" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2023/07/me-smiling-4.jpg?w=278" width="594" height="1023" src="https://luthar.com/wp-content/uploads/2023/07/me-smiling-4.jpg?w=594" alt="" class="wp-image-19652" srcset="https://luthar.com/wp-content/uploads/2023/07/me-smiling-4.jpg?w=594 594w, https://luthar.com/wp-content/uploads/2023/07/me-smiling-4.jpg?w=1188 1188w, https://luthar.com/wp-content/uploads/2023/07/me-smiling-4.jpg?w=87 87w, https://luthar.com/wp-content/uploads/2023/07/me-smiling-4.jpg?w=174 174w, https://luthar.com/wp-content/uploads/2023/07/me-smiling-4.jpg?w=768 768w" sizes="(max-width: 594px) 100vw, 594px" /></figure>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19650"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19650"
				>
				<span id="sharing-twitter-19650" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19650"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19650"
				>
				<span id="sharing-linkedin-19650" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19650"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19650"
				>
				<span id="sharing-facebook-19650" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19650"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19650"
				>
				<span id="sharing-reddit-19650" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19650"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19650"
				>
				<span id="sharing-print-19650" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19650"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19650"
				>
				<span id="sharing-tumblr-19650" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19650"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19650"
				>
				<span id="sharing-whatsapp-19650" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19650"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19650"
				>
				<span id="sharing-pinterest-19650" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19650"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2023/07/14/the-true-master-3/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19650"
				>
				<span id="sharing-telegram-19650" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19650"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20The%20True%20Master&#038;body=https%3A%2F%2Fluthar.com%2F2023%2F07%2F14%2Fthe-true-master-3%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19650"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="5a9cb2df35" data-email-share-track-url="https://luthar.com/2023/07/14/the-true-master-3/?share=email">
				<span id="sharing-email-19650" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19650-6a275572b3503' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19650&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19650-6a275572b3503&amp;domain=luthar.com' data-name='like-post-frame-56823571-19650-6a275572b3503' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19650 -->

						
							
<article id="post-19648" class="post-19648 post type-post status-publish format-standard has-post-thumbnail hentry category-luthar category-ramayana category-spirituality category-yoga tag-bhakti tag-devotion tag-harsh-k-luthar tag-purity tag-rama tag-ramayana tag-shabari">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2023/03/27/rama-and-shabari-2/" title="Permalink to Rama and Shabari" rel="bookmark">
			<img width="278" height="220" src="https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=278" class="attachment-three size-three wp-post-image" alt="Shabari and Rama" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=278 278w, https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=556 556w, https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=150 150w, https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=300 300w" sizes="(max-width: 278px) 100vw, 278px" data-attachment-id="19558" data-permalink="https://luthar.com/2019/05/28/rama-and-shabari/shabari-and-rama-and-lakshaman/#main" data-orig-file="https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg" data-orig-size="903,713" 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="Shabari and Rama and Lakshaman" data-image-description="&lt;p&gt;Story of Shabari and Rama&lt;/p&gt;
" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=278" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2023/03/27/rama-and-shabari-2/" rel="bookmark">Rama and Shabari</a></h1>

		<a href="https://luthar.com/2023/03/27/rama-and-shabari-2/" title="8:46 pm" rel="bookmark"><time class="entry-date" datetime="2023-03-27T20:46:43-04:00" pubdate>March 27, 2023</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/luthar/" rel="category tag">Luthar</a>, <a href="https://luthar.com/category/ramayana/" rel="category tag">Ramayana</a>, <a href="https://luthar.com/category/spirituality/" rel="category tag">Spirituality</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/bhakti/" rel="tag">Bhakti</a>, <a href="https://luthar.com/tag/devotion/" rel="tag">Devotion</a>, <a href="https://luthar.com/tag/harsh-k-luthar/" rel="tag">Harsh K. Luthar</a>, <a href="https://luthar.com/tag/purity/" rel="tag">purity</a>, <a href="https://luthar.com/tag/rama/" rel="tag">Rama</a>, <a href="https://luthar.com/tag/ramayana/" rel="tag">Ramayana</a>, <a href="https://luthar.com/tag/shabari/" rel="tag">Shabari</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph">Shabari served her Guru Rishi Matanga with devotion for many years since her youth. As years went, Shabari became elderly and thin. She moved slowly and needed help of a cane to walk. However, she got up early everyday at 3am and after her meditation did all the chores and collected fruits and berries for herself and her Guru.&nbsp;</p>



<p class="wp-block-paragraph">When her Guru, Sage Matanga, was about to leave the world, Shabari was despondent and asked him whether she was qualified to receive God&#8217;s grace before he departed the world.&nbsp; Sage Matanga told Shabari that since she was such a pure soul, Bhagavan Rama himself would grant her Moksha (Liberation). He told her to wait for Bhagavan as he would pass by this way in his search for Sita (Rama&#8217;s wife). Saying this Rishi Matanga entered Mahasamadhi.</p>



<p class="wp-block-paragraph">Then the news came that Bhagavan Rama and his brother Lakshman would be walking on the path that led to the town. Shabari had a few days to prepare and so she started to look for the best fruits and berries to offer Rama should she happen to see him. In two days, she had filled several baskets of fruits and berries.</p>



<p class="wp-block-paragraph">As Bhagavan Rama came towards the town, he avoided visiting all the rich ashrams and temples that had big feasts prepared for him. His brother Lakshman wondered what was going on because they had been walking the whole day and needed to eat.&nbsp;</p>



<p class="wp-block-paragraph">With Lakshman following, Rama walked straight to Shabari&#8217;s small hut. Rama said to Shabari, &#8220;Granny, my brother and I are hungry. We have been walking the whole day. Do you have anything for us to eat?&#8221; Shabari was ecstatic to see Rama and Lakshman. Giddy with delight Shabari said that she had collected fruits and berries. So Rama and Lakshman sat down. Shabari insisted on feeding Rama with her own hands.</p>



<p class="wp-block-paragraph">Lakshman was horrified to see that Shabari started to nibble on each berry before putting it in Rama&#8217;s mouth with her hands. Some berries Shabari would eat whole. Others, she would taste and give to Rama. Lakshman was even more surprised as Rama accepted Shabari&#8217;s half eaten berries and seemed to enjoy it.</p>



<p class="wp-block-paragraph">Lakshman whispered in Rama&#8217;s ear, &#8220;Brother she is giving us half eaten berries. First she eats and then she gives to us. She is eating some of the whole berries herself. But we are only getting the ones that she has already eaten parts of. What a way to treat the guests? Don&#8217;t you see it?&#8221; Rama whispered back to Lakshman, &#8220;Yes, I see it. She is making sure that we only get the sweet berries. She is testing each berry. The ones which are bitter, she does not give us but eats them whole. We are only getting the sweetest ones. So eat up brother.&#8221;</p>



<p class="wp-block-paragraph">Rama said to Shabari, &#8220;Granny these are best berries I have ever tasted. Certainly, there is nothing as sweet as a mother wanting to give her child only the best and the most tasty things. Thank you Granny.&#8221; Shabari was filled with delight at Bhagavan&#8217;s words and started to giggle. In the pure joy exploding in her heart, Shabari attained liberation. In this way, Bhagavan taught that purity, sincerity, and devotion makes everything sweet and full of joy and leads to freedom of the soul.&nbsp; </p>



<p class="wp-block-paragraph">As interpreted by Harsh K. Luthar</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19648"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19648"
				>
				<span id="sharing-twitter-19648" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19648"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19648"
				>
				<span id="sharing-linkedin-19648" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19648"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19648"
				>
				<span id="sharing-facebook-19648" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19648"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19648"
				>
				<span id="sharing-reddit-19648" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19648"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19648"
				>
				<span id="sharing-print-19648" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19648"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19648"
				>
				<span id="sharing-tumblr-19648" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19648"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19648"
				>
				<span id="sharing-whatsapp-19648" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19648"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19648"
				>
				<span id="sharing-pinterest-19648" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19648"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19648"
				>
				<span id="sharing-telegram-19648" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19648"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20Rama%20and%20Shabari&#038;body=https%3A%2F%2Fluthar.com%2F2023%2F03%2F27%2Frama-and-shabari-2%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19648"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="5108ed1018" data-email-share-track-url="https://luthar.com/2023/03/27/rama-and-shabari-2/?share=email">
				<span id="sharing-email-19648" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19648-6a275572b7aeb' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19648&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19648-6a275572b7aeb&amp;domain=luthar.com' data-name='like-post-frame-56823571-19648-6a275572b7aeb' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19648 -->

						
							
<article id="post-19622" class="post-19622 post type-post status-publish format-standard has-post-thumbnail hentry category-advaita-yoga category-hinduism category-inspirational category-meditation category-spirituality category-tantra category-wisdom category-yoga tag-harsh-luthar tag-maha-shivratri tag-parvati tag-shiva tag-yoga">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/" title="Permalink to The Maha Shivaratri Love&nbsp;Message" rel="bookmark">
			<img width="236" height="314" src="https://luthar.com/wp-content/uploads/2020/02/shivaparvati.jpg?w=236" class="attachment-three size-three wp-post-image" alt="Shiva and Parvati" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2020/02/shivaparvati.jpg 236w, https://luthar.com/wp-content/uploads/2020/02/shivaparvati.jpg?w=113 113w" sizes="(max-width: 236px) 100vw, 236px" data-attachment-id="19623" data-permalink="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/shivaparvati/#main" data-orig-file="https://luthar.com/wp-content/uploads/2020/02/shivaparvati.jpg" data-orig-size="236,314" 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="ShivaParvati" data-image-description="&lt;p&gt;The Power of Love&lt;/p&gt;
" data-image-caption="&lt;p&gt;The Power of Love&lt;/p&gt;
" data-large-file="https://luthar.com/wp-content/uploads/2020/02/shivaparvati.jpg?w=236" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/" rel="bookmark">The Maha Shivaratri Love&nbsp;Message</a></h1>

		<a href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/" title="3:47 pm" rel="bookmark"><time class="entry-date" datetime="2020-02-21T15:47:03-05:00" pubdate>February 21, 2020</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/advaita-yoga/" rel="category tag">ADVAITA &amp; YOGA</a>, <a href="https://luthar.com/category/hinduism/" rel="category tag">Hinduism</a>, <a href="https://luthar.com/category/inspirational/" rel="category tag">INSPIRATIONAL</a>, <a href="https://luthar.com/category/meditation/" rel="category tag">Meditation</a>, <a href="https://luthar.com/category/spirituality/" rel="category tag">Spirituality</a>, <a href="https://luthar.com/category/tantra/" rel="category tag">Tantra</a>, <a href="https://luthar.com/category/wisdom/" rel="category tag">Wisdom</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/harsh-luthar/" rel="tag">Harsh Luthar</a>, <a href="https://luthar.com/tag/maha-shivratri/" rel="tag">Maha Shivratri</a>, <a href="https://luthar.com/tag/parvati/" rel="tag">Parvati</a>, <a href="https://luthar.com/tag/shiva/" rel="tag">Shiva</a>, <a href="https://luthar.com/tag/yoga/" rel="tag">Yoga</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph">The story of Samudra manthana (churning of the ocean) behind Maha Shivaratri is symbolic for churning of the ocean of consciousness by meditation and other yogic practices. In doing this tapas (spiritual practice) one becomes aware of both the Halāhala (poison of the ego) and Amrit (the nectar of immortality). Both are within us.</p>



<p class="wp-block-paragraph">When Shiva, the great yogi, saw that the poison of the ego which had come out first from churning of the ocean would destroy the world, he immediately drank it so that others would be protected from harm. As Shiva suffered intense pain from the poison, his wife, the Goddess Parvati touched Shiva&#8217;s throat and by the power of her love neutralized the effect of the poison.</p>



<p class="wp-block-paragraph">The story of Maha Shivratri teaches us that the ego is a powerful poison that can delude the mind and be cause of much destruction. However, pure love, as demonstrated by the Goddess Parvati is overwhelming and can neutralize that poison of the ego and lead to the nectar of immortality. Happy Maha Shivaratri!</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19622"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19622"
				>
				<span id="sharing-twitter-19622" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19622"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19622"
				>
				<span id="sharing-linkedin-19622" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19622"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19622"
				>
				<span id="sharing-facebook-19622" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19622"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19622"
				>
				<span id="sharing-reddit-19622" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19622"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19622"
				>
				<span id="sharing-print-19622" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19622"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19622"
				>
				<span id="sharing-tumblr-19622" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19622"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19622"
				>
				<span id="sharing-whatsapp-19622" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19622"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19622"
				>
				<span id="sharing-pinterest-19622" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19622"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19622"
				>
				<span id="sharing-telegram-19622" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19622"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20The%20Maha%20Shivaratri%20Love%20Message&#038;body=https%3A%2F%2Fluthar.com%2F2020%2F02%2F21%2Fthe-maha-shivaratri-love-message%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19622"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="a8f5701692" data-email-share-track-url="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/?share=email">
				<span id="sharing-email-19622" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19622-6a275572bb5a2' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19622&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19622-6a275572bb5a2&amp;domain=luthar.com' data-name='like-post-frame-56823571-19622-6a275572bb5a2' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19622 -->

						
							
<article id="post-19614" class="post-19614 post type-post status-publish format-standard has-post-thumbnail hentry category-gurus category-inspirational category-luthar category-ramana-maharishi tag-gurus tag-mysore-maharaja tag-ramana-maharshi tag-spirituality">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/" title="Permalink to The Visit of the&nbsp;Maharaja" rel="bookmark">
			<img width="278" height="156" src="https://luthar.com/wp-content/uploads/2020/01/everyone-is-divine-and-strong.jpg?w=278" class="attachment-three size-three wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2020/01/everyone-is-divine-and-strong.jpg?w=278 278w, https://luthar.com/wp-content/uploads/2020/01/everyone-is-divine-and-strong.jpg?w=556 556w, https://luthar.com/wp-content/uploads/2020/01/everyone-is-divine-and-strong.jpg?w=150 150w, https://luthar.com/wp-content/uploads/2020/01/everyone-is-divine-and-strong.jpg?w=300 300w" sizes="(max-width: 278px) 100vw, 278px" data-attachment-id="19618" data-permalink="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/everyone-is-divine-and-strong/#main" data-orig-file="https://luthar.com/wp-content/uploads/2020/01/everyone-is-divine-and-strong.jpg" data-orig-size="1280,720" 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="Everyone is divine and strong" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2020/01/everyone-is-divine-and-strong.jpg?w=278" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/" rel="bookmark">The Visit of the&nbsp;Maharaja</a></h1>

		<a href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/" title="7:38 pm" rel="bookmark"><time class="entry-date" datetime="2020-01-22T19:38:58-05:00" pubdate>January 22, 2020</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/gurus/" rel="category tag">Gurus</a>, <a href="https://luthar.com/category/inspirational/" rel="category tag">INSPIRATIONAL</a>, <a href="https://luthar.com/category/luthar/" rel="category tag">Luthar</a>, <a href="https://luthar.com/category/ramana-maharishi/" rel="category tag">Ramana Maharishi</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/gurus/" rel="tag">Gurus</a>, <a href="https://luthar.com/tag/mysore-maharaja/" rel="tag">Mysore Maharaja</a>, <a href="https://luthar.com/tag/ramana-maharshi/" rel="tag">Ramana Maharshi</a>, <a href="https://luthar.com/tag/spirituality/" rel="tag">Spirituality</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph">When India was a British Colony, there were hundreds of kingdoms within India. The biggest kingdoms were Hyderabad and Mysore. The Maharaja (King) of Mysore had a devotional nature.&nbsp;</p>



<p class="wp-block-paragraph">One day, the Maharaja of Mysore came secretly in the middle of the night to see Bhagavan Ramana and stayed until early morning. He wanted a private audience with Bhagavan. But Bhagavan ate in public and slept in public in the Hall. People were always around.&nbsp;</p>



<p class="wp-block-paragraph">However, because it was the middle of the night, the Ashram management permitted the Maharaja to see Bhagavan in the eight by eight foot bathroom where Bhagavan bathed. Upon seeing Bhagavan, the Maharaja fell at his feet, and wept so profusely that his tears drenched Bhagavan’s feet. </p>



<p class="wp-block-paragraph">The Maharaja then got up and said, “Bhagavan, they have made me king and forced me to sit on the throne. For this reason I am not able to come and stay with you and be in your presence. These few moments are most precious few in my whole life. After this, I will not be able to come. Please bless me.”</p>



<p class="wp-block-paragraph">When Santhammal, a devotee, asked Bhagavan about the Maharaja&#8217;s visit, Bhagavan just said, “He is a ripe soul.”</p>



<p class="wp-block-paragraph">Bhagavan never encouraged people to give up their worldly obligations or duties. His advice to visitors was that one can gain the required purity, strength, and awareness to advance on the path regardless of one&#8217;s station in life or geographical location. </p>



<p class="wp-block-paragraph">Whatever one wants to practice, devotional prayer, meditation, chanting, some form of yoga, or self-inquiry, all of these are good. Bhagavan often said that it is the not physical contact with the Guru that is important, but the mental and spiritual contact. Even a person who is no longer in the body can serve as a Guru, if we become connected and influenced by their thoughts and vibrations.</p>



<figure class="wp-block-image size-large"><img data-attachment-id="19616" data-permalink="https://luthar.com/guru-is-not-the-physical-form/" data-orig-file="https://luthar.com/wp-content/uploads/2020/01/guru-is-not-the-physical-form.png" data-orig-size="1280,720" 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="guru-is-not-the-physical-form" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2020/01/guru-is-not-the-physical-form.png?w=278" loading="lazy" width="1024" height="576" src="https://luthar.com/wp-content/uploads/2020/01/guru-is-not-the-physical-form.png?w=1024" alt="" class="wp-image-19616" srcset="https://luthar.com/wp-content/uploads/2020/01/guru-is-not-the-physical-form.png?w=1024 1024w, https://luthar.com/wp-content/uploads/2020/01/guru-is-not-the-physical-form.png?w=150 150w, https://luthar.com/wp-content/uploads/2020/01/guru-is-not-the-physical-form.png?w=300 300w, https://luthar.com/wp-content/uploads/2020/01/guru-is-not-the-physical-form.png?w=768 768w, https://luthar.com/wp-content/uploads/2020/01/guru-is-not-the-physical-form.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Adapted from Ramana Periya Puranam (278 Santhammal)</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19614"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19614"
				>
				<span id="sharing-twitter-19614" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19614"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19614"
				>
				<span id="sharing-linkedin-19614" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19614"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19614"
				>
				<span id="sharing-facebook-19614" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19614"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19614"
				>
				<span id="sharing-reddit-19614" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19614"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19614"
				>
				<span id="sharing-print-19614" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19614"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19614"
				>
				<span id="sharing-tumblr-19614" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19614"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19614"
				>
				<span id="sharing-whatsapp-19614" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19614"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19614"
				>
				<span id="sharing-pinterest-19614" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19614"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19614"
				>
				<span id="sharing-telegram-19614" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19614"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20The%20Visit%20of%20the%20Maharaja&#038;body=https%3A%2F%2Fluthar.com%2F2020%2F01%2F22%2Fthe-visit-of-the-maharaja%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19614"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="14c45b83be" data-email-share-track-url="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/?share=email">
				<span id="sharing-email-19614" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19614-6a275572bf802' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19614&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19614-6a275572bf802&amp;domain=luthar.com' data-name='like-post-frame-56823571-19614-6a275572bf802' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19614 -->

						
							
<article id="post-19598" class="post-19598 post type-post status-publish format-standard has-post-thumbnail hentry category-advaita-yoga category-inspirational category-luthar category-ramana-maharishi category-spirituality category-wisdom category-yoga tag-harsh-luthar tag-ramana-maharshi tag-spirituality tag-yoga">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2019/07/07/the-sage-of-arunachala/" title="Permalink to The Sage of&nbsp;Arunachala" rel="bookmark">
			<img width="278" height="156" src="https://luthar.com/wp-content/uploads/2019/07/let-come-come.png?w=278" class="attachment-three size-three wp-post-image" alt="Sri Ramana" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2019/07/let-come-come.png?w=278 278w, https://luthar.com/wp-content/uploads/2019/07/let-come-come.png?w=556 556w, https://luthar.com/wp-content/uploads/2019/07/let-come-come.png?w=150 150w, https://luthar.com/wp-content/uploads/2019/07/let-come-come.png?w=300 300w" sizes="(max-width: 278px) 100vw, 278px" data-attachment-id="19600" data-permalink="https://luthar.com/2019/07/07/the-sage-of-arunachala/let-come-come/#main" data-orig-file="https://luthar.com/wp-content/uploads/2019/07/let-come-come.png" data-orig-size="1280,720" 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="let come come" data-image-description="&lt;p&gt;Sage of Arunachala&lt;/p&gt;
" data-image-caption="&lt;p&gt;Sri Ramana Maharshi&lt;/p&gt;
" data-large-file="https://luthar.com/wp-content/uploads/2019/07/let-come-come.png?w=278" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2019/07/07/the-sage-of-arunachala/" rel="bookmark">The Sage of&nbsp;Arunachala</a></h1>

		<a href="https://luthar.com/2019/07/07/the-sage-of-arunachala/" title="11:24 am" rel="bookmark"><time class="entry-date" datetime="2019-07-07T11:24:15-04:00" pubdate>July 7, 2019</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/advaita-yoga/" rel="category tag">ADVAITA &amp; YOGA</a>, <a href="https://luthar.com/category/inspirational/" rel="category tag">INSPIRATIONAL</a>, <a href="https://luthar.com/category/luthar/" rel="category tag">Luthar</a>, <a href="https://luthar.com/category/ramana-maharishi/" rel="category tag">Ramana Maharishi</a>, <a href="https://luthar.com/category/spirituality/" rel="category tag">Spirituality</a>, <a href="https://luthar.com/category/wisdom/" rel="category tag">Wisdom</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/harsh-luthar/" rel="tag">Harsh Luthar</a>, <a href="https://luthar.com/tag/ramana-maharshi/" rel="tag">Ramana Maharshi</a>, <a href="https://luthar.com/tag/spirituality/" rel="tag">Spirituality</a>, <a href="https://luthar.com/tag/yoga/" rel="tag">Yoga</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph">Sri Ramana gave attention and showed affection to all beings who came within his orbit. He treated humans, animals, birds, bees, and plants with love, care, and the utmost courtesy. To those who showed him disrespect, he generally kept quiet. Sri Ramana understood human frailties and was not critical or judgmental of people. He forgave quickly and easily.</p>



<p class="wp-block-paragraph">The Sage of Arunachala was fearless, self assured, and had a wonderful sense of humor. One time thieves broke into the Ashram in the middle of the night and started frightening and beating everyone. Bhagavan told the devotees to not fight back and let the thieves take what they wanted. One of the thieves hit Bhagavan on one of his legs with a stick. The sage offered the other leg as well and said to the thief, you can hit that one also. Later when the thieves left, a devotee commented on the marks on Bhagavan&#8217;s legs. Sri Ramana simply smiled and said that the thieves did &#8220;Puja&#8221; to him in their own way.</p>



<p class="wp-block-paragraph">A sage gives the infinite treasure of wisdom and is never depleted or disappointed. Everything that comes to such a person; good or bad, painful or pleasant, is accepted as the divine will. There are many gurus and spiritual teachers. No doubt all are good in their own way. However, a truly Self-Realized sage is very rare indeed. Such was the Sage of Arunachala, Sri Ramana Maharshi.</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19598"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19598"
				>
				<span id="sharing-twitter-19598" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19598"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19598"
				>
				<span id="sharing-linkedin-19598" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19598"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19598"
				>
				<span id="sharing-facebook-19598" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19598"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19598"
				>
				<span id="sharing-reddit-19598" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19598"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19598"
				>
				<span id="sharing-print-19598" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19598"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19598"
				>
				<span id="sharing-tumblr-19598" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19598"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19598"
				>
				<span id="sharing-whatsapp-19598" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19598"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19598"
				>
				<span id="sharing-pinterest-19598" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19598"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19598"
				>
				<span id="sharing-telegram-19598" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19598"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20The%20Sage%20of%20Arunachala&#038;body=https%3A%2F%2Fluthar.com%2F2019%2F07%2F07%2Fthe-sage-of-arunachala%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19598"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="cb0a5b5a02" data-email-share-track-url="https://luthar.com/2019/07/07/the-sage-of-arunachala/?share=email">
				<span id="sharing-email-19598" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19598-6a275572c2e7f' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19598&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19598-6a275572c2e7f&amp;domain=luthar.com' data-name='like-post-frame-56823571-19598-6a275572c2e7f' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19598 -->

						
							
<article id="post-19595" class="post-19595 post type-post status-publish format-standard has-post-thumbnail hentry category-gurus category-hinduism category-inspirational category-luthar category-ramana-maharishi category-self-inquiry category-teachers category-wisdom category-yoga tag-luthar tag-ramana-maharshi tag-self-inquiry tag-self-realization">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2019/07/03/no-secret-methods/" title="Permalink to No Secret Methods" rel="bookmark">
			<img width="262" height="360" src="https://luthar.com/wp-content/uploads/2017/01/cav_34_bust1.jpg?w=262" class="attachment-three size-three wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2017/01/cav_34_bust1.jpg 262w, https://luthar.com/wp-content/uploads/2017/01/cav_34_bust1.jpg?w=109 109w" sizes="(max-width: 262px) 100vw, 262px" data-attachment-id="18750" data-permalink="https://luthar.com/2017/01/19/self-shakti-heart-and-enlightenment-in-advaita-by-dr-harsh-k-luthar/attachment/18750/#main" data-orig-file="https://luthar.com/wp-content/uploads/2017/01/cav_34_bust1.jpg" data-orig-size="262,360" 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="" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2017/01/cav_34_bust1.jpg?w=262" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2019/07/03/no-secret-methods/" rel="bookmark">No Secret Methods</a></h1>

		<a href="https://luthar.com/2019/07/03/no-secret-methods/" title="5:51 pm" rel="bookmark"><time class="entry-date" datetime="2019-07-03T17:51:49-04:00" pubdate>July 3, 2019</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/gurus/" rel="category tag">Gurus</a>, <a href="https://luthar.com/category/hinduism/" rel="category tag">Hinduism</a>, <a href="https://luthar.com/category/inspirational/" rel="category tag">INSPIRATIONAL</a>, <a href="https://luthar.com/category/luthar/" rel="category tag">Luthar</a>, <a href="https://luthar.com/category/ramana-maharishi/" rel="category tag">Ramana Maharishi</a>, <a href="https://luthar.com/category/self-inquiry/" rel="category tag">Self-Inquiry</a>, <a href="https://luthar.com/category/teachers/" rel="category tag">TEACHERS</a>, <a href="https://luthar.com/category/wisdom/" rel="category tag">Wisdom</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/luthar/" rel="tag">Luthar</a>, <a href="https://luthar.com/tag/ramana-maharshi/" rel="tag">Ramana Maharshi</a>, <a href="https://luthar.com/tag/self-inquiry/" rel="tag">Self-Inquiry</a>, <a href="https://luthar.com/tag/self-realization/" rel="tag">Self-Realization</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph">Sri Ramana Maharshi&#8217;s teaching is beautiful, unique, and direct. There is no encouragement of superstition, no secret mantras to be whispered in your ear, no fancy handshakes, no unusual postures or dance moves to learn, no dependence on rituals or outside forces. In Bhagavan&#8217;s teachings, there are no special requirements to meet, and no examinations by the Guru to test your worthiness.</p>



<p class="wp-block-paragraph">Bhagavan says that you are the Self. Being the Self is nothing more than pure Being, Pure Existence. You have the power to discover the natural state of bliss inherent in you and abide as That.</p>



<p class="wp-block-paragraph">The highest, the purest, the most sublime teaching that leads to Self-Realization is open to all. It is completely free. There are no initiation fees for special secret techniques and methods. That is why Bhagavan says, &#8220;No secret technique. It is all an open secret in this system in &#8220;Day by Day with Bhagavan&#8221; ~ (8-10-46).</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19595"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19595"
				>
				<span id="sharing-twitter-19595" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19595"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19595"
				>
				<span id="sharing-linkedin-19595" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19595"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19595"
				>
				<span id="sharing-facebook-19595" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19595"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19595"
				>
				<span id="sharing-reddit-19595" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19595"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19595"
				>
				<span id="sharing-print-19595" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19595"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19595"
				>
				<span id="sharing-tumblr-19595" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19595"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19595"
				>
				<span id="sharing-whatsapp-19595" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19595"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19595"
				>
				<span id="sharing-pinterest-19595" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19595"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2019/07/03/no-secret-methods/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19595"
				>
				<span id="sharing-telegram-19595" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19595"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20No%20Secret%20Methods&#038;body=https%3A%2F%2Fluthar.com%2F2019%2F07%2F03%2Fno-secret-methods%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19595"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="483ea6c49d" data-email-share-track-url="https://luthar.com/2019/07/03/no-secret-methods/?share=email">
				<span id="sharing-email-19595" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19595-6a275572c624d' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19595&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19595-6a275572c624d&amp;domain=luthar.com' data-name='like-post-frame-56823571-19595-6a275572c624d' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19595 -->

						
							
<article id="post-19591" class="post-19591 post type-post status-publish format-standard has-post-thumbnail hentry category-advaita-yoga category-gurus category-inspirational category-luthar category-ramana-maharishi category-wisdom category-yoga tag-guru tag-luthar tag-master tag-truth tag-yoga">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2019/07/03/the-true-master-2/" title="Permalink to The True Master" rel="bookmark">
			<img width="278" height="607" src="https://luthar.com/wp-content/uploads/2019/07/me-sitting-1.jpg?w=278" class="attachment-three size-three wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2019/07/me-sitting-1.jpg?w=278 278w, https://luthar.com/wp-content/uploads/2019/07/me-sitting-1.jpg?w=556 556w, https://luthar.com/wp-content/uploads/2019/07/me-sitting-1.jpg?w=69 69w, https://luthar.com/wp-content/uploads/2019/07/me-sitting-1.jpg?w=138 138w, https://luthar.com/wp-content/uploads/2019/07/me-sitting-1.jpg?w=469 469w" sizes="(max-width: 278px) 100vw, 278px" data-attachment-id="19592" data-permalink="https://luthar.com/2019/07/03/the-true-master-2/me-sitting-1/#main" data-orig-file="https://luthar.com/wp-content/uploads/2019/07/me-sitting-1.jpg" data-orig-size="2112,4608" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.7&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;ONEPLUS A6013&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1561053894&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.25&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.0046948356807512&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;43.077063&quot;,&quot;longitude&quot;:&quot;-89.400792972222&quot;}" data-image-title="Me Sitting 1" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2019/07/me-sitting-1.jpg?w=278" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2019/07/03/the-true-master-2/" rel="bookmark">The True Master</a></h1>

		<a href="https://luthar.com/2019/07/03/the-true-master-2/" title="5:42 pm" rel="bookmark"><time class="entry-date" datetime="2019-07-03T17:42:08-04:00" pubdate>July 3, 2019</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/advaita-yoga/" rel="category tag">ADVAITA &amp; YOGA</a>, <a href="https://luthar.com/category/gurus/" rel="category tag">Gurus</a>, <a href="https://luthar.com/category/inspirational/" rel="category tag">INSPIRATIONAL</a>, <a href="https://luthar.com/category/luthar/" rel="category tag">Luthar</a>, <a href="https://luthar.com/category/ramana-maharishi/" rel="category tag">Ramana Maharishi</a>, <a href="https://luthar.com/category/wisdom/" rel="category tag">Wisdom</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/guru/" rel="tag">Guru</a>, <a href="https://luthar.com/tag/luthar/" rel="tag">Luthar</a>, <a href="https://luthar.com/tag/master/" rel="tag">Master</a>, <a href="https://luthar.com/tag/truth/" rel="tag">Truth</a>, <a href="https://luthar.com/tag/yoga/" rel="tag">Yoga</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph"> A True Master does not tell you to do this or that. Already, you are anxious and bewildered reading self-help books, going to motivational speakers, Satsang teachers, visiting holy places, and going to one guru after another. </p>



<p class="wp-block-paragraph">

All of these things and various practices of yoga and meditation are helpful if they advance our quest for self-knowledge. However, Truth cannot be found in a place or a person outside of us. Truth must be known as our very own nature, our essence. 

</p>



<p class="wp-block-paragraph">The real pilgrimage we make is not to some holy place but to the Temple of the Heart within. Sri Ramana Maharshi used to say that all deep thinking people are fascinated by the nature of consciousness. </p>



<p class="wp-block-paragraph">This is the sacred quest in life. To know the mystery that reveals all other mysteries. In the words of the Upanishads, &#8220;Know That by which all else is known.&#8221; </p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19591"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19591"
				>
				<span id="sharing-twitter-19591" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19591"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19591"
				>
				<span id="sharing-linkedin-19591" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19591"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19591"
				>
				<span id="sharing-facebook-19591" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19591"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19591"
				>
				<span id="sharing-reddit-19591" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19591"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19591"
				>
				<span id="sharing-print-19591" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19591"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19591"
				>
				<span id="sharing-tumblr-19591" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19591"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19591"
				>
				<span id="sharing-whatsapp-19591" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19591"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19591"
				>
				<span id="sharing-pinterest-19591" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19591"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2019/07/03/the-true-master-2/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19591"
				>
				<span id="sharing-telegram-19591" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19591"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20The%20True%20Master&#038;body=https%3A%2F%2Fluthar.com%2F2019%2F07%2F03%2Fthe-true-master-2%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19591"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="362add80af" data-email-share-track-url="https://luthar.com/2019/07/03/the-true-master-2/?share=email">
				<span id="sharing-email-19591" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19591-6a275572c977c' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19591&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19591-6a275572c977c&amp;domain=luthar.com' data-name='like-post-frame-56823571-19591-6a275572c977c' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19591 -->

						
							
<article id="post-19557" class="post-19557 post type-post status-publish format-standard has-post-thumbnail hentry category-luthar category-ramayana category-spirituality category-yoga tag-bhakti tag-devotion tag-harsh-k-luthar tag-purity tag-rama tag-ramayana tag-shabari">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2019/05/28/rama-and-shabari/" title="Permalink to Rama and Shabari" rel="bookmark">
			<img width="278" height="220" src="https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=278" class="attachment-three size-three wp-post-image" alt="Shabari and Rama" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=278 278w, https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=556 556w, https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=150 150w, https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=300 300w" sizes="(max-width: 278px) 100vw, 278px" data-attachment-id="19558" data-permalink="https://luthar.com/2019/05/28/rama-and-shabari/shabari-and-rama-and-lakshaman/#main" data-orig-file="https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg" data-orig-size="903,713" 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="Shabari and Rama and Lakshaman" data-image-description="&lt;p&gt;Story of Shabari and Rama&lt;/p&gt;
" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2019/05/shabari-and-rama-and-lakshaman.jpg?w=278" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2019/05/28/rama-and-shabari/" rel="bookmark">Rama and Shabari</a></h1>

		<a href="https://luthar.com/2019/05/28/rama-and-shabari/" title="10:25 pm" rel="bookmark"><time class="entry-date" datetime="2019-05-28T22:25:29-04:00" pubdate>May 28, 2019</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/luthar/" rel="category tag">Luthar</a>, <a href="https://luthar.com/category/ramayana/" rel="category tag">Ramayana</a>, <a href="https://luthar.com/category/spirituality/" rel="category tag">Spirituality</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/bhakti/" rel="tag">Bhakti</a>, <a href="https://luthar.com/tag/devotion/" rel="tag">Devotion</a>, <a href="https://luthar.com/tag/harsh-k-luthar/" rel="tag">Harsh K. Luthar</a>, <a href="https://luthar.com/tag/purity/" rel="tag">purity</a>, <a href="https://luthar.com/tag/rama/" rel="tag">Rama</a>, <a href="https://luthar.com/tag/ramayana/" rel="tag">Ramayana</a>, <a href="https://luthar.com/tag/shabari/" rel="tag">Shabari</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph">Shabari served her Guru Rishi Matanga with devotion for many years since her youth. As years went, Shabari became elderly and thin. She moved slowly and needed help of a cane to walk. However, she got up early everyday at 3am and after her meditation did all the chores and collected fruits and berries for herself and her Guru.&nbsp;</p>



<p class="wp-block-paragraph">When her Guru, Sage Matanga, was about to leave the world, Shabari was despondent and asked him whether she was qualified to receive God&#8217;s grace before he departed the world.&nbsp; Sage Matanga told Shabari that since she was such a pure soul, Bhagavan Rama himself would grant her Moksha (Liberation). He told her to wait for Bhagavan as he would pass by this way in his search for Sita (Rama&#8217;s wife). Saying this Rishi Matanga entered Mahasamadhi.</p>



<p class="wp-block-paragraph">Then the news came that Bhagavan Rama and his brother Lakshman would be walking on the path that led to the town. Shabari had a few days to prepare and so she started to look for the best fruits and berries to offer Rama should she happen to see him. In two days, she had filled several baskets of fruits and berries.</p>



<p class="wp-block-paragraph">As Bhagavan Rama came towards the town, he avoided visiting all the rich ashrams and temples that had big feasts prepared for him. His brother Lakshman wondered what was going on because they had been walking the whole day and needed to eat.&nbsp;</p>



<p class="wp-block-paragraph">With Lakshman following, Rama walked straight to Shabari&#8217;s small hut. Rama said to Shabari, &#8220;Granny, my brother and I are hungry. We have been walking the whole day. Do you have anything for us to eat?&#8221; Shabari was ecstatic to see Rama and Lakshman. Giddy with delight Shabari said that she had collected fruits and berries. So Rama and Lakshman sat down. Shabari insisted on feeding Rama with her own hands.</p>



<p class="wp-block-paragraph">Lakshman was horrified to see that Shabari started to nibble on each berry before putting it in Rama&#8217;s mouth with her hands. Some berries Shabari would eat whole. Others, she would taste and give to Rama. Lakshman was even more surprised as Rama accepted Shabari&#8217;s half eaten berries and seemed to enjoy it.</p>



<p class="wp-block-paragraph">Lakshman whispered in Rama&#8217;s ear, &#8220;Brother she is giving us half eaten berries. First she eats and then she gives to us. She is eating some of the whole berries herself. But we are only getting the ones that she has already eaten parts of. What a way to treat the guests? Don&#8217;t you see it?&#8221; Rama whispered back to Lakshman, &#8220;Yes, I see it. She is making sure that we only get the sweet berries. She is testing each berry. The ones which are bitter, she does not give us but eats them whole. We are only getting the sweetest ones. So eat up brother.&#8221;</p>



<p class="wp-block-paragraph">Rama said to Shabari, &#8220;Granny these are best berries I have ever tasted. Certainly, there is nothing as sweet as a mother wanting to give her child only the best and the most tasty things. Thank you Granny.&#8221; Shabari was filled with delight at Bhagavan&#8217;s words and started to giggle. In the pure joy exploding in her heart, Shabari attained liberation. In this way, Bhagavan taught that purity, sincerity, and devotion makes everything sweet and full of joy and leads to freedom of the soul.&nbsp; </p>



<p class="wp-block-paragraph">As interpreted by Harsh K. Luthar</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19557"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19557"
				>
				<span id="sharing-twitter-19557" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19557"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19557"
				>
				<span id="sharing-linkedin-19557" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19557"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19557"
				>
				<span id="sharing-facebook-19557" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19557"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19557"
				>
				<span id="sharing-reddit-19557" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19557"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19557"
				>
				<span id="sharing-print-19557" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19557"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19557"
				>
				<span id="sharing-tumblr-19557" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19557"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19557"
				>
				<span id="sharing-whatsapp-19557" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19557"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19557"
				>
				<span id="sharing-pinterest-19557" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19557"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2019/05/28/rama-and-shabari/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19557"
				>
				<span id="sharing-telegram-19557" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19557"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20Rama%20and%20Shabari&#038;body=https%3A%2F%2Fluthar.com%2F2019%2F05%2F28%2Frama-and-shabari%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19557"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="2e1cdb0cc3" data-email-share-track-url="https://luthar.com/2019/05/28/rama-and-shabari/?share=email">
				<span id="sharing-email-19557" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19557-6a275572cbc33' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19557&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19557-6a275572cbc33&amp;domain=luthar.com' data-name='like-post-frame-56823571-19557-6a275572cbc33' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19557 -->

						
							
<article id="post-19528" class="post-19528 post type-post status-publish format-standard has-post-thumbnail hentry category-advaita-yoga category-art-and-poetry category-wisdom category-yoga tag-beauty tag-divine-mother tag-goddess tag-navratri tag-vision">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2019/04/06/mother-divine-the-supreme-goddess-3/" title="Permalink to Mother Divine: The Goddess&nbsp;Supreme" rel="bookmark">
			<img width="278" height="364" src="https://luthar.com/wp-content/uploads/2018/10/goddess.jpg?w=278" class="attachment-three size-three wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2018/10/goddess.jpg?w=278 278w, https://luthar.com/wp-content/uploads/2018/10/goddess.jpg?w=114 114w, https://luthar.com/wp-content/uploads/2018/10/goddess.jpg?w=229 229w, https://luthar.com/wp-content/uploads/2018/10/goddess.jpg 351w" sizes="(max-width: 278px) 100vw, 278px" data-attachment-id="19423" data-permalink="https://luthar.com/2018/10/20/the-one-light/goddess/#main" data-orig-file="https://luthar.com/wp-content/uploads/2018/10/goddess.jpg" data-orig-size="351,460" 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="Goddess" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2018/10/goddess.jpg?w=278" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2019/04/06/mother-divine-the-supreme-goddess-3/" rel="bookmark">Mother Divine: The Goddess&nbsp;Supreme</a></h1>

		<a href="https://luthar.com/2019/04/06/mother-divine-the-supreme-goddess-3/" title="10:33 pm" rel="bookmark"><time class="entry-date" datetime="2019-04-06T22:33:58-04:00" pubdate>April 6, 2019</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/advaita-yoga/" rel="category tag">ADVAITA &amp; YOGA</a>, <a href="https://luthar.com/category/art-and-poetry/" rel="category tag">ART &amp; POETRY</a>, <a href="https://luthar.com/category/wisdom/" rel="category tag">Wisdom</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/beauty/" rel="tag">Beauty</a>, <a href="https://luthar.com/tag/divine-mother/" rel="tag">Divine Mother</a>, <a href="https://luthar.com/tag/goddess/" rel="tag">Goddess</a>, <a href="https://luthar.com/tag/navratri/" rel="tag">Navratri</a>, <a href="https://luthar.com/tag/vision/" rel="tag">Vision</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		<h3><span style="color:#000000;"><strong>When I was very young, my meditations made me soar so high that I was afraid of falling from the heights and felt anxious. In those moments, the most gentle and angelic female presence firmly held me from behind and guided my flights over celestial regions like a mother showing a child how to ride a bicycle. It happened often.</strong></span></h3>
<h3><span style="color:#000000;"><strong>This angel was always behind me at my back holding my shoulders in the most reassuring manner. Gliding over the heavenly realms of light with this divine companion was pure joy.  But I could never see her face and wondered who she was.</strong></span></h3>
<h3><span style="color:#000000;"><strong>Who was this motherly angel who manifested in my meditations to protect me from fears? Who was this divine being that embraced me with such tenderness and silently guided and navigated the path? </strong></span><span style="color:#000000;"><strong>Although I practiced yoga since childhood, I had never formally worshipped any form of the Devi (Goddess). But probably the mantras I practiced evoked Her. Or perhaps the Goddess as the Divine Mother does not require an invitation to come. </strong></span></h3>
<h3><span style="color:#000000;"><strong>This went on for many years. She was my guardian angel. Where she came from, I don&#8217;t know. Yet, she was always there in my meditation in the background and when needed would manifest to silently reassure me. I would momentarily see her hazy form but never saw Her clearly. She held me tightly and firmly from the back when needed as I flew over the unknown realms.</strong></span></h3>
<h3><span style="color:#000000;"><strong>The Goddess made HerSelf very real to me. She always seemed to be around, especially in contemplative and meditative states. Her form was that of a gentle motherly presence. It was absolutely unmistakable. Whenever she came, I knew it instantly just like a newborn knows his mother by smell. Her presence was the most reassuring and made me feel that everything  would be okay and go smoothly now.</strong></span></h3>
<h3><span style="color:#000000;"><strong>As time went by and I got older, I felt her less and less often. It happened gradually. She seemed to have receded somewhere in the background of my mind. Perhaps I had spiritually matured in some ways and did not need Her anymore. I don&#8217;t know the psychology of it. Still, I did not forget Her. </strong></span><span style="color:#000000;"><strong>Who was she and where had she gone? I thought at times.</strong></span></h3>
<h3><span style="color:#000000;"><strong>Many many years passed in meditation and in life. I was much older now. I was 39.  One midnight, I lay down for meditation. Without warning, suddenly, the Goddess appeared in full bloom right before me! For the first time, I saw Her with the utmost clarity. She was the epitome of purity and innocence and the very essence of beauty. Her Being radiated bright blessings.</strong></span></h3>
<h3><span style="color:#000000;"><strong>Speechless, I gazed at Her face and spontaneously folded my hands in &#8220;Namaste&#8221; with reverence and bowed slightly. Through Her eternal and watchful eyes that see into the Heart, the Supreme Goddess looked at me intently with the utmost tenderness and smiled sweetly. Then she disappeared.</strong></span></h3>
<h3><span style="color:#000000;"><strong>The Goddess did not look like any of the pictures that artists have drawn and are found in Hinduism.  I have chosen to describe Her by accurately stating, &#8220;She was the epitome of purity and innocence and the very essence of beauty.&#8221; Those words are the truth.  </strong></span></h3>
<h3><span style="color:#000000;"><strong>Harsh K. Luthar</strong></span></h3>
<p><a href="https://luthar.com/wp-content/uploads/2019/04/goddess-lakshmi.jpg"><img data-attachment-id="19529" data-permalink="https://luthar.com/2019/04/06/mother-divine-the-supreme-goddess-3/goddess-lakshmi/#main" data-orig-file="https://luthar.com/wp-content/uploads/2019/04/goddess-lakshmi.jpg" data-orig-size="563,750" 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="goddess-lakshmi" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2019/04/goddess-lakshmi.jpg?w=278" loading="lazy" class="alignnone size-full wp-image-19529" src="https://luthar.com/wp-content/uploads/2019/04/goddess-lakshmi.jpg" alt="" width="563" height="750" srcset="https://luthar.com/wp-content/uploads/2019/04/goddess-lakshmi.jpg 563w, https://luthar.com/wp-content/uploads/2019/04/goddess-lakshmi.jpg?w=113&amp;h=150 113w, https://luthar.com/wp-content/uploads/2019/04/goddess-lakshmi.jpg?w=225&amp;h=300 225w" sizes="(max-width: 563px) 100vw, 563px" /></a></p>
<p style="text-align:center;">
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19528-6a275572cde64' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19528&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19528-6a275572cde64&amp;domain=luthar.com' data-name='like-post-frame-56823571-19528-6a275572cde64' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19528 -->

						
							
<article id="post-19501" class="post-19501 post type-post status-publish format-standard has-post-thumbnail hentry category-culture-travel-and-lifestyle category-love category-meditation category-personal category-spirituality category-wisdom category-yoga tag-in-memoriam tag-mira-prabhu">
	<header class="entry-header">
		<div class="post-image">
			<a href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/" title="Permalink to Mira Prabhu &#8211; In&nbsp;Memoriam" rel="bookmark">
			<img width="278" height="278" src="https://luthar.com/wp-content/uploads/2019/03/mira-prabhu2.jpg?w=278" class="attachment-three size-three wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://luthar.com/wp-content/uploads/2019/03/mira-prabhu2.jpg?w=278 278w, https://luthar.com/wp-content/uploads/2019/03/mira-prabhu2.jpg?w=150 150w, https://luthar.com/wp-content/uploads/2019/03/mira-prabhu2.jpg?w=300 300w, https://luthar.com/wp-content/uploads/2019/03/mira-prabhu2.jpg 421w" sizes="(max-width: 278px) 100vw, 278px" data-attachment-id="19502" data-permalink="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/mira-prabhu2/#main" data-orig-file="https://luthar.com/wp-content/uploads/2019/03/mira-prabhu2.jpg" data-orig-size="421,421" 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="Mira Prabhu2" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2019/03/mira-prabhu2.jpg?w=278" />			</a>
		</div>
		<div class="author-img"><img referrerpolicy="no-referrer" alt='Harsha&#039;s avatar' src='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=40&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=60&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=80&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=120&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5e7a0f127935a0c0b5ff205ed75984014c9cdb904907768770b7d1cff4a57d42?s=160&#038;d=identicon&#038;r=G 4x' class='avatar avatar-40' height='40' width='40' loading='lazy' decoding='async' /></div>
		<h1 class="entry-title"><a href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/" rel="bookmark">Mira Prabhu &#8211; In&nbsp;Memoriam</a></h1>

		<a href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/" title="1:15 am" rel="bookmark"><time class="entry-date" datetime="2019-03-23T01:15:47-04:00" pubdate>March 23, 2019</time></a>
		<div class="entry-meta">
							<span class="author vcard">
					<a class="url fn n" href="https://luthar.com/author/luthar/" title="View all posts by Harsha" rel="author">
						Harsha					</a>
				</span>

				<span class="sep">.</span>

									<span class="cat-links">
						<a href="https://luthar.com/category/culture-travel-and-lifestyle/" rel="category tag">LIFESTYLE</a>, <a href="https://luthar.com/category/love/" rel="category tag">Love</a>, <a href="https://luthar.com/category/meditation/" rel="category tag">Meditation</a>, <a href="https://luthar.com/category/personal/" rel="category tag">PERSONAL</a>, <a href="https://luthar.com/category/spirituality/" rel="category tag">Spirituality</a>, <a href="https://luthar.com/category/wisdom/" rel="category tag">Wisdom</a>, <a href="https://luthar.com/category/yoga/" rel="category tag">Yoga</a>					</span>
				
										<span class="sep"> . </span>
						<span class="tag-links">
						<a href="https://luthar.com/tag/in-memoriam/" rel="tag">In Memoriam</a>, <a href="https://luthar.com/tag/mira-prabhu/" rel="tag">Mira Prabhu</a>						</span>
							
					</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		
<p class="wp-block-paragraph">Mira Prabhu is now free from the torment of physical suffering caused by her cancer. &nbsp;Death claimed Mira at a young age when she was on the verge of becoming well known for her writings and spiritual novels. Mira left her body on January 6, 2019, in Tiruvannamalai, India, near the Holy Hill of Arunachala.  Her ashes were sprinkled over the Holy Mountain. </p>



<p class="wp-block-paragraph">Mira was a beautiful soul with a kind heart and I felt her warmth and love that she naturally had for Bhagavan Ramana devotees. We used to post each other&#8217;s blog posts on our respective blog sites. Mira often shared my FB posts on her wall. She was always generous in her comments and very supportive as we were both Bhagavan devotees.</p>



<p class="wp-block-paragraph">Mira was a prolific and gifted writer. She was also a yogini and mystic. She was a devotee of Bhagavan Ramana and also followed Nisargadatta Maharaj&#8217;s teachings. Mira had been living close to the Holy Hill of Arunachala in the south of India (where Sri Ramana spent 53 years) before she passed away. </p>



<p class="wp-block-paragraph">Mira was an amazing woman. She was fiery and fearless and authentic in her expressions. She despised hypocrisy, especially among the so-called spiritual people. She always spoke her truth from the heart without hesitation. She did not suffer fools and charlatans and false prophets silently. When she saw injustice, she spoke up.</p>



<p class="wp-block-paragraph">Mira and I connected on FB in 2014. Mira seemed to like everything I wrote on my blog and on FB on Ramana Maharshi, Advaita Vedanta, and other yoga-related topics. She would frequently share my writings on her blog and her FB page. I also started visiting her blog and following her on facebook. I realized that she was an extraordinarily perceptive and brilliant spiritual aspirant. Mira and I became part of the mutual admiration society for each other!</p>



<p class="wp-block-paragraph">In the summer of 2016, Mira asked me to recommend her book on my blog and also review it on Amazon. I was delighted to do it. Ten days later, after I had read more of her essays, I wrote to Mira an email. It stated in part:</p>



<p class="wp-block-paragraph">&#8220;Dear Mira,</p>



<p class="wp-block-paragraph">&#8220;I am a professor and have read literally thousands of student papers and a few books as well. When I read your writing, I find myself thinking, &#8220;Mira is so immensely gifted and spectacularly talented with such a mastery of expression and command of the English language&#8221;.</p>



<p class="wp-block-paragraph">&#8220;You are able to take the raw experiences of your life and through your knowledge of various fields, subtly weave them in enchanting stories and articles&#8221;!</p>



<p class="wp-block-paragraph">&#8220;I feel so happy for you Mira. May all the universal blessings shine on you&#8221;&#8230;</p>



<p class="wp-block-paragraph">All Love<br />_______</p>



<p class="wp-block-paragraph">Mira was ecstatic on getting my email. I only give part of her response to me below:</p>



<p class="wp-block-paragraph">Dear Harsh,</p>



<p class="wp-block-paragraph">What a wonderful message to receive on a beautiful morning in the shadow of Arunachala! You pay me great compliments and I will treasure them because sometimes the inner journey gets hard and lonely and I for one rely on my closest friends (whom I call my &#8220;kalyanamitras&#8221;) to pull me through. Its been a rough ride all right, but everything in the past turns into light when I consider the grace of Arunachala and Ramana that drew me to this tiny town to know my Self.</p>



<p class="wp-block-paragraph">Do you plan to make a trip to Arunachala? I would be so happy to meet you in person and might even cook for you, although I know you are a great cook yourself, vegan, am I right? But I can only try! I would also love for you to meet a few close friends too, so, if you get the opportunity to leave what must be a very busy life (based on what I know of the West), please seize the day, Carpe Diem!</p>



<p class="wp-block-paragraph">Thank you again, Harsh. I&#8217;ve been dealing with the usual ups and downs (of living in a small semi-rural town where folks have odd ways of doing things) and was feeling a bit blue &#8211; when your email arrived and energized me. Arunachala&#8217;s Magic again!</p>



<p class="wp-block-paragraph">Much love and<br />Namasthe!<br />Mira<br />__________</p>



<p class="wp-block-paragraph">Mira and I exchanged other emails and got to know each other. We kept in touch. Mira invited me to come to Arunachala where she was living and told me that she was never going to leave there. During most of 2018, I had gotten busier professionally and was not writing as much on my blog. I was on Mira&#8217;s general mailing list that Mira sent her articles to and got those on a regular basis.</p>



<p class="wp-block-paragraph">The last communication I received from Mira was on November 8, 2018. She had sent it to all her contacts. Mira&#8217;s email stated, &#8220;HI ALL, just to say that I&#8217;ve been terribly sick and still trying to get better. Pray if you pray! Love!&#8221; &nbsp;I went on Mira&#8217;s Facebook page the same day and there was the exact same message there. I left a heart symbol for her on her FB page in response to her message. I had no idea that that was going to be the last communication from Mira.</p>



<p class="wp-block-paragraph">I learned a few days ago (March 19, 2019) that Mira had passed away two months earlier in January of 2019. I was so surprised to hear the news. I felt sad that I did not get a chance to say goodbye.</p>



<p class="wp-block-paragraph">Death freed Mira from her physical pain and suffering. But it left a big gap in the lives of her friends and followers. I will miss Mira immensely. </p>



<figure class="wp-block-image"><img data-attachment-id="19503" data-permalink="https://luthar.com/mira-prabhu/" data-orig-file="https://luthar.com/wp-content/uploads/2019/03/mira-prabhu.jpg" data-orig-size="540,540" 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="mira-prabhu" data-image-description="" data-image-caption="" data-large-file="https://luthar.com/wp-content/uploads/2019/03/mira-prabhu.jpg?w=278" loading="lazy" width="540" height="540" src="https://luthar.com/wp-content/uploads/2019/03/mira-prabhu.jpg" alt="" class="wp-image-19503" srcset="https://luthar.com/wp-content/uploads/2019/03/mira-prabhu.jpg 540w, https://luthar.com/wp-content/uploads/2019/03/mira-prabhu.jpg?w=150&amp;h=150 150w, https://luthar.com/wp-content/uploads/2019/03/mira-prabhu.jpg?w=300&amp;h=300 300w" sizes="(max-width: 540px) 100vw, 540px" /></figure>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-19501"
				class="share-twitter sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-19501"
				>
				<span id="sharing-twitter-19501" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-linkedin"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-linkedin-19501"
				class="share-linkedin sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=linkedin"
				target="_blank"
				aria-labelledby="sharing-linkedin-19501"
				>
				<span id="sharing-linkedin-19501" hidden>Share on LinkedIn (Opens in new window)</span>
				<span>LinkedIn</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-19501"
				class="share-facebook sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-19501"
				>
				<span id="sharing-facebook-19501" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-19501"
				class="share-reddit sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-19501"
				>
				<span id="sharing-reddit-19501" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-19501"
				class="share-print sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-19501"
				>
				<span id="sharing-print-19501" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-19501"
				class="share-tumblr sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-19501"
				>
				<span id="sharing-tumblr-19501" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-jetpack-whatsapp"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-whatsapp-19501"
				class="share-jetpack-whatsapp sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=jetpack-whatsapp"
				target="_blank"
				aria-labelledby="sharing-whatsapp-19501"
				>
				<span id="sharing-whatsapp-19501" hidden>Share on WhatsApp (Opens in new window)</span>
				<span>WhatsApp</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-19501"
				class="share-pinterest sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-19501"
				>
				<span id="sharing-pinterest-19501" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-telegram"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-telegram-19501"
				class="share-telegram sd-button share-icon"
				href="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=telegram"
				target="_blank"
				aria-labelledby="sharing-telegram-19501"
				>
				<span id="sharing-telegram-19501" hidden>Share on Telegram (Opens in new window)</span>
				<span>Telegram</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-19501"
				class="share-email sd-button share-icon"
				href="mailto:?subject=%5BShared%20Post%5D%20Mira%20Prabhu%20-%20In%20Memoriam&#038;body=https%3A%2F%2Fluthar.com%2F2019%2F03%2F23%2Fmira-prabhu-in-memoriam%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-19501"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="88b5a8856b" data-email-share-track-url="https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/?share=email">
				<span id="sharing-email-19501" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-56823571-19501-6a275572d14a7' data-src='//widgets.wp.com/likes/index.html?ver=20260608#blog_id=56823571&amp;post_id=19501&amp;origin=luthar2.wordpress.com&amp;obj_id=56823571-19501-6a275572d14a7&amp;domain=luthar.com' data-name='like-post-frame-56823571-19501-6a275572d14a7' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
</article><!-- #post-19501 -->

						
					</div><!--#content-wrapper-->

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

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

				
			</div><!-- #content -->
		</div><!-- #primary .site-content -->

		<div id="secondary" class="widget-area" role="complementary">
						<aside id="search-2" class="widget widget_search">	<form method="get" id="searchform" action="https://luthar.com/" role="search">
		<label for="s" class="assistive-text">Search</label>
		<input type="text" class="field" name="s" id="s" placeholder="Search &hellip;" />
		<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
	</form>
</aside><aside id="text-2" class="widget widget_text">			<div class="textwidget"><a href="/interfaith-enlightenment-site/">INTERFAITH ENLIGHTENMENT SITE</a></div>
		</aside><aside id="meta-2" class="widget widget_meta"><h1 class="widget-title">Meta</h1>
		<ul>
			<li><a class="click-register" href="https://wordpress.com/start?ref=wplogin">Create account</a></li>			<li><a href="https://luthar2.wordpress.com/wp-login.php">Log in</a></li>
			<li><a href="https://luthar.com/feed/">Entries feed</a></li>
			<li><a href="https://luthar.com/comments/feed/">Comments feed</a></li>

			<li><a href="https://wordpress.com/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.com</a></li>
		</ul>

		</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="56823571"
				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="56823571"/>
					<input type="hidden" name="source" value="https://luthar.com/"/>
					<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="fab0cfb37c" />					<button type="submit"
													class="wp-block-button__link"
																	>
						Follow					</button>
				</p>
			</form>
							<div class="wp-block-jetpack-subscriptions__subscount">
					Join 689 other subscribers				</div>
						</div>
			
</aside><aside id="facebook-likebox-2" class="widget widget_facebook_likebox"><h1 class="widget-title"><a href="https://www.facebook.com/HKLuthar/">Luthar</a></h1>		<div id="fb-root"></div>
		<div class="fb-page" data-href="https://www.facebook.com/HKLuthar/" data-width="200"  data-height="130" data-hide-cover="false" data-show-facepile="false" data-tabs="false" data-hide-cta="false" data-small-header="false">
		<div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/HKLuthar/"><a href="https://www.facebook.com/HKLuthar/">Luthar</a></blockquote></div>
		</div>
		</aside><aside id="calendar-3" class="widget widget_calendar"><div id="calendar_wrap" class="calendar_wrap"><table id="wp-calendar" class="wp-calendar-table">
	<caption>June 2026</caption>
	<thead>
	<tr>
		<th scope="col" aria-label="Monday">M</th>
		<th scope="col" aria-label="Tuesday">T</th>
		<th scope="col" aria-label="Wednesday">W</th>
		<th scope="col" aria-label="Thursday">T</th>
		<th scope="col" aria-label="Friday">F</th>
		<th scope="col" aria-label="Saturday">S</th>
		<th scope="col" aria-label="Sunday">S</th>
	</tr>
	</thead>
	<tbody>
	<tr><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td>
	</tr>
	<tr>
		<td id="today">8</td><td>9</td><td>10</td><td>11</td><td>12</td><td>13</td><td>14</td>
	</tr>
	<tr>
		<td>15</td><td>16</td><td>17</td><td>18</td><td>19</td><td>20</td><td>21</td>
	</tr>
	<tr>
		<td>22</td><td>23</td><td>24</td><td>25</td><td>26</td><td>27</td><td>28</td>
	</tr>
	<tr>
		<td>29</td><td>30</td>
		<td class="pad" colspan="5">&nbsp;</td>
	</tr>
	</tbody>
	</table><nav aria-label="Previous and next months" class="wp-calendar-nav">
		<span class="wp-calendar-nav-prev"><a href="https://luthar.com/2023/07/">&laquo; Jul</a></span>
		<span class="pad">&nbsp;</span>
		<span class="wp-calendar-nav-next">&nbsp;</span>
	</nav></div></aside><aside id="linkcat-1356" class="widget widget_links"><h1 class="widget-title">Links</h1>
	<ul class='xoxo blogroll'>
<li><a href="http://sriramanamaharshi.org">A Ramanasramam Site</a></li>
<li><a href="http://www.advaitin.net/">Advaitin Site</a></li>
<li><a href="http://www.arunachala-ramana.org/">Arunachala-Ramana site</a></li>
<li><a href="http://richardarunachala.wordpress.com/">Living In The Embrace of Arunachala</a></li>
<li><a href="http://www.youtube.com/user/harshluthar">Meditation and Inquiry</a></li>
<li><a href="http://michael-roberto.blogspot.com/">Michael Roberto</a></li>
<li><a href="https://miraprabhu.wordpress.com" rel="friend" title="Wonderfully eclectic blog about love, life, and spirituality">Mira Prabhu</a></li>
<li><a href="http://www.advaita.org.uk/">The Advaita Site UK</a></li>

	</ul>
</aside>
<aside id="top-posts-2" class="widget widget_top-posts"><h1 class="widget-title">Top Posts &amp; Pages</h1><ul><li><a href="https://luthar.com/2014/05/06/the-meaning-of-the-term-ji-in-the-indian-culture-by-dr-harsh-k-luthar/" class="bump-view" data-bump-view="tp">The Meaning of the Term &quot;Ji&quot; in the Indian Culture: By Dr. Harsh K. Luthar</a></li><li><a href="https://luthar.com/2013/06/07/the-guru-business-wisdom-for-sale/" class="bump-view" data-bump-view="tp">The Enlightenment Business: Wisdom For Sale</a></li><li><a href="https://luthar.com/2013/06/06/nirvikalpa-samadhi-two-different-perspectives/" class="bump-view" data-bump-view="tp">Nirvikalpa Samadhi - Two Different Perspectives: By Dr. Harsh K. Luthar</a></li><li><a href="https://luthar.com/sri-ramana-maharshi/" class="bump-view" data-bump-view="tp">Sri Ramana Maharshi</a></li><li><a href="https://luthar.com/2001/01/24/another-kind-of-self-inquiry-chandrakirtis-sevenfold-reasoning-on-selflessness/" class="bump-view" data-bump-view="tp">Another Kind of Self-Inquiry: Chandrakirti’s Sevenfold Reasoning on Selflessness: By Greg Goode, Ph.D.</a></li><li><a href="https://luthar.com/2009/09/05/njanappaana-1/" class="bump-view" data-bump-view="tp">Njanappaana by Poonthaanam Numidiri-1</a></li><li><a href="https://luthar.com/2016/05/30/sri-ramana-maharshis-mother-mahasmadhi/" class="bump-view" data-bump-view="tp">Sri Ramana Maharshi&#039;s Mother: Mahasmadhi</a></li><li><a href="https://luthar.com/2002/03/05/stories-about-ramana-maharshi-by-harsha-harsh-k-luthar-phd/" class="bump-view" data-bump-view="tp">Stories About Ramana Maharshi: By Harsha (Harsh K. Luthar, Ph.D.)</a></li><li><a href="https://luthar.com/2017/03/15/sri-ramana-and-the-comet-in-the-sky/" class="bump-view" data-bump-view="tp">Sri Ramana Maharshi&#039;s Mahanirvana and the Comet in the Sky</a></li><li><a href="https://luthar.com/2008/12/15/yoga-and-advaita/" class="bump-view" data-bump-view="tp">Yoga And Advaita: By Dr. Harsh K. Luthar</a></li></ul></aside>
		<aside id="recent-posts-2" class="widget widget_recent_entries">
		<h1 class="widget-title">Recent Posts</h1>
		<ul>
											<li>
					<a href="https://luthar.com/2023/07/14/the-true-master-3/">The True Master</a>
									</li>
											<li>
					<a href="https://luthar.com/2023/03/27/rama-and-shabari-2/">Rama and Shabari</a>
									</li>
											<li>
					<a href="https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/">The Maha Shivaratri Love&nbsp;Message</a>
									</li>
											<li>
					<a href="https://luthar.com/2020/01/22/the-visit-of-the-maharaja/">The Visit of the&nbsp;Maharaja</a>
									</li>
											<li>
					<a href="https://luthar.com/2019/07/07/the-sage-of-arunachala/">The Sage of&nbsp;Arunachala</a>
									</li>
					</ul>

		</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h1 class="widget-title">Recent Comments</h1>				<table class="recentcommentsavatar" cellspacing="0" cellpadding="0" border="0">
					<tr><td title="Rama Kant" class="recentcommentsavatartop" style="height:48px; width:48px;"><img referrerpolicy="no-referrer" alt='Rama Kant&#039;s avatar' src='https://graph.facebook.com/v6.0/10235420045146127/picture?type=large' srcset='https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 1x, https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 1.5x, https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 2x, https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 3x, https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstexttop" style="">Rama Kant on <a href="https://luthar.com/2002/03/05/how-i-found-my-way-to-ramana-by-gabriele-ebert/comment-page-1/#comment-28698">How I Found My Way to Ramana:&hellip;</a></td></tr><tr><td title="Rama Kant" class="recentcommentsavatarend" style="height:48px; width:48px;"><img referrerpolicy="no-referrer" alt='Rama Kant&#039;s avatar' src='https://graph.facebook.com/v6.0/10235420045146127/picture?type=large' srcset='https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 1x, https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 1.5x, https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 2x, https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 3x, https://graph.facebook.com/v6.0/10235420045146127/picture?type=large 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstextend" style="">Rama Kant on <a href="https://luthar.com/2007/02/04/icon-painting-as-a-spiritual-path-by-gabriele-ebert/comment-page-1/#comment-28696">Icon Painting As A Spiritual P&hellip;</a></td></tr><tr><td title="Dr Satinder Singh Malik (@adventuresmalik)" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="http://twitter.com/adventuresmalik" rel="nofollow"><img referrerpolicy="no-referrer" alt='Dr Satinder Singh Malik (@adventuresmalik)&#039;s avatar' src='https://i0.wp.com/pbs.twimg.com/profile_images/1565754293910548481/YF1sKLTj_normal.jpg?resize=48%2C48&#038;ssl=1' srcset='https://i0.wp.com/pbs.twimg.com/profile_images/1565754293910548481/YF1sKLTj_normal.jpg?resize=48%2C48&#038;ssl=1 1x, https://i0.wp.com/pbs.twimg.com/profile_images/1565754293910548481/YF1sKLTj_normal.jpg?resize=72%2C72&#038;ssl=1 1.5x, https://i0.wp.com/pbs.twimg.com/profile_images/1565754293910548481/YF1sKLTj_normal.jpg?resize=96%2C96&#038;ssl=1 2x, https://i0.wp.com/pbs.twimg.com/profile_images/1565754293910548481/YF1sKLTj_normal.jpg?resize=144%2C144&#038;ssl=1 3x, https://i0.wp.com/pbs.twimg.com/profile_images/1565754293910548481/YF1sKLTj_normal.jpg?resize=192%2C192&#038;ssl=1 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="http://twitter.com/adventuresmalik" rel="nofollow">Dr Satinder Singh Ma&hellip;</a> on <a href="https://luthar.com/2014/05/06/the-meaning-of-the-term-ji-in-the-indian-culture-by-dr-harsh-k-luthar/comment-page-1/#comment-28692">The Meaning of the Term&hellip;</a></td></tr><tr><td title="Sara Calzedonia" class="recentcommentsavatarend" style="height:48px; width:48px;"><img referrerpolicy="no-referrer" alt='Sara Calzedonia&#039;s avatar' src='https://0.gravatar.com/avatar/044cc3f95c736cc28e7d3dcd0bbfd125b20aa3cc46c1189c90ad29e84d72f428?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/044cc3f95c736cc28e7d3dcd0bbfd125b20aa3cc46c1189c90ad29e84d72f428?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/044cc3f95c736cc28e7d3dcd0bbfd125b20aa3cc46c1189c90ad29e84d72f428?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/044cc3f95c736cc28e7d3dcd0bbfd125b20aa3cc46c1189c90ad29e84d72f428?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/044cc3f95c736cc28e7d3dcd0bbfd125b20aa3cc46c1189c90ad29e84d72f428?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/044cc3f95c736cc28e7d3dcd0bbfd125b20aa3cc46c1189c90ad29e84d72f428?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstextend" style="">Sara Calzedonia on <a href="https://luthar.com/2010/01/11/on-death-and-dying-words-of-bhagavan-sri-ramana-maharshi/comment-page-1/#comment-28691">On Death and Dying: Words of B&hellip;</a></td></tr><tr><td title="Sue Averett" class="recentcommentsavatarend" style="height:48px; width:48px;"><img referrerpolicy="no-referrer" alt='Sue Averett&#039;s avatar' src='https://graph.facebook.com/v6.0/1320130055/picture?type=large&#038;_md5=62e6dc23178401f3b6de2edd6dc92c25' srcset='https://graph.facebook.com/v6.0/1320130055/picture?type=large&#038;_md5=62e6dc23178401f3b6de2edd6dc92c25 1x, https://graph.facebook.com/v6.0/1320130055/picture?type=large&#038;_md5=62e6dc23178401f3b6de2edd6dc92c25 1.5x, https://graph.facebook.com/v6.0/1320130055/picture?type=large&#038;_md5=62e6dc23178401f3b6de2edd6dc92c25 2x, https://graph.facebook.com/v6.0/1320130055/picture?type=large&#038;_md5=62e6dc23178401f3b6de2edd6dc92c25 3x, https://graph.facebook.com/v6.0/1320130055/picture?type=large&#038;_md5=62e6dc23178401f3b6de2edd6dc92c25 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstextend" style="">Sue Averett on <a href="https://luthar.com/2005/07/18/paintings-by-bill-rishel/comment-page-1/#comment-28684">Paintings by Bill&nbsp;Rishel</a></td></tr>				</table>
				</aside><aside id="categories-2" class="widget widget_categories"><h1 class="widget-title">Categories</h1>
			<ul>
					<li class="cat-item cat-item-2328429"><a href="https://luthar.com/category/advaita-yoga/">ADVAITA &amp; YOGA</a>
</li>
	<li class="cat-item cat-item-334603093"><a href="https://luthar.com/category/advaita-yoga/advaita-and-yoga/">Advaita and Yoga</a>
</li>
	<li class="cat-item cat-item-173714"><a href="https://luthar.com/category/ahimsa/">Ahimsa</a>
</li>
	<li class="cat-item cat-item-1265900"><a href="https://luthar.com/category/art-and-poetry/">ART &amp; POETRY</a>
</li>
	<li class="cat-item cat-item-683091"><a href="https://luthar.com/category/arunachala/">Arunachala</a>
</li>
	<li class="cat-item cat-item-297663"><a href="https://luthar.com/category/bhagavad-gita/">Bhagavad Gita</a>
</li>
	<li class="cat-item cat-item-186111169"><a href="https://luthar.com/category/business-technology-society-and-the-workplace/">BUSINESS &amp; SOCIETY</a>
</li>
	<li class="cat-item cat-item-194213"><a href="https://luthar.com/category/chakra-healing/">Chakra healing</a>
</li>
	<li class="cat-item cat-item-103804"><a href="https://luthar.com/category/community-events/">COMMUNITY EVENTS</a>
</li>
	<li class="cat-item cat-item-5239"><a href="https://luthar.com/category/food-and-drink/">Food and Drink</a>
</li>
	<li class="cat-item cat-item-83382"><a href="https://luthar.com/category/gurus/">Gurus</a>
</li>
	<li class="cat-item cat-item-24262"><a href="https://luthar.com/category/health-and-nutrition/">HEALTH &amp; NUTRITION</a>
</li>
	<li class="cat-item cat-item-5743"><a href="https://luthar.com/category/hinduism/">Hinduism</a>
</li>
	<li class="cat-item cat-item-10166"><a href="https://luthar.com/category/inspirational/">INSPIRATIONAL</a>
</li>
	<li class="cat-item cat-item-61000"><a href="https://luthar.com/category/jainism/">Jainism</a>
</li>
	<li class="cat-item cat-item-357948"><a href="https://luthar.com/category/kundalini/">Kundalini</a>
</li>
	<li class="cat-item cat-item-186111171"><a href="https://luthar.com/category/culture-travel-and-lifestyle/">LIFESTYLE</a>
</li>
	<li class="cat-item cat-item-3785"><a href="https://luthar.com/category/love/">Love</a>
</li>
	<li class="cat-item cat-item-911705"><a href="https://luthar.com/category/luthar/">Luthar</a>
</li>
	<li class="cat-item cat-item-6197"><a href="https://luthar.com/category/meditation/">Meditation</a>
</li>
	<li class="cat-item cat-item-523916212"><a href="https://luthar.com/category/new-york-arunachala-ashram/">New York Arunachala Ashram</a>
</li>
	<li class="cat-item cat-item-106103"><a href="https://luthar.com/category/nonviolence/">Nonviolence</a>
</li>
	<li class="cat-item cat-item-1211822"><a href="https://luthar.com/category/panchakarma/">Panchakarma</a>
</li>
	<li class="cat-item cat-item-64"><a href="https://luthar.com/category/personal/">PERSONAL</a>
</li>
	<li class="cat-item cat-item-1427835"><a href="https://luthar.com/category/ramana-maharishi/">Ramana Maharishi</a>
</li>
	<li class="cat-item cat-item-807125"><a href="https://luthar.com/category/ramayana/">Ramayana</a>
</li>
	<li class="cat-item cat-item-20165"><a href="https://luthar.com/category/satsang/">Satsang</a>
</li>
	<li class="cat-item cat-item-340139"><a href="https://luthar.com/category/self-inquiry/">Self-Inquiry</a>
</li>
	<li class="cat-item cat-item-1494"><a href="https://luthar.com/category/spirituality/">Spirituality</a>
</li>
	<li class="cat-item cat-item-52913"><a href="https://luthar.com/category/tantra/">Tantra</a>
</li>
	<li class="cat-item cat-item-2156"><a href="https://luthar.com/category/teachers/">TEACHERS</a>
</li>
	<li class="cat-item cat-item-1"><a href="https://luthar.com/category/uncategorized/">Uncategorized</a>
</li>
	<li class="cat-item cat-item-15201"><a href="https://luthar.com/category/wisdom/">Wisdom</a>
</li>
	<li class="cat-item cat-item-7371"><a href="https://luthar.com/category/yoga/">Yoga</a>
</li>
			</ul>

			</aside><aside id="archives-2" class="widget widget_archive"><h1 class="widget-title">Archives</h1>
			<ul>
					<li><a href='https://luthar.com/2023/07/'>July 2023</a></li>
	<li><a href='https://luthar.com/2023/03/'>March 2023</a></li>
	<li><a href='https://luthar.com/2020/02/'>February 2020</a></li>
	<li><a href='https://luthar.com/2020/01/'>January 2020</a></li>
	<li><a href='https://luthar.com/2019/07/'>July 2019</a></li>
	<li><a href='https://luthar.com/2019/05/'>May 2019</a></li>
	<li><a href='https://luthar.com/2019/04/'>April 2019</a></li>
	<li><a href='https://luthar.com/2019/03/'>March 2019</a></li>
	<li><a href='https://luthar.com/2019/02/'>February 2019</a></li>
	<li><a href='https://luthar.com/2018/12/'>December 2018</a></li>
	<li><a href='https://luthar.com/2018/11/'>November 2018</a></li>
	<li><a href='https://luthar.com/2018/10/'>October 2018</a></li>
	<li><a href='https://luthar.com/2018/09/'>September 2018</a></li>
	<li><a href='https://luthar.com/2018/08/'>August 2018</a></li>
	<li><a href='https://luthar.com/2018/07/'>July 2018</a></li>
	<li><a href='https://luthar.com/2018/06/'>June 2018</a></li>
	<li><a href='https://luthar.com/2018/05/'>May 2018</a></li>
	<li><a href='https://luthar.com/2018/04/'>April 2018</a></li>
	<li><a href='https://luthar.com/2018/02/'>February 2018</a></li>
	<li><a href='https://luthar.com/2018/01/'>January 2018</a></li>
	<li><a href='https://luthar.com/2017/11/'>November 2017</a></li>
	<li><a href='https://luthar.com/2017/10/'>October 2017</a></li>
	<li><a href='https://luthar.com/2017/09/'>September 2017</a></li>
	<li><a href='https://luthar.com/2017/08/'>August 2017</a></li>
	<li><a href='https://luthar.com/2017/07/'>July 2017</a></li>
	<li><a href='https://luthar.com/2017/06/'>June 2017</a></li>
	<li><a href='https://luthar.com/2017/05/'>May 2017</a></li>
	<li><a href='https://luthar.com/2017/04/'>April 2017</a></li>
	<li><a href='https://luthar.com/2017/03/'>March 2017</a></li>
	<li><a href='https://luthar.com/2017/02/'>February 2017</a></li>
	<li><a href='https://luthar.com/2017/01/'>January 2017</a></li>
	<li><a href='https://luthar.com/2016/12/'>December 2016</a></li>
	<li><a href='https://luthar.com/2016/11/'>November 2016</a></li>
	<li><a href='https://luthar.com/2016/10/'>October 2016</a></li>
	<li><a href='https://luthar.com/2016/09/'>September 2016</a></li>
	<li><a href='https://luthar.com/2016/08/'>August 2016</a></li>
	<li><a href='https://luthar.com/2016/07/'>July 2016</a></li>
	<li><a href='https://luthar.com/2016/06/'>June 2016</a></li>
	<li><a href='https://luthar.com/2016/05/'>May 2016</a></li>
	<li><a href='https://luthar.com/2016/04/'>April 2016</a></li>
	<li><a href='https://luthar.com/2016/03/'>March 2016</a></li>
	<li><a href='https://luthar.com/2016/02/'>February 2016</a></li>
	<li><a href='https://luthar.com/2016/01/'>January 2016</a></li>
	<li><a href='https://luthar.com/2015/12/'>December 2015</a></li>
	<li><a href='https://luthar.com/2015/11/'>November 2015</a></li>
	<li><a href='https://luthar.com/2015/10/'>October 2015</a></li>
	<li><a href='https://luthar.com/2015/09/'>September 2015</a></li>
	<li><a href='https://luthar.com/2015/07/'>July 2015</a></li>
	<li><a href='https://luthar.com/2015/06/'>June 2015</a></li>
	<li><a href='https://luthar.com/2015/04/'>April 2015</a></li>
	<li><a href='https://luthar.com/2015/03/'>March 2015</a></li>
	<li><a href='https://luthar.com/2015/02/'>February 2015</a></li>
	<li><a href='https://luthar.com/2015/01/'>January 2015</a></li>
	<li><a href='https://luthar.com/2014/12/'>December 2014</a></li>
	<li><a href='https://luthar.com/2014/11/'>November 2014</a></li>
	<li><a href='https://luthar.com/2014/10/'>October 2014</a></li>
	<li><a href='https://luthar.com/2014/09/'>September 2014</a></li>
	<li><a href='https://luthar.com/2014/08/'>August 2014</a></li>
	<li><a href='https://luthar.com/2014/07/'>July 2014</a></li>
	<li><a href='https://luthar.com/2014/06/'>June 2014</a></li>
	<li><a href='https://luthar.com/2014/05/'>May 2014</a></li>
	<li><a href='https://luthar.com/2014/04/'>April 2014</a></li>
	<li><a href='https://luthar.com/2014/03/'>March 2014</a></li>
	<li><a href='https://luthar.com/2014/02/'>February 2014</a></li>
	<li><a href='https://luthar.com/2014/01/'>January 2014</a></li>
	<li><a href='https://luthar.com/2013/12/'>December 2013</a></li>
	<li><a href='https://luthar.com/2013/11/'>November 2013</a></li>
	<li><a href='https://luthar.com/2013/07/'>July 2013</a></li>
	<li><a href='https://luthar.com/2013/06/'>June 2013</a></li>
	<li><a href='https://luthar.com/2012/10/'>October 2012</a></li>
	<li><a href='https://luthar.com/2012/08/'>August 2012</a></li>
	<li><a href='https://luthar.com/2012/07/'>July 2012</a></li>
	<li><a href='https://luthar.com/2012/06/'>June 2012</a></li>
	<li><a href='https://luthar.com/2012/05/'>May 2012</a></li>
	<li><a href='https://luthar.com/2012/03/'>March 2012</a></li>
	<li><a href='https://luthar.com/2012/02/'>February 2012</a></li>
	<li><a href='https://luthar.com/2012/01/'>January 2012</a></li>
	<li><a href='https://luthar.com/2011/11/'>November 2011</a></li>
	<li><a href='https://luthar.com/2011/10/'>October 2011</a></li>
	<li><a href='https://luthar.com/2011/09/'>September 2011</a></li>
	<li><a href='https://luthar.com/2011/08/'>August 2011</a></li>
	<li><a href='https://luthar.com/2011/07/'>July 2011</a></li>
	<li><a href='https://luthar.com/2011/05/'>May 2011</a></li>
	<li><a href='https://luthar.com/2011/04/'>April 2011</a></li>
	<li><a href='https://luthar.com/2011/03/'>March 2011</a></li>
	<li><a href='https://luthar.com/2011/02/'>February 2011</a></li>
	<li><a href='https://luthar.com/2011/01/'>January 2011</a></li>
	<li><a href='https://luthar.com/2010/12/'>December 2010</a></li>
	<li><a href='https://luthar.com/2010/11/'>November 2010</a></li>
	<li><a href='https://luthar.com/2010/10/'>October 2010</a></li>
	<li><a href='https://luthar.com/2010/09/'>September 2010</a></li>
	<li><a href='https://luthar.com/2010/08/'>August 2010</a></li>
	<li><a href='https://luthar.com/2010/07/'>July 2010</a></li>
	<li><a href='https://luthar.com/2010/06/'>June 2010</a></li>
	<li><a href='https://luthar.com/2010/05/'>May 2010</a></li>
	<li><a href='https://luthar.com/2010/04/'>April 2010</a></li>
	<li><a href='https://luthar.com/2010/03/'>March 2010</a></li>
	<li><a href='https://luthar.com/2010/02/'>February 2010</a></li>
	<li><a href='https://luthar.com/2010/01/'>January 2010</a></li>
	<li><a href='https://luthar.com/2009/12/'>December 2009</a></li>
	<li><a href='https://luthar.com/2009/11/'>November 2009</a></li>
	<li><a href='https://luthar.com/2009/10/'>October 2009</a></li>
	<li><a href='https://luthar.com/2009/09/'>September 2009</a></li>
	<li><a href='https://luthar.com/2009/08/'>August 2009</a></li>
	<li><a href='https://luthar.com/2009/07/'>July 2009</a></li>
	<li><a href='https://luthar.com/2009/06/'>June 2009</a></li>
	<li><a href='https://luthar.com/2009/05/'>May 2009</a></li>
	<li><a href='https://luthar.com/2009/04/'>April 2009</a></li>
	<li><a href='https://luthar.com/2009/03/'>March 2009</a></li>
	<li><a href='https://luthar.com/2009/02/'>February 2009</a></li>
	<li><a href='https://luthar.com/2009/01/'>January 2009</a></li>
	<li><a href='https://luthar.com/2008/12/'>December 2008</a></li>
	<li><a href='https://luthar.com/2008/11/'>November 2008</a></li>
	<li><a href='https://luthar.com/2008/10/'>October 2008</a></li>
	<li><a href='https://luthar.com/2008/09/'>September 2008</a></li>
	<li><a href='https://luthar.com/2008/08/'>August 2008</a></li>
	<li><a href='https://luthar.com/2008/07/'>July 2008</a></li>
	<li><a href='https://luthar.com/2008/06/'>June 2008</a></li>
	<li><a href='https://luthar.com/2008/05/'>May 2008</a></li>
	<li><a href='https://luthar.com/2008/04/'>April 2008</a></li>
	<li><a href='https://luthar.com/2008/03/'>March 2008</a></li>
	<li><a href='https://luthar.com/2008/02/'>February 2008</a></li>
	<li><a href='https://luthar.com/2008/01/'>January 2008</a></li>
	<li><a href='https://luthar.com/2007/10/'>October 2007</a></li>
	<li><a href='https://luthar.com/2007/09/'>September 2007</a></li>
	<li><a href='https://luthar.com/2007/08/'>August 2007</a></li>
	<li><a href='https://luthar.com/2007/07/'>July 2007</a></li>
	<li><a href='https://luthar.com/2007/06/'>June 2007</a></li>
	<li><a href='https://luthar.com/2007/05/'>May 2007</a></li>
	<li><a href='https://luthar.com/2007/03/'>March 2007</a></li>
	<li><a href='https://luthar.com/2007/02/'>February 2007</a></li>
	<li><a href='https://luthar.com/2007/01/'>January 2007</a></li>
	<li><a href='https://luthar.com/2006/12/'>December 2006</a></li>
	<li><a href='https://luthar.com/2006/11/'>November 2006</a></li>
	<li><a href='https://luthar.com/2006/10/'>October 2006</a></li>
	<li><a href='https://luthar.com/2006/09/'>September 2006</a></li>
	<li><a href='https://luthar.com/2006/08/'>August 2006</a></li>
	<li><a href='https://luthar.com/2006/07/'>July 2006</a></li>
	<li><a href='https://luthar.com/2006/04/'>April 2006</a></li>
	<li><a href='https://luthar.com/2006/02/'>February 2006</a></li>
	<li><a href='https://luthar.com/2006/01/'>January 2006</a></li>
	<li><a href='https://luthar.com/2005/07/'>July 2005</a></li>
	<li><a href='https://luthar.com/2003/08/'>August 2003</a></li>
	<li><a href='https://luthar.com/2002/03/'>March 2002</a></li>
	<li><a href='https://luthar.com/2001/09/'>September 2001</a></li>
	<li><a href='https://luthar.com/2001/01/'>January 2001</a></li>
	<li><a href='https://luthar.com/2000/08/'>August 2000</a></li>
	<li><a href='https://luthar.com/1999/11/'>November 1999</a></li>
	<li><a href='https://luthar.com/1999/09/'>September 1999</a></li>
	<li><a href='https://luthar.com/1998/01/'>January 1998</a></li>
	<li><a href='https://luthar.com/1997/12/'>December 1997</a></li>
	<li><a href='https://luthar.com/1997/09/'>September 1997</a></li>
			</ul>

			</aside><!-- Invalid Facebook Page URL -->		</div><!-- #secondary .widget-area -->
		<div class="footer-widgets">
											</div>
	</div><!-- #main -->
	<footer id="colophon" class="site-footer" role="contentinfo">
		<div class="site-info">
						<a href="https://wordpress.com/?ref=footer_custom_acom" rel="nofollow">A WordPress.com Website</a>.		</div><!-- .site-info -->
	</footer><!-- #colophon .site-footer -->
</div><!-- #page .hfeed .site -->

		<script type="text/javascript">
		var infiniteScroll = {"settings":{"id":"content-wrapper","ajaxurl":"https://luthar.com/?infinity=scrolling","type":"scroll","wrapper":false,"wrapper_class":"infinite-wrap","footer":true,"click_handle":"1","text":"Older posts","totop":"Scroll back to top","currentday":"23.03.19","order":"DESC","scripts":[],"styles":[],"google_analytics":false,"offset":1,"history":{"host":"luthar.com","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-08 19:51:14","last_post_date":"2019-03-23 01:15:47","body_class":"infinite-scroll neverending","loading_text":"Loading new page","stats":"blog=56823571\u0026v=wpcom\u0026tz=-4\u0026user_id=0\u0026arch_home=1\u0026subd=luthar2\u0026x_pagetype=infinite"}};
		</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/premium/pinboard/*","/*\\?(.+)"]}},{"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 class="grofile-hash-map-047e6f9eb03677fcc6a7039d4ad758bf">
	</div>
	<div class="grofile-hash-map-4aea6563dd86a4fe0a313e6d6d690c82">
	</div>
	<div class="grofile-hash-map-89deadd42f440486fb03dfead0f29c17">
	</div>
	<div class="grofile-hash-map-c39a038f0dc02110ee9e80c8c74c8901">
	</div>
	<div class="grofile-hash-map-563969d6786031a9eeee6679ed51f083">
	</div>
	</div>
		<div id="infinite-footer">
			<div class="container">
				<div class="blog-info">
					<a id="infinity-blog-title" href="https://luthar.com/" rel="home">
						Luthar.com					</a>
				</div>
				<div class="blog-credits">
					<a href="https://wordpress.com/?ref=footer_custom_acom" rel="nofollow">A WordPress.com Website</a>. 				</div>
			</div>
		</div><!-- #infinite-footer -->
				<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-premium-pinboard 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://luthar.com">
				<img loading='lazy' alt='' src='https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=50' srcset='https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=50 1x, https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=75 1.5x, https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=100 2x, https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=150 3x, https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' />				Luthar.com			</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 689 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="56823571" />
										<input type="hidden" name="source" value="https://luthar.com/" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="fab0cfb37c" />										<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%252Fluthar.com%252F2023%252F07%252F14%252Fthe-true-master-3%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://luthar.com">
				<img loading='lazy' alt='' src='https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=50' srcset='https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=50 1x, https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=75 1.5x, https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=100 2x, https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=150 3x, https://luthar.com/wp-content/uploads/2019/03/cropped-harsh-luthar-no-one-gives-you-the-truth.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' />				Luthar.com			</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%252Fluthar.com%252F2023%252F07%252F14%252Fthe-true-master-3%252F">Log in</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://luthar.com" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/blogs/56823571">
										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>
																														<div id="jp-carousel-comment-form-commenting-as">
												<p id="jp-carousel-commenting-as">
													You must be <a href="#" class="jp-carousel-comment-login">logged in</a> to post a comment.												</p>
											</div>
																											</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">
		window.WPCOM_sharing_counts = {"https://luthar.com/2023/07/14/the-true-master-3/":19650,"https://luthar.com/2023/03/27/rama-and-shabari-2/":19648,"https://luthar.com/2020/02/21/the-maha-shivaratri-love-message/":19622,"https://luthar.com/2020/01/22/the-visit-of-the-maharaja/":19614,"https://luthar.com/2019/07/07/the-sage-of-arunachala/":19598,"https://luthar.com/2019/07/03/no-secret-methods/":19595,"https://luthar.com/2019/07/03/the-true-master-2/":19591,"https://luthar.com/2019/05/28/rama-and-shabari/":19557,"https://luthar.com/2019/03/23/mira-prabhu-in-memoriam/":19501};
	</script>
						
	<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="coblocks-loader-js-extra">
var wpcom_coblocks_js = {"coblocks_masonry_js":"https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-masonry.min.js?m=1681832297i","coblocks_lightbox_js":"https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-lightbox.min.js?m=1681832297i","jquery_core_js":"/wp-includes/js/jquery/jquery.min.js","jquery_migrate_js":"/wp-includes/js/jquery/jquery-migrate.min.js","masonry_js":"/wp-includes/js/masonry.min.js","imagesloaded_js":"/wp-includes/js/imagesloaded.min.js"};
var coblocksLigthboxData = {"closeLabel":"Close Gallery","leftLabel":"Previous","rightLabel":"Next"};
//# sourceURL=coblocks-loader-js-extra
</script>
<script id="jetpack-facebook-embed-js-extra">
var jpfbembed = {"appid":"249643311490","locale":"en_US"};
//# sourceURL=jetpack-facebook-embed-js-extra
</script>
<script id="jetpack-carousel-js-extra">
var jetpackSwiperLibraryPath = {"url":"/wp-content/mu-plugins/jetpack-plugin/moon/_inc/blocks/swiper.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https://luthar.com/wp-admin/admin-ajax.php","nonce":"28d55a51ae","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":"1","require_name_email":"1","login_url":"https://luthar2.wordpress.com/wp-login.php?redirect_to=https%3A%2F%2Fluthar.com%2F2023%2F07%2F14%2Fthe-true-master-3%2F","blog_id":"56823571","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=56823571&v=wpcom&tz=-4&user_id=0&arch_home=1&subd=luthar2","is_public":"1"};
//# sourceURL=jetpack-carousel-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJydkElOA0EMRS9ElWmSKNkgjoJqcIi7PVRqAOX2BCkNEsoqy299P/kZvopLph21gwxXeHyQNmBasMF54MBT0MxY/dye4H55xl5CWm4ZxEzhnTRBHMQZSI+k1NG1VI15zRcvpP+pKzJZZEtLgxc/HfzkGklhdBU//RYytQ7zX8mxhXy98A6vn1CuIqWi0BAopNFCzT/bTQKzE9TxiNoxJIxmi0OJmB9/TgrVRkP+7a2Dm82bvE77w/Nu2u03m/kbxfyfiw=='></script>
<script data-wp-strategy="defer" defer id="tiled-gallery-js" src="/wp-content/mu-plugins/jetpack-plugin/moon/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js?m=1755006225i&#038;ver=15.9-a.8"></script>
<script id="sharing-js-js-extra">
var sharing_js_options = {"lang":"en","counts":"1","is_stats_active":"1"};
//# sourceURL=sharing-js-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??/wp-content/mu-plugins/carousel-wpcom/carousel-wpcom.js,/wp-content/mu-plugins/jetpack-plugin/moon/_inc/build/sharedaddy/sharing.min.js?m=1761899756j'></script>
<script id="sharing-js-js-after">
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-twitter' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-twitter' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtwitter', 'menubar=1,resizable=1,width=600,height=350' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-linkedin' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-linkedin' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomlinkedin', 'menubar=1,resizable=1,width=580,height=450' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-facebook' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-facebook' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomfacebook', 'menubar=1,resizable=1,width=600,height=400' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-tumblr' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-tumblr' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtumblr', 'menubar=1,resizable=1,width=450,height=450' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-telegram' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-telegram' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtelegram', 'menubar=1,resizable=1,width=450,height=450' );
						return false;
					}
				} );
			} )();
//# sourceURL=sharing-js-js-after
</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","jquery-core","jquery-migrate","jquery","imagesloaded","masonry","pinboard-script","wpcom-actionbar-placeholder","widget-bump-view","grofiles-cards","wpgroho","jetpack_likes_queuehandler","the-neverending-homepage","coblocks-loader","pinboard-small-menu","jetpack-facebook-embed","jetpack-carousel","tiled-gallery","carousel-wpcom","sharing-js"] );
				extend( window.infiniteScroll.settings.styles, ["jetpack_likes","the-neverending-homepage","coblocks-frontend","wpcom-core-compat-playlist-styles","wpcom-text-widget-styles","wpcom-bbpress2-staff-css","pinboard-style","reblogging","geo-location-flair","a8c-global-print","sharedaddy","social-logos","h4-global","widget-grid-and-list","wp-emoji-styles","wp-block-library","classic-theme-styles","wp-block-styles-placeholder","wp-global-styles-placeholder","pinboard-radley","pinboard-damion","jetpack_facebook_likebox","jetpack-global-styles-frontend-style","wp-block-image","wp-block-paragraph","global-styles","jetpack-swiper-library","jetpack-carousel","jetpack-subscriptions","jetpack-top-posts-widget","tiled-gallery","core-block-supports-duotone"] );
			})();
		</script>
				<span id="infinite-aria" aria-live="polite"></span>
			<iframe src='https://widgets.wp.com/likes/master.html?ver=20260608#ver=20260608' scrolling='no' id='likes-master' name='likes-master' style='display:none;'></iframe>
	<div id='likes-other-gravatars' role="dialog" aria-hidden="true" tabindex="-1"><div class="likes-text"><span>%d</span></div><ul class="wpl-avatars sd-like-gravatars"></ul></div>
	<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':'56823571','blog_tz':'-4','user_lang':'en','blog_lang':'en','user_id':'0'}]);
		// Prevent sending pageview tracking from WP-Admin pages.
		_stq.push(['view', {'blog':'56823571','v':'wpcom','tz':'-4','user_id':'0','arch_home':'1','subd':'luthar2'}]);
		_stq.push(['extra', {'crypt':'UE5tW3cvZGRDdkwzNnM/ST11RjZBdnVwamNkLHBYZFFQTC1BV10wQTFpVTcuWDA3LEwzcXNWbUthWT9PNUxJMVNPUFFDZn5NVE96SG1jaGZtdCZPYjNFZS1CQWM5b2UleUF2d2FEeWVCY1JWQnx3YlpHZi9NP05sZEwtV3ZDMzI3V1NPT2lqaWYmYXhZc254KzRZUkU4LEF8X25CTFZOTCZuVThmaWdrcTd8ZmZLdjhiQUIsSGpZXUVsX1RVX1ZSSERhVFMsOCtKS1k0QTlybTUyPUJXfjVGbkdrSGZ4TzVsUCZ0SmFBYVFxUDJsMXluSEcsRDhaUkU1YnI5JlssV19daGhrVEJDVzlEcW1iYnlIQmZJPUh+'}]);
_stq.push([ 'clickTrackerInit', '56823571', '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="America/New_York" data-custom-props="{&quot;enq_jquery&quot;:&quot;1&quot;,&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;premium\/pinboard&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>