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
WTF did Revival Productions just do?
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
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
April 2024
Monday, November 22, 2010
roncli.com Update
Posted: 1:35:00 AM 0 comments
Now playing: Rise Against - Savior (4:02)

With the Gate project being all but ditched, I have focused attention on the roncli.com redesign I've been promising for over a year now.

The new roncli.com website will initially combine my main site and my blog. However, it will also eventually be home to the defunct projects website and, of course, The Nightstalker's music.

And I must say. This site is turning out to be bad ass.

The site is heavy into jQuery. In fact, the entire login process is done via jQuery AJAX. The latest blog article is shown on the front page - also loaded via jQuery AJAX - and you can go through posts by clicking the appropriate icons. And my does it load fast.

I really am having a blast updating this thing, and I hope to have something live before year's end. That is, if the Cataclysm doesn't completely sidetrack me first.

Labels: , , , ,

Friday, October 02, 2009
An Experiment
Posted: 5:53:00 PM 0 comments
Six Minutes To Release seems to be my favorite testing grounds for experimental code lately. Fortunately, the RSS experiment was a success.

This one involves moving the ViewState off of the HTML page and on to the database. Some of the ViewStates were getting huge, even when I'd try to manage the size of the ViewState. So I decided to take that out of the HTML to slim some pages down. So far it seems to be working, but it hasn't been up for too long.

This caused me to rethink my ASP.Net model, and I ended up putting data that I usually store in a separate class, such as login information, into the class that inherits System.Web.UI.Page. Makes it much cleaner in my opinion, as I don't have to store references to Response, Request, and Server.

So we'll see how this goes. This is all based on an idea I got for Gate, and if it goes well I'll end up using it in Gate as well. Should be fun.

Labels: , , ,

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: , , , , ,