roncli.com blog
The blog of roncli
roncli.com blog
roncli.com
blog
Profile
roncli
Houston, Texas, United States
Labels
Coding
CTG Music
Editorials
Games
Miscellaneous
Music
Servers
Silliness
Software
Sports
Trax in Space Beta
Weather
Recent Posts
A Tale of Two Communities
The Final Stretch
A Two Tiered, Untiered OTL
Secretly, you wish you could've done what I did
What have I done since roncli.com v2?
It's Done. It's Finally Done.
The Big Picture is Starting to Wear on Me
A Low Bang to Buck Ratio
win-acme
Overload has truth; next it needs balance
Archives
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
June 2008
July 2008
September 2008
December 2008
February 2009
July 2009
August 2009
September 2009
October 2009
November 2009
February 2010
March 2010
April 2010
June 2010
July 2010
August 2010
September 2010
October 2010
November 2010
December 2010
March 2011
June 2011
July 2011
August 2011
September 2011
October 2011
December 2011
January 2012
February 2012
April 2012
July 2012
November 2012
July 2013
April 2014
July 2014
August 2014
November 2014
December 2014
March 2015
April 2015
May 2015
June 2015
July 2015
September 2015
January 2016
February 2016
May 2016
July 2016
November 2016
March 2017
January 2018
May 2018
June 2018
January 2019
January 2021
February 2021
March 2021
August 2021
October 2021
December 2021
August 2022
November 2022
October 2023
February 2024
Current Posts
Monday, September 21, 2009
Gate
Posted: 1:39:00 AM 0 comments
In a recent post, I mentioned that I was combining roncli.com, my projects site, and this blog into one website. Well, work on it has begun, and it's called Gate. The name Gate is actually short for Aggregate, which I will somehow work into the main theme.

Gate itself aims to be an open source, modular project. The first three modules will be a wiki, a Blogger-supported blog, and a project management module. I've been working on the SQL Server database setup the last week and a half or so and have it just about completed. Now I gotta write the repair script, which is what happens when installation goes wrong. It's been pretty fun, as I've been using jQuery and jQuery UI for the interface, allowing for the installation to be robust and user friendly.

The challenge is going to be figuring out how I want to do the modules. There are two problems to solve here. First, I need to figure out how to handle database usage between the modules and the core application. I'm using LINQ to SQL to build the data structures and synchronizing them with SMO, so theoretically the modules could use a separate LINQ to SQL file for the same database, but that might not be very optimal.

Second, I need to figure out if I am going to be able to just drag and drop modules into the /bin directory or if I'm going to have to compile it into the main website. The design strategy is to keep things simple for the user to install, so it would be nice if I didn't have to recompile things for every module. I know how to do plugins for desktop applications, as I have in Solar, a TCP/IP text processing engine that I've written that allows users to write their own plugins to process the text however they want to. Would it work for websites, or even make sense for them? That is the challenge ahead of me.

The nice part of it, like I said, is that it's open source. I'm doing this mostly for myself, and if others can get good use out of it, that's great. And if I can get others to help out with the code, that's even better. But until I have a functional version, I'm pretty much just going to write the core module plus the wiki, blog, and projects modules myself. Once the new roncli.com is online, then I'll look into releasing Gate as its own project.

Labels: , , , , ,

Tuesday, September 08, 2009
LibWowArmory 0.2.1 beta
Posted: 4:35:00 PM 0 comments
Blizzard decided in the latest World of Warcraft patch to add items that are only usable by one of the factions while providing an item with exact stats but different looks to the other faction. LibWowArmory, my VB.Net Armory parser, has picked up on this, and thus version 0.2.1 is released.

Labels: , , ,

Friday, September 04, 2009
Cleanup day
Posted: 4:56:00 PM 0 comments
I suppose today is cleanup day.

I removed achaea.roncli.com and d3tl.org from my server. The source code to these sites can be found in my Subversion repository at svn://www.roncli.com/ronclipro/old/Websites.

If it's the data you're after, I have backed up all the SQL Server information, which is available upon request.

Labels: , , , ,

PXO Pilot aliases
Posted: 4:38:00 PM 0 comments
Remember PXO? If so, you probably remember some people who loved their aliases, often griefing people to no end.

For fun, I compiled a list of pilots along with their possible aliases from a period of about a year. I ran an IRC bot on the PXO's server and tracked every person that entered a channel. The bot was hidden because it never actually joined a channel, but it could use standard IRC commands to see who was in what channel and to get additional information about them. Yes, I was a sneaky bastard.

It served no real purpose. This was back in the days when I was cynical and bored, and had nothing better to code. Oh, the days. So anyway, I figured I'd at least share the information I collected, and you can go back and laugh at the good old days.

Oh, if only there was a Descent 4.

Labels: , ,

As if I don't have enough to do
Posted: 2:04:00 PM 0 comments
In addition to working on my personal projects (including the Six Minutes To Release website and the associated libraries), leading a 7-day a week WoW raiding guild, and somehow still finding time to sleep, I've decided to participate in the open source development of Rawr, an equipment planner and optimizer for World of Warcraft.

Primarily, I'll be working on the protection paladin module, as the primary handler of that module has stopped working on it. Already I've fixed some bugs from the latest version, and the module should be usable again in the next release. I really don't plan on adding a whole lot, there's already a lot of good stuff in there. My goal is to make sure that there's as little down time as possible between patches so that protection paladins can stay up to date with the kind of gear that they need.

Labels: , , , ,

Tuesday, September 01, 2009
FeedPage
Posted: 1:48:00 PM 0 comments
Because the code is so short, I've decided to just go ahead and post the code to FeedPage here. Remember, you must have a reference to the ASP.Net RSS Toolkit in order to compile this.

Imports RssToolkit.Rss
Imports System.Web.UI

Namespace roncliProductions.LibFeedPage

Public MustInherit Class FeedPage
    Inherits Page

    Protected Overrides Sub OnPreInit(ByVal e As System.EventArgs)
        MyBase.OnPreInit(e)
        Dim strFeed As String = Request.QueryString("feed")
        If Not String.IsNullOrEmpty(strFeed) Then
            If strFeed = "atom" Or strFeed = "opml" Or strFeed = "rdf" Or strFeed = "rss" Then
                Response.ContentType = "text/xml"
                Select Case strFeed
                    Case "atom"
                        Response.Write(GetFeed().ToXml(DocumentType.Atom))
                    Case "opml"
                        Response.Write(GetFeed().ToXml(DocumentType.Opml))
                    Case "rdf"
                        Response.Write(GetFeed().ToXml(DocumentType.Rdf))
                    Case "rss"
                        Response.Write(GetFeed().ToXml(DocumentType.Rss))
                End Select
            End If
            Response.End()
        End If
    End Sub

    Protected MustOverride Function GetFeed() As RssDocument

End Class

End Namespace


Easy enough. To use, simply change your inheritance from System.Web.UI.Page to roncliProductions.LibFeedPage.FeedPage, and inside that construct and return an RssDocument object. Then, when you add ?feed=xml to the URL of the page, you will get an RSS feed.

Labels: , , ,

Fastest. Project. Evar.
Posted: 12:56:00 AM 0 comments
I've decided that I'm going to write a website that combines my three main personal sites: Projects, roncli.com, and this blog.

One of the biggest features of this site is the ability to easily add an RSS feed to a webpage without having to write separate pages or nasty ASP.Net http handlers. Basically what I wanted was to have URL's that look like "...page.aspx" load the usual aspx, but "...page.aspx?feed=rss" load the RSS feed instead of the normal page.

This idea led me to the ASP.Net RSS Toolkit, a very easy to use toolkit with some nice features. Including the ability to quickly make RSS feeds. That, combined with a 34-line class (counting 6 blank lines) that inherits from System.Web.Ui.Page, overrides OnPreInit, and forces inheriting classes to override a GetFeed function, and I'm ready to create feeds not only in RSS, but also Atom, OPML, and RDF as well.

Wow. The demo app was more challenging to write than this gem.

I want to give it a test run, probably on some Six Minutes To Release pages, and see if it's stable. However, shortly thereafter I will probably release this to CodePlex so that other people can get their hands on it. I am rapidly becoming addicted to RSS feeds since my iPhone reads em pretty good using Byline. I have feeds from all over the Internet, and it's nice to be able to have one central place to find out what's going on in my own little corner of the world.

Labels: , , , , , , ,