frameworks

Fastest / Easiest method to develop a multi-user gaming engine in PHP/MySQL?

Hi, I'm an advanced designer, but also starting out a career in development: I'm a PHP intermediate user. I (unfortunately) learnt procedural development, and not OOP. My current project is a multi-user game web-app and I was developing procedurally only for my Boss to insist that it has to be OOP, so I needed to start learning OOP (I b...

Any MVVM frameworks work well with NavigationWindows?

I'd like to "throw away" the current version of a WPF application and move version 2 to a stable MVVM framework. The main concern I'm having is that I don't see much talk about MVVM frameworks and navigation (i.e., NavigationWindows and Frames). My current app relies heavily on Pages to present views to the user. I would prefer to kee...

Xcode: target membership of frameworks?

Hi everyone, I have a question about the far right column of your Xcode project (image here) Apple's documentation tells me this about that column: Target membership. The column marked by the target icon indicates whether the file is included in the active target. If the checkbox next to a file is checked, then the active t...

Any Good Examples of Mobile Sync Framework Solutions

We are investigating using the Microsoft Mobile Sync Framework and I would like to put together a quick prototype. I am trying to pitch Mobile Sync Framework ofer another sync provider. I have zero experience with it so far, so I am looking for good examples of how to use it to sync backend relational database to SQL Server Compact dat...

PHP5 Frameworks: Autoloading and Opcode Caching

A number of frameworks utilize spl_autoload_register() for dynamically loading classes (i.e. controllers and models). There are a couple of posts on the issue of autoloading and opcode caching. One post in particular has a response by @cletus which references @Rasmus making a number of statements which prove to be unsavoury for those u...

CodeIgniter URLs

Hi, Any one of you who has worked on CI knows that it uses a segmental approach for the urls, eg.: index.php/controller/function/params Let's suppose I have put in place the following URL to submit the contact us form info: index.php/contact/submit_contact Now there is one thing that seems wrong. What if a bad guy sees the source ...

ASAP library for Actionscript?

I'm always open to using new frameworks, especially if they allow greater flexibility when the need arises to make changes and additions. At the same time I don't want to add an additional layer of complexity unless it's use is warranted. Has anyone used the asaplibrary recently on a project? Was it useful? Would you use it again? ...

Does a C++ Windows Forms Application require .NET Framework?

Does a C++ Windows Forms Application require .NET Framework? It seems that it does because it imports "System::Forms" but I just want be 100% sure. I tried opening it with depends and it looks like it imports the usual C++ dll's but there is nothing about the framework. ...

Minimizing the pain in implementing printable reports

How do you minimize the pain in your development process when it comes to reporting? For web frameworks, there is a pretty straightforward way to both produce content as well as graphically design it; content is represented semantically through HTML, and the design is separately specified through CSS. And browsers are fairly consistent...

Store Kit Framework

from where i can download free Store Kit Framework.....? ...

Sending a data to a Web server

Hi, I have already finished my iphone app, but I would to add some monitoring to it on my Web site. What I want is get a location of the device (state, country) that using my app and then after I got the location I want to send it to a Web Server. Then in my site I will create a report of how many user's of my app. I haven't work on W...

sote kit framework

from where i can free download store kit framework for iphone In app purchase ...

Is Form validation and Business validation too much?

I've got this question about form validation and business validation. I see a lot of frameworks that use some sort of form validation library. You submit some values and the library validates the values from the form. If not ok it will show some errors on you screen. If all goes to plan the values will be set into domain objects. Here th...

Open-source frameworks/projects for iPhone platform

I'm looking for a collection of open-source frameworks/projects for the iPhone platform. I've found quite a few good frameworks and resources. Such as ASIHTTPRequest, DrawKit, and Cocos2D just to name a few. I'm just curious about the minor, or unknown frameworks that have yet surfaced or that I'm unaware of. Do any of you know of fr...

Criteria for selecting a library for Enterprise usage

What are your criteria for selection a (open source) library (or framework) for enterprise usage? Some libraries are pretty small and can be easily checked for security flaws or tested for performance. But most libraries are too big to be reviewed before you can start to use them. When I think of me selecting a library, most if the sel...

Display Window with Cocoa Framework in Xcode

I'm building a framework in Xcode, and I need to display a window when a function is called. How do I get my framework to display a window that I build in Interface Builder? Step by step instructions would be greatly appreciated! Thanks, Chetan ...

what is the difference between framework and bundle in iphone OS?

Hello, what is the difference between framework and bundle in iphone OS? ...

Lego Mindstorm NXT, Cocoa, and HiTechnic Sensors

I've taken the existing code from this project, and very happy with it so far. I'm now however in a position where I need to make use of some third-party sensors which I've purchased from hitechnic, such as an accelerometer, a gyroscope, and a 3D compass - to mention a few. I'm not sure where to start now, but what I need to do is add ...

To what framework is it worth to switch from django

The last framework, which I used, was Django. I enjoy a lot of things in that, like: The project structure is simple - there are not too many directories and files The admin interface Great documentation XML export-import The concept of Form objects: after you define a form, you can display the form in 1 line, you can even make a form ...

Proper way to structure classes in Xcode framework

I'm building a custom Xcode framework, and I have a class called AXController that has a class method called showActivationWindow. showActivationWindow initializes and shows a window using AXWindowController which is a subclass of NSWindowController. Then, AXWindowController calls activate which is a class method in AXController on a but...