frameworks

php frameworks and security

As a web developer I am using PHP and I know that I have to worry about security but when you use a framework, there is a lot-of code and design that you relay on but that you didn't code or design and for instance I am using CakePHP. so in this case with frameworks how much should i worry about security ? ...

In-house Frameworks vs New C# Technologies

If we have developed our own ORM framework and the framework is working fine over the years then why should we learn and use brand new .net technologies like LINQ or Entity Framework or NHibernate or CSLA.NET for our upcoming software projects? Note : New frameworks need new effort to learn and teach. Note : This is just an analogy. ...

Suggest a good MVC framework for AS3

I am looking for a framework that can simplify the task of creating new Flash apps. But I don't want to go the Flex route because it's way too top-heavy for the simple widget apps that I need to create. (The payloads often exceed 300k with a Flex app and it can be difficult to control the timeline and animation, etc.) When I Google the ...

iPhone - MessageUI - framework not found Message

I want to be able to use the iPhones Mail.app inside my application so my users can send a share email without leaving the application. I know 3.0 made this possible. I have added the framework properly by ctrl clicking on my frameworks folder -> add existing framework. Added this to the header file of the viewcontroller I want the ...

Portable Code for Frameworks?

We have decided to work with the "Insert Framework Here" We'll most likely update to the next major version of the framework as they come up- however what upper management is worried about, is "What if" the framework roll's over and dies, and code becomes unmaintained? The chances of this happening are very low, but I still have to de...

AI testing framework

I am looking at developing an AI player for a simple game I have created in C#. I will be creating a population of the bots and evolving them over generations. What I was wondering is there any frameworks out there that could be good for this sort of testing / development. Ideally I would like something that I could plug any / some ty...

Books for GUI framework creation

Could you please recommend some books I would need to read in order to learn how to build a custom GUI widgets? Or better yet, how to build a GUI framework? Any programming language will do, I wanna learn the concept behind this. ...

Has anyone worked out how to manually add labels into a Core-Plot (iPhone) graph?

I have a simply bar graph created for my iPhone application however I want to manually add the x-axis labels. Has anyone worked out a way to do this? I found the CPXYAxisSet.xAxis.axisLabels property however when I create an NSSet and assign it using: axisSet.xAxis.axisLabelingPolicy = CPAxisLabelingPolicyNone; NSSet *labels = [[NSSet...

Fullstack or Glue web framework?

Working in web development we see numerous amount of web frameworks growing everyday. We also see people comparing framework X vs framework Y. But technically they all boil down to two types: fullstack or just a glue webframework. A fullstack web framework is a web framework that offers front to back framework. Django and RIFE can bee s...

How to log out users using Facebook Connect in PHP and Zend?

I am trying to build a Connect app using PHP and Zend Framework. I also have a Zend_Auth based user authentication system. Now, I am able to log in using Facebook but log out is not working. I need to clear the Zend_Auth identity as well as remove all Facebook login info as well. What would be the best way to do this? I tried facebook_...

Should my MVC controllers be object-oriented?

I'm making a Perl website, and I'll using Template Toolkit (for the view), a whole bunch of objects for DB interaction and business logic (the model), but I'm wondering: should the controllers be OO? I feel like they should, just for consistency, but it also feels it might be a bit redundant when I'm not interacting with the controllers...

What are the .NET frameworks currently available that help build business applications ?

And what are their pros/cons in terms of maturity, community support, ease of development ?... In my mind, a business application framework should provide : ORM integration (possibly relying on existing solutions like NHibernate, the Entity Framework...). a validation library. UI integration components (ASP .NET and/or Windows Forms a...

Agile Software Development in Python

I have been trying to learn a cross platform language with a fast learning curve, and so it seemed obvious Python was the logical choice. I've never programmed before but I have been reading on pragmatic programming and agile development for quite some time. The question comes, "What is the single best choice to create a desktop softwa...

What are the best practices regarding unit testing a library/framework ?

Context I'm struggling to write a set of unit-tests for a library/framework I'm designing. For context, please, think of my library as an object layer over a hierarchical set of related objects. Question Basically, I'm trying to adhere to the principles and best practices regarding unit testing as seen in some posts here, but they see...

Best Highscores Framework - iPhone

I am trying to decide between: OpenFeint - http://www.openfeint.com/developers Agon - http://developer.agon-online.com ScoreLoop - http://corporate.scoreloop.com/features All of the websites look clean. I don't know how many users they have but ScoreLoop has some recognizable games using the service. Have you tried any of these pl...

What is Ruby's default GUI framework?

If I remember correctly Python ships with Tk as it's standard framework. What's Ruby's default? ...

WPF: I don't understand class TextCompositionEventArgs

I don't understand the class TextCompositionEventArgs. There are members of type string named ControlText,SystemText,Text. Then there is a field TextConmposistion which itself contains the members ControlText, SystemText and Text again and additionally the fields SystemCompositionText and CompositionText. public class TextCompositionE...

Selecting a good Framework for web-development

Based the accepted answer to this question I've setup a NetBeans/tomcat environment. In testing this setup I'm trying to create a Java Web/Web application, but is stumped by the a choice of frameworks for this test-app. The choices are: Spring Web MVC 2.5 JavaServer Faces Struts 1.3.8 Hibernate 3.2.5 In my reading-up (googling & SO...

Simple database "starter kit" for ASP.NET web CRUD application

I'm not even sure how to properly frame (or title) this question, so apologies in advance. I'm looking for a "starter kit" for a super basic ASP.NET website that is data driven via SQL Server. Background: I find myself recreating the simple structure where there is a database, then I make a form to put data into it or update records an...

PHP framework (cake/smarty): How to use it and when?

Duplicate of What is a PHP Framework? and many more So far, I've been using PHP for small tweaks, mostly with WordPress. What are PHP frameworks? Why do I need them? WHEN do I need them? Any insight will be helpful. Thanks. ...