design and implementation of the freebsd operating system
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4625
WebOS: Website Operating system 1.25
WebOS was developed because of the need for an easy to edit, install and administrate content management system in ColdFusion. The Company I was working for had an aging Legacy-based CMS, which was at the best, difficult if not tedious to install, more>> WebOS was developed because of the need for an easy to edit, install and administrate content management system in ColdFusion. The Company I was working for had an aging Legacy-based CMS, which was at the best, difficult if not tedious to install, update and modify. WebOS solves all of the tediousness and difficulties in running and administrating a Dynamic ColdFusion CMS. With an easy-to-use Administration Panel, anyone with a little knowledge can use and administrate WebOS. WebOS is a module-based CMS with a template structure used to change the site layout easily without extensive HTML knowledge.<<less
Added: 2007-11-28 License: GPL Price: $0.00USD
14 downloads
Creating a Templating System with PHP
Templating is important to nearly every website now. It allows you to use the same design on all your pages, while having different content on each page. There are many ways of doing it; this article will focus on the most common. more>> Templating is important to nearly every website now. It allows you to use the same design on all your pages, while having different content on each page. There are many ways of doing it; this article will focus on the most common.<<less
Added: 2008-06-12 License: Freeware Price: $0.00USD
12 downloads
Web Design and Development, SEO Marketing, Graphic Design Company
OnlineCreationsLLC.com - Web design and development company. Flash animation, database integration, SEO services, website hosting, intranet management, backoffice solutions. Our goal is to improve the promotion and increase the income of your more>> OnlineCreationsLLC.com - Web design and development company. Flash animation, database integration, SEO services, website hosting, intranet management, backoffice solutions. Our goal is to improve the promotion and increase the income of your products. http://www.onlinecreation sllc.com<<less
Added: 2008-07-24 License: Commercial Price: $0.00USD
13 downloads
Design Patterns with PHP: The Singleton PHP5
An introduction to the singleton design pattern and how it can help you. Whats it good for? come on it and read to see! more>> An introduction to the singleton design pattern and how it can help you. Whats it good for? come on it and read to see!<<less
Added: 2008-05-15 License: Other Price: $0.00USD
12 downloads
Robust control design of the Mass/Damper/Spring
Robust control design of the Mass/Damper/Spring system - M-files for design of the Mass/Damper/Spring control system using Robust Control Toolbox, ver. 3 more>>
Robust control design of the Mass/Damper/Spring is a tool including design of the Mass/Damper/Spring control system using Robust Control Toolbox, ver. 3 . The book also presents other 5 case studies including robust control systems design of a triple inverted pendulum, a hard disk drive, a distillation column, a rocket system and a flexible-link manipulator. New codes of those designs exploiting Robust Control Toolbox, version 3.0 are available upon request.
These M-files should be used in the environment of MATLAB, version 7.1, Service Pack 3, together with the Robust Control Toolbox, version 3.0 and Control System Toolbox, version 6.2.
List of the files:
- olp_mds.m Creates model of the uncertain open loop system
- hin_mds.m Design of Hinf controller
- lsh_mds.m Design of Hinf loop shaping controller
- ms_mds.m Design of mu-controller
- red_mds.m Obtains controller of 4th order
- rob_mds.m Robust stability analysis
- nrp_mds.m Nominal performance and robust performance analysis
- wcp_mds.m Determination of the worst case performance
- frs_mds.m Frequency responses of the closed loop system with nominal parameters
- clp_mds.m Transient responses of the closed loop system with nominal parameters
- pfr_mds.m Frequency responses of the uncertain plant models
- pcf_mds.m Bode plot of the uncertain closed loop system
- sen_mds.m Sensitivity function of the closed loop system
- ppf_mds.m Singular values of the perturbed performance
- mcs_mds.m Transient responses for random values of the uncertain parameters
- kf_mds.m Frequency responses of the three controllers
- clf_mds.m Frequency responses of the three closed loop systems
- prf_mds.m Nominal performance of the three closed loop systems
- rbs_mds.m Robust stability of the three closed loop systems
- rbp_mds.m Robust performance of the three closed loop systems
- mod_mds.m Creates the uncertainty system model
- wts_mds.m Sets the performance weighting functions
- sim_mds.m Creates the simulation model of the closed loop system
Requirements:
- MATLAB Release: R14SP3
- Control System Toolbox
- Robust Control Toolbox
Added: 2007-08-08 License: Freeware Price: Freeware
14 downloads
Simple Template System (STS) 1.25
This is a very Simple Template System using http://yourdomain.ca/?pag e=Home more>> This is a very Simple Template System using http://yourdomain.ca/?pag e=Home<<less
Added: 2005-06-27 License: Freeware Price: $0.00USD
10 downloads
Creating a Website Design Templating System Using PHP
Learn how to create a website design templating system using php to be able to easily update different sections on your website by changing only few design files. The tutorial is designed for total beginners, so it is easy to understand and more>> Learn how to create a website design templating system using php to be able to easily update different sections on your website by changing only few design files. The tutorial is designed for total beginners, so it is easy to understand and follow. Whether you have a small or a huge website, you know how much hassle and time it takes to upgrade your web site pages. The upgrade process becomes even more irritating when you make a change that needs to be upgraded on every page of your website; a good example of such a change is adding a button to the header or changing the copy right information in the footer of your website. In this tutorial I will show you how PHP comes to the rescue with only few lines of code. You can use this tutorial to be the basis to make your website easier to maintain and upgrade.<<less
Added: 2008-03-07 License: Freeware Price: $0.00USD
13 downloads
How to Configure and Make PHP on FreeBSD
These notes describe how to compile a custom-built version of PHP 5 from the source, and replace the stock build on a FreeBSD server from Verio VPS. We install useful extensions that can not be loaded more>> These notes describe how to compile a custom-built version of PHP 5 from the source, and replace the stock build on a FreeBSD server from Verio VPS. We install useful extensions that can not be loaded as extensions and must be compiled in, specifically tidy and zip. This Apache 2 shared module and CLI versions of PHP are built, but not the CGI version.<<less
Added: 2007-06-18 License: Freeware Price: Free
882 downloads
C++ B+ Tree implementation 1.0
This project goal was to create simple and yet very efficient template based B+ Tree implementation which supports different types of storage. Implemented in C++, B+ Tree is template based, so it can be used with any type of data. To change more>> This project goal was to create simple and yet very efficient template based B+ Tree implementation which supports different types of storage. Implemented in C++, B+ Tree is template based, so it can be used with any type of data. To change storage type (e.g. from file based to memory based) all you need is to change template argument of the BTreeAlgorithms class. There are two controllers exist for such purpose: StreamBTreeController and RamBTreeController. You can write your own controller by simply changing logic in couple of methods within exiting controllers.<<less
Added: 2007-12-20 License: BSD Price: $0.00USD
13 downloads
eCommerce web design, eBusiness Solutions Provider Manchester
ESW offers a full range of high quality eBusiness, eCommerce (Shopping cart) services with secure online payment at a very competitive price. Top quality shopping cart sites from only £699 depending on individual requirements. Your online shop will more>> <<less
Added: 2005-07-29 License: Other Price: 0.00GBP
12 downloads
The real world datagrid the OOP way
Tutorial about implementation of real world datagrid component using the techniques of object oriented programming and MVC design pattern. more>> Tutorial about implementation of real world datagrid component using the techniques of object oriented programming and MVC design pattern.<<less
Added: 2009-02-25 License: Freeware Price: $0.00USD
14 downloads

X Steam, Thermodynamic properties of water 2.5
This is a full implementation of the IF-97 standard that provides very accurate steam and water properties in ranges from 0-1000 bar and 0-2000°C. more>> <<less
Added: 2007-08-02 License: Freeware Price: Freeware
1 downloads
content management system 1.04
An easy to use content management system. Content management system uses style sheets for most design elements, this makes it easy to change and customize to your own look. Web based content administration makes adding and changing pages a simple and more>> An easy to use content management system. Content management system uses style sheets for most design elements, this makes it easy to change and customize to your own look. Web based content administration makes adding and changing pages a simple and fast process.<<less
Added: 2005-07-06 License: GPL Price: $0.00USD
71 downloads
TDStats - Free Hit Counter & Website Statistics n/a
With TDSTats you get an easy to use free hit counter with comprehensive statistics. Features; multiple counter styles, multiple site tracking, traffic stats by hour, day, month and year, referrer stats by url, domain and url by domain, search engine more>> With TDSTats you get an easy to use free hit counter with comprehensive statistics. Features; multiple counter styles, multiple site tracking, traffic stats by hour, day, month and year, referrer stats by url, domain and url by domain, search engine and keyword stats from major search engines and system statistics like browser, operating system, screen resolution and more.<<less
Added: 2004-04-06 License: Freeware Price: $0.00USD
11 downloads
user agent string analysis 1
User agent string detection system with huge database about browsers, operating systems, offline browsers, crawlers and other information (links, productors names, icons, etc.). For manual aplication use online form. More interesting is access by our more>> User agent string detection system with huge database about browsers, operating systems, offline browsers, crawlers and other information (links, productors names, icons, etc.). For manual aplication use online form. More interesting is access by our API. Communication with client is very simple (send UA string to our server and take back XML or plain text). Metodic description also includes examples with PHP codes.<<less
Added: 2007-05-05 License: Freeware Price: $0.00USD
15 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above design and implementation of the freebsd operating system search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed