Game Changing Inspiration – Wolfram
by Greg on May.04, 2009, under blog, business, software, startup
![]()
This weekend I was reading through some tech articles online trying to keep myself abreast of the latest and greatest in the tech world. I started to read about Dr. Stephen Wolfram, Wolfram|Alpha – An invention that could change the internet forever. It’s touted as the program that will be more significant than Google. What a bold statement.
Proposing Website Costs and Timelines with Integrity
by Adam on Apr.27, 2009, under business, software, tips
When a potential client asks me, “How much and how long?” a million questions start rushing to my head. A seemingly obvious thing to do first is to figure out what exactly it is that they want; however, that’s very rarely well defined. Let’s assume though that you have at least a decent idea of what it is that they want, estimating the costs involved is such a delicate balance.
3 Tips to Approaching a Company to Build your Website
by Greg on Apr.03, 2009, under blog, business, seo, software, startup
Too many times I come across clients and potential clients that don’t know what they don’t know regarding how to approach building a web site or application. Not that it is completely their fault, this technology stuff can be pretty confusing, costly, and complicated. I wanted to simplify 3 basic things that you should know and consider when approaching a design or development firm for the first time.
New Xgineer Solutions Website
by Greg on Mar.24, 2009, under blogging, business, opensource, seo, software, startup

After several months of planning, programming, and designing, we are happy to introduce the new Xgineer Solutions site. Adam, Leo, and I have been excited to give our old website a face lift and make it a bit more personal and modern. A couple tidbits and shout outs:
- Site and CMS built on the Symphony Framework
- Sliders animation using Javascript
- Enne Bi Communications provided the photos for us, thank Nick
Though this is the new Xgineer site, we realize that this is for you, our customer, clients and peers. We want to make sure that you are coming back to the site for the things you need. We would be forever indebted to you for you thoughts and feedback on the new Xgineer site. Anything you can think of we would love to hear it.
Please click here for feedback.
Thanks in advance,
The Xgineers
A PHP Web Shell
by Adam on Mar.20, 2009, under blogging, opensource, software, tools
Web development can be often be frustrating depending on the tools your given. This is especially true when dealing with a shared server environment as one does not normally have any access to a shell of any kind. All that is typically available is FTP and a web server. This can make installing/maintaining software on a shared server (ie. Symfony framework) quite difficult, since it is often easier to just run a simple command directly on the server. Hence, the need for a web shell.
A web shell is a utility that gives you the ability to run commands, like tar and mkdir, directly on a remote machine via a web server and HTTP messages. Of course, this tool would not replace something like SSH. When SSH is not an option though, having a web shell can make life a lot easier. For instance, it’s much faster to compress a large folder into an archive, upload that single file to the server via FTP, and then extract it on the server, rather than uploading the whole folder over FTP since FTP sends each file one by one.
Now, there are certainly a few other web shells out there, but none of them have the ability to allow the commands to read from Standard Input. Also, the commands have to wait until it finishes to completely get the output. The tool we made provides such abilities, plus it has command completion. It also has a directory browser in which you can download, upload, and edit files in folder on the server merely for convenience.
Our web shell is built on PHP and should work on any Linux server, plus we’re releasing it as open source. Due to the nature of a web shell, it still has a few limitations, like you can’t execute certain commands like ssh, but we find it more than useful regardless of such limitations.
The current state of the web shell is beta, so they may be bugs. We certainly welcome feedback on bugs or any improvements.
For see a complete list of features and limitations, http://red.xgineer.com/wiki/webshell/Web_Shell
Download it from here: http://red.xgineer.com/wiki/webshell/Download
