<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Das Ganze</title>
	<atom:link href="http://dasganze.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dasganze.com</link>
	<description></description>
	<pubDate>Tue, 01 Jul 2008 20:00:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Wordpress: Author List by Category</title>
		<link>http://dasganze.com/wordpress-author-list-by-category/</link>
		<comments>http://dasganze.com/wordpress-author-list-by-category/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 20:00:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[codeRelease]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://dasganze.com/?p=270</guid>
		<description><![CDATA[I just keep functioning out WP! (What can I say, it&#8217;s my job!)
This is a rework of WP&#8217;s own list_authors() function, but with some extra SQL:


&#60;?php

function my_list_authors_by_category($args = '', $cat_id=0) {
global $wpdb;

$defaults = array(
'optioncount' =&#62; false, 'exclude_admin' =&#62; true,
'show_fullname' =&#62; false, 'hide_empty' =&#62; true,
'feed' =&#62; '', 'feed_image' =&#62; '', 'feed_type' =&#62; '', 'echo' =&#62; true
);

$r [...]]]></description>
			<content:encoded><![CDATA[<p>I just keep functioning out WP! (What can I say, it&#8217;s my job!)</p>
<p>This is a rework of WP&#8217;s own list_authors() function, but with some extra SQL:</p>
<pre class="syntax-highlight:php">

&lt;?php

function my_list_authors_by_category($args = '', $cat_id=0) {
global $wpdb;

$defaults = array(
'optioncount' =&gt; false, 'exclude_admin' =&gt; true,
'show_fullname' =&gt; false, 'hide_empty' =&gt; true,
'feed' =&gt; '', 'feed_image' =&gt; '', 'feed_type' =&gt; '', 'echo' =&gt; true
);

$r = wp_parse_args( $args, $defaults );
extract($r, EXTR_SKIP);

$return = '';

/** @todo Move select to get_authors(). */
//    $authors = $wpdb-&gt;get_results(&quot;SELECT ID, user_nicename from $wpdb-&gt;users &quot; . ($exclude_admin ? &quot;WHERE user_login &lt;&gt; 'admin' &quot; : '') . &quot;ORDER BY display_name&quot;);
//replace with the 'author by category' SQL
$authors = $wpdb-&gt;get_results(&quot;SELECT distinct post_author as `ID`, user_nicename FROM `default_posts` as `dp`, `default_terms` as `dt`, `default_term_relationships` as `dtr`,`default_users` as `du` where `dp`.`post_author`=`du`.`ID` and `dp`.`ID`=`dtr`.`object_id` and `dtr`.`term_taxonomy_id`=&quot;.$cat_id.&quot;;&quot;);

$author_count = array();
foreach ((array) $wpdb-&gt;get_results(&quot;SELECT DISTINCT post_author, COUNT(ID) AS count FROM $wpdb-&gt;posts WHERE post_type = 'post' AND &quot; . get_private_posts_cap_sql( 'post' ) . &quot; GROUP BY post_author&quot;) as $row) {
$author_count[$row-&gt;post_author] = $row-&gt;count;
}

foreach ( (array) $authors as $author ) {
$author = get_userdata( $author-&gt;ID );
$posts = (isset($author_count[$author-&gt;ID])) ? $author_count[$author-&gt;ID] : 0;
$name = $author-&gt;display_name;

if ( $show_fullname &amp;&amp; ($author-&gt;first_name != &#8221; &amp;&amp; $author-&gt;last_name != &#8221;) )
$name = &quot;$author-&gt;first_name $author-&gt;last_name&quot;;

if ( !($posts == 0 &amp;&amp; $hide_empty) )
$return .= &#8216;&lt;li&gt;&#8217;;
if ( $posts == 0 ) {
if ( !$hide_empty )
$link = $name;
} else {
$link = &#8216;&lt;a href=&quot;&#8217; . get_author_posts_url($author-&gt;ID, $author-&gt;user_nicename) . &#8216;&quot; title=&quot;&#8217; . sprintf(__(&quot;Posts by %s&quot;), attribute_escape($author-&gt;display_name)) . &#8216;&quot;&gt;&#8217; . $name . &#8216;&lt;/a&gt;&#8217;;

if ( (! empty($feed_image)) || (! empty($feed)) ) {
$link .= &#8216; &#8216;;
if (empty($feed_image))
$link .= &#8216;(&#8217;;
$link .= &#8216;&lt;a href=&quot;&#8217; . get_author_rss_link(0, $author-&gt;ID, $author-&gt;user_nicename) . &#8216;&quot;&#8217;;

if ( !empty($feed) ) {
$title = &#8216; title=&quot;&#8217; . $feed . &#8216;&quot;&#8217;;
$alt = &#8216; alt=&quot;&#8217; . $feed . &#8216;&quot;&#8217;;
$name = $feed;
$link .= $title;
}

$link .= &#8216;&gt;&#8217;;

if ( !empty($feed_image) )
$link .= &quot;&lt;img src=\&quot;$feed_image\&quot; style=\&quot;border: none;\&quot;$alt$title&quot; . &#8216; /&gt;&#8217;;
else
$link .= $name;

$link .= &#8216;&lt;/a&gt;&#8217;;

if ( empty($feed_image) )
$link .= &#8216;)&#8217;;
}

if ( $optioncount )
$link .= &#8216; (&#8217;. $posts . &#8216;)&#8217;;

}

if ( !($posts == 0 &amp;&amp; $hide_empty) )
$return .= $link . &#8216;&lt;/li&gt;&#8217;;
}
if ( !$echo )
return $return;
echo $return;
}
?&gt;
</pre>
<p>And then to call, just define the category you want:</p>
<pre class="syntax-highlight:php">

&lt;?php

$cat=0;
if (have_posts()){    //get the present category, if there is one
if (is_category()) {
$cat = get_query_var('cat');
}
}
if($cat!=0){
?&gt;
&lt;h2&gt;Authors:&lt;/h2&gt;
&lt;ul&gt;
&lt;? my_list_authors_by_category('exclude_admin=1',$cat); ?&gt;
&lt;/ul&gt;
&lt;? } ?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/wordpress-author-list-by-category/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grammar and the Subject</title>
		<link>http://dasganze.com/grammar-and-the-subject/</link>
		<comments>http://dasganze.com/grammar-and-the-subject/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 16:57:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Philosophy: 20th/21st Century]]></category>

		<category><![CDATA[aesthetics]]></category>

		<category><![CDATA[language-games]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[psychology]]></category>

		<guid isPermaLink="false">http://dasganze.com/?p=269</guid>
		<description><![CDATA[Which is the &#8220;proper&#8221; syntax:

Now, obviously, Johnny may still not throw it to you, but it was an attempt.
Now, obviously Johnny may still not throw it to you, but it was an attempt.
Obviously Johnny may still not throw it to you, but it was an attempt.

Likely #3. but why do we all tend towards #1? [...]]]></description>
			<content:encoded><![CDATA[<p>Which is the &#8220;proper&#8221; syntax:</p>
<ol>
<li>Now, obviously, Johnny may still not throw it to you, but it was an attempt.</li>
<li>Now, obviously Johnny may still not throw it to you, but it was an attempt.</li>
<li>Obviously Johnny may still not throw it to you, but it was an attempt.</li>
</ol>
<p><a href="http://grammar.ccc.commnet.edu/grammar/commas.htm">Likely </a>#3. but why do we all tend towards #1? Likely because we early-21st-century-ers are more about communicating how *I* speak (subjective, personal idiosyncrasies) than aligning with the Objective Grammar. Post-Modernism is all about the Death of the Object and Rise of the Subject.</p>
<p>&#8220;*I* would have said the sentence with pauses, so THAT is why *I* put commas in.&#8221;</p>
<p>Again, which is more important? Communicating clearly (per the norm of Modernistic Rules) or communicating SELF? Do we all display our psychological dependencies of personal acceptance through simple grammar?</p>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/grammar-and-the-subject/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Better Wordpress Get Pages..</title>
		<link>http://dasganze.com/a-better-wordpress-get-pages/</link>
		<comments>http://dasganze.com/a-better-wordpress-get-pages/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 00:38:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dasganze.com/?p=268</guid>
		<description><![CDATA[I&#8217;ve been needing to toss different HTML code around Wordpress&#8217; auto-gen&#8217;d page menu, but they&#8217;re not so keen on that one. Even for this site, I needed to pull in post-meta for each menu item.


&#60;?
function my_get_pages(){
$out=&#34;&#34;;
$ar=get_pages();
for($i=0;$i&#60;count($ar);$i++){
$page=$ar[$i];
if(strcmp($page-&#62;post_status,&#8217;publish&#8217;)==0){
$title=$page-&#62;post_title;
$link=$page-&#62;guid;
$tag=get_post_meta($page-&#62;ID, &#34;tag&#34;, true);
$out.=&#34;&#60;li&#62;&#60;span&#62;&#34;.$tag.&#34;&#60;/span&#62;&#60;a href=&#8217;&#34;.$link.&#34;&#8217;&#62;&#34;.$title.&#34;&#60;/a&#62;&#60;br/&#62;&#60;/li&#62;&#34;;     //dump in whatever HTML ya want/need.
}

}
return $out;
}
?&#62;

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been needing to toss different HTML code around Wordpress&#8217; auto-gen&#8217;d page menu, but they&#8217;re not so keen on that one. Even for this site, I needed to pull in post-meta for each menu item.</p>
<pre class="syntax-highlight:php">

&lt;?
function my_get_pages(){
$out=&quot;&quot;;
$ar=get_pages();
for($i=0;$i&lt;count($ar);$i++){
$page=$ar[$i];
if(strcmp($page-&gt;post_status,&#8217;publish&#8217;)==0){
$title=$page-&gt;post_title;
$link=$page-&gt;guid;
$tag=get_post_meta($page-&gt;ID, &quot;tag&quot;, true);
$out.=&quot;&lt;li&gt;&lt;span&gt;&quot;.$tag.&quot;&lt;/span&gt;&lt;a href=&#8217;&quot;.$link.&quot;&#8217;&gt;&quot;.$title.&quot;&lt;/a&gt;&lt;br/&gt;&lt;/li&gt;&quot;;     //dump in whatever HTML ya want/need.
}

}
return $out;
}
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/a-better-wordpress-get-pages/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kids love Jesus too..</title>
		<link>http://dasganze.com/kids-love-jesus-too/</link>
		<comments>http://dasganze.com/kids-love-jesus-too/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 04:18:58 +0000</pubDate>
		<dc:creator>fadingdust</dc:creator>
		
		<category><![CDATA[Social]]></category>

		<category><![CDATA[gospel]]></category>

		<category><![CDATA[identity]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[psychology]]></category>

		<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://dasganze.com/?p=181</guid>
		<description><![CDATA[How ought we position the Bible &#38; the Gospel to our children?  (1) As a simplified version of it? (2) as a hidden message which they can only understand a part of? (3) as an amazing message which they can understand and keep understanding and never know it all?
Seems the church, while enamored by [...]]]></description>
			<content:encoded><![CDATA[<p>How ought we position the Bible &amp; the Gospel to our children?  (1) As a simplified version of it? (2) as a hidden message which they can only understand a part of? (3) as an amazing message which they can understand and keep understanding and never know it all?</p>
<p>Seems the church, while enamored by idealism in one lens, has as it&#8217;s other lens &#8220;accessibility.&#8221; We all want our children &#8220;saved&#8221; NOW before they are 5 so that they&#8217;ll never have to get mixed up in the world&#8217;s pain. That sounds more like an (ab)use of religion for personal parenting pleasure instead of seeking God&#8217;s desire/plan for your child!</p>
<p>Jesus didn&#8217;t seem too concerned about &#8220;accessibility.&#8221; or dumbing down our faith-system. Rather, he spoke of it in confusing stories and hard-to-accept statements. He, like Kierkegaard seemed more concerned with making difficulties than bringing clarity to a situation. But all that is perhaps &#8220;spin.&#8221;<br />
What of this idea that the Gospel be communicated not a &#8220;hidden&#8221; or &#8220;you&#8217;ll understand it when you&#8217;re older&#8221; message? This sounds cultish, and draws harsh lines around who&#8217;s &#8220;in&#8221; or not. The former reason is irrelevant, the latter wholly relevant: God&#8217;s message is clearly able to be trusted by those who may not understand all of the details. Yes, children will understand the gospel better when they are older, but they are not incapable of trusting it even without knowledge of the details.</p>
<p>But the Gospel is also not simply &#8220;magic.&#8221; DNA-evidence (and computers) are &#8220;magic&#8221; to most people. Cookies baking can be &#8220;magic&#8221; to children. Going to the bank can be &#8220;magic&#8221; (since they ALWAYS and ONLY give you money!) These kinds of &#8220;magical&#8221; understandings aren&#8217;t wrong, just lacking the depth of understanding. But if you come to an adult who goes to the bank always expecting money, you know something isn&#8217;t right. And anyone not a child who, upon pulling out those cookies jumps for joy and amazement that it&#8217;s not just an icky lump of gooey batter..</p>
<p>Children can get by without understanding the details. Certainly this is part of what Jesus refers to with &#8220;childlike faith&#8221; in Mt 18. But Paul wasn&#8217;t very content to have to deal with a bunch of children in 1 Cor 13.11! Our faith can be &#8220;childlike&#8221; in its pure and simple trust, but our understanding (reason/intellect/rationality) of our faith ought always be &#8220;on par&#8221; with our understanding of any other aspect of this planet (development). So then, our communication of the Gospel to children ought not to the point of &#8220;I wish I were older/smarter,&#8221; for that is Eph 6 exasperation, but &#8220;I can&#8217;t wait to know more about God!&#8221; Satisfied with (even ignorant of) their own development, interested in their relationship with God.</p>
<p>I grew up more with a &#8220;this is what Jacob did&#8221;/&#8221;be like Paul&#8221; focused Christianity instead of a &#8220;this is what Joseph learned about God, how hard it was and how cool things can turn out!&#8221; Imagine that mixed with &#8220;This is what Korah learned about God.&#8221; There&#8217;s a lot to God. He takes our lives to display himself to us and all others.</p>
<p>Not that children follow that abstract summary idea of &#8220;our lives&#8221;.. but also, not that we want them to go around saying &#8220;Today I&#8217;m going to display God&#8217;s wrath!&#8221; since it is God who defines our lives and what they can display and unto whom will they be seen.</p>
<p>The whole of humanity, whether believers in God or not display him. His qualities are in all in various levels. All men reflect his image(Gen 2), but not all participate in his nature (2 Peter 1:4). What is this distinction? Romans 1 &amp; 2 display the option for unbelievers to uphold the law AND to twist their lives and epistemology into their own self-gratifying realm. Which would we prefer for our children? Surely the former!</p>
<p>So when developing children, there&#8217;s a few levels:</p>
<p>Identity + Activity (be + do)</p>
<ol>
<li>Identity as absolutely beloved</li>
<li>Self as displaying God (involuntarily and voluntarily)
<ol>
<li>but my selfish desires aren&#8217;t God&#8217;s desires..</li>
<li>some desires are built in, and are part of God&#8217;s creation &amp; personal knowing of me, and plan for my life.</li>
</ol>
</li>
<li>Activity as displaying God (involuntarily &amp; voluntarily)</li>
<li>Activity as God&#8217;s desire over self-desire(?)
<ol>
<li>not as &#8220;pleasing God&#8221;, for what can a mand do to please God that Jesus has not already done?</li>
<li>self-importance diminished (?)</li>
</ol>
</li>
<li>Life as difficult (Jesus&#8217; statements on reality &amp; how to live it)
<ol>
<li>God as overcoming, transcendent over creation &amp; pain</li>
<li>Also immanent through the Spirit and Incarnation.</li>
</ol>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/kids-love-jesus-too/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sort Wordpress Posts by Custom Field</title>
		<link>http://dasganze.com/sort-wordpress-posts-by-custom-field/</link>
		<comments>http://dasganze.com/sort-wordpress-posts-by-custom-field/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 23:35:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[codeRelease]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://dasganze.com/?p=267</guid>
		<description><![CDATA[I do *A LOT* of query_posts in my WP Theming for work, and I&#8217;ve found a million-and-one reasons why I needed this bit-o&#8217;-code lately. Instead of having oh-so-blog-centric sortable options such as &#8220;By Title&#8221;, &#8220;By Category&#8221; &#8220;By Modified Time&#8221;, I needed to manually sort the posts in a given category. Why? Cuz I&#8217;ve got a [...]]]></description>
			<content:encoded><![CDATA[<p>I do *A LOT* of query_posts in my WP Theming for work, and I&#8217;ve found a million-and-one reasons why I needed this bit-o&#8217;-code lately. Instead of having oh-so-blog-centric sortable options such as &#8220;By Title&#8221;, &#8220;By Category&#8221; &#8220;By Modified Time&#8221;, I needed to manually sort the posts in a given category. Why? Cuz I&#8217;ve got a list of posts in a category that needs to be sequential. Very non-bloggy, but VERY CMSy.</p>
<p>Solution: Just add this code in to each template &amp; make sure the blog posts are in the category MYCATNAME with a custom tag of &#8220;order&#8221;, from 0 to ad infinitum.</p>
<pre class="syntax-highlight:php">
&lt;?php $posts=query_posts(&quot;category_name=OptionsPage&amp;orderby=menu_order&amp;order=asc&quot;);

$out_array=array();

//loop #1: get the post &amp; attach post_meta 'order' to the menu_order
foreach($posts as $post){
$this_order=0;
if( strcmp(get_post_meta($post-&gt;ID, &quot;order&quot;, true),&quot;&quot;)!=0){
$this_order=get_post_meta($post-&gt;ID, &quot;order&quot;, true);
}
$post-&gt;menu_order=$this_order;
if($out_array[$this_order]==null){//start the ordering  (solved: if 2 have the same order!)
$out_array[$this_order]=$post;
} else {
array_push($out_array,$post);
}
}

//sort acc.to menu_order
$wp_query-&gt;posts=null;
$wp_query-&gt;posts=array();
for($i=0;$i&lt;count($out_array)+1;$i++){
if($out_array[$i]!=null){
array_push($wp_query-&gt;posts,$out_array[$i]);
}
}

//start looping through!
$idx=0;
if (have_posts()) : ?&gt;
&lt;?php while (have_posts()) : the_post(); $idx++;?&gt;
&lt;li class=&quot;flipmenuitem&quot;&gt;&lt;a id=&quot;link&lt;? echo $idx; ?&gt;&quot; href=&quot;#&quot; style=&quot;background:#FFF url(&#8217;&lt;? echo bloginfo(&#8217;template_directory&#8217;);?&gt;/images/&lt;?if($idx==1){?&gt;minus&lt;?} else {?&gt;plus&lt;?}?&gt;.gif&#8217;) no-repeat;padding-left:15px;&quot; onclick=&quot;javascript:Effect.comboEffect0(&#8217;flip&lt;? echo $idx; ?&gt;&#8217;,this);&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;
&lt;div class=&quot;flippage&quot; style=&quot;display:&lt;?if($idx==1){?&gt;block&lt;?} else {?&gt;none&lt;?}?&gt;;&quot; id=&quot;flip&lt;?echo $idx; ?&gt;&quot;&gt;&lt;?php the_content(); ?&gt;&lt;/div&gt;&lt;/li&gt;
&lt;?php endwhile;
else :
endif; ?&gt;
// &#8230; you get the picture here..
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/sort-wordpress-posts-by-custom-field/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Information Errors</title>
		<link>http://dasganze.com/information-errors/</link>
		<comments>http://dasganze.com/information-errors/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 16:23:38 +0000</pubDate>
		<dc:creator>fadingdust</dc:creator>
		
		<category><![CDATA[Project Management]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[life-of-a-geek]]></category>

		<guid isPermaLink="false">http://dasganze.com/?p=263</guid>
		<description><![CDATA[InfoWorld has a great write-up about a data-center project &#38; what they learned from it. I&#8217;ve summarized and abstracted it here:
When you don&#8217;t know, you trust.
Differing experiences &#38; personalities will trust different things:
D: themselves
I:  people: what they can get others to do/say.
S: what others say/face-value?
C: the information: their mind/face-value of what others say. They will [...]]]></description>
			<content:encoded><![CDATA[<p>InfoWorld has a great <a href="http://www.infoworld.com/article/08/06/17/25TC-pydc-lessons_6.html">write-up</a> about a data-center project &amp; what they learned from it. I&#8217;ve summarized and abstracted it here:</p>
<p><strong>When you don&#8217;t know, you trust.<br />
</strong>Differing experiences &amp; <a href="http://dasganze.com/wiki/index.php?title=DISC">personalities</a> will trust different things:<br />
D: themselves<br />
I:  people: what they can get others to do/say.<br />
S: what others say/face-value?<br />
C: the information: their mind/face-value of what others say. They will not try to influence or change.<br />
<strong><br />
Details always trip you up</strong>:<br />
Practical: some times things just don&#8217;t work.<br />
&#8211;Execution problem<br />
Idealism: some times you just didn&#8217;t think or plan enough (and you could have).<br />
&#8211;Information problem</p>
<p><strong>Consequences:<br />
</strong>Think + Do everyone&#8217;s job in the process, from vendor information, estimations, ordering, manufacturing, shipping; environmental surroundings; temporal surroundings (future-proofing)</p>
<p>Information Errors can be minimized by having a diverse enough team that can think through each step, and communicate (listen!) enough to take each info-tid-bit to heart. Most personalities aren&#8217;t capable of valuing this, and those that are, aren&#8217;t usually forceful or influential enough to make their case known. Solution? Humility.</p>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/information-errors/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dogma Quiz..</title>
		<link>http://dasganze.com/dogma-qui/</link>
		<comments>http://dasganze.com/dogma-qui/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 01:15:49 +0000</pubDate>
		<dc:creator>fadingdust</dc:creator>
		
		<category><![CDATA[Theology]]></category>

		<category><![CDATA[bible]]></category>

		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://dasganze.com/?p=262</guid>
		<description><![CDATA[Pick the term:
1) Accurate
2) Infallible
3) Precise
4) Sufficient
5) Effective
Which one (a) do you like? (b) do you feel best represents a man&#8217;s ability to comprehend perfect Deity? (c) is most communicative within the general populus?
Now, I know these are 3 separate questions, and likely to have 3 separate list-rankings.. but I&#8217;m prone to think of them [...]]]></description>
			<content:encoded><![CDATA[<p>Pick the term:<br />
1) <a href="http://dictionary.reference.com/browse/accurate">Accurate</a><br />
2) <a href="http://dictionary.reference.com/browse/infallible">Infallible</a><br />
3) <a href="http://dictionary.reference.com/browse/precise">Precise</a><br />
4) <a href="http://dictionary.reference.com/browse/sufficient">Sufficient</a><br />
5) <a href="http://dictionary.reference.com/browse/effective">Effective</a></p>
<p>Which one (a) do you like? (b) do you feel best represents a man&#8217;s ability to comprehend perfect Deity? (c) is most communicative within the general populus?</p>
<p>Now, I know these are 3 separate questions, and likely to have 3 separate list-rankings.. but I&#8217;m prone to think of them in the same way, with #2 most-popular in dogmatic minds and #1 more happily in my mind. Do they say/mean the same thing? Sure they do. So why the dogmatic need (<em>fear</em>.. what? no love in fear?) to &#8220;defend&#8221; terminology? This is, obviously, a matter of &#8220;official&#8221; terms vs. common-man&#8217;s thinking, but seriously, there <em>is</em> such a thing as a dead language.. and dead orthodoxy.. and I&#8217;m usually pro-life, and anti-death.</p>
<p>And since we&#8217;re on about fear, here&#8217;s mine: &#8220;I&#8217;ve heard you (Mr. Dogmatist) use the same terms as so many other people who I&#8217;ve heard use blatant fallacy and ill-logic.. so, I&#8217;m scared that you keep using the same terms.. Cuz anyone can use the terms/language, but that doesn&#8217;t mean they &#8216;get it&#8217;.. and I most of all want to know that you understand what life, love, truth &amp; Jesus are all about.. and I just can&#8217;t do that unless you get creative with your vocab.&#8221;</p>
<p>Of course, the reply then comes: &#8220;But I don&#8217;t know you&#8217;re withing orthodoxy unless you use the proper terms.&#8221;</p>
<p>Is this all we have? Such an impasse of communication?</p>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/dogma-qui/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Project Managing</title>
		<link>http://dasganze.com/project-managing/</link>
		<comments>http://dasganze.com/project-managing/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 00:48:22 +0000</pubDate>
		<dc:creator>fadingdust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dasganze.com/?p=261</guid>
		<description><![CDATA[This is more a re-post than a commentary.
http://brucefwebster.com/2008/06/16/anatomy-of-a-runaway-it-project/
]]></description>
			<content:encoded><![CDATA[<p>This is more a re-post than a commentary.</p>
<p><a href="http://brucefwebster.com/2008/06/16/anatomy-of-a-runaway-it-project/">http://brucefwebster.com/2008/06/16/anatomy-of-a-runaway-it-project/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/project-managing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>NVidia GPU Box</title>
		<link>http://dasganze.com/nvidia-gpu-box/</link>
		<comments>http://dasganze.com/nvidia-gpu-box/#comments</comments>
		<pubDate>Sat, 31 May 2008 18:50:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://dasganze.com/tech/2008/05/31/nvidia-gpu-box/</guid>
		<description><![CDATA[I hope NASA and Oceanography get ahold of this idea..  sure beats out anything from SGI from back in the day!
Though each Nvidia is presently over $600, I personally love how their Samsung Spinpoint F1 750GB HDD is only $100 on newegg! 
]]></description>
			<content:encoded><![CDATA[<p>I hope NASA and Oceanography get ahold of <a href="http://www.dvhardware.net/article27538.html">this idea</a>..  sure beats out anything from SGI from back in the day!</p>
<p>Though each Nvidia is presently over $600, I personally love how their Samsung Spinpoint F1 <em><u><strong>750GB</strong></u></em> HDD is only $100 on <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822152100">newegg</a>! <img src='http://dasganze.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/nvidia-gpu-box/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What to do with your life</title>
		<link>http://dasganze.com/what-to-do-with-your-life/</link>
		<comments>http://dasganze.com/what-to-do-with-your-life/#comments</comments>
		<pubDate>Fri, 30 May 2008 22:53:07 +0000</pubDate>
		<dc:creator>fadingdust</dc:creator>
		
		<category><![CDATA[Theology]]></category>

		<category><![CDATA[aesthetics]]></category>

		<category><![CDATA[bible]]></category>

		<category><![CDATA[gospel]]></category>

		<category><![CDATA[identity]]></category>

		<category><![CDATA[lies-damn-lies]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[psychology]]></category>

		<category><![CDATA[sins of omission]]></category>

		<category><![CDATA[soul]]></category>

		<guid isPermaLink="false">http://dasganze.com/what-to-do-with-your-life/</guid>
		<description><![CDATA[As to the importance of life and the reality of it communicating something, we might all agree. Specifically what it&#8217;s communicating, to whom, what it means, and the consequences.. that&#8217;s not so agreed upon. We understand that sin is bad, and our lives speak our theology. That&#8217;s the beginning of one of many arguments towards [...]]]></description>
			<content:encoded><![CDATA[<p>As to the importance of life and the reality of it communicating something, we might all agree. Specifically what it&#8217;s communicating, to whom, what it means, and the consequences.. that&#8217;s not so agreed upon. We understand that sin is bad, and our lives speak our theology. That&#8217;s the beginning of one of many arguments towards a holy(character of God) daily lifestyle.</p>
<p>But life isn&#8217;t that clean; that sin we try to avoid is undermining, active against us, confusing us, giving us a new foundation which we try to live upon.. and most sadly, <em>it works</em>. Life doesn&#8217;t crash-and-burn 100% when you sin. It&#8217;s a slow-way down. And the energy of youth is often enough to recover the tail-spins which can come quick. We simply learn to &#8220;not do that again.&#8221; And that&#8217;s what I&#8217;ll call &#8220;bottom-up&#8221; living: when experience teaches, and we build an idealism/expectation from it.</p>
<p>There&#8217;s another method, obviously &#8220;top-down&#8221;.. where we demand our idealism (from whatever source, be it parents, church/religion, youthful hopes, etc). No matter the experience, we will fight against reality to hold to our hopes. Ethics are strong, requirements high. Thanks to American Pragmatism, the latter is laughed at, and the former a stronghold of American secular living.</p>
<p>But my Theology says a few things.. That how I live says stuff about God. Now, for finer points, my life says stuff about God because I claim his way as my own. The &#8220;gap&#8221; question here is <em>does everyone&#8217;s life communicate their theology?</em> The simple answer is yes. But the other &#8216;gap&#8217; question is, &#8220;<em>Does everyone&#8217;s life communicate their perspective on God?</em>&#8221; And the corollary, &#8220;<em>Does everyone&#8217;s life display their commentary on God?</em>&#8221;</p>
<p>Now, take the simple Christian, who is able to follow the idealism of the conservative american variety. He lives in an undisturbed box that he claims God wants him in, and he has no trouble attaining his perfection. Likely<em> pity</em> is his take on the rest of the sin-filled world. <em>What is he communicating?</em> Transcendence of and isolated God, yes. Immanence of Jesus that eats with the sinners? No. Immanance that loves and helps? No. Certainly, we can call this &#8216;Christianity&#8217; a half-breed&#8211; mixed with selfish isolationism/protectionism of keeping oneself clean first AND last.</p>
<p>Take the avant-guard Christian.. often found on uni campuses, stuck(whether by his own choice or the housing dep&#8217;t) with a roomie who sleeps around and invites him to do the same.. Challenged on all fronts to NOT get up on sunday for fellowship, and challenged <em>even on Sunday</em> by people who are in the previous category, and have no concept to help him towards a holiness which is God&#8217;s. Immanence is not his trouble.. he&#8217;s IN the world, clearly. The transcendence of God&#8217;s character which he is originally designed for no longer seems reasonable, possible. The people he meets &#8220;outside the box&#8221; and still <em>appear</em> happy challenge.</p>
<p>Now, about those people he meets, out there in the world.  Some who are taken by their sin and revel in it. Claim it as an identity. What are they saying about God? (1) Perhaps that they have no knowledge of his claim to holiness? Or that they have knowledge (Romans 1!) but there&#8217;s just no one &#8217;round confirming it, encouraging them, helping them realize the goodness and long-term best. (2) Alternatively, they are unaware the connection of their daily lives to consequence.. communicating <em>to God</em> that they value something other than him. That&#8217;s a scary thing, and I think most people don&#8217;t realize their actions are communicating this.</p>
<p>Precisely.</p>
<p>I don&#8217;t think I&#8217;m aware of this either. I&#8217;m not convinced the church is communicating this enough; I&#8217;m not convinced that&#8217;s my message I take to those in the world.</p>
<p>This means that that college-roommate who&#8217;s liberal with his sexuality is directly saying God&#8217;s meaning and purpose in sexuality isn&#8217;t compelling, valuable, or of any pragmatic use. And the church is quick to jump to try and recover this message (often without the theological base, too!)But to the one who has never heard or perhaps has forgotten, his life isn&#8217;t about God, and it isn&#8217;t about communicating anything. It&#8217;s just as self-centred as the protectionist Christian, only exactly in the opposite direction. (and in this case, the protectionist christian is &#8220;better&#8221; only because he&#8217;s got 1 problem of selfishness  not 2!)So selfishness of all is evident. All are indicted, no reason or cause for anything but humility. But pride fills up instead, denying consequence&#8211; precisely of God&#8217;s concern of such matters.</p>
<p>&#8212;&#8212;&#8212;-</p>
<p>Restart.</p>
<p>At this point, I&#8217;m confused. I started off this post regarding my friend who&#8217;s sin is her identity. She&#8217;s happy.. honestly happy. She&#8217;s got a life that&#8217;s working enough for her.  There&#8217;s enough people confirming her actions, and there&#8217;s enough people able to keep her going. All people live by what they see and feel. Bottom-up experiential living is the norm. And that is authentic, which is often more than in the top-down lives.</p>
<p>But I feel I&#8217;m squished in the middle. I&#8217;ve lived both top-down (lead to such inauthenticity that lead to depression) and I&#8217;ve lived bottom-up, which can lead to frustration.</p>
<p>I know God&#8217;s message to me is love. That&#8217;s enough to solve the frustration of bottom-up living, get oneself out of it&#8217;s addictions and demands for peace and ease.</p>
<p>Perhaps that&#8217;s <em>one</em> of the homosexual issues. They get frustrated with the opposite sex, while being so comfortable with those who are like-minded and so retract from those who think, act, value differently instead of entering in to the messy <em>other</em>. Just like a married man who doesn&#8217;t know what to do with his wife or children, and so retracts into work or his hobbies or an affair where he DOES know what to do with, where he finds solace and ease. Fact is, both are sin. Both are not living fully, both are self-protectionist, and both are &#8220;happy&#8221; ..just one takes more work: fighting self and ease.</p>
<p>&#8212;&#8212;&#8212;&#8211;</p>
<p>Round 3:</p>
<p>So what of it all? Our lives are filled with our own anti-consequential desires, decisions &amp; actions, all communicating that I&#8217;d rather live my bottom-up way than any top-down idealism keeping me from pragmatic reality. All the while, breaking God&#8217;s heart, shoving him aside, missing out on an authenticity deeper than the termites have eaten away.</p>
<p>Now, that&#8217;s not to say that God&#8217;s way is as the conservatives make it out to be. And that&#8217;s the confusing part for everyone involved. They present a highly in-authentic, illogical, top-down idealism which only works inside their own box of pretty-pretty-land. That&#8217;s not palatable, let alone tasty to most. And it&#8217;s not God&#8217;s design, hope nor future for any of us.</p>
<p>What am I to say? God&#8217;s broken heart over our denial of him is &#8216;ok&#8217;? Our lives communicating constant rejection of him inconsequential? Is there a difference between me trying to not reject him, and me giving up, giving in to my natural choices which speak rejection? And maybe my own effort will only build my pride.</p>
<p>I&#8217;ve got to say, the homosexual, the addicted-to-sports-male and the protectionist Christian are of the same tree. All act out of the same motives, though some more hidden than others. Telling God, &#8220;f*** you!&#8221; <em>nicely</em> doesn&#8217;t keep you in the kingdom.</p>
<p>All I can find that is true is continual recognition of all this and of the <em>final</em> payment for these crimes by God himself, and the continual attempts to value him, his ways, his kingdom.. everything else will confuse, everything else is noise.There is no &#8220;best&#8221; life. There is no one who achieves. We all rationalize and <a href="http://www.sing365.com/music/lyric.nsf/Bad-lyrics-U2/4AD385D713AEAC9F48256896002AE96C">twist</a> and <a href="http://www.youtube.com/watch?v=aPyhYczii8I">turn</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dasganze.com/what-to-do-with-your-life/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
