frameworks

PHP Framework: Ebay Like Site

Hello all, I am going to be builiding a site like ebay - with all the features of ebay. Please note my payment method is limited to paypal. What would be the best PHP framework to use to build this quickly, efficiently and with the smallest learning curve? I have narrowed down to CodeIgniter as the major contender for this p...

Good PHP mock framework

Is there a good standalone mock framework for PHP? Currently I am using Simpletest framework for unit testing. I like the framework, but I dont like how you create and setup a mock in it. I then tried PHPMock, I like how it can be used, but it I encountered some bugs that get annoying over time ... Or would it be best to switch over to P...

Natural language rendering

Do you know any frameworks that implement natural language rendering concept ? I've found several NLP oriented frameworks like Anthelope or Open NLP but they have only parsers but not renderers or builders. For example I want to render a question about smth. I'm constructing sentence object, setting it's properties, specify it's language...

HaXe Web Framework

Hi, I'm just beginning to look at the HaXe language, primarily for flash development, but once I'd seen what Neko can do, also the desktop and web server side of things too. I sort of have my head around the flash side of things - just need to play with it a bit more, but I'm a bit lost when it comes to creating an MVC web site with i...

Which Timer object should I use in long running processes in .Net?

Which Timer object should I use in long running processes in .Net? The timer will be used in a Windows Service, and I wish to find the best fit performance wise. ...

Display Drupal content outside Drupal?

Is it possible to use Drupal to feed a few dynamic portions of a mostly static website? We have a plain old website and are looking to create a sibling site just for web-app stuff (private CMS, databasing, some forms for specific things, etc.). Some of the content we create on the sibling site (which would be Drupal), we'd like to rend...

Choosing between PHP frameworks and template systems

I have a moderately simple assignment, to create a PHP/PDO site with login functionality and article retrieve/save/edit/search. No tags, nothing else. Is this overkill to use some framework for this? It it a good decision to use custom code + perhaps template system like Smarty for a simple site that will not grow too much? Is there a ...

Distributed Computing Framework (.NET) - Specifically for CPU Instensive operations

I am currently researching the options that are available (both Open Source and Commercial) for developing a distributed application. "A distributed system consists of multiple autonomous computers that communicate through a computer network." Wikipedia The application is focused on distributing highly cpu intensive operations (as ...

Framework not found AudioUnit

Been banging my head agains the wall for awhile now. My Xcode project went a little haywire while refactoring, and refused to build. I've squashed all the other errors, except one last linktime error: Framework not found AudioUnit I have the AudioUnit headers, the AudioUnit.framework is included in my project as it was before (Targets...

"Alert Management System" in Java to support alerts from cross-technology applications

Where Alert Management System roughly fits into this definition: "A system designed to screen events, build profiles associated with the events, and send alerts based upon the profiles and events" So, the current setup is like this: There are multiple applications built in different technologies (Java, .Net, Perl, Python, VB) and they d...

Which java web framework to choose for client side and server side validation?

We are currently searching for a java framework , that made validation easily on server side and both client side,Spring,Hibernate,Play are the framework choices that we are searching,we are using annotation based development and this framework will determine our javascript choice too.Which is better framework (architecturally) at valida...

Has Anyone Used the rhomobile Framework?

I have a client asking about the rhomobile framework. I have been researching it a bit and wanted to see what the community at large thought about the framework and what, (if any), problems you came across in developing with it. Thank you, L. ...

How to limit upload file size in Wicket

How to limit file size in uploads in Apache Wicket version 1.4? I am using FileUploadField to handle upload with normal form submit without any Ajax stuff. Is it enough to use Form.setMaxSize() to limit the size of uploaded file? If too large file is uploaded, the browser will upload the whole file and Wicket will create validation er...

Real-time synchronization of database data across all the clients

What's the best strategy to keep all the clients of a database server synchronized? The scenario involves a database server and a dynamic number of clients that connect to it, viewing and modifying the data. I need real-time synchronization of the data across all the clients - if data is added, deleted, or updated, I want all the clien...

Common Libraries at a Company

I've noticed in pretty much every company I've worked that they have a common library that is generally shared across a number of projects. More often than not this has been a single companyx-commons project that ends up as a dumping ground for common programs including: Command Line Parsers File Utilities Framework Helpers etc... S...

Frameworks & Doneworks: Do you thinks it is cool to use those?

By using somebody else's works you advertize the authors of those works (At least, among other programmers). Do you think it is cool? ...

Terrarium-like agent interaction framework

Hi, I'm looking for a framework for agent interaction simulation, where I can deploy some agents and let them interact and watch their evolution. Until now I found Terrarium 2.0 (http://terrarium2.codeplex.com/). In principle this is what I need: the ability to create some creature/agent and deploy it into a simulation framework where ...

What javascript frameworks should I become familiar with?

jQuery has served me well, it has given me an excellent introduction to Javascript but now I want to move onto something else. A good developer has a good knowlege of lots of different technologies. So what frameworks should I move onto? I just want something good to put on my CV. There are so many out there and they all more or less ac...

Copying dynamic library (.dylib) into a framework (.framework)

I have two XCode projects: a framework and a client application. My application depends on my framework and everything works fine with that — the framework is being recompiled everytime the app is, the projects build paths are set correctly, it's completely okay. Now the framework started using 3rd party dylib file, and it's linked aga...

Linking against Apple frameworks with gcc

I've created some wrapper functions that encapsulate working with CoreAudio, and the goal is to create a C library that I can use with some command line C++ tools. So far things are working well. I took a sample project, modified it, and it builds and runs in XCode. I'd like to skip XCode altogether and build the library with gcc and ...