Skip to main content

New Run BASIC Hosting Service

The first Run BASIC Hosting Service at http://runbasicnet.com shutdown a few months ago. This happened just before I realized that I needed a hosting service for my own applications. If it shutdown a month later, I may have become one of Jerry's last customers.

Personally, I don't want to rely on a server running in my home connected to the Internet through my Comcast cable modem. I know a lot of people do that and it's the cheapest way to go, but I did some testing and found that I have service interruptions almost every day. They are usually short and during the night, though. Plus, there are the occasional major outages both in cable service and power that usually happen during winter months or in bad weather. I live in Atlanta, so this doesn't happen often, but it's still often enough.

Last month, I purchased a subscription for my own VPS (Virtual Private Server) at VPSLand. I also started wondering if anyone else in the Run BASIC community would like to have a hosting service again. I posted this question on the forum and there was some interest, so I decided to throw my hat into the ring and start my own service for both myself and the Run BASIC community.

The service will launch in January, 2010. Yesterday, I brought a new website online that gives more details -- including pricing. It will be as affordable as the first hosting service with more features. My strategy is to start small, just as the Run BASIC community is still small and scale up as needed. The VPS -- instead of a dedicated server -- is the smartest starting point financially.

The new address for the service is http://www.runbasichosting.com.

Comments

Popular posts from this blog

Run Basic RC1 Released

Carl invited me to be a beta tester for his upcoming Run Basic product about 4 months ago. This week he released Release Candidate 1 to the beta testing group. It's been exciting to see the evolution of RB from Beta 2 through Beta 5 to RC1. New features that aren't publicly available at www.runbasic.com include: A new syntax to use objects. (e.g. #object method). You can see the Smalltalk influence and the syntax leverages a Liberty Basic programmer's conceptual model of handles. An XMLparser object. A SQLITE object. A FILE object. A TABLE object. HTTPGet$ function that performs an HTTP GET. Carl stated that there will be a few more release candidates before the official release of the Run Basic Personal Server. There will be an "Enterprise" version available at a later date which should include version control and enterprise database access. This release will be the most significant event in the Basic programming world since the introduction of Visual Basic for...

Liberty Basic in 2010

This past year has seen some modest progress in the world of Liberty Basic: Carl published a book titled Beginning Programming with Liberty BASIC . This is a great book -- I read it from cover to cover. Even if you're an experienced programmer, it is a fast way to get the gist of the language and you may even pick up a few new things along the way. Liberty Basic 4.04. This release offers better compatibility with Windows Vista and 7. It also fixes some bugs. I think it will be the last release of the 4.x version. Liberty Basic Pro. This is just 4.04 and Assist combined into a single product. Hopefully 2011 will be the year of Run Basic.

Tiny Basic 1.2 Progress

I'm working on the next release of Tiny Basic. Here's the latest list of enhancements: Added GOSUB/RETURN statements. Added TITLEBAR statement for the interpreter console. Increased program lines from 100 to 1024. Rewrote the MEM code. Added runtime error handling in the interpreter. It trys to recover to the READY prompt. Created test program for the interpreter (i.e. primitive unit testing). Granted that some of these changes are behind the scenes, but I'm trying to increase the robustness of the interpreter without refactoring it into something completely different. Before I release Tiny Basic 1.2, I still want to add these features: String variables (i.e. a$ -- z$). FOR/NEXT loops Fix known bugs in current version. The work continues...