<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3480622628319823342</id><updated>2011-04-22T00:07:31.426-04:00</updated><category term='Life'/><category term='Whatever'/><category term='Programming'/><title type='text'>Joseph Billena</title><subtitle type='html'>ASP.NET, C#, .NET, Airsoft and Life</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sepdev.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://sepdev.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Joseph Billena</name><uri>http://www.blogger.com/profile/18405125861399220414</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3480622628319823342.post-2398466373046025045</id><published>2007-12-09T12:05:00.000-05:00</published><updated>2007-12-09T12:22:56.085-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Whatever'/><category scheme='http://www.blogger.com/atom/ns#' term='Life'/><title type='text'>Go Saint Reapers!</title><content type='html'>Nonoy, Ben and I created the &lt;a href="http://saintreapers.com/"&gt;forum&lt;/a&gt; for our highschool batch and it was successful. The following is our todo list in order to achieve our goal.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Invite our friends&lt;/li&gt;&lt;li&gt;Create a fun environment to keep and encourage our friends to post.&lt;/li&gt;&lt;li&gt;Make it exciting&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;It turns out that all we need to do was to invite our friends and create some threads and it all started from there. Now most of us are hooked already and some of us including me check the forum as soon as I wake up. Also I have seen posts with an interval of just minutes with each other. It's different than the mailing list we had before... for some reason everybody stopped emailing. The forum has different feel that email and it makes it more of a community than just email everybody.&lt;/p&gt;&lt;p&gt;We have a photo gallery which has a storage limit of 10mb and we set it to resize the pictures. We have a chatroom which I think at first we use it but lately it some how no ones logging in.&lt;/p&gt;&lt;p&gt;Anyway, so far so good. I'm glad that people are participating although we need to invite more of our batchmates.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3480622628319823342-2398466373046025045?l=sepdev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sepdev.blogspot.com/feeds/2398466373046025045/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3480622628319823342&amp;postID=2398466373046025045' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default/2398466373046025045'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default/2398466373046025045'/><link rel='alternate' type='text/html' href='http://sepdev.blogspot.com/2007/12/saintreaperscom.html' title='Go Saint Reapers!'/><author><name>Joseph Billena</name><uri>http://www.blogger.com/profile/18405125861399220414</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3480622628319823342.post-3394903411698532462</id><published>2007-11-30T16:40:00.000-05:00</published><updated>2007-11-30T21:44:34.917-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Programming'/><title type='text'>Sample C# Code with Color Coding</title><content type='html'>The snippet below is a test for c# color scheme in blogger&lt;br /&gt;&lt;!-- code formatted by http://manoli.net/csharpformat/ --&gt;&lt;br /&gt;&lt;pre class="csharpcode"&gt;&lt;br /&gt;&lt;span class="rem"&gt;/*************************************************&lt;/span&gt;&lt;br /&gt;&lt;span class="rem"&gt;* This sample illustrates how to use an ArrayList &lt;/span&gt;&lt;br /&gt;&lt;span class="rem"&gt;* and a foreach loop.&lt;/span&gt;&lt;br /&gt;&lt;span class="rem"&gt;* (from the quickstart tutorials)&lt;/span&gt;&lt;br /&gt;&lt;span class="rem"&gt;**************************************************/&lt;/span&gt;&lt;br /&gt;&lt;span class="kwrd"&gt;using&lt;/span&gt; System;&lt;br /&gt;&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Collections;&lt;br /&gt;&lt;br /&gt;&lt;span class="kwrd"&gt;class&lt;/span&gt; ListSample&lt;br /&gt;{&lt;br /&gt;    &lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; Main(String[] args)&lt;br /&gt;    {&lt;br /&gt;        &lt;span class="rem"&gt;//create the arraylist and add the items&lt;/span&gt;&lt;br /&gt;        ArrayList fruit = &lt;span class="kwrd"&gt;new&lt;/span&gt; ArrayList();&lt;br /&gt;        fruit.Add(&lt;span class="str"&gt;"Apple"&lt;/span&gt;);&lt;br /&gt;        fruit.Add(&lt;span class="str"&gt;"Pear"&lt;/span&gt;);&lt;br /&gt;        fruit.Add(&lt;span class="str"&gt;"Orange"&lt;/span&gt;);&lt;br /&gt;        fruit.Add(&lt;span class="str"&gt;"Banana"&lt;/span&gt;);&lt;br /&gt;&lt;br /&gt;        &lt;span class="rem"&gt;//loop through the arraylist elements&lt;/span&gt;&lt;br /&gt;        &lt;span class="kwrd"&gt;foreach&lt;/span&gt; (String item &lt;span class="kwrd"&gt;in&lt;/span&gt; fruit)&lt;br /&gt;        {&lt;br /&gt;            Console.WriteLine(item);&lt;br /&gt;        }&lt;br /&gt;        &lt;br /&gt;        Console.WriteLine (&lt;span class="str"&gt;"\nPress Return to exit."&lt;/span&gt;);&lt;br /&gt;        Console.Read();&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3480622628319823342-3394903411698532462?l=sepdev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sepdev.blogspot.com/feeds/3394903411698532462/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3480622628319823342&amp;postID=3394903411698532462' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default/3394903411698532462'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default/3394903411698532462'/><link rel='alternate' type='text/html' href='http://sepdev.blogspot.com/2007/11/this-sample-illustrates-how-to-use.html' title='Sample C# Code with Color Coding'/><author><name>Joseph Billena</name><uri>http://www.blogger.com/profile/18405125861399220414</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3480622628319823342.post-3866219619822488235</id><published>2007-11-30T16:01:00.000-05:00</published><updated>2007-11-30T16:58:57.332-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Programming'/><category scheme='http://www.blogger.com/atom/ns#' term='Whatever'/><title type='text'>Community for Pinoy Developers</title><content type='html'>Recently, I was looking around for articles about &lt;a href="http://castleproject.org/monorail/index.html" target="_blank"&gt;MonoRail&lt;/a&gt;. And I stumble upon this &lt;a href="http://www.ayende.com/Blog/archive/2006/03/03/7848.aspx" target="_blank"&gt;post&lt;/a&gt; from &lt;a href="http://www.ayende.com/" target="_blank"&gt;Ayende&lt;/a&gt;, where he talks about a post about MonoRail from a blog in &lt;a href="http://devpinoy.org/default.aspx" target="_blank"&gt;devpinoy.org&lt;/a&gt;, I didn't really finished reading what he was writing about because my attention was redirected to "Wow, a filipino developers community!". So I joined the community and found that they are also .NET enthusiasts especially with some people working with open source projects, that I'm also excited about. The community is for all not only for .NET programmers, it's also for C++, Java and etc... Basically it's for all filipino code geeks. The founder is from San Diego and so far I found that most of the members are from Philippines. I hope there are members around here in New Jersey, so we could form kind of like a .NET User Group or something that we could talk anything about .NET. Anyway, I'm really happy that I found a new community.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3480622628319823342-3866219619822488235?l=sepdev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sepdev.blogspot.com/feeds/3866219619822488235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3480622628319823342&amp;postID=3866219619822488235' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default/3866219619822488235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default/3866219619822488235'/><link rel='alternate' type='text/html' href='http://sepdev.blogspot.com/2007/11/community-for-pinoy-developers.html' title='Community for Pinoy Developers'/><author><name>Joseph Billena</name><uri>http://www.blogger.com/profile/18405125861399220414</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3480622628319823342.post-3499531015232791376</id><published>2007-11-29T15:59:00.000-05:00</published><updated>2007-11-30T16:52:19.262-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Programming'/><title type='text'>MVC Frameworks in .NET</title><content type='html'>Scott Guthrie announced the &lt;a title="ASP.NET MVC Framework" href="http://weblogs.asp.net/scottgu/archive/2007/10/14/asp-net-mvc-framework.aspx" target="_blank"&gt;ASP.NET MVC Framework&lt;/a&gt; last month and he has been writing some tutorials about it &lt;a href="http://weblogs.asp.net/scottgu/archive/2007/11/13/asp-net-mvc-framework-part-1.aspx"&gt;here&lt;/a&gt;. I'm really excited for it to come out especially when you read about it in every blog posts. But there is also &lt;a title="MonoRail" href="http://castleproject.org/monorail/index.html" target="_blank"&gt;Castle Project's MonoRail&lt;/a&gt;. It's also a MVC Framework from Castle which is part of their web application framework. They have a bunch of stuff like ActiveRecord, MicroKernal/Windsor Container. But right now I'm only interested with their MonoRail. So far I find MonoRail very easy to follow but I'm not really sure about the performance since I haven't seen any successful open source projects that uses it yet. Although companies uses it already, I heard one in &lt;a href="http://hanselminutes.com/default.aspx?showID=71"&gt;HanselMinutes&lt;/a&gt;, I want to see a complete open source project that is built with MonoRail. I'm not a very experience developer but I have enough experience to know what a good code looks like. Here at work, we do everything opposite from what you call "best practices", so I need to rely on open source projects and articles to learn how to code better. Anyway, if someone out there knows some open source project that is built with MonoRail, let me know.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3480622628319823342-3499531015232791376?l=sepdev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sepdev.blogspot.com/feeds/3499531015232791376/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3480622628319823342&amp;postID=3499531015232791376' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default/3499531015232791376'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3480622628319823342/posts/default/3499531015232791376'/><link rel='alternate' type='text/html' href='http://sepdev.blogspot.com/2007/11/mvc-frameworks-in-net.html' title='MVC Frameworks in .NET'/><author><name>Joseph Billena</name><uri>http://www.blogger.com/profile/18405125861399220414</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
