<?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>That Puerto Rican Rubyist &#187; Announcements</title>
	<atom:link href="http://www.dennmart.com/category/announcements/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dennmart.com</link>
	<description>Official Blog of Dennis Martinez</description>
	<lastBuildDate>Fri, 19 Aug 2011 05:17:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Fail Notifier &#8211; Get Real-Time Notifications When Stuff Fails</title>
		<link>http://www.dennmart.com/2010/10/27/fail-notifier-get-real-time-notifications-when-stuff-fails/</link>
		<comments>http://www.dennmart.com/2010/10/27/fail-notifier-get-real-time-notifications-when-stuff-fails/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 05:05:52 +0000</pubDate>
		<dc:creator>Dennis Martinez</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.dennmart.com/?p=207</guid>
		<description><![CDATA[Last week, I was doing some routine maintenance on my VPS (which I should definitely do more often, as well as writing some more blog posts) and I noticed that one of my cron jobs that backed up some files to Tarsnap was incorrect and silently failing. Now, I could modify this simple Bash script [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, I was doing some routine maintenance on my VPS (which I should definitely do more often, as well as writing some more blog posts) and I noticed that one of my cron jobs that backed up some files to <a href="http://www.tarsnap.com/">Tarsnap</a> was incorrect and silently failing. Now, I could modify this simple Bash script to shoot off an email to me whenever something happens. But I was feeling a bit creative and didn&#8217;t want to just write a few lines of Bash and be done with it.</p>
<p>As any software engineer is prone to do, I wanted to build something a bit more cool. That&#8217;s when I figured out that this would be the perfect chance to finally do something useful with <a href="http://notifo.com/">Notifo</a>. Notifo is an awesome service that provides real-time notifications to a number of devices, in particular to iPhones (although their list of supported devices seems to be rapidly expanding). I&#8217;ve been using Notifo just for setting up simple timed reminders and to get notified of replies and mentions from Twitter using <a href="http://push.ly/">push.ly</a>. Getting notifications in real-time of failures would be something great to have.</p>
<p>Using <a href="http://www.ruby-lang.org/en/">Ruby,</a>, <a href="http://www.sinatrarb.com/">Sinatra</a> and the <a href="http://github.com/jot/notifo">Notifo gem</a>, I quickly whipped up a small app called <a href="http://github.com/dennmart/fail_notifier">Fail Notifier</a>. Basically it&#8217;s a service where any application / server can make a simple HTTP POST to where Fail Notifier is running, and it will relay the message to the user in real-time using Notifo. Simple, but very useful. The best thing is that you can use it anywhere to notify you about anything from any app, programming language, server, or anything else that can make a simple HTTP request. For example, I have Fail Notifier installed on my VPS (<a href="http://wiki.nginx.org/Main">nginx</a> and the recently-released <a href="http://www.modrails.com/>Phusion Passenger 3.0.0</a>, for those who are curious) and configured my cron jobs to notify me via Bash / <a href="http://curl.haxx.se/">cURL</a> about some failures, and I also have some notifications for very important background tasks in a Rails app.</p>
<p>Of course, Fail Notifier is entirely open-source for you to do with it as you please. Feel free to <a href="http://github.com/dennmart/fail_notifier">fork the code on Github</a> and hack away to your hearts content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennmart.com/2010/10/27/fail-notifier-get-real-time-notifications-when-stuff-fails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MongoShort &#8211; URL Shortener using SInatra and MongoDB</title>
		<link>http://www.dennmart.com/2010/01/14/mongoshort-url-shortener-using-sinatra-and-mongodb/</link>
		<comments>http://www.dennmart.com/2010/01/14/mongoshort-url-shortener-using-sinatra-and-mongodb/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 02:56:58 +0000</pubDate>
		<dc:creator>Dennis Martinez</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.dennmart.com/?p=175</guid>
		<description><![CDATA[As many other developers, I&#8217;ve been experimenting with the different &#8220;NoSQL&#8221; data stores. Most of them are really great, like Redis, Tokyo Cabinet and CouchDB. My favorite so far, however, is MongoDB. I think it hits the sweet spot between a normal relational databases and key-value stores. After a while playing around MongoDB, I decided [...]]]></description>
			<content:encoded><![CDATA[<p>As many other developers, I&#8217;ve been experimenting with the different &#8220;NoSQL&#8221; data stores. Most of them are really great, like <a href="http://code.google.com/p/redis/">Redis</a>, <a href="http://1978th.net/tokyocabinet/">Tokyo Cabinet</a> and <a href="http://couchdb.apache.org/">CouchDB</a>. My favorite so far, however, is <a href="http://www.mongodb.org/">MongoDB</a>. I think it hits the sweet spot between a normal relational databases and key-value stores. After a while playing around MongoDB, I decided to do something with it. That something that I did is called <a href="http://github.com/dennmart/mongoshort">MongoShort</a>.</p>
<p>MongoShort is a very simple URL shortening service, written with Sinatra and MongoDB. I originally wrote this little app to be used as part of a larger Rails application. However, it was mostly done as a way to do something with MongoDB. Particularly, I wanted to start using the awesome <a href="http://github.com/jnunemaker/mongomapper">MongoMapper</a> library. It&#8217;s really a breeze to use all these tools together, and it makes developing small apps on Ruby really fun. I hope someone can grab a copy of MongoShort and learn a bit of the basics of these wonderful tools.</p>
<p><a href="http://github.com/dennmart/mongoshort">Go fork MongoShort on GitHub now!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennmart.com/2010/01/14/mongoshort-url-shortener-using-sinatra-and-mongodb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check out my other blog &#8211; RubyEveryday.com</title>
		<link>http://www.dennmart.com/2009/01/13/check-out-my-other-blog-rubyeverydaycom/</link>
		<comments>http://www.dennmart.com/2009/01/13/check-out-my-other-blog-rubyeverydaycom/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 03:42:53 +0000</pubDate>
		<dc:creator>Dennis Martinez</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby On Rails]]></category>

		<guid isPermaLink="false">http://www.dennmart.com/?p=123</guid>
		<description><![CDATA[Note: Unfortunately, due to some lack of time, plus a large amount of spam comments being targeted at that site, I decided to take it down. Hopefully in the near future I&#8217;ll be able to continue this small side-project. I recently deployed a small Rails app I built in a weekend, called RubyEveryday. In it, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Note:</strong> Unfortunately, due to some lack of time, plus a large amount of spam comments being targeted at that site, I decided to take it down. Hopefully in the near future I&#8217;ll be able to continue this small side-project.</p>
<p>I recently deployed a small Rails app I built in a weekend, called <a href="http://www.rubyeveryday.com"><strong>RubyEveryday</strong></a>. In it, I&#8217;m posting one article a day about any Ruby-related news, whether it be current news or some code snippets of work I&#8217;ve done. My goal is to have it updated every single day, so it should be relatively fresh. Go check it out now, and follow the site&#8217;s updates on <a href="http://twitter.com/rubyeveryday"><strong>Twitter</strong></a>. Oh, and don&#8217;t forget to <a href="http://twitter.com/dennmart">follow me</a></strong> on Twitter, too.</p>
<p>Don&#8217;t worry, I&#8217;m not shutting this blog yet. This will continue to be my main writing source for whatever is on my mind in the techology world, so keep an eye out for new stuff coming your way soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennmart.com/2009/01/13/check-out-my-other-blog-rubyeverydaycom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BarterQuest &#8211; THE Trading Site On The Internet!</title>
		<link>http://www.dennmart.com/2008/07/10/barterquest-the-trading-site-on-the-internet/</link>
		<comments>http://www.dennmart.com/2008/07/10/barterquest-the-trading-site-on-the-internet/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 03:20:11 +0000</pubDate>
		<dc:creator>Dennis Martinez</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://www.dennmart.com/?p=69</guid>
		<description><![CDATA[Well, it&#8217;s been a lot of hard work over the last couple of months (which can explain my absence on this blog), but myself and the company I&#8217;m working for finally launched the Beta version of our site on the Internet! The is BarterQuest, and it&#8217;s a really great trading site. Okay, so I might [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s been a lot of hard work over the last couple of months (which can explain my absence on this blog), but myself and the company I&#8217;m working for finally launched the Beta version of our site on the Internet! The is <strong><a href="http://www.barterquest.com/">BarterQuest</a></strong>, and it&#8217;s a really great trading site. Okay, so I might be slightly biased, as I spent the last five and a half months working on this. But really, BarterQuest is a trading site like no other I&#8217;ve seen around, which really got me excited to come work here in the first place.</p>
<p>We built some cool features to make the entire trading experience fun and much different from the other sites that have similar functionality:</p>
<ul>
<li>We have a home-grown Matching Engine, which takes all items that users have and want, and generates trading offers for you automatically, so you don&#8217;t need to be spending time browsing all over the site looking for stuff you want.</li>
<li>You not only can trade with one person, you&#8217;ll also be able to trade with multiple people. For example, User #1 has something User #2 wants, but User #2 doesn&#8217;t have anything User #1 wants. But don&#8217;t fret! User #3 has exactly what User #1 wants, and wants what User #2 has. So our system sets up a trade between all three individuals &#8211; each user getting what they wanted. Pretty neat, if I say so myself.</li>
<li>While we can only trade Goods for the time being, we will soon add trading for Services and Real Estate as well. Have a beach house you won&#8217;t be using for the month of August? Trade that lost time with someone who offers Home Repair services! This will open new ways of trading like you never imagined before.</li>
</ul>
<p>This is only the beginning, but I&#8217;m real excited for what&#8217;s to come. You can go visit and <strong><a href="http://www.barterquest.com/register">register</a></strong> right now! During this Beta Testing period, all trading activity on the site is totally <strong>free</strong>. Not only that, if you complete a successful trade during the Beta Testing period, you&#8217;ll be able to use our site free for <strong>an entire year</strong>! Really, it&#8217;s a win-win situation, so what are you waiting for?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennmart.com/2008/07/10/barterquest-the-trading-site-on-the-internet/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.096 seconds -->

