<?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>darkmatt3r</title>
	<atom:link href="http://darkmatt3r.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://darkmatt3r.com</link>
	<description>the simple love and complex world of software</description>
	<lastBuildDate>Thu, 04 Feb 2010 17:01:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jquery and asp.net in VS 2008</title>
		<link>http://darkmatt3r.com/jquery-and-asp-net-in-vs-2008/</link>
		<comments>http://darkmatt3r.com/jquery-and-asp-net-in-vs-2008/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:01:50 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/?p=64</guid>
		<description><![CDATA[
First, Download and apply the hotfix:

http://code.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736


Then download  jQuery and it&#8217;s doc file (to give you Intellisense):

jQuery &#8211; http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6.js
jQuery Doc &#8211; http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6-vsdoc.js


Open Visual Studio 2008 and whatever project you&#8217;re working with.
Next, if you don&#8217;t already have one, create a folder called scripts, js, javascript to hold your js files, whatever suits you.
Right click the folder, and [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>First, Download and apply the hotfix:
<ol>
<li>http://code.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736</li>
</ol>
</li>
<li>Then download  jQuery and it&#8217;s doc file (to give you Intellisense):
<ol>
<li><strong>jQuery</strong> &#8211; http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6.js</li>
<li><strong>jQuery Doc</strong> &#8211; http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6-vsdoc.js</li>
</ol>
</li>
<li>Open Visual Studio 2008 and whatever project you&#8217;re working with.</li>
<li>Next, if you don&#8217;t already have one, create a folder called scripts, js, javascript to hold your js files, whatever suits you.</li>
<li>Right click the folder, and select Add -&gt; Existing Item.</li>
<li>In the pop-up window, select that jQuery file and the doc file you just downloaded.</li>
<li>Once they are added to your folder, simply drag the jQuery main file (not doc) to your page, in aspx view, between the head tags.</li>
</ol>
<p>That&#8217;s it. For more info go to where I found this info:</p>
<p>http://www.dotnetcurry.com/ShowArticle.aspx?ID=231&amp;AspxAutoDetectCookieSupport=1</p>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/jquery-and-asp-net-in-vs-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kohana how to iterate through database items in a view</title>
		<link>http://darkmatt3r.com/kohana-how-to-iterate-through-database-items-in-a-view/</link>
		<comments>http://darkmatt3r.com/kohana-how-to-iterate-through-database-items-in-a-view/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 07:26:18 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/kohana-how-to-iterate-through-database-items-in-a-view/</guid>
		<description><![CDATA[&#60;?php foreach ($products as $item): ?&#62;
    &#60;tr&#62;
        &#60;td&#62;&#60;?php echo html::specialchars($item-&#62;cat_description) ?&#62;&#60;/td&#62;
        &#60;td&#62;&#60;?php echo html::specialchars($item-&#62;code) ?&#62;&#60;/td&#62;
        &#60;td&#62;&#60;?php echo html::specialchars($item-&#62;prod_description) ?&#62;&#60;/td&#62;
        &#60;td&#62;$ &#60;?php echo number_format(($item-&#62;price / [...]]]></description>
			<content:encoded><![CDATA[<pre>&lt;?php foreach ($products as $item): ?&gt;
    &lt;tr&gt;
        &lt;td&gt;&lt;?php echo html::specialchars($item-&gt;cat_description) ?&gt;&lt;/td&gt;
        &lt;td&gt;&lt;?php echo html::specialchars($item-&gt;code) ?&gt;&lt;/td&gt;
        &lt;td&gt;&lt;?php echo html::specialchars($item-&gt;prod_description) ?&gt;&lt;/td&gt;
        &lt;td&gt;$ &lt;?php echo number_format(($item-&gt;price / 100), 2) ?&gt;&lt;/td&gt;
        &lt;td&gt;per&lt;/td&gt;
        &lt;td&gt;&lt;?php echo html::specialchars($item-&gt;unit) ?&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;?php endforeach ?&gt;
</pre>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=a6d69bad-d14c-81bd-923a-7abcecf9d4d6" /></div>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/kohana-how-to-iterate-through-database-items-in-a-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kohana how to add a link in a view file</title>
		<link>http://darkmatt3r.com/kohana-how-to-add-a-link-in-a-view-file/</link>
		<comments>http://darkmatt3r.com/kohana-how-to-add-a-link-in-a-view-file/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 22:43:42 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[anchor]]></category>
		<category><![CDATA[helpers]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[kohana]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[views]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/kohana-how-to-add-a-link-in-a-view-file/</guid>
		<description><![CDATA[&#60;?php echo html::anchor($url, $link) ?&#62;
]]></description>
			<content:encoded><![CDATA[<p>&lt;?php echo html::anchor($url, $link) ?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/kohana-how-to-add-a-link-in-a-view-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kohana how to add a stylesheet to a view file</title>
		<link>http://darkmatt3r.com/kohana-how-to-add-a-stylesheet-to-a-view-file/</link>
		<comments>http://darkmatt3r.com/kohana-how-to-add-a-stylesheet-to-a-view-file/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 22:42:14 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[kohana]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[stylesheet]]></category>
		<category><![CDATA[views]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/kohana-how-to-add-a-stylesheet-to-a-view-file/</guid>
		<description><![CDATA[&#60;?php echo html::stylesheet(array(&#8217;media/css/site&#8217;),array(&#8217;screen&#8217;)); ?&#62;
This grabs the ‘site.css’ file from the media/css directory. It apparently applies the css to the “screen” media type
]]></description>
			<content:encoded><![CDATA[<p>&lt;?php echo html::stylesheet(array(&#8217;media/css/site&#8217;),array(&#8217;screen&#8217;)); ?&gt;</p>
<p>This grabs the ‘site.css’ file from the media/css directory. It apparently applies the css to the “screen” media type</p>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/kohana-how-to-add-a-stylesheet-to-a-view-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to print a word doc in c# asp.net</title>
		<link>http://darkmatt3r.com/how-to-print-a-word-doc-in-c-asp-net/</link>
		<comments>http://darkmatt3r.com/how-to-print-a-word-doc-in-c-asp-net/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 18:01:21 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/how-to-print-a-word-doc-in-c-asp-net/</guid>
		<description><![CDATA[object copies = &#34;1&#34;;   object pages = &#34;&#34;;    object range = Microsoft.Office.Interop.Word.WdPrintOutRange.wdPrintAllDocument;    object items = Microsoft.Office.Interop.Word.WdPrintOutItem.wdPrintDocumentContent;    object pageType = Microsoft.Office.Interop.Word.WdPrintOutPages.wdPrintAllPages;&#160; oWordDoc.PrintOut(    &#160;&#160;&#160;&#160; ref oFalse, ref oFalse, ref range, ref oMissing, ref oMissing, ref oMissing,    &#160;&#160;&#160;&#160; ref items, ref [...]]]></description>
			<content:encoded><![CDATA[<p>object copies = &quot;1&quot;;   <br />object pages = &quot;&quot;;    <br />object range = Microsoft.Office.Interop.Word.WdPrintOutRange.wdPrintAllDocument;    <br />object items = Microsoft.Office.Interop.Word.WdPrintOutItem.wdPrintDocumentContent;    <br />object pageType = Microsoft.Office.Interop.Word.WdPrintOutPages.wdPrintAllPages;&#160; <br />oWordDoc.PrintOut(    <br />&#160;&#160;&#160;&#160; ref oFalse, ref oFalse, ref range, ref oMissing, ref oMissing, ref oMissing,    <br />&#160;&#160;&#160;&#160; ref items, ref copies, ref pages, ref pageType, ref oFalse, ref oTrue,    <br />&#160;&#160;&#160;&#160; ref oMissing, ref oFalse, ref oMissing, ref oMissing, ref oMissing, ref oMissing);</p>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/how-to-print-a-word-doc-in-c-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to disable enter key on a form</title>
		<link>http://darkmatt3r.com/how-to-disable-enter-key-on-a-form/</link>
		<comments>http://darkmatt3r.com/how-to-disable-enter-key-on-a-form/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 17:57:34 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[enter key]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/how-to-disable-enter-key-on-a-form/</guid>
		<description><![CDATA[
Very useful for asp.net’s trigger-happy web forms
&#60;head&#62;   &#160;&#160;&#160; &#60;script type=”text/javascript”&#62;     &#160;&#160;&#160;&#160;&#160;&#160;&#160; function killEnter() {     &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (window.event.keyCode == 13) {     &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; event.returnValue = false;     &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; event.cancel = true;     &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; }  [...]]]></description>
			<content:encoded><![CDATA[<h4><a href="http://symbiote.posterous.com/how-to-disable-enter-key-c-aspnet-html"></a></h4>
<p>Very useful for asp.net’s trigger-happy web forms</p>
<p>&lt;head&gt;   <br />&#160;&#160;&#160; &lt;script type=”text/javascript”&gt;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; function killEnter() {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (window.event.keyCode == 13) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; event.returnValue = false;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; event.cancel = true;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160; &lt;/script&gt;     <br />&lt;/head&gt;     <br />&lt;body onkeydown=&quot;killEnter();&quot;&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/how-to-disable-enter-key-on-a-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter is calling me fat</title>
		<link>http://darkmatt3r.com/twitter-is-calling-me-fat/</link>
		<comments>http://darkmatt3r.com/twitter-is-calling-me-fat/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 21:08:07 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[birdies]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[whales]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/?p=40</guid>
		<description><![CDATA[Is twitter down. Technically no. It is just over-used. Okay, that is not what I meant to say. It is over capacity. I get that, your servers are too overloaded to keep up with the onslaught from us &#8220;shredded-worm hungry&#8221; little birdies. But all the time? I guess I only know how hard it is [...]]]></description>
			<content:encoded><![CDATA[<p>Is twitter down. Technically no. It is just over-used. Okay, that is not what I meant to say. It is over capacity. I get that, your servers are too overloaded to keep up with the onslaught from us &#8220;shredded-worm hungry&#8221; little birdies. But all the time? I guess I only know how hard it is to keep smallish not very huge servers going 24/7. I have admittedly never run a data center. Go ask Google how to not crash all the time, they do okay.</p>
<p>I guess I have a techie&#8217;s problem with twitter always being down, and secretly smile a little because I love it when you stuff is so popular that your crash the site. That is a good problem, unless you haven&#8217;t figured out how monetize the site yet, and your VC&#8217;s are mad, and you&#8217;re 3 years in. Not that this is the case with twitter, it may be, I don&#8217;t know or care.</p>
<p>The real problem is that every time twitter is down, it calls me fat. I feel like I&#8217;m a birdy, all happy-go-lucky and free, having fun, and fluttering through the twittersphere (TM), until I see this:</p>
<p style="text-align: center;"><a href="http://www.iimmgg.com/image/cb1664af3f46dc1f211cb925ca56d558" target="_blank"><img style="border: 0pt none; width: 160px; height: 160px;" src="http://i.iimmgg.com/images/th/08421269cc7bb39444813245613ed129.png" alt="" /><br />
click to enlarge</a></p>
<p>It is like saying &#8220;thanks, you big whale. You had to go try loading a page or something equally small and you broke the whole service for us poor little birdies who are trying to hold up your gigantic sadistic carcass.&#8221; Notice that in this graphic, it isn&#8217;t just a bunch of sad birdies who are having twit-withdrawal, it is a whale. You just had to call me fat. Thanks twitter, cuz I was feeling all supermodel-ly (TM) this morning, and now, not so much.</p>
<p>So, I sit there, spamming F5, as if it will help, and as if it won&#8217;t add to the problem of the server being overloaded. I am not trying to beat on the poor servers, and in my own one-finger way create a tiny <a href='http://en.wikipedia.org/wiki/DDoS' target='_blank'>DDoS</a> attack, I just want to not be a whale anymore. I guess it could be worse. The birdies could be holding up a cow who looks like he has hemorrhoids or something, then again, it really wouldn&#8217;t be much different.</p>
<p>Twitter, I guess I forgive you, but we need to work on our social skills a little. Don&#8217;t call me fat. I have a hard enough time getting over the fact that you don&#8217;t appreciate my long-windedness (TM) by limiting me to 140 characters. Yes, we&#8217;re still friends. Yeah, we&#8217;re cool. I think.</p>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/twitter-is-calling-me-fat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming how-to resources</title>
		<link>http://darkmatt3r.com/programming-how-to-resources/</link>
		<comments>http://darkmatt3r.com/programming-how-to-resources/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 20:05:32 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[First Glance]]></category>
		<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/?p=26</guid>
		<description><![CDATA[It is often hard to get started coding, so here are a list of sites that have helped me over the years, when trying to figure out one of the various things I need to do in a program.

Google.com It seems dumb to say, but honestly, 90% or more of the things I need to [...]]]></description>
			<content:encoded><![CDATA[<p>It is often hard to get started coding, so here are a list of sites that have helped me over the years, when trying to figure out one of the various things I need to do in a program.</p>
<ol>
<li><a href="http://www.google.com" target="_blank">Google.com</a> It seems dumb to say, but honestly, 90% or more of the things I need to know, or that someone asks me to figure out have already been answered 12,000 ways on Google. The trick is searching with the right terms.</li>
<li><a href="http://www.w3schools.com" target="_blank">w3schools.com</a> These guys have tons of easy to read, relevant tutorials on how to use a ton of languages, including HTML, XHTML, CSS, Javascript, PHP, SQL, and more.</li>
<li><a href="http://www.tizag.com" target="_blank">tizag.com</a> At first glance you may not think there is much here, but look on the left side to find all the goodies, they have great simple examples for a few key languages that have been invaluable.</li>
<li><a href="http://www.experts-exchange.com" target="_blank">Experts Exchange</a> professionally done message board for nearly every tech problem you could have, including programming</li>
<li><a href="http://www.mahalo.com/answers" target="_blank">Mahalo Answers</a> a community based Q&amp;A site with a section for tech and programming</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/programming-how-to-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software</title>
		<link>http://darkmatt3r.com/software/</link>
		<comments>http://darkmatt3r.com/software/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 16:38:13 +0000</pubDate>
		<dc:creator>Ryan Carter</dc:creator>
				<category><![CDATA[all]]></category>
		<category><![CDATA[Bill Gates]]></category>
		<category><![CDATA[Day Software]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Software Code]]></category>
		<category><![CDATA[Software Downloads]]></category>
		<category><![CDATA[Tick]]></category>

		<guid isPermaLink="false">http://darkmatt3r.com/?p=1</guid>
		<description><![CDATA[I love software. Code makes me happy. I write code all day at work, and then I go home and code some more. I am fluent in at least 13 programming languages, not including other frameworks, things I&#8217;ve dabbled in, and such. I use several of them every day. I love software downloads, the potential [...]]]></description>
			<content:encoded><![CDATA[<p>I love software. Code makes me happy. I write code all day at work, and then I go home and code some more. I am fluent in at least 13 programming languages, not including other frameworks, things I&#8217;ve dabbled in, and such. I use several of them every day. I love software downloads, the potential and wonder that awaits as I see the KB tick by on its way to bringing me something new.</p>
<p>Like Bill Gates, I see the power and potential that software holds for those who have vision and can harness it to accomplish nearly any goal.</p>
]]></content:encoded>
			<wfw:commentRss>http://darkmatt3r.com/software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
