frameworks

How does Xcode know where to look for a framework?

Example: I import a framework like this: #import <Cocoa/Cocoa.h> Now what's that "Cocoa/Cocoa.h" path? I mean... from where does Xcode start looking? Where is this configured? And is that actually a path or something? What's "Cocoa/Cocoa.h" really? A namespace and a framework in there? Or what else? ...

What are some of the less-known and interesting public APIs and frameworks that I can use for iPhone?

What are some of the less-known and interesting public APIs and frameworks that I can use for iPhone? In OS 3.0 they're supposed to be 1000 new APIs more than in 2.2, so which one of these are the most interesting and not so well-known? ...

Choosing the right PHP framework

Could someone possibly help me choosing a PHP MVC framework? My requirements are: SIMPLE authentication system (no need for ACL, just isAuthenticated(), isInRole() Resources and RESTful approach Helpers (Html, Ajax and such stuff) It would be nice if it was PHP 5 only I've tested some frameworks. CakePHP seemed good to me, but it has...

Please suggest a Java Framework to make the CRUD easy...

I know that the RoR can do the CRUD easily, but is there any similar framework in Java to make the CRUD easy instead of typing boring SQL statement? ...

Task Execution Framework for VC++?

Hi, Does anyone know of a Java ExecutorService equivlent in VC++ 2008? What I want is a framework which I can pass tasks to fixed size thread pool. The framework should manage the thread pool itself (i.e. creation and destruction of threads). ...

iPhone + framework

Hello, While including any new framework for an application, if we look into the path /Developer/Platforms, we get following two platform: iPhoneOS.platform iPhoneSimulator.platform In both the above folders we see almost the same frameworks. So, my question is that which framework we should include from the anyone of the above. Re...

Setting variable to be accessed by different methods within the class

I have a controller with different methods, but they all have to set a variable containing a list of items to be shown in a box in the view, I extract data from the DB and set $data['categories']. Can I set it once and have it visible by all methods? ...

Include framework in Xcode static library?

In short: Is there a way to create a static library in Xcode such that when clients link with that library, they also link with the frameworks upon which that library depends? The problem: We have a shared Xcode project which contains multiple static library targets containing all of our common code. E.g., If a project wants to use th...

Which PHP framework to choose for a big project? Help me to choose.

Possible Duplicate: What PHP framework would you choose for a new application and why? Hello! I'm going to create a serious web project. Until this time, I've been developing projects with Drupal, but I want to switch to a PHP framework. Which framework can you suggest and why? Scalability and performance are must. I was playin...

Choose the best Client/Server Validation Framework for MVC

Hi there, Im trying to choose the best server/client validation framework to use with my MVC application. I would like to know what is the best validation framework to use with MVC to do server/client validation. My options are: Castle validator Microsoft Data Annotations nHibernate Validator ...

.Net Refactoring application to use Dependency Injection

I am currently into the testing stage of a project I am working on and am having trouble bringing the main service under test in anything other than the most basic default test cases. The Service is currently responsible for the creation of all sub-components, which I would like to change to use an IoC container. What container should...

Best practice for crash reporting in C# my application

I need to implement crash reporting framework on my C#(WPF) application, so i need full call stack,What would you guys suggest for doing this. ...

best practice for Undo Redo implementation

I need to implement Undo/Redo frame work for my window application(editor like powerpoint), what should be the best practice to follow, how would be handle all property changes of my objects and it reflection on UI. ...

which framework for this project?

I have a new PHP project coming up and I want to use a framework. I'm a little intimidated because I don't yet understand the workflow of using a framework, and what I'll need to do differently to get my work done. I'm also concerned about painting myself into a corner if a framework can't do what we need -- for instance in another proje...

Create C# applications which are not framework dependant?

Is creating applications which don't depend on all of the framework components possible? I know that you can merge the framework with the app but the whole framework is about 20mb and I'm not sure if all of it is used. ...

How do I tell Gaia to cache loaded swf files?

I used Gaia framework to build a self-scrolling slideshow. There are only 4 pages in all, but I have realized to my dismay that each of these pages are requested over and over from the server. If you leave the page open and the animation goes by itself, that can clobber our server. What can I do to prevent this? I wonder if there is a ...

Does Codeigniter work well with jQuery?

I've been using ASP.NET for a while but decided it's time to learn a PHP framework. Looking at an article NetTuts+ It looks like CodeIgniter is the simplest, and one of the lightest and easiest ways to go. I am however, a huge jQuery fan, and am wanting to know if jQuery integrates well with the framework? Any experience? ...

How can I access What's Playing on the iPhone

I feel like I have come across something before to do this, but can't find it again. How do I access what's playing? Not so much the audio, more the information like Artist and Title. ...

Does a programming framework make you less of a programmer

Out in the dev lang there are many many, frameworks for all types of languages. For instance, javascript has jQuery, which I use all the time without even thinking about it. Then for php there is Zend and CodeIgnitor, Ruby has rails, Python has django. That's just a few off the top of my head. I have always been the type of person that ...

Kohana event system in Erlang?

I want to implant a framework in Erlang that is similar to Kohana event system. Anyone know how to do that or have any idea? I really like how Kohana is structured. EDIT The Kohana event system have been documented here : http://docs.kohanaphp.com/general/events . If I understand it correctly, I can replicate Kohana in Erlang like this...