john golling

thinking out laud

laud  /lôd/
noun
1.   Praise; acclaim; glorification.
2.  A hymn or song of praise.

thinking out LAUD?

function matrix_screen_shortcode( $atts ) {
$atts = shortcode_atts( array(
‘message’ => ‘Wake up, Neo.’,
), $atts, ‘matrix_screen’ );

$output = ‘<div id=”matrix-screen” style=”font-family: monospace;”></div>’;
$output .= ‘<script>’;
$output .= ‘document.addEventListener(“DOMContentLoaded”, function() {‘;
$output .= ‘var message = “‘ . $atts[‘message’] . ‘”;’;
$output .= ‘var screen = document.getElementById(“matrix-screen”);’;
$output .= ‘var interval = setInterval(function() {‘;
$output .= ‘var text = “”;’;
$output .= ‘for (var i = 0; i < 500; i++) {‘;
$output .= ‘text += Math.random() < 0.5 ? “0” : “1”;’;
$output .= ‘}’;
$output .= ‘screen.innerText = text;’;
$output .= ‘}, 100);’;
$output .= ‘setTimeout(function() {‘;
$output .= ‘clearInterval(interval);’;
$output .= ‘screen.innerText = message;’;
$output .= ‘}, 1000);’;
$output .= ‘});’;
$output .= ‘</script>’;

return $output;
}
add_shortcode( ‘matrix_screen’, ‘matrix_screen_shortcode’ );

Sometimes I like to “think out loud”.  Bouncing ideas around with a friend or in a group helps me to be more creative, and also provides feedback to help refine those ideas.

Like the psalmist, I want the words of my mouth and the meditations of my heart to be pleasing to God.  I want my thoughts to be worship and praise that is directed toward my Creator.  In other words, I also hope to think out laud.  And that is what this website is all about.

Enjoy