<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jason Paschal&#039;s Blog</title>
	<atom:link href="http://www.jasonpaschal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonpaschal.com</link>
	<description>Blog Blah Ball</description>
	<lastBuildDate>Sun, 05 Jun 2011 09:59:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Quickly Remove Images From Imagearn.com Galleries [php script]</title>
		<link>http://www.jasonpaschal.com/2011/06/05/quickly-remove-images-from-imagearn-com-galleries-php-script/</link>
		<comments>http://www.jasonpaschal.com/2011/06/05/quickly-remove-images-from-imagearn-com-galleries-php-script/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 09:57:57 +0000</pubDate>
		<dc:creator>mellomutt</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.jasonpaschal.com/?p=75</guid>
		<description><![CDATA[As is typical of my work, this is quick and dirty but it gets the job done.  Use at your own risk.  However, it works great for me. You&#8217;ll need a web server with PHP that has the curl extension installed.  By the way, my current browser is Chrome. Make sure you&#8217;re logged into Imagearn.com [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://www.jasonpaschal.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p>As is typical of my work, this is quick and dirty but it gets the job done.  Use at your own risk.  However, it works great for me.</p>
<p>You&#8217;ll need a web server with PHP that has the curl extension installed.  By the way, my current browser is Chrome.</p>
<p>Make sure you&#8217;re logged into Imagearn.com when you use it.   Their login sessions last for 30 minutes or so, or if you close your browser, so verify before you run this script.  Nothing bad will happen if you&#8217;re not logged in at the time, only that the images you try to remove *won&#8217;t* be removed.</p>
<p>Note: this script can be tweaked in tons of ways, and I may get around to it, but don&#8217;t hold your breath.  Better off tweaking it yourself.</p>
<p>First, after logging into imagearn.com, go to Edit the gallery that has the images you want to remove.</p>
<p>Then click on Remove Images.</p>
<p>Right-click on that page somewhere and select &#8220;View Source&#8221; or your browser&#8217;s equivalent option.</p>
<p>Copy the page&#8217;s source code.</p>
<p>Now browse to the PHP script.</p>
<p>In the textarea field, paste the source code.</p>
<p>Click Submit.</p>
<p>(Sometimes I have to click it again.)</p>
<p>A vertical list of thumbnails and links will appear below the textarea field.  Middle-clicking either will immediately and permanently delete the related image by open up a properly formatted URL in a new background tab.</p>
<p>NOTE: You MUST MIDDLE-CLICK (open the links in a new tab) when clicking a thumbnail or the word &#8216;remove&#8217;.  The link target is not &#8216;_blank&#8217;, because if it was set to &#8216;_blank&#8217; then the current page will lose focus, and the whole point of me making this would be defeated.  Middle-click opens them in a background tab (for me, at any rate).  This allows me to middle-click through, staying on the same page, and getting rid of images must faster than via the means provided by Imagearn.com which forces you to confirm the removal.  This is very time-consuming if you have alot of images to remove.</p>
<p>I had an enhanced script that would allow you to toggle a bunch of checkboxes at once from a point in the list, then use javascript to open a bunch of tabs with the correct links but the script disappeared from my local server (which is actually my motivation for putting this on the web).</p>
<p><pre class="brush: php">&lt;?php

foreach($_GET as $k =&gt; $v) {
	$$k = $_GET[$k];	
}

foreach($_POST as $k =&gt; $v) {
	$$k = $_POST[$k];	
}
?&gt;
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;remove from imagearn gallery&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;form id=&quot;form1&quot; name=&quot;form1&quot; method=&quot;post&quot; action=&quot;&quot;&gt;
  &lt;label&gt;
    &lt;textarea name=&quot;source&quot; id=&quot;source&quot; cols=&quot;100&quot; rows=&quot;20&quot;&gt;&lt;?php print stripslashes($source); ?&gt;&lt;/textarea&gt;
  &lt;/label&gt;
  &lt;label&gt;
    &lt;input type=&quot;submit&quot; name=&quot;button&quot; id=&quot;button&quot; value=&quot;Submit&quot; /&gt;
  &lt;/label&gt;
  &lt;input name=&quot;action&quot; type=&quot;hidden&quot; id=&quot;action&quot; value=&quot;sbt&quot; /&gt;
&lt;/form&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;?php 
if ($action == &quot;sbt&quot;) {
	preg_match_all(&quot;|profile.php?o=remove_images&amp;id=([0-9]+)&amp;idimg=([0-9]+)&quot;[^&gt;]+&gt;[^&lt;]*&lt;img src=&quot;([^&quot;]+)&quot;|i&quot;,stripslashes($source),$matches);
	foreach($matches[1] as $k =&gt; $v) {
		$thumb = $matches[3][$k];
		$f = $v;
		$s = $matches[2][$k];
		$rlink = &quot;http://imagearn.com/profile.php?o=remove_images&amp;id=$f&amp;idimg=$s&amp;yes=yes&quot;;
		echo &quot;&lt;a href=&quot;$rlink&quot; style=&quot;font-size:54px&quot;&gt;&lt;img src=&quot;$thumb&quot;&gt; remove&lt;/a&gt;&lt;br&gt;&quot;;
	}
}
?&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonpaschal.com/2011/06/05/quickly-remove-images-from-imagearn-com-galleries-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Even Easier Ramen Noodles</title>
		<link>http://www.jasonpaschal.com/2011/03/04/even-easier-ramen-noodles/</link>
		<comments>http://www.jasonpaschal.com/2011/03/04/even-easier-ramen-noodles/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 23:22:32 +0000</pubDate>
		<dc:creator>mellomutt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonpaschal.com/?p=61</guid>
		<description><![CDATA[One of my own discoveries. 1) Put ramen noodles in a large soup bowl (microwave-safe) with 2 cups of water.  Make sure you the noodles are completely submerged.  Might have to crunch them down a bit, depending on the size of your bowl. 2) Place bowl in microwave for 5 minutes (may have to play [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://www.jasonpaschal.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p>One of my own discoveries.</p>
<p>1) Put ramen noodles in a large soup bowl (microwave-safe) with 2 cups of water.  Make sure you the noodles are completely submerged.  Might have to crunch them down a bit, depending on the size of your bowl.</p>
<p>2) Place bowl in microwave for 5 minutes (may have to play with the time, but 5 minutes is perfect for me).</p>
<p>3) Add seasoning and stir.  I&#8217;m gonna just say it to be safe:  bowl will be effin&#8217; hot.</p>
<p>No waiting for a pot of water to boil, no having to clean said pot and you don&#8217;t have to worry about forgetting to turn off the stove.</p>
<p>You&#8217;re welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonpaschal.com/2011/03/04/even-easier-ramen-noodles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uniden DECT 6.0 &#8211; Get Caller ID to Display a 1 In Front of The Number [RESOLVED]</title>
		<link>http://www.jasonpaschal.com/2011/01/10/uniden-dect-6-0-get-caller-id-to-display-a-1-in-front-of-the-number-resolved/</link>
		<comments>http://www.jasonpaschal.com/2011/01/10/uniden-dect-6-0-get-caller-id-to-display-a-1-in-front-of-the-number-resolved/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 22:33:05 +0000</pubDate>
		<dc:creator>mellomutt</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[1]]></category>
		<category><![CDATA[6.0]]></category>
		<category><![CDATA[Caller ID]]></category>
		<category><![CDATA[DECT]]></category>
		<category><![CDATA[Dial]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[One]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[Telephone]]></category>
		<category><![CDATA[Uniden]]></category>

		<guid isPermaLink="false">http://www.jasonpaschal.com/?p=53</guid>
		<description><![CDATA[I&#8217;ve been unable to simply press the TALK button while looking at the Caller ID on the phone to call someone back. Uniden chose to display everything except the number 1 in front of a number.  I&#8217;ve never seen another Caller ID system do this. So I called Uniden support and they solved the issue in [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://www.jasonpaschal.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p>I&#8217;ve been unable to simply press the TALK button while looking at the Caller ID on the phone to call someone back.</p>
<p>Uniden chose to display everything except the number 1 in front of a number.  I&#8217;ve never seen another Caller ID system do this.</p>
<p>So I called Uniden support and they solved the issue in 5 seconds (after being on hold for nearly an hour).<br />
<span id="more-53"></span> <strong> </strong></p>
<h1><strong>THE SOLUTION:  While looking at a number in Caller ID, press the * key.</strong></h1>
<p><strong> </strong></p>
<p><strong><span style="font-size: 13px; font-weight: normal;">That&#8217;s it.  A 1 appears in front of the displayed number.</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonpaschal.com/2011/01/10/uniden-dect-6-0-get-caller-id-to-display-a-1-in-front-of-the-number-resolved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Read/Parse an Exported Bookmarks File</title>
		<link>http://www.jasonpaschal.com/2010/10/22/php-readparse-an-exported-bookmarks-file/</link>
		<comments>http://www.jasonpaschal.com/2010/10/22/php-readparse-an-exported-bookmarks-file/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 11:03:08 +0000</pubDate>
		<dc:creator>mellomutt</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.jasonpaschal.com/?p=42</guid>
		<description><![CDATA[Since I couldn&#8217;t find anything like this online, I thought it might help someone else. &#60;?php $file = &#34;ps_bookmarks.html&#34;; $handle = @fopen($file, &#34;r&#34;); if ($handle) { while (!feof($handle)) { $line = trim(fgets($handle, 4096)); if ($line) { // If end of items in folder, then remove last folder from category list if (eregi(&#34;&#60;/dl&#62;&#34;,$line)) { $tmp = [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://www.jasonpaschal.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p>Since I couldn&#8217;t find anything like this online, I thought it might help someone else.</p>
<p><span id="more-42"></span></p>
<p><pre class="brush: php">&lt;?php 

$file = &quot;ps_bookmarks.html&quot;; 

$handle = @fopen($file, &quot;r&quot;);

if ($handle) {
	
    while (!feof($handle)) {
		
        $line = trim(fgets($handle, 4096));
		
		if ($line) {
			
			// If end of items in folder, then remove last folder from category list
			
			if (eregi(&quot;&lt;/dl&gt;&quot;,$line)) {
				
				$tmp = array_pop($catlist);				
				
			}
			
			
			if (eregi(&quot;&lt;dt&gt;&quot;,$line) &amp;&amp; !eregi(&quot;href&quot;,$line)) {
				
				$catlist[] = ucfirst(strip_tags($line));
					
			}
			
			
			if (eregi(&quot;href&quot;,$line)) {
				
				preg_match(&quot;/href=&quot;([^&quot;]+)&quot;/i&quot;,$line,$matches);
				
				$url = $matches[1];
				
				$title = strip_tags($line);
				
				foreach ($catlist as $k =&gt; $v) {
					echo &quot;$v/&quot;;
				}
				
				echo &quot; - &quot;;
				
				echo $title;
				
				echo &quot; - &quot;;
				
				echo $url;
				
				echo &quot;&lt;br&gt;&quot;;
			
			}				
			
		}
		
    }
	
    fclose($handle);
	
}

?&gt;</pre></p>
<p>I used an exported Chrome bookmarks file.  The kind that starts with:</p>
<p><strong>&lt;!DOCTYPE NETSCAPE-Bookmark-file-1&gt;</strong></p>
<p>Code I found online was broken, so I made my own bookmarks parser.  I did modify the bookmarks file to help get the output I wanted (I have hundreds of bookmarks all categorized, so I deleted huge swathes of links I no longer wanted)  and I modified this code before I posted it to remove bits that were for my particular setup, but it&#8217;s all generally there.  I&#8217;m sure a clever programmer could take this and make something slick.</p>
<p>This is the rough draft.  I wanted to get my bookmarks into a database and wanted to keep the organization intact. This meant tracking the folders and subfolders, and this does the job.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonpaschal.com/2010/10/22/php-readparse-an-exported-bookmarks-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re-reading Dune</title>
		<link>http://www.jasonpaschal.com/2010/07/27/just-kidding/</link>
		<comments>http://www.jasonpaschal.com/2010/07/27/just-kidding/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 04:31:15 +0000</pubDate>
		<dc:creator>mellomutt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonpaschal.com/?p=32</guid>
		<description><![CDATA[I am an avid fan of the Frank Herbert Dune series.  (The spin-offs, the ones not written by Frank, are really just utter crap.  Irreverent assholes capitalizing on the work of a, dare I say, genius.) The stories are epic.  They feature intelligent characters.  They are rife with ideas.  After I read them, I sought [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://www.jasonpaschal.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p>I am an avid fan of the Frank Herbert Dune series.  (The spin-offs, the ones not written by Frank, are really just utter crap.  Irreverent assholes capitalizing on the work of a, dare I say, genius.)</p>
<p>The stories are epic.  They feature intelligent characters.  They are rife with ideas.  After I read them, I sought out and found, then read, more of Frank Herbert&#8217;s work.  Destination: Void.  Whipping Star. The Pandora series.  The Santoroga Barrier.  Hellstrom&#8217;s Hive. The Heaven Makers.  The Green Brain.  The Dosadi Experiment (&lt;- really, honestly, very good).  et al.<br />
But I&#8217;m poor and there&#8217;s nothing out there that appeals to me at the moment, so I&#8217;m re-reading Dune.  (Strange. I&#8217;m suddenly not that poor when an author I like releases a new work.)</p>
<p>However, I&#8217;m out of cash and books, so I&#8217;m re-reading Dune.</p>
<p>And since I read this ages ago, and have touted it wonders to anyone who would listen, and have watched every TV and movie version that has been released (with varying levels of dismay), I wanted to mention the scenes that I have no recollection of ever reading.</p>
<p><span id="more-32"></span></p>
<p>Duncan Idaho comes in drunk off of spice liquor.  Jessica berates him.</p>
<p>Paul saves his mother, Jessica, from a sandslide. Then using water and the batteries in the paracompass to create a foam barrier, they manage to rescue their pack.</p>
<p>Paul sings a love song to Chani.</p>
<p>Feyd fights a rigged fight with a slave/gladiator.  Such a big scene, and I had no memory of it.</p>
<p>Count Fenring.  He&#8217;s practically a new character to me.  But such a good one.  Almost glad I forgot about him, just so I could meet him again.  Loved his scenes with the Baron around the gladitorial fight.</p>
<p>Thufir Hawat, the Mentat, captured by the Baron.  Hawat still believing that Jessica betrayed House Atreides.  This, too, was not recalled.</p>
<p>Well, there&#8217;s quite a bit actually.  But there&#8217;s still alot that I do remember.  I think that time, and subsequent big and small screen visual depictions, have driven from my memory alot of detail.</p>
<p>And re-reading it makes me hate those visual depictions all over again, but this time with a keener edge on my seething anger.  Why is it so difficult to find a director who has read the novel on which the film is based and then bothers to read just prior to actually making the effin&#8217; movie?  Personally, I&#8217;d feel compelled.</p>
<p>I stumbled onto a Dune fansite some time back, and there was alot of talk about a new film in the works.  There were alot of quotes from the potential director, Peter Berg.  I learned to despise him.</p>
<p>He couldn&#8217;t stop using the word &#8216;muscular&#8217;.</p>
<p>Here, I&#8217;ll paste:</p>
<blockquote><p><span style="color: #000080;"><em>My experience with the book was different than David Lynch&#8217;s  experience or the people behind the Sci Fi Channel&#8217;s experience. I found  it to be more of an adventure tale, more of a <span style="text-decoration: underline;"><span style="color: #993300;"><strong>muscular </strong></span></span>action/adventure  story. I think that&#8217;s my approach, not as an R-rated film, but as a  pretty hard PG-13 film about a young man dealing with issues of  vengeance over the death of his father and wanting some payback and  having to come to terms with his destiny along the way.</em></span></p>
<p><span style="color: #000080;"><strong>Peter Berg at <a href="http://moviesblog.mtv.com/2009/09/14/exclusive-dune-remake-will-have-hard-pg-13-rating-with-franchise-potential-reveals-peter-berg/" target="_blank">MTV Movies Blog</a></strong></span></p>
<p><span style="color: #000080;"><em>&#8220;I think I had a much more different experience, I think, with  the book than David Lynch did. To me, I think my interpretation will  feel significantly different from that and the [Syfy] Channel miniseries  that aired. I have a different experience than both of those filmmakers  did.&#8221;</em></span></p>
<p><span style="color: #000080;"><em>&#8220;[The book] was much more <span style="color: #993300;"><strong><span style="text-decoration: underline;">muscular </span></strong></span>and adventurous, more violent  and possibly even a little bit more fun, I think those are all elements  of my experience of the book that can be brought in without offending  the die-hard fans of the Bene Gesserit and Kwisatz Haderach. There&#8217;s a  more dynamic film to be made.&#8221;</em></span></p>
<p><span style="color: #000080;"><em>&#8220;I&#8217;m finishing this [documentary] now, we&#8217;re editing it now, I  think it&#8217;s going to be in the Toronto Film Festival. [I'm] working now  on getting Friday Night Lights up for the new season and getting Dune up  and running. I&#8217;m working all the time.&#8221;</em></span></p>
<p><span style="color: #000080;"><strong>Peter Berg at <a href="http://scifiwire.com/2009/08/director-berg-envisions-a.php" target="_blank">Sci Fi Wire</a></strong></span></p>
<p><span style="color: #000080;"><em>We&#8217;re gonna have a script in at the end of this month [January  2009]. Josh Zetumer&#8217;s writing the script. I fully intend to do it. It&#8217;s  another example of where I&#8217;m aware that there&#8217;s &#8212; I don&#8217;t think rabid  is a strong enough word &#8212; fanbase for the film, and I understand that  some people support me directing it and some don&#8217;t. All I can tell you  is that I was as much a fan of the book as anyone, and I&#8217;m really  looking forward to getting that script in.</em></span></p>
<p><span style="color: #000080;"><em>To me, the book had a tone that was, for lack of a better word,  more muscular. It was a little dirtier, it was scarier, it was rougher,  it was more intense, and I think that Lynch&#8217;s film and the Sci Fi  miniseries took a tack that was different. It wasn&#8217;t any of those things  as I remember the book being. There were so many different aspects of  Herbert and his personality&#8230;. I will focus on &#8212; again, for lack of a  better word &#8212; a rougher, more <strong><span style="text-decoration: underline;"><span style="color: #993300;">muscular </span></span></strong>version of Herbert&#8217;s work. A  more muscular interpretation.</em></span></p>
<p><span style="color: #000080;"><em>There&#8217;s a scope to Dune, and certainly a Shakespearian quality to that family, that I don&#8217;t pretend to ignore.</em></span></p>
<p><span style="color: #000080;"><strong>Peter Berg at <a href="http://www.televisionwithoutpity.com/show/wonderland/the_peter_berg_interview.php?page=8" target="_blank">Television Without Pity</a></strong></span></p>
<p><span style="color: #000080;"><em>&#8220;The hype around [Dune] is understandable but it&#8217;s a little  excessive. The fanatics are worried I&#8217;m going to destroy it &#8211; I&#8217;m like  calm down, I read the book when I was a kid too! If you re-read it &#8211;  it&#8217;s just a great adventure story. There is a spirituality to it, and a  mysticism, and there is a parallel metaphorically about oil, the  corporatisation of resources &#8211; but at the end of the day, it&#8217;s about a  kid becoming a leader. There&#8217;s incredible action in it and really great  intrigue and betrayals, it&#8217;s Shakespearean in its scope and I think  it&#8217;ll be a blast.&#8221;</em></span></p>
<p><span style="color: #000080;"><strong>Peter Berg at <a href="http://film.guardian.co.uk/interview/interviewpages/0,,2288320,00.html" target="_blank">guardian.co.uk</a></strong></span></p>
<p><span style="color: #000080;"><em>One, with the advances in CGI, we&#8217;ll be doing things Lynch  couldn&#8217;t do. Two, I had a completely different experience with the book  than he did.</em></span></p>
<p><span style="color: #000080;"><em>I look forward to taking it on as an adventure story, in the vein  of &#8220;Star Wars,&#8221; &#8220;Indiana Jones&#8221; and &#8220;Lord of the Rings.&#8221; It&#8217;s a big,  bold adventure story. That&#8217;s how I see it.</em></span></p>
<p><span style="color: #000080;"><em>And, yes, I am out of my mind.</em></span></p>
<p><span style="color: #000080;"><strong>Peter Berg at <a href="http://www.austin360.com/movies/content/movies/stories/2008/07/0704berg.html" target="_blank">austin360.com</a></strong></span></p>
<p><span style="color: #000080;"><em>There is a sense in the book that the commodity is driving the  train. But I don&#8217;t want to hang the story on that. I read the book and  really liked it. What I never saw in Lynch&#8217;s film was a really strong  adventure story. There&#8217;s a much more <strong><span style="text-decoration: underline;"><span style="color: #993300;">muscular </span></span></strong>time to be had there.</em></span></p>
<p><span style="color: #000080;"><strong>Peter Berg at <a href="http://www.hollywoodreporter.com/hr/content_display/film/news/e3i28e0d4f7991010722fff5654f543e21d" target="_blank">The Hollywood Reporter</a></strong></span></p>
<p><span style="color: #000080;"><strong><br />
</strong></span></p></blockquote>
<p>Fortunately, Peter&#8217;s been scratched.  86&#8242;d.  Nixed.  The dude is fixated on muscles.  Let him direct Bruno 2.</p>
<p>Why do all director&#8217;s miss the point?  The essence that makes the stories popular to begin with? And WHY would they miss it?  You&#8217;d think they&#8217;d want to tap into it.</p>
<p>And to make it easier, the author himself explained what he was trying to convey.  This is the Foreword for Heretics of Dune:</p>
<blockquote>
<h3><span style="color: #000080;"><em>Heretics of Dune</em> (1984)</span></h3>
<div>
<div>
<p><span style="color: #000080;">The interweaving of the many plot layers I had planned required a degree of concentration I had never before experienced.</span></p>
<div><span style="color: #000080;"> It was to be a story exploring the myth of the Messiah&#8230;<br />
</span></div>
</div>
</div>
<p><span style="color: #000080;"><strong>When I was writing Dune there was no room in my mind for concerns  about the book&#8217;s success or failure. I was concerned only with the  writing.</strong> Six years of research had preceded the day I sat down to  put the story together, and the interweaving of the many plot layers I  had planned required a degree of concentration I had never before  experienced.<br />
</span></p>
<ul>
<li><span style="color: #000080;"> It was to be a story exploring the myth of the Messiah.<br />
It was to produce another view of a human-occupied planet as an energy machine.<br />
It was to penetrate the interlocked workings of politics and economics.<br />
It was to be an examination of absolute prediction and its pitfalls.<br />
It was to have an awareness drug in it and tell what could happen through dependence on such a substance.<br />
Potable water was to be an analog for oil and for water itself, a substance whose supply diminishes each day.<br />
It was to be an ecological novel, then, with many overtones, as well as a  story about people and their human concerns with human values, and I  had to monitor each of these levels at every stage in the book.<br />
There wasn&#8217;t room in my head to think about much else. </span></li>
</ul>
<li><span style="color: #000080;">Foreword (April 1984)</span></li>
</blockquote>
<p>And while I was looking for that, I found one of my favorite quotes:</p>
<ul>
<blockquote>
<li><span style="color: #000080;"><strong>Bureaucracy destroys initiative. There is little that bureaucrats  hate more than innovation, especially innovation that produces better  results than the old routines.</strong></span> Improvements always make those at the top of the heap look inept. Who enjoys appearing inept?</li>
<li><span style="color: #000080;">A Guide to Trial and Error in Government, Bene Gesserit Archiv</span>e</li>
</blockquote>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonpaschal.com/2010/07/27/just-kidding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First!</title>
		<link>http://www.jasonpaschal.com/2010/06/03/hello-world/</link>
		<comments>http://www.jasonpaschal.com/2010/06/03/hello-world/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 07:47:47 +0000</pubDate>
		<dc:creator>mellomutt</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.jasonpaschal.com/?p=1</guid>
		<description><![CDATA[To forestall hate-mail, I&#8217;m going to try to replace the posts that I had with my Drupal install.]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://www.jasonpaschal.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p>To forestall hate-mail, I&#8217;m going to try to replace the posts that I had with my Drupal install.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonpaschal.com/2010/06/03/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome: Fast, But Retarded</title>
		<link>http://www.jasonpaschal.com/2010/06/03/google-chrome-fast-but-retarded/</link>
		<comments>http://www.jasonpaschal.com/2010/06/03/google-chrome-fast-but-retarded/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 08:17:58 +0000</pubDate>
		<dc:creator>mellomutt</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Fast]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Retarded]]></category>

		<guid isPermaLink="false">http://www.jasonpaschal.com/?p=6</guid>
		<description><![CDATA[Here&#8217;s a list of some basic elements that I require that Chrome ignores/craps on. First, Let me just say that I had to open Firefox to even post this story.  Chrome wouldn&#8217;t process the rich text plugin I&#8217;m using (FCKEditor) and it ignored other basic elements in terms of display for this CMS.  IE, Firefox&#8230;works fine.  [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://www.jasonpaschal.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushPhp.js"></script>
<p>Here&#8217;s a list of some  basic elements that I require that Chrome ignores/craps on. <img src="../sites/all/modules/fckeditor/fckeditor/editor/images/spacer.gif" alt="" /></p>
<h2><span id="more-6"></span>First,</h2>
<p>Let me just say that I had to open Firefox to even post this  story.  Chrome wouldn&#8217;t process the rich text plugin I&#8217;m using  (FCKEditor) and it ignored other basic elements in terms of display for  this CMS.  IE, Firefox&#8230;works fine.  Whatever. I know I need to update  this CMS [author's note: I've since switch to another CMS since writing this], but to just ignore basic/standard/popular JS and CSS?  Not cool.  I could be convinced that this is actually smart and cool, but you&#8217;d have to be naked and female.</p>
<h2>2) New Tabs WTF</h2>
<div>
<p>I had to install an extension to have Chrome just open a blank  page in a new tab.  By default, Chrome goes all Hitler on new tabs.  It  displays a thumbnailed list of pages you&#8217;ve recently looked at.</p>
</div>
<div>I  suppose they assume that a) you&#8217;re the only person using your computer,  or b) you don&#8217;t care if people know you&#8217;ve been looking at vintage  lesbian incest bondage porn.</p>
</div>
<div>
<p>Well, I <em>do</em> care.  So I went to Chrome Options, and, yep,  you can&#8217;t change new tab behaviour.  You have zero choice in the  matter.  Firefox gives you a choice.  However, there is a Chrome  extension that allows you to simply display a blank page in a new tab.   Installed it.  Worked great.  But it&#8217;s the principle of the thing.  Why  did I have to bother?  Showing your page history thumbnails in a new tab  by default should be an &#8220;opt-in&#8221; sort of process.  Like, I don&#8217;t know, a  little window that pops up and says, &#8220;Do you want the world to know  about your deviant interests?  Check the box below.&#8221;  Sometimes I want  to show people some stuff online.  I don&#8217;t want any new tab I open to  taint the carefully constructed facade I put up between me and the  world.</p>
</div>
<p>If Chrome were a car, bumper stickers would be applied by the  manufacturer.</p>
<h2>3) Friggin&#8217; status bar.</h2>
<div>
<p>There isn&#8217;t one in Chrome.  Hover over a link,  and a little bubble appears in the bottom left corner of the browser  with the URL.  But not necessarily the full URL.  Nope.  The bubble only  extends through a 3rd of the browser space.  So the end of most URLs  get cut off, and to me, it&#8217;s the most important part.  It&#8217;s like, why  bother showing <em>any</em> of the URL?  If you just want to make sure  people are certain of the domain, then why not just show the domain?   Someone had to code it so it shows the ellipses at the end when it gets  cut off.  Someone had to put in &#8220;statusbubble.width=33%&#8221;.  You couldn&#8217;t  make that adjustable?  You couldn&#8217;t make that an option?  You had to be  Hitlers about it?  You had to be dicks?</p>
</div>
<div>
<p>There are no extensions that fix this.  Chrome is stuck with this  retarded behaviour.<br />
Maybe they just decided to be all maverick and question the whole  existence of status bars.  It&#8217;s been nearly two years since this issue  was brought to the attention of Chrome developers.  They refuse to fix  it.  And believe me, it&#8217;s an issue.  Two years of comments attest to  that.  They do say they will get to it, but have to work through other  issues first.  Oh, right, excuse us.  Probably more important things  than basic usability.</p>
<p>If Chrome were a car, it&#8217;d go really fast, but you wouldn&#8217;t know where   you&#8217;re going.</p>
<h2>4) No simple on/off for Javascript/Java.</h2>
<p>Firefox has some great  extensions for toggling JS and Java on the fly.  None for Chrome.  You <em>can</em> turn JS on and off in Chrome, but it&#8217;s several clicks and a few windows  deep.  I&#8217;ve got some really handy buttons that do the same thing in  Firefox.  Where are those buttons located?  You guessed it.  In my  frakkin&#8217; status bar.  Chrome, Chrome, Chrome.  You mean well.  But ffs,  how about making a browser?</p>
<p>If Chrome were a car, you could drive at night, but you couldn&#8217;t dim  your lights for oncoming traffic.</p>
<h2>In conclusion,</h2>
<p>As hard as it is for me to say (since I really enjoy google search, gmail and google docs), screw Google Chrome.  At least for the time being.  Fix  your shit, and we&#8217;ll try again.</p>
<p>If Chrome were a car, the test drive  would not have sold me.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonpaschal.com/2010/06/03/google-chrome-fast-but-retarded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

