Projects tagged ‘framework’ and ‘tool’


[27 total ]

11 Users
   

Hundreds of functions of a variety of topics, from statistics to string parsing, module utilities to network tools. Everyone's pet library accumulates features over time. My erlang library got big ... [More] , fast. I often find myself giving functions from it out to other people, and a lot of my other libraries are dependant on ScUtil in various ways, so I figured what the hell, let's give it away. This library is believed to be efficiently implemented at all points. Efficiency tips are, however, both appreciated and taken seriously. ScUtil uses the TestErl library for unit, regression and stochastic testing. ScUtil is free and MIT licensed, because the GPL is evil. ScUtil is written by John Haugeland, from http://fullof.bs/ . [Less]
Created 9 months ago.

10 Users
 

RapidMiner (formerly YALE) is the most comprehensive open-source software for intelligent data analysis, data mining, knowledge discovery, machine learning, predictive analytics, forecasting, and ... [More] analytics in business intelligence (BI). RapidMiner provides more than 400 data mining operators, a graphical user interface (GUI), an online tutorial with hands-on data mining applications, a comprehensive PDF tutorial, many visualization schemes for data sets and data mining results, many different learning and meta-learning schemes ranging from decision tree and rule learners to neural networks, SVMs, ensemble methods, etc. RapidMiner is implemented in Java and available under GPL (GNU General Public License) as well as under a developer license (OEM license) for closed-source developers [Less]
Created over 3 years ago.

3 Users
 

Zipper is a Application Framework, with reduce the programmer work with IoC, JSR 220, 296 295 and others. Zipper is a Base for SGAP, TecServManager and LogisticaDigital on Java.net. and ... [More] FullServiceVirtual (Virtual) on code.google.com. Modules: * Zipper-JSF * ConfigManager (ZipperConfigManager) * ConfigManager-ServiceLocator (ZipperServiceLocator) * PersistenceUtils (ZipperPersistenceUtils) [Less]
Created 12 months ago.

1 Users

benerator is a framework for creating realistic and valid high-volume test data, used for testing (unit/integration/load) and showcase setup. Metadata constraints are imported from systems and/or ... [More] configuration files. Data can be imported from and exported to files and systems, anonymized or generated from scratch. Domain packages provide reusable generators for creating domain-specific data as names and addresses internationalizable in language and region. It is strongly customizable with plugins and configuration options. [Less]
Created about 1 year ago.

1 Users

My personal library of BSD-licensed PHP 5 classes that might come in useful for all sorts of tasks.
Created about 1 year ago.

0 Users

IntroThe Kwik Javascript object collection was designed to add interactive content to web pages using simple declarations in XHTML with JSON syntax. It exists of several core classes which add support ... [More] for inheritance and script inclusion but the major amount of classes are UI parts and helpers. Packages, objects & dependenciesPackages are defined with javascript the object initializer statement Kwik={}, once created objects are attached as members of the object. Objects can be either initialized or are static, a static object is part of the framework and therefor can be directly used, static object is written like Kwik.Object={}. The initilizers are function types which can be contructed with the new operator these are written like Kwik.Object=function(){} Most objects are defined in files with a similar name. (exceptions are made for objects which only apply to the defined class.) Kwik.page.include(script) supplies the dependency inclusion possibility. When extending an object or simply reuse one, the script file name corresponds to the contents which makes inclusion a bit more transparent. Reuse & InheritanceCreating derived classes can be done simply by invoking a function object within the derived function object. Kwik.Derived=function(){this.inheritFrom=Kwik.Object; this.inheritFrom();} On the other hand we have a Kwik.Utility.extend method which is compatible with this idea and adds base method references which makes overriding and a base reference possible. ControlsKwik.Ui.Controls is the package with the result objects. These objects add a greater user experience to web based applications and empower the end user to get tasks done faster. Anything derived from the Kwik.Ui.Controls.Control object can be loaded by using XHTML syntax and therefor easy to declare and configure. Class ReferenceA browsable class reference can be found at http://kwikproject.net [Less]
Created 4 months ago.

0 Users

The same EJB, java beans, hibernate, ibatis and spring java structure in PHP code. If you like to program in Java EJB download this tool. With this framework you can create beans and sql maps on a ... [More] MVC structure. This tool already brings cache and test services, which run in the background. 3 different layers: Model layer, Business rules layer and Presentation layer. This framework is in test and in developing cycle, so all the help is need. [Less]
Created 10 months ago.

0 Users

An organisation tool for the YsFlight flight simulator.
Created 3 months ago.

0 Users

Now Xoops CRUD handlerAfter xoops 2.3.0 had a new powerful CRUD handler XoopsPersistableObjectHandler, and combination Criteria handler manipulation MySQL do CRUD or ORM work like below code ... [More] $article_handler =& xoops_getmodulehandler('article', 'news'); $criteria = new CriteriaCompo(new Criteria('uid', 1)); $criteria->add(new Criteria('status', 1)); $criteria->setLimit(10); $criteria->setStart(0); $criteria->setSort('created', 'DESC'); $articles = $article_handler->getObjects($criteria, true);With RB CRUD handler you can write likeRbCrudHandler only one file, but write less do more $article_handler =& xoops_getmodulehandler('article', 'news'); $articles = $article_handler->where('uid = 1 AND status = 1')->order_by('created DESC')->limit(10, 0)->getObjects();Or$article_handler =& xoops_getmodulehandler('article', 'news'); $article_handler->where('uid = 1'); $article_handler->where('status = 1'); $article_handler->order_by('created DESC'); $article_handler->limit(10, 0); $articles = $article_handler->getObjects();Or$condition = array(); $condition[] = 'uid = 1'; $condition[] = 'status = 1'; $article_handler =& xoops_getmodulehandler('article', 'news'); $article_handler->where($condition)->order_by('created DESC')->limit(10, 0); $articles = $article_handler->getObjects();Or$condition = array(); $condition[] = 'uid = 1'; $condition[] = 'status = 1'; $article_handler =& xoops_getmodulehandler('article', 'news'); $articles = $article_handler->getObjects($condition, 'created DESC', 10 ,0);will get the same result Write lessXoopsPersistableObjectHandler insert data smaple $pm_handler =& xoops_gethandler('privmessage'); $pm =& $pm_handler->create(); $pm->setVar("subject", $_POST['subject']); $pm->setVar("msg_text", $_POST['message']); $pm->setVar("to_userid", $_POST['to_userid']); $pm->setVar("from_userid", $xoopsUser->getVar("uid")); if (!$pm_handler->insert($pm)) { echo "Error"; } else { echo "successful"; }RbCrudHandler insert data smaple $pm_handler =& xoops_gethandler('privmessage'); $pm_handler->data(array('from_userid' => $xoopsUser->getVar("uid"))); if (!$pm_handler->insertRow($_POST)) { echo "Error"; } else { echo "successful"; }How to use in my moduleFirst you must know how to planing your module DB table and define XoopsObject constructor, if not rbTool can help you create a module prototype initVar('art_id', XOBJ_DTYPE_INT, null, false); $this->initVar('cat_id', XOBJ_DTYPE_INT, null, false); $this->initVar('title', XOBJ_DTYPE_TXTBOX, null, false, 255); $this->initVar('content', XOBJ_DTYPE_TXTAREA, null, false); $this->initVar('created', XOBJ_DTYPE_INT, 0, false); $this->initVar('uid', XOBJ_DTYPE_INT, 0, false); $this->initVar('ip', XOBJ_DTYPE_TXTBOX, null, false, 15); } function NewsArticle() { $this->__construct(); } } class NewsArticleHandler extends RbCrudHandler { function __construct(&$db) { parent::__construct($db, 'news_article', 'NewsArticle', 'art_id', 'created DESC'); } function NewsArticleHandler(&$db) { $this->__construct($db); } } ?>RB ToolXoops Class Maker, require install RB Frameworkthis module can make your selected database tables be a class file read more see rbTool [Less]
Created 25 days ago.

0 Users

Breeze is yet another PHP web framework but not the same as you used to see all over the place. Breeze was born from the need for an educational accessory presenting patterns and inner workings of a ... [More] web framework much like MINIX for operating systems. One day maybe Breeze will be used as a real framework or it will be forked for production, but this code base will focus solely on educational value and we won't respect your need for speed ;) [Less]
Created 12 months ago.