Jesus and the disciples slip away from the crowds. They find them in Capernaum and as Jesus for clarification. The answer is probably not what they expected.
John 6:22-59
Healings at Gennesaret
Jesus is now a recognizable figure in the area, so people bring sick to him for healing.
Matthew 14:34-36, Mark 6:53-56
Talk about making Jesus King and Walking on the water
As the crowds consistently gather, it’s no surprise that some would start to consider Jesus as king.
Matthew 14:22-33, Mark 6:45-52, John 6:14-21
Feeding the 5,000
One of the few miracles covered by all four Gospels, Jesus steps in and feeds a huge crowd. The Disciples hadn’t eaten, and it was getting late. Jesus understands these difficulties and chooses to feed the crowd.
Matthew 14:15-21, Mark 6:35-44, Luke 9:12-17, John 6:4-13
Mark 6:31 adds an interesting detail: “they did not even have a chance to eat.” It makes me smile when I think about the disciples suggesting to Jesus that they should send the people away so they can eat, after all, it’s getting late (oh, and by the way Jesus, we’re starving). It’s not that they were overly selfish; they were hungry.
Jesus, of course, hears through their concerns and decides it is time to teach them a new lesson. They’ve just returned from their first preaching tour when Jesus tells them to gather whatever food they have to feed the people. Remember, the number 5,000 refers to the men. There were women and children present as well, so the total fed is likely 10,000 or more. The actual number isn’t significant. Nothing short of a miracle was required to feed such a large group.
This is such a significant miracle, but so many try to rationalize it away. Perhaps these reasons are worth pursuing, but I don’t find myself motivated to think about this at this time.
This phrase jumped out to me this morning:
Twelve basketfuls of broken pieces
The Old Testament provides an incredible story of the roller-coaster ups and downs of our ancestors. Is there a story in the symbolism here?
Twelve tribes, broken pieces, leftovers.
It seems that we too often find ourselves as leftover pieces in this broken world. The path on which this country is heading will no doubt continue to break us into smaller and smaller families of Christ. If I understood the prophesies better, I might be able to point to current issues as foreseen by Isaiah, Jeremiah, and Ezekiel and others. Though much of their words were specifically for Israel, what we see today appears more and more relevant. Sad. Even worse than sad, it’s dangerous. My heart breaks for those who look at God and claim he doesn’t exist. The religion of no religion is beyond foolishness and a cancer that is tearing us apart as a nation and ultimately as a world.
Disciples return, Prelude to feeding 5,000
The Disciples return from their assignments and gather to tell Jesus about their experiences. The crowds begin to gather as they recognize them.
Matthew 14:13-14, Mark 6:31-34, Luke 9:10b-11, John 6:1-3 Continue reading “Disciples return, Prelude to feeding 5,000”
John the Baptist Beheaded
This sad narrative of John the Baptist as the first martyr in the legacy of Christ.
Matthew 14:1-12, Mark 6:14-29, Luke 9:6-9
The Workers are Few, Jesus Sends out the Twelve
We begin this section with one of the most famous quotes in Matthew: “The harvest is plentiful but the workers are few.”
The Workers are Few: Matthew 9:35-38
Jesus Sends out the Twelve: Matthew 10:1-42, Mark 6:7-11, Luke 9:1-5
A Prophet without Honor
Matthew ends this interesting section with a sad statement: “And he did not do many miracles there because of their lack of faith.”
Matthew 13:54-58, Mark 6:1-6Jesus heals the blind and the mute
Three miracles of healing and another blasphemous accusation: Matthew 9:27-34
Multidimensional Associative Array Sorting in PHP
I needed to sort a deep multidimensional associative array for PlanterApp, so I looked around for some solutions. The one I found was close enough to the right answer that I was able to make it work by defining a function, then referring to that function as follows:
function sortMyTools( $i, $j ) { // function sort the Tools array by [Tool][name]
$a = $i['Tool']['name'];
$b = $j['Tool']['name'];
if ($a == $b) return 0;
elseif ($a > $b) return 1;
else return -1;
}
uasort($tools, sortMyTools ); // uasort() using the function
Since the enormous $tools array has many levels, this cool code provides a great answer to sorting on the tool name element quite nicely.
Credits to:
http://stackoverflow.com/users/468793/kapa
re: http://stackoverflow.com/questions/7983822/sort-a-multi-dimensional-associative-array
Note: uasort — Sort an array with a user-defined comparison function and maintain index association
