frameworks

are there any ajax for php like zk or vaadin for java

are there any frameworks for php that follow the style of vaadin, in vaadin you can define web forms using java with touching javascript or any client scripting in swing style ? ...

Sharing Code, Images and Core Data models across iPhone and Mac project

Hi, I am maintaining a fairly large mac project and an iphone client for this project. Some code as well as some images and core data models are shared between these two projects. I want to create a shared framework containing this shared components but to my surprise, frameworks like we cocoa developers known them are not supported on...

Recommendation for web-based database visualization tool

Tableau is extremely flexible when it comes to visualizing and playing around with datasets, but it is extremely slow when you go into "production mode" and publish a particular view that you've created onto your server. Does anyone know of any tools that can be used to connect to a database, present interactive (or somewhat interactive)...

lightweight publish/subscribe framework in java

Is there a good lightweight framework for java that provides the publish/subscribe pattern? Some ideal features Support for generics Registration of multiple subscribers to a publisher API primarily interfaces and some useful implementations purely in-memory, persistence and transaction guarantees not required. I know about JMS but ...

Where do we find the best place to learn start-up bussiness models ?

every coder have a dream to see it's baby see the light and become a framework or even better a brand. So where do we find an information such as : The bad and Good of Facebook Facebook compare with others or any case study report on particular start-ups ...

A problem with .NET 2.0 project, using a 3.0 DLL which implements WCF services.

I made a client for accessing my WCF services in one project, and all classes that work with services inherit from this class: public abstract class ServiceClient<TServiceClient> : IDisposable where TServiceClient : ICommunicationObject This class is where I do stuff like disposing, logging when the client was called, etc. some common...

Set the thumbImage and watch the slider-bar disappear?

[sld1 setThumbImage:[UIImage imageNamed:@"Blue.png"] forState:UIControlStateHighlighted]; [sld1 setThumbImage:[UIImage imageNamed:@"Blue.png"] forState:UIControlStateNormal ]; Would that cause the slider-bar image to disappear? Mine are all gone. (The thumb-image displays just fine.) Apple's docs make it sounds like I can use an...

Want to save data field from form into two columns of two models.

I have a Profile model with a hasOne relationship to a Detail model. I have a registration form that saves data into both model's tables, but I want the username field from the profile model to be copied over to the usernamefield in the details model so that each has the same username. function new_account() { if(!empty($this->data)...

Selecting a Java framework for large application w/ only ONE user

I am building a large application that will be hosted on an AWS server. I'm trying to select a web framework for assisting me with code organization, template design, and generally presentation aspects. Here are some points of consideration: Require security/login/user authentication. I may add the ability in the future to allow more...

can we use smarty with zend framework?

Any body know can we use smarty with zend framework. If yes what is the advantage of using like that? ...

Is there any way to reference entity framework in silverlight?

Hi all, I have a SOA application. 1. data layer: Entity Framework 2. Service layer: WCF 3. presentation layer: silverlight Now, in silverlight I want to use data types from data layer. I cannot add a direct reference to entity framework because silverlight is using a different .net CLR. So I added a service reference hoping it will rec...

audio frameworks in iPhone

Hello, I would like to know the follwing information about iPhone audio system Heirarchy of the audio framework in iPhone OS. i know that there are 3 main audio frameworks in iPhone OS.i.e AVFoundation Framework CoreAudio Framework OpenAL Framework what are the audio formats supported in each of the above framework?I mean wil...

After what point a JavaScript library is considered as a FrameWork?

Hi, I am kind of confused with the definitions. Can you please define the minimum "must haves" of a JavaScript library so that it can be considered as a software framework? thanks ...

Which frameworks (and associated languages) support class replacement?

Hi, I'm writing my master thesis, which deals with AOP in .NET, among other things, and I mention the lack of support for replacing classes at load time as an important factor in the fact that there are currently no .NET AOP frameworks that perform true dynamic weaving -- not without imposing the requirement that woven classes must exte...

What's the term (if any) for frameworks that support dynamic class creation?

Hi. Sorry about the vocabulary question, but I'm writing my master thesis and it's a pain to repeat "frameworks that support dynamic class creation" again and again. Is there a term for that? Some clarification: I mean that you can create a class at runtime, i.e., dynamically. For example, .NET supports this with the System.Reflection n...

Problem resolving a generic Repository with Entity Framework and Castle Windsor Container

Hi, im working in a generic repository implementarion with EF v4, the repository must be resolved by Windsor Container. First the interface public interface IRepository<T> { void Add(T entity); void Delete(T entity); T Find(int key) } Then a concrete class implements the interface public class Repository<T> : IR...

Project doing in mvc pattern using cairngorm framework.

hii .. I wish to do my project in mvc pattern. so I chose cairngorm framework and just read some of the document about this framework.But I cant understand deeply to do project using this framework. Have any methods or examples to study doing project in cairngorm framework?? If u can pleas help me. ...

PHP Framework Benefits / Downfalls

I have been a PHP developer for about 10 years now and until about a month ago I have never used a framework. The framework I am now using due to an existing codebase is cakePHP 1.2 I can see certain benefits of the frameworks with the basic helpers like default layouts. I can deffinately seen the benefits of MVC keeping the logic sper...

Implementation of Vector Clocks

For my code which is running on different devices, i need to determine the ordering of messages which are sent between those devices. Therefore I would like to use vector clocks since I read vector clocks allow for the ordering of events. Is there any established framework/public API which I can use for that? Or a reference implementati...

Java Framework Choice Question.

We do have many frameworks available in Java. Struts, Swing, JSF 2.0, Spring etc are used as per their priority. Actually, I don't know how many they are as well! But, as I am fresher to Java, even learning after their architecture, I cannot decide which framework can be used with what type of Projects ! Also, I am confused with mixed ...