<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>In Awe of Him Ministries</title>
<link>http://tj.preachersweb.org/</link>
<description>The Web Ministry of TJ Singleton</description>
<copyright>Copyright 2006</copyright>
<lastBuildDate>Mon, 13 Feb 2006 12:37:58 -0500</lastBuildDate>
<generator>http://www.movabletype.org/?v=3.2</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs> 

<item>
<title>Remembering Checkboxes</title>
<description><![CDATA[<p>Here is an example of remembering checkboxes in php. It was brought on by <a href="http://www.christian-web-masters.com/forums/index.php?s=&showtopic=9237&view=findpost&p=80831">Make Checkboxes Sticky @ Christian Web Masters</a>. Suggestions welcome.</p>
<h2>Example:</h2>
<?php
/**
* Sets the default number of rows to 10, if rows not set on the form
**/
if (!isset($_POST['rows']))
{
    define("ROWS", 10);
} else {
    define("ROWS", $_POST['rows']);
}
?>
<form method="post">
    <p><label for="rows">Number of Rows to Fetch: </label>
       <input type="text" 
              name="rows"
              value="<?php echo ROWS ?>" />
    </p>
    <table>
<?php

$fakeMySQLResults = fakeMySQLResults(ROWS);

while ($row = fakeMySQLAssoc($fakeMySQLResults)) { 
    $checked = stickifyCheckboxes($row['position_id'], $_POST['applying_for']);
    echo 
'         <tr>
            <td>
              <input type="checkbox" 
                     value="'.$row['position_id'].'" 
                     name="applying_for[]" 
                     '.$checked.' />
            </td>
            <td>
                <b>'.$row['positiontitle'].'</b>
            </td>
            <td>
                '.$row['positiondes'].'
            </td>
         </tr>'."\n";
}
?>
    </table>
    <p><input type="submit" /></p>
</form>

       
<?php 
/**
* Returns checked it the needle $checkboxValue is found in $checkboxArray
**/
function stickifyCheckboxes($checkboxValue, $checkboxArray)
{
    if(!isset($checkboxArray)) {
        return null;
    } else if(in_array($checkboxValue, $checkboxArray)) {
        return 'checked="checked"';
    }
}
       
/**
* Simulates a MySQL query to match the given example
**/
function fakeMySQLResults($numOfRows='10')
{
    for($i=1; $i <= $numOfRows; $i++) {
       
        $fakeMySQLarray[] = array("position_id"   => "$i$i$i$i$i$i",
                                  "positiontitle" => "Title $i",
                                  "positiondes"   => "Description of $i");
    }
    return $fakeMySQLarray;
}

/**
* Simulates retriving a MySQL query result as an array
**/
function fakeMySQLAssoc(&$fakeMySQLResults)
{
    return array_shift($fakeMySQLResults);
}
?>
<h2>Code:</h2>
<textarea cols="65">
<?php
$code = <<<EOS
<?php
/**
* Sets the default number of rows to 10, if rows not set on the form
**/
if (!isset(\$_POST['rows']))
{
    define("ROWS", 10);
} else {
    define("ROWS", \$_POST['rows']);
}
?>
<form method="post">
    <p><label for="rows">Number of Rows to Fetch: </label>
       <input type="text" 
              name="rows"
              value="<?php echo ROWS ?>" />
    </p>
    <table>
<?php

\$fakeMySQLResults = fakeMySQLResults(ROWS);

while (\$row = fakeMySQLAssoc(\$fakeMySQLResults)) { 
    \$checked = stickifyCheckboxes(\$row['position_id'], \$_POST['applying_for']);
    echo 
'         <tr>
            <td>
              <input type="checkbox" 
                     value="'.\$row['position_id'].'" 
                     name="applying_for[]" 
                     '.\$checked.' />
            </td>
            <td>
                <b>'.\$row['positiontitle'].'</b>
            </td>
            <td>
                '.\$row['positiondes'].'
            </td>
         </tr>'."\n";
}
?>
    </table>
    <p><input type="submit" /></p>
</form>

       
<?php 
/**
* Returns checked it the needle \$checkboxValue is found in \$checkboxArray
**/
function stickifyCheckboxes(\$checkboxValue, \$checkboxArray)
{
    if(!isset(\$checkboxArray)) {
        return null;
    } else if(in_array(\$checkboxValue, \$checkboxArray)) {
        return 'checked="checked"';
    }
}
       
/**
* Simulates a MySQL query to match the given example
**/
function fakeMySQLResults(\$numOfRows='10')
{
    for(\$i=1; \$i <= \$numOfRows; \$i++) {
       
        \$fakeMySQLarray[] = array("position_id"   => "\$i\$i\$i\$i\$i\$i",
                                  "positiontitle" => "Title \$i",
                                  "positiondes"   => "Description of \$i");
    }
    return \$fakeMySQLarray;
}

/**
* Simulates retriving a MySQL query result as an array
**/
function fakeMySQLAssoc(&\$fakeMySQLResults)
{
    return array_shift(\$fakeMySQLResults);
}
?>
EOS;
echo(htmlentities($code)); 
?>
</textarea>]]></description>
<link>http://tj.preachersweb.org/archives/web_head/remembering_che.php</link>
<guid>http://tj.preachersweb.org/archives/web_head/remembering_che.php</guid>
<category>Web Head</category>
<pubDate>Mon, 13 Feb 2006 12:37:58 -0500</pubDate>

</item>
<item>
<title>Spiritual Gifts Inventory</title>
<description><![CDATA[<p><img title="Spiritual Gift Inventory" alt="Spiritual Gift Inventory" src="http://tj.preachersweb.org/images/spiritualgifts.gif" /></p> <p>Today in class we took as spiritual gift inventory to help us better to understand in what areas God has blessed us. It was pretty intresting and enlightening to see what our strong areas were. For instance, I never would have considered myself a mercy shower, but in retropect it does seem to fit me as my heart can be broken easy over other's situations.</p>
<p>Note: It's not the length of the line that is important, but the relation to the others.</p>]]></description>
<link>http://tj.preachersweb.org/archives/day_to_day/post_1.php</link>
<guid>http://tj.preachersweb.org/archives/day_to_day/post_1.php</guid>
<category>Day to Day</category>
<pubDate>Tue, 31 Jan 2006 11:43:56 -0500</pubDate>

</item>
<item>
<title>The Application of Redemption</title>
<description><![CDATA[    <h3>The Work of the Holy Spirit in Salvation</h3>
    <p>
      We must come to the realization that salvation is a
      multi-faceted process that has been the culmination of the
      will and plan of God from before the foundations of the
      world. From out of the good pleasure of His will, he purposed
      from eternity past to redeem an unworthy multitude to be his
      chosen people. Throughout the history of the world God has
      providentially directed the affairs of man that in the
      fullness of time Christ would die in our place to redeem
      those that the heart of God has in awe-inspiring free grace
      loved from eternity. It was that same divine providence that,
      in the fullness of time in the life of the sinner, sent the
      Holy Spirit to apply the salvation to the heart of those whom
      Christ redeemed.
    </p>
    <p>

      It was God the Father that has appropriated our redemption.
      He has done the work of setting us aside. God, the Son, has
      accomplished our redemption. He was the ransom payment and
      the satisfaction for our sin to reconcile us to God. It was
      God, the Holy Spirit, which applied the redemption wrought in
      Christ to our hearts. A part of the work of the Holy Ghost in
      the application of redemption is that which we experience in
      the new birth and our being brought to faith in Christ. It is
      upon this subject that we will embark upon its understanding.
    </p>
    <p>
      The question, which lies at the center of our study, is how
      the sinner is to partake of the accomplished work of Christ.
      To properly address this question, we must discern that it is
      not a single isolated act but a compilation of unified
      workings of the Holy Ghost.&nbsp; It was the great theologian
      and Christian writer, John Murray that said:
    </p>
    <p>
      When we think of the application of redemption we must not
      think of it as one simple and indivisible act. It comprises a
      series of acts and processes. To mention some, we have
      calling, regeneration, justification, adoption,
      sanctification, and glorification. These are all distinct,
      and not one of these can be defined in terms of the other.
      Each has its own distinct meaning, function, and purpose in
      the action and grace of God. <a href="#_ftn1" name="_ftnref1"
      title="">[1]</a>
    </p>

    <p>
      Therefore, let us examine these works progressively as
      experienced by the believer.
    </p>
    <p>
      As the farmer must first plough the field in order that fruit
      may grow, the Holy Spirit begins by convicting hearts of sin,
      righteousness, and judgment<a href="#_ftn2" name="_ftnref2"
      title="">[2]</a>.&nbsp; Conviction is the act of the Holy
      Spirit convincing the sinner of his sin, the righteousness
      that is found in Christ, and the judgment that is to come.
      Yet, conviction, in and of itself, is inadequate to be left
      to stand alone.
    </p>
    <p>
      Not all those, who are convicted of the Holy Ghost, will turn
      in faith and repentance to Christ.&nbsp; For those vessels of
      wrath, who have fitted themselves for destruction<a href=
      "#_ftn3" name="_ftnref3" title="">[3]</a>, the process of
      conviction only adds to their offence. They, instead of
      becoming tender to the revelation of the Sprit, become
      further hardened in their stony hearts.
    </p>

    <p>
      Even through the general call of the gospel, combined with
      the Spirit&rsquo;s conviction, man, in his natural condition,
      is unable to come to faith due to his total depravity. Christ
      describes the condition of man outside of the grace of God in
      John 3:19-20:
    </p>
    <p>
      And this is the condemnation, that light is come into the
      world, and men loved darkness rather than light, because
      their deeds were evil. For every one that doeth evil hateth
      the light, neither cometh to the light, lest his deeds should
      be reproved.
    </p>
    <p>
      Notice that we, because to our love for sin and hate of
      righteousness, would not come to the light. What a pitiful
      condition of the man outside of Christ!
    </p>
    <p>

      Paul goes further saying that man is, &ldquo;dead in
      trespasses and sins.&rdquo;<a href="#_ftn4" name="_ftnref4"
      title="">[4]</a> There is no spiritual life. Spiritually,
      natural man is dead!&nbsp; In another passage, Paul brings
      another indictment against man that &ldquo;there is none that
      seeketh after God.&rdquo;<a href="#_ftn5" name="_ftnref5"
      title="">[5]</a>
    </p>
    <p>
      Nevertheless, for those whom God has covenanted with Christ
      to save conviction is a stepping stone in the path of the
      effectual call. We have already stated that not all men, who
      are convicted, will respond. To state it more clearly,
      outside of grace and left in the freedom of our will to
      choose that which we love, namely sin, we would never choose
      him. The Holy Spirit must overcome our natural resistance in
      our hearts to God if we are ever to respond in faith and
      repentance through his drawing<a href="#_ftn6" name=
      "_ftnref6" title="">[6]</a>.
    </p>

    <p>
      Therefore, all men that are drawn will respond in repentance
      and faith. For Christ said in John 6:44 that &ldquo;No man
      can come to me, except the Father which hath sent me draw
      him: and I will raise him up at the last day.&rdquo; In this
      verse we see man&rsquo;s inability to come and the drawing
      that must happen which will result in the resurrection at the
      last day.
    </p>
    <p>
      He accomplishes this through what many theologians have
      titled the effectual call. To overcome our deadness in sin he
      has quickened us. <a href="#_ftn7" name="_ftnref7" title=
      "">[7]</a> To overcome our love for the darkness, but He
      &ldquo;commanded the light to shine out of darkness, hath
      shined in our hearts, to give the light of the knowledge of
      the glory of God in the face of Jesus Christ.<a href="#_ftn8"
      name="_ftnref8" title="">[8]</a>&rdquo; Since we would not
      seek Him He sought us. This is the ministry the prophet Hosea
      spoke of when he said, &ldquo;I drew them with cords of a
      man, with bands of love: and I was to them as they that take
      off the yoke on their jaws, and I laid meat unto
      them.&rdquo;<a href="#_ftn9" name="_ftnref9" title="">[9]</a>

    </p>
    <p>
      Being brought to life in Christ through the Holy Ghost
      enables us to turn from our sin in repentance and to Christ
      in faith<a href="#_ftn10" name="_ftnref10" title="">[10]</a>.
      This process of the effectual call will necessarily result in
      the conversion just as Christ said that &ldquo;all that the
      Father giveth me shall come to me.&rdquo;<a href="#_ftn11"
      name="_ftnref11" title="">[11]</a> Also, the need for the
      Holy Spirit to regenerate is found in His words in John 3:7,
      &ldquo;Ye must be born again.&rdquo; This new birth will
      result in the calling out in faith. It was the great advocate
      for the supremacy of God, John Piper, who said, &ldquo;The
      cry of a new born babe in Christ is faith.&rdquo; Of faith,
      we know that it is said to be given<a href="#_ftn12" name=
      "_ftnref12" title="">[12]</a> and of repentance
      granted,<a href="#_ftn13" name="_ftnref13" title="">[13]</a>

      which is the work of the Holy Spirit.
    </p>
    <p>
      Let us note that we are not implying that you can separate
      these events chronologically, but logically and that they are
      distinct in function. The most clear teaching of this is
      found in Paul&rsquo;s letter to the Romans where he outlines
      what is known as the golden chain of redemption.
    </p>
    <p>
      For whom he did foreknow, he also did predestinate to be
      conformed to the image of his Son, that he might be the
      firstborn among many brethren. Moreover whom he did
      predestinate, them he also called: and whom he called, them
      he also justified: and whom he justified, them he also
      glorified.<a href="#_ftn14" name="_ftnref14" title=
      "">[14]</a>
    </p>

    <p>
      In closing, we must be careful to give God the glory for the
      whole of salvation; the work of the Father, Son, and the Holy
      Ghost. Let us not fail to praise Him for the Spirit&rsquo;s
      portion in the application of what the Father has
      appropriated, and the Son has accomplished. Rather let us
      rejoice in the fullness of our salvation wrought by the
      fullness of our triune God.
    </p>
    <div class="footnotes">
      <div id="ftn1">
        <p class="FootnoteText">
          <a href="#_ftnref1" name="_ftn1" title="">[1]</a> Redemption: Accomplished
          and Applied by John Murray, p. 79, 80
        </p>

      </div>
      <div id="ftn2">
        <p class="FootnoteText">
          <a href="#_ftnref2" name="_ftn2" title="">[2]</a> John 16:8
        </p>
      </div>
      <div id="ftn3">
        <p class="FootnoteText">

          <a href="#_ftnref3" name="_ftn3" title="">[3]</a> Rom 9:22
        </p>
      </div>
      <div id="ftn4">
        <p class="FootnoteText">
          <a href="#_ftnref4" name="_ftn4" title="">[4]</a> Eph 2:1
        </p>
      </div>

      <div id="ftn5">
        <p class="FootnoteText">
          <a href="#_ftnref5" name="_ftn5" title="">[5]</a> Rom 3:11
        </p>
      </div>
      <div id="ftn6">
        <a href="#_ftnref6" name="_ftn6" title="">[6]</a> John 6:44
        </p>

      </div>
      <div id="ftn7">
        <p class="FootnoteText">
          <a href="#_ftnref7" name="_ftn7" title="">[7]</a> Eph 2:1
        </p>
      </div>
      <div id="ftn8">
        <p class="FootnoteText">

          <a href="#_ftnref8" name="_ftn8" title="">[8]</a> 2 Cor 4:6
        </p>
      </div>
      <div id="ftn9">
        <p class="FootnoteText">
          <a href="#_ftnref9" name="_ftn9" title="">[9]</a> Hosea 11:4
        </p>
      </div>

      <div id="ftn10">
        <p class="FootnoteText">
          <a href="#_ftnref10" name="_ftn10" title="">[10]</a> Acts 20:21
        </p>
      </div>
      <div id="ftn11">
        <p class="FootnoteText">
          <a href="#_ftnref11" name="_ftn11" title="">[11]</a> John 6:37
        </p>

      </div>
      <div id="ftn12">
        <p class="FootnoteText">
          <a href="#_ftnref12" name="_ftn12" title="">[12]</a> Eph 2:8
        </p>
      </div>
      <div id="ftn13">
        <p class="FootnoteText">

          <a href="#_ftnref13" name="_ftn13" title="">[13]</a> Acts 11:18
        </p>
      </div>
      <div id="ftn14">
        <p class="FootnoteText">
          <a href="#_ftnref14" name="_ftn14" title="">[14]</a> Rom 8:29-30
        </p>
      </div>

    </div>]]></description>
<link>http://tj.preachersweb.org/archives/sermons_and_studies/the_application.php</link>
<guid>http://tj.preachersweb.org/archives/sermons_and_studies/the_application.php</guid>
<category>Sermons and Studies</category>
<pubDate>Mon, 30 Jan 2006 11:42:26 -0500</pubDate>

</item>
<item>
<title>Laying it out there</title>
<description><![CDATA[<blockquote cite="II Kings 19">
    <b>14. </b> And Hezekiah received the letter of the hand of the messengers,
                and read it: and Hezekiah went up into the house of the LORD, and 		
                spread it before the LORD. 	
    <b>15. </b> And Hezekiah prayed before the LORD, and said, O LORD God of 		
                Israel, which dwellest [between] the cherubims, thou art the God,
                [even] thou alone, of all the kingdoms of the earth; thou hast made 		
                heaven and earth. 	
    <b>16. </b> LORD, bow down thine ear, and hear: open, LORD, thine eyes, and 		
                see: and hear the words of Sennacherib, which hath sent him to 		
                reproach the living God. 	
    <b>17. </b> Of a truth, LORD, the kings of Assyria have destroyed the nations 		
                and their lands, 	
    <b>18. </b> And have cast their gods into the fire: for they [were] no gods, 		
                but the work of men's hands, wood and stone: therefore they have 		
                destroyed them. 	
    <b>19. </b> Now therefore, O LORD our God, I beseech thee, save thou us out of 		
                his hand, that all the kingdoms of the earth may know that thou 		
                [art] the LORD God, [even] thou only.
</blockquote>

<p>Hezekiah upon reading this letter became deeply vexed. What was his comfort in
this time of trouble? He made haste to the house of the Lord, and spread out his
problem before the Lord. When was the last time you laid it all out there before
God?</p>
<p>We are quick to spread out our problems before our family. We unload on our 
co-workers. We even tell our fellow church members. We take our problems to 
anyone who will sympatize with us, yet are we taking it before God who alone can
provide real help?</p>
<p>I've found from the hard schoolmaster of experience that the matters that I 
most need to spread before the Lord, I don't. I keep them to myself to vex me, 
or I unload them to my wife or friend. Still, I don't bring them before my Lord 
who awaits me that he might help me.</p>
<p>What happened when he spread out his problems before the Lord? In the next 
verse God, through Isaiah, says "I have heard." He answers! All we have to do is
lay it out there in it's entirety before him and he will come to our aid. He 
has never failed us yet! NOR COULD HE!</p>
<p>Why is it that we fail to lay it before the Lord? Is it that we are too full
of pride? Is it that we don't want to give up control? Is it we don't want to 
admit our problems? Maybe we are just foolish? I can't answer that, but I can 
say there is not a good reason not to spread it before him.<p>
<p>So Friend, no matter the problems you are facing, just lay it out before him 
and await with eagerness the sweet sound of his voice whispering to your soul, 
"I have heard."</p>]]></description>
<link>http://tj.preachersweb.org/archives/reflections/post.php</link>
<guid>http://tj.preachersweb.org/archives/reflections/post.php</guid>
<category>Reflections</category>
<pubDate>Wed, 25 Jan 2006 23:33:14 -0500</pubDate>

</item>
<item>
<title>Bible Reader Alpha</title>
<description><![CDATA[<p>I've been working a little on an alpha version of Bible Reader. It's coming together nicely. I'd love to get some feedback on how it's coming together!</p><p><a href="http://bible.preachersweb.org/test/readertest.php?book=Romans&chapter=8" target="_self" title="Bible Reader Alpha">Bible Reader Alpha</a><br /> </p>]]></description>
<link>http://tj.preachersweb.org/archives/web_head/bible_reader_al.php</link>
<guid>http://tj.preachersweb.org/archives/web_head/bible_reader_al.php</guid>
<category>Web Head</category>
<pubDate>Wed, 16 Nov 2005 11:16:26 -0500</pubDate>

</item>
<item>
<title>Grades</title>
<description><![CDATA[<p>Well I got my grades for this trimester.</p> <ol>   <li>Pastoral Counseling - A</li>   <li>Doctrine of Escatology - A+ <br />   </li>   <li>Missions - A+</li>   <li>Baptist History - A+</li>   <li>Holy Spirit - A</li>   <li>Pauline Theology - B+<br />   </li> </ol> ]]></description>
<link>http://tj.preachersweb.org/archives/day_to_day/grades.php</link>
<guid>http://tj.preachersweb.org/archives/day_to_day/grades.php</guid>
<category>Day to Day</category>
<pubDate>Wed, 16 Nov 2005 10:55:51 -0500</pubDate>

</item>
<item>
<title>Crucify Me, O Lord</title>
<description><![CDATA[<blockquote><p>&quot;Search me, O God, and know my heart: try me, and know my thoughts:<br />And see if there be any wicked way in me, and lead me in the way everlasting.&quot;</p> <p>(Psalms 139:23-24)</p></blockquote>   <p>The longer I live the more I realize my heart is wicked and I need God to purify me. I need him to restrain me from evil thoughts and sinful deeds. No matter how hard I try to live right I find that my flesh rises up in me and as a great wieght to my soul drawing me down. </p><p>I am not saying I do not sin willingly, for my flesh is willing. Alas, my inward man hates it. I've come to hate myself in that I hate the sin I do. Like Paul I wish to cry out for deliverance from myself.<br /> </p> <blockquote><p>&quot;I find then a law, that, when I would do good, evil is present with me.For I delight in the law of God after the inward man:But I see another law in my members, warring against the law of my mind, and bringing me into captivity to the law of sin which is in my members.</p> <p><strong>O wretched man that I am! who shall deliver me from the body of this death?</strong> I thank God through Jesus Christ our Lord. So then with the mind I myself serve the law of God; but with the flesh the law of sin.</p> <p>(Romans 7:21-25)</p></blockquote><p>My spirit longs for the day when at Christ's return I will be glorified never to sin again. Men have preached a 3-fold salvation being that of the power of sin, the price of sin, and the presence of sin. Yet, I am looking for that day when I will be completly delivered from the pleasure of sin. The process has been started as I hate that sin that dwells in me, but from the testomony of those older than I, they still fight the flesh.</p><p>So I pray that the Lord to search me. To seek out that evil that I might crucify it. That I might recokon myself dead to it. That I may live for God and not serve the sin. Again Paul said, <br /> </p><blockquote><p>&quot;I am crucified with Christ: nevertheless I live; yet not I, but Christ liveth in me: and the life which I now live in the flesh I live by the faith of the Son of God, who loved me, and gave himself for me.&quot;</p> <p>Galatians 2:20</p></blockquote> <p>Each day I pray God purify me and clear my mind and heart of evil. O Lord, Crucify me! Live through me! Let me be conformed to the image of your Son, Jesus! As the hymn-writer said:<br /> </p> <blockquote><p>&quot;Searcher of hearts, from mine erase<br /> All thoughts that should not be,<br /> And in its deep recesses trace<br /> My gratitude to Thee.&quot;</p><p><em><a target="_blank" href="http://www.cyberhymnal.org/bio/m/o/r/morris_gp.htm">George P. Morris</a> &nbsp;</em></p></blockquote><p>Let us live in the newness of life, and be controlled by the Spirit. Yet we are unable to do it, let God do it for us and enable us. O' how each day I realize my total dependence on Him. Lord, help us to live for you and sin not.<br /> </p>]]></description>
<link>http://tj.preachersweb.org/archives/reflections/crucify_me_o_lo.php</link>
<guid>http://tj.preachersweb.org/archives/reflections/crucify_me_o_lo.php</guid>
<category>Reflections</category>
<pubDate>Wed, 09 Nov 2005 08:10:52 -0500</pubDate>

</item>
<item>
<title>There is none like God!</title>
<description><![CDATA[<blockquote><p>&quot;Who is like unto Thee, O LORD, among the gods? who is like Thee, glorious in holiness, fearful in praises, doing wonders?&quot; (Ex. 15:11) </p></blockquote><p>The truth that God is unequaled by anyone or anything has been flooding my thought the past week. God alone is perfect in His excellence. The Triune Jehovah, the self sufficient God, who exists in three persons,&nbsp;dwelt in perfect unity within Himself. He had no need&nbsp;or required no help from any other&nbsp;source. He is perfect. We can add nothing to Him or His glory, nor can we take anything away! </p><p>I am in awe of the God I serve. The one who before the foundations of the world by His sovereign decree choose to save sinners. The Father who sent His son, my Lord, Jesus Christ to obtain the atonement for my sins and the sins of His church.&nbsp;That He would send the Holy Spirit to birthed me into the His family and produce faith in me! He is above all! The King of Kings, and Lord of Lords, the Almighty, Creator and Sustainer! </p><p>Has Budda ever done such? Has Allah? I think not! There is none like the God of the Bible! He stands exalted above all. Worship Him for his unequaled perfection!</p><blockquote><p>None is like God, Who reigns above,<br />So great, so pure, so high;<br />None is like God, Whose Name is Love,<br />And Who is always nigh.&nbsp;<br />-<a href="http://preachersweb.org/bio/b/u/r/burton_jjr.htm" target="_blank">John Bur&shy;ton, Jr.</a></p></blockquote>]]></description>
<link>http://tj.preachersweb.org/archives/reflections/there_is_none_l_1.php</link>
<guid>http://tj.preachersweb.org/archives/reflections/there_is_none_l_1.php</guid>
<category>Reflections</category>
<pubDate>Wed, 09 Nov 2005 01:16:34 -0500</pubDate>

</item>
<item>
<title>Christian Work at Home Moms: CWAHM</title>
<description><![CDATA[<blockquote><p>&quot;For over 5 years, Christian Work at Home Moms, <a href="http://www.cwahm.com/" target="_self">CWAHM.com</a>, has been providing resources to help moms find a great work at home career and to help current work at home moms market their businesses at a fraction of the cost you'd find on other websites. Christian WAHM's can find everything they need here - from information to advertising to button and banner design!</p></blockquote><p>I met <a href="http://cwahm.com/about/about.htm" target="_self">Jill</a>, the founder of <a href="http://www.cwahm.com/" target="_self">CWAHM.com</a>,&nbsp;at <a href="http://tj.preachersweb.org/archives/2005/05/why_do_i_love_c.php" target="_self">CWM</a> as she was looking for a <a href="http://www.php.net/" target="_self">PHP</a> programmer. I designed the system in place to manage her <a href="http://www.cwahm.com/business-leads.htm" target="_self">LEADS</a> program that provides&nbsp;christian moms with <a href="http://www.cwahm.com/leads_database/leadsform.htm" target="_self">information and resources</a> for getting started working at home. While working for her, I found her spirit to be upbeat and inspiring, even in the face of devistating errors (Well, semi-sort-of-not-so-much devistating quirks!)!</p><p>At <a href="http://www.cwahm.com/" target="_self">CWAM</a> there are all sorts of great <a href="http://www.cwahm.com/univ/articles.htm" target="_self">articles</a>, <a href="http://www.cwahm.com/radio/radio-podcast.htm" target="_self">radio casts</a>, and even a <a href="http://www.cwahm.com/messageboard/" target="_self">forum</a> for fellowshiping and asking questions. They hold great <a href="http://www.cwahm.com/activities/contest.htm" target="_self">contests</a> and offer a<a href="http://www.cwahm.com/news/news.htm" target="_self"> free devotional book</a>!&nbsp;If you have a site you might even want to submit it to their <a href="http://www.cwahm.com/links/links.htm" target="_self">directory</a>. Or even just browse through it. Also if your looking for a place to <a href="http://www.cwahm.com/ads/advertise.htm" target="_self">advertise</a>, you've found a great spot to do it&nbsp;with the&nbsp;great traffic at <a href="http://www.cwahm.com/" target="_self">CWAHM</a>.They will even help with the <a href="http://www.cwahm.com/banner-design.htm" target="_self">graphic design!</a></p><p>Thanks Jill for such a great resource! And yes I know I'm not a <a href="http://www.cwahm.com/" target="_self">CWAHM</a>, but my wife will be one day!</p>]]></description>
<link>http://tj.preachersweb.org/archives/people_and_places/christian_work.php</link>
<guid>http://tj.preachersweb.org/archives/people_and_places/christian_work.php</guid>
<category>People and Places</category>
<pubDate>Wed, 09 Nov 2005 00:14:17 -0500</pubDate>

</item>
<item>
<title>James Mitchell</title>
<description><![CDATA[<p><a href="http://www.mitchellgallery.us/" target="_self">James Mitchell</a> is a dear friend of mine from <a href="http://www.mitchellgallery.us/?s=indiana" target="_self">Indiana</a>. He is the lead web designer for <a href="http://www.christiandesigns.org/" target="_self">Christian Designs</a>&nbsp;and the founder of <a href="http://www.designstudiomag.com/" target="_self">Design Studio Magazine</a> (<a href="http://tj.preachersweb.org/archives/2005/11/design_studio_m.php" target="_self">related</a>). We met at that place I hang around often, <a href="http://tj.preachersweb.org/archives/2005/05/why_do_i_love_c.php" target="_self">CWM</a>. </p><p>Besides being a great guy with a very kind spirit, we share a lot of the same viewpoints of doctrine and bible topics. Therefore, we know he is smart since we think alike. His father is his pastor at <a href="http://www.memorialbaptistfw.org/" target="_self">Memorial Baptist</a>&nbsp;in Fort Wayne. </p><p><a href="http://www.mitchellgallery.us/" target="_self">James</a> is someone I'm proud to call a friend and a brother in Christ.</p>]]></description>
<link>http://tj.preachersweb.org/archives/people_and_places/james_mitchell.php</link>
<guid>http://tj.preachersweb.org/archives/people_and_places/james_mitchell.php</guid>
<category>People and Places</category>
<pubDate>Tue, 08 Nov 2005 23:50:41 -0500</pubDate>

</item>
<item>
<title>Design Studio Magazine</title>
<description><![CDATA[<p><a href="http://www.designstudiomag.com/" target="_self">Design Studio Magazine</a> is &quot;The Web Design Magazine for All&quot; and it's focus is Connecting Designers. They want to get designers hooked up with the helps they need be it new friends, the best software, or&nbsp;great resources both from the <a href="http://www.designstudiomag.com/" target="_self">magazine</a> and from their <a href="http://www.designstudiomag.com/resource_directory/list/onecat/" target="_self">directory</a>. From <a href="http://www.designstudiomag.com/basics_corner/" target="_self">basic HTML</a> to <a href="http://www.designstudiomag.com/css/" target="_self">CSS</a>, <a href="http://www.designstudiomag.com/asp.net/" target="_self">ASP</a>, <a href="http://www.designstudiomag.com/php/" target="_self">PHP</a>, <a href="http://www.designstudiomag.com/seo_general/" target="_self">SEO</a> it has a little taste of it all. It's run by <a href="http://www.mitchellgallery.us/" target="_self">James Mitchell</a> (<a href="http://tj.preachersweb.org/archives/2005/11/james_mitchell.php" target="_self">related</a>) and best yet I'm a <a href="http://www.designstudiomag.com/tj_singleton.html" target="_self">writer</a> for it! I am am in charge content for&nbsp;of the <a href="http://www.designstudiomag.com/css/" target="_self">CSS column</a>, imagine that!</p><p>90% of the authors are christians so that adds value to it in my eyes. If your not a code monkey like me maybe you'd enjoy the <a href="http://www.designstudiomag.com/graphics_3d/" target="_self">graphic tutorials</a>. Or maybe your looking for a place to <a href="http://www.designstudiomag.com/advertise_with_us.html" target="_self">advertise</a> your site. If you can't find any other reason, which I couldn't imagine, they run&nbsp;a <a href="http://www.designstudiomag.com/resource_directory/list/onecat/" target="_self">free directory</a> for design related sites you could&nbsp;<a href="http://www.designstudiomag.com/index.php?option=com_bookmarks&task=new&Itemid=51&mode=0&catid=-1&navstart=0&search=*" target="_self">add your site</a>&nbsp;to.</p><p>We are developing a custom CMS for&nbsp;the magazine&nbsp;dubbed Rapid Rock and are really excited about that. Our friend <a href="http://tj.preachersweb.org/archives/2005/10/happy_birthday.php" target="_self">Gabe</a> is helping us develop it and we are grateful for his help!</p><p>All in all, <a href="http://www.designstudiomag.com/" target="_self">Design Studio</a>&nbsp;is a great place to have bookmarked!</p>]]></description>
<link>http://tj.preachersweb.org/archives/people_and_places/design_studio_m.php</link>
<guid>http://tj.preachersweb.org/archives/people_and_places/design_studio_m.php</guid>
<category>People and Places</category>
<pubDate>Tue, 08 Nov 2005 23:17:44 -0500</pubDate>

</item>
<item>
<title>We Spread the Word</title>
<description><![CDATA[<p>Christian webmasters check out <a href="http://www.wespreadtheword.net " target="_blank">We Spread the Word.</a> It is a web directory specifically for you.<br /> </p><a href="http://www.wespreadtheword.net " target="_blank" />]]></description>
<link>http://tj.preachersweb.org/archives/people_and_places/we_spread_the_w.php</link>
<guid>http://tj.preachersweb.org/archives/people_and_places/we_spread_the_w.php</guid>
<category>People and Places</category>
<pubDate>Mon, 24 Oct 2005 17:35:41 -0500</pubDate>

</item>
<item>
<title>Happy Birthday Gabe!</title>
<description><![CDATA[<p>Gabe we just wanted to say thanks for being such a great friend and a wonderful christian. </p><p>So we made you <a href="http://tj.preachersweb.org/flash/gabe.swf" target="_blank" title="Gabe's Birthday Card.">a Card.</a><br /> </p>]]></description>
<link>http://tj.preachersweb.org/archives/people_and_places/happy_birthday.php</link>
<guid>http://tj.preachersweb.org/archives/people_and_places/happy_birthday.php</guid>
<category>People and Places</category>
<pubDate>Sat, 22 Oct 2005 08:24:35 -0500</pubDate>

</item>
<item>
<title>The Supremacy of our Hope</title>
<description><![CDATA[<p><a href="http://tj.preachersweb.org/mp3/supreme_hope.mp3
"><img src="http://tj.preachersweb.org/images/studycast_med.jpg" class="studycast" />Listen to this Study-Cast</a></p>

<p>In this study we will be in Titus 2 looking at the blessed hope of all hopes, the supreme hope of the scriptures, the second coming of our Lord Jeus Christ. I pose this question, "Are you living like you are looking for that hope?"</p>]]></description>
<link>http://tj.preachersweb.org/archives/studycasts/the_supremacy_o.php</link>
<guid>http://tj.preachersweb.org/archives/studycasts/the_supremacy_o.php</guid>
<category>Study-Casts</category>
<pubDate>Mon, 19 Sep 2005 02:13:57 -0500</pubDate>
<enclosure url="http://tj.preachersweb.org/mp3/supreme_hope.mp3
" length="3524951" type="audio/mpeg" />
</item>
<item>
<title>Driving to Work with God</title>
<description><![CDATA[<p>This morning as I drove to work like any other day, I started to sense the overwhelming presence of God in the car with me. I removed the items in the passenger seat and asked the Lord to stay awhile. You may be thinking that I am crazy, but that is ok. The time of fellowship  I had with God and the joy that flooded my soul is hard to beat.</p>
<p>While the tears rolled down my face the phone rung. I was tempted not even to answer it as I didn't what it to interfer with the time of fellowship with God. I did though, and it was my wife. She was concerned due to the sound of my voice. I was torn up and could hardly talk. I managed to get out, "God is riding with me to work... I gotta go."</p>
<p>Such times of fellowship with the Lord are like water to a weary soul. Such fellowship with God also causes me to desire to know Him more no matter the cost. Such fellowship makes me long for the day I can spend eternity worshiping Him in His presence.</p>]]></description>
<link>http://tj.preachersweb.org/archives/day_to_day/driving_to_work.php</link>
<guid>http://tj.preachersweb.org/archives/day_to_day/driving_to_work.php</guid>
<category>Day to Day</category>
<pubDate>Fri, 16 Sep 2005 11:54:26 -0500</pubDate>

</item>


</channel>
</rss>