<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9" -->
<rss version="0.92">
<channel>
	<title>Matt Conroy</title>
	<link>http://www.mattconroy.com</link>
	<description>My NoLedge</description>
	<lastBuildDate>Thu, 24 Jun 2010 21:11:24 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>JQuery Toggle Ignore Double Click</title>
		<description><![CDATA[Just replace $(&#8220;.header&#8221;) with your selector.

function toggle() {
$(".header").unbind("click");

var next = $(this).next();
if (next.css("display") != "none")
next.hide("slow", bind);
else
next.show("slow", bind);
}

function bind() {
$(".header").click(toggle);
}

bind();

]]></description>
		<link>http://www.mattconroy.com/index.php/2010/06/24/jquery-toggle-ignore-double-click/</link>
			</item>
	<item>
		<title>Posting a form as a JSON (JQuery)</title>
		<description><![CDATA[After hours of searching&#8230; Here is a dirty solution I found.
1. Add this function to the prototype.
$.fn.serializeObject = function()
{
var o = {};
var a = this.serializeArray();
 
 $.each(a, function() {
if (o[this.name]) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value &#124;&#124; '');
} else {
o[this.name] = this.value &#124;&#124; '';
}
});
return o;
};

Then use this conversion when posting.

JSON.stringify($("form").serializeObject())

JSON.stringify comes from json2.js. You can get [...]]]></description>
		<link>http://www.mattconroy.com/index.php/2010/06/18/posting-a-form-as-a-json-jquery/</link>
			</item>
	<item>
		<title>Multi Factor Security Review</title>
		<description><![CDATA[Introduction
One of the newer terms coined in today&#8217;s business world is “multi factor” security. With all of the new security threats appearing daily, having the ability to authenticate a user of a networked system is essential to the success of any business. With multi factor security we can close the gap of doubt when determining [...]]]></description>
		<link>http://www.mattconroy.com/index.php/2009/04/26/multi-factor-security-review/</link>
			</item>
	<item>
		<title>Compiling an Apache Maven Project</title>
		<description><![CDATA[Compiling a Maven project was pretty darn easy. You simply run the command mvn compile. This command tells maven to compile the source code into classes. The classes end up in the target/classes dir and target/test-classes dir.
Running mvn package will build a jar of the project. The version used in the jar name is contained [...]]]></description>
		<link>http://www.mattconroy.com/index.php/2009/04/04/compiling-an-apache-maven-project/</link>
			</item>
	<item>
		<title>Creating an Apache Maven Project</title>
		<description><![CDATA[Well, I am finally taking the plunge into Apache Maven. I have found that managing dependencies is becoming unbearable and Maven is being used by several open source project that I use so&#8230; Here I go, one step at a time.
My first question was obvious: How do I create a new Maven project?
After a few [...]]]></description>
		<link>http://www.mattconroy.com/index.php/2009/04/04/creating-an-apache-maven-project/</link>
			</item>
	<item>
		<title>Hello to the World!</title>
		<description><![CDATA[Just figured I would say hi to the world. I haven&#8217;t posted in a while and a friend of mine is always saying that they get way more hits than me. Oh well, I guess I will have to be second best  
]]></description>
		<link>http://www.mattconroy.com/index.php/2008/05/02/hello-to-the-world/</link>
			</item>
	<item>
		<title>Arts and Crafts and Other Fun Stuff</title>
		<description><![CDATA[Go to Molly&#8217;s site @ http://www.mollysevertson.com
]]></description>
		<link>http://www.mattconroy.com/index.php/2008/04/01/arts-and-crafts-and-other-fun-stuff/</link>
			</item>
	<item>
		<title>Goofy Flash Javascript Movie</title>
		<description><![CDATA[A friend of mine finds things like this all the time. Watch this silent movie. Very witty!
http://users.telenet.be/kixx/
]]></description>
		<link>http://www.mattconroy.com/index.php/2008/03/10/goofy-flash-javascript-movie/</link>
			</item>
	<item>
		<title>Installing SSH on Ubuntu 7.04</title>
		<description><![CDATA[I am going to start creating videos for little things that I setup on Ubuntu. Maybe it will help someone. If not I wasted time, but I got another post 
Ubuntu SSH Install
]]></description>
		<link>http://www.mattconroy.com/index.php/2008/02/27/installing-ssh-on-ubuntu-704/</link>
			</item>
	<item>
		<title>Regular Grammar Help</title>
		<description><![CDATA[I found a good document for regular grammars and thought I would post it so I wouldn&#8217;t lose it.
Have fun!
http://www.cset.oit.edu/~yangs/CST229/Lecture/6_grammarforms.pdf
Regular Grammar
]]></description>
		<link>http://www.mattconroy.com/index.php/2008/01/29/regular-grammar-help/</link>
			</item>
</channel>
</rss>
