frameworks

Best Web-Framework with jQuery-Integration

I'm struggling to find out which PHP-Frameworks does the best job when it comes to integrate with jQuery as Frontend-Framework. Zend seems to work best with Dojo, CakePHP with Prototype, but my favorite one JQuery seems nowhere to be supported out of the box. For example CakePHP has a pagination helper, but it works only with Prototype ...

Framework similar to Membership control in ASP.NET

Hi, I am curious to know that like we have different way for intersecting data (LINQ to SQL, Entity Framework, Enterprise Library, etc). Do we have alternatives for membership controls? Editing to eloborate it more: I mean to say that like to connect with the database we have various options like one can use Linq to SQL or Enterprise ...

Problem Binding Entity Framework Images to GridView

Hi I'm trying to bind the product pictures to my gridview but nothing shows up... Here's the code: Using ProductsCtx As New CAJFBLL.ProductEntities Dim Produtos = (From P In ProductsCtx.produto _ Join C In ProductsCtx.categoria On C.id Equals P.categoria_1.id _ Join F In ProductsC...

Any PHP Framework with builtin A/B Testing Support?

Hi all, I'm about to start work on a new project and thought it could be a good time to also start looking into a new PHP framework. I've really only spent a lot of time with Joomla, so "new" can almost be "any". Anyway, I've also been seeing a lot of talk about A/B testing and thought that it might be a good idea to try. From what I'v...

Is existed Authentication and Authorization frmeworks for Java that support openId (except Spring security)?

Actually I am interested in Java AA framework that supports many types of A&A. I found that exist JAAS, but don't fond any information about OpenId support. Maybe there exists a module to use it? Spring security supports OpenId but I just want to see any alternative. Also I read that Spring Security is a little bit complicated. I think ...

Is there a "handy" PHP framwork?

Hello, I'm looking for a PHP framework for small projects. Things like the ZEND framework or Symphony are much to big for my needs and they don't save me time. I'm faster developing those small apps by hand instead with on of these mighty frameworks. Maybe someone has an suggestion? Thanks! ...

Name a simple Dependency Injection framework.

I would like to try using an DI/IoC framework for the first time in a small-ish but growing project, and I don't want to disturb the project much by introducing bulky dependencies. The project itself is partly intended to be used as a library in other projects, and I don't want to trouble users with managing extra dependencies. It's also...

App development for both smartphone and website?

Hi all, I've been looking at mobile development frameworks including Rhodes, Titanium, and PhoneGap. As a large part of the application we're developing will also be integrated on the web (a game), we'd love to re-use code so as to not reinvent the wheel. Is there a best way to accomplish this? Is there a framework out there with whi...

Programming a Codeigniter Networking Site From Scratch

I have made a social networking site from scratch, but I am looking to develop a site much faster. Needs: 1. eCommerce 2. Profiles 3. Information "nodes" 4. Control over Ajax functions for all of this, maybe a simple API 5. Google Maps 6. Third party posting formats and content processing and display. User must be able to post nodes ...

Does delaying the open sourcing matter?

I've been working on a project which I plan to eventually GPL (as I do with all non-hired code I write). It's about 10,000 lines of code now, so I'm far enough into the project that I now have better understanding of the problem at hand and have more and better ideas to take this project to the next level. I'd like to however maintain t...

how can i start with MVC for php?

Possible Duplicate: What PHP MVC framework can you recommend? I've decided to start my next project using MVC structure.. Until now , i haven't used any framework or php editors , project designer tools for any of my previous projects... And all of them are working charm... But i decided to use MVC because the project may ex...

Headers in 3rd party frameworks on Mac OS X

I'm using the Sparkle framework in Qt. I've added the following to my .pro file: LIBS += -framework Sparkle QMAKE_CXX_FLAGS += -F/path/to/the/directory/sparkle.framework/is/in However I get a compilation error saying "Sparkle/Sparkle.h" cannot be found. Framework headers physically reside in MyFramework.framework/Headers/*.h and are i...

Curl GET request through Zend_Http_Client

Hi, I am trying to make a GET request to gowalla spots by Zend_Http_Client (cURL adapter) here is my class: class Application_Model_Gowalla { private $_config; private $options; private $array; private $json; public function __construct() { $conf = Zend_Registry::get('config'); $this->_confi...

How to include the Zend framework?

I'm on windows 7 with wamp and I don't know where to put the zend framework, as I know I need to change the path of the include_path but I don't know what should that be to work. I get this error when I open the test files or anything withing the zend files: Warning: require_once(PHPUnit/Framework.php) [function.require-once]: ...

What framework used by links search engine?

There's lots of links search engine growing nowadays: http://www.uploadcity.com/ http://rapiddigger.com/ http://www.filecrop.com/ http://www.filestube.com/ http://www.general-search.net/ ...and lots more... Do you know what framework (zend framework? django? pylons? rails?, etc...) used for building that search engine? ----added----...

Can I use CoreTelephony in my iPhone app and don't get it rejected in AppStore?

So, there is a way to do that? :D Thanks in advance. ...

Best lightweight RESTful framework for PHP 5.3

Is there any really lightweight RESTful frameworks around that assumes its users to be not newbies? I am looking for something that is based on the below criteria One that models resources ( for RESTful-ness ) Object oriented ( not just for the sake of it ) Not one that forces to use MVC No unnecessary fat ( strange database layers an...

How can I benchmark different languages / frameworks?

I'd like to compare the performance of different languages and/or different frameworks within the same language. This is aimed at server-side languages used for web development. I know an apples to apples comparison is not possible, but I'd like it to be as unbiased as possible. Here are some ideas : Simple "Hello World" page Object in...

What is the basic principle of a core on framework ?

right now, i have to create a framework. and need to understand more about the concept behind it. so, is there any documentation about how to build core of a framework ? or at least, what is your approach when you have to create one ? btw, what i mean with core, is, the skeleton. the part of framework that works as controller who contr...

Getting argument lists from ARM dynamic libraries (frameworks)?

I have a number of private frameworks I want to use, however I cannot find any headers for them. Is there a de-facto way of getting arguments from C function calls using IDA Pro? (Not ObjC messages). Edit: Oops, I meant C not C++. ...