Welcome to 73summits software!
We develop web based applications for the desktop and mobile handhelds. Our software ranges from simple CMS based sites to social networking, corporate portals, and intranets.We develop with MVC frameworks and database backends. Our projects have utalized many tools, including:
- PHP
- Ruby
- Python
- MySQL/PostgGres
- Memcache
- AppMobi
We develop all our applications with the same guidelines and principals to ensure a consistant environment and solid product.
<?php
class main extends controller {
public function __construct(){
parent::__construct();
}
public function index()
{
echo "Welcome to 73summits";
}
}
?>
require 'rubygems' require 'sinatra' require 'dm-core' get '/' do "Welcome to 73summits"; end
import web
urls = (
'/(.*)', 'hello'
)
app = web.application(urls, globals())
class hello:
def GET(self, name):
return 'Welcome to 73summits'
if __name__ == "__main__":
app.run()
