frameworks

difference between framework and platform

i have seen people using these two words interchangeably. But i know they both are not the same. So wanted to clearly know how different they are. ...

On the flow C parser

I am looking for a dynamic C-based parser/framework. It must be dynamic because the EBNF is constantly changing, something like bison is not applicable in this situation. And boost::spirit is practically useless to me because it requires C++. Does anyone have an idea? ...

Simpler framework than Django?

Django installation itself was quite a task (for a beginner like me) and reading a book to learn it would not be possible right now. I'm just looking to create simple test applications only to learn Python better, so I'm not ready for Django yet. Is there any simple web framework that can be used for test projects, so I don't have to sp...

How to implement pagination using multiple searcing criteria in codeigniter

Hi ..., Im trying to implement pagination using multiple searching criteria. Supposed I Have student table. I also use pagination when the list of student displayed. The pagination link is. site_url . '/student/page/'; so I use $config['uri_segment'] = 1; so the pagination link will be <a href="http://mysite/index.php/student/page/0"&gt...

What would you expect of a mobile development framework?

Hi, we are planning to build a web based client side application framework. The main focus is to write native looking webapps using Java and compile them for your target platform. Our planned target platforms would be the iPhone and Android (on top of PhoneGap), Backberry and Palm WebOS. Our goal is to create a decent framework and tha...

Receiving UIButton Touch Down Events outsiode Frame Rect

I'm receiving a touch down event on an ordinary button when I touch the button (simulator using magic mouse). Problem is, locationInView of the event is (x=313, y=162), but frame of the button is (x=287, y=149, width=22, length=22), and 287+22 = 309 < 313. All of the above for view rotated to the left (home button on the left of the si...

Starting a process without stealing focus (C#)

I need to be able to start processes (both console and windowed) without it stealing focus. The only way within the .NET framework that I found to do this is Microsoft.VisualBasic.Interaction.Shell with Microsoft.VisualBasic.AppWinStyle.[Minimized|Normal]NoFocus (which map to SW_SHOWMINNOACTIVE/SW_SHOWMA being passed through to ShellExe...

Best way to implement Auditing - Logging Framework in SSIS for ETL Projects

We have several SSIS packages and want to audit the follwoing items Package runtime Errors, Warnings Extracted/Loaded Row count Source and destination Filename, SQL Query, table name Package and Task Performance So far I found only one tool from Pargmaticworks BI xPress - Audit, Notify, Deploy SSIS Anyone used this before... all featu...

Complete Ruby on Rails tutorial

I'm new to RoR, but familiar with MVC, REST, used a lot Symfony, Yii, CI and other smaller php frameworks. Now I want to learn Ruby on Rails. Please help me find a complete tutorial for "dummies", which describes creating web application from scratch on RoR. This is like Symfony's Askeet and Jobeet tutorials. Thanks for any help! Upda...

Better web framework?

I come from a desktop programming background. I wanted to dive seriously into the web programming scene. I looked around and I think using a well established web framework would be the way to go. From what I see Django and Ruby on Rails are really popular. So I just wanted to know which of these or any other is a good choice for me. so...

Path Question for Kohana

Hi, I am newbie to Kohana (v3 used). When I run the Hello World example. If I link to another css file, the css doesn't work. Original example works well. Let's go and make the view file application/views/site.php for our message: <html> <head> <title>We've got a message for you!</title> <style type="text/css"> ...

How to adapt domain objects to GUI in Java

Hi, I'm new to the architecture of UIs and in the past I've programmed very simple UIs. Now I'm confronted with a very large domain model. Because I've used different OR-Mappers to store domain objects in a flat data structure I thought about mapping the domain objects to the view-side in a similar way. Are there any patterns or framew...

mutiple database in codeigniter

Hi ..., I'm trying to implement mutiple database in CI. My code Is here: //database.php $active_group = "default"; $active_record = TRUE; $db['default']['hostname'] = "localhost"; $db['default']['username'] = "root"; $db['default']['password'] = "root"; $db['default']['database'] = "ravelex"; $db['default']['dbdriver'] = "mysql"; $db['...

Error Using Multiple Database In CodeIgniter

Hi ..., I'm trying to implement mutiple database in CI. My code Is here: //database.php $active_group = "default"; $active_record = TRUE; $db['default']['hostname'] = "localhost"; $db['default']['username'] = "root"; $db['default']['password'] = "root"; $db['default']['database'] = "ravelex"; $db['default']['dbdriver'] = "mysql"; $db['...

Invalid Form Submissions-- what to do with them?

I've been doing a lot of reading lately about best practices when it comes to Web App design. My language of expertise is PHP/MySQL. When creating an MVC architecture for an application I'm developing, I always come across the problem of where to store invalid form submissions (so that the user doesn't have to re-enter the data, and help...

Including a debug build in a library's Mac OS X SDK

As I'm sure you're aware it's common to include both debug and release builds of libraries in their SDKs. My question is whether there exists a standard way of going about this for a Mac OS X framework in terms of distribution and possibly Xcode integration? One option is to ship a second entirely separate framework, e.g. MyLibrary.fram...

is there a pre-compiled OAuth frameworks for objective c that i can download?

i cant compile it for some reason... ...

Fast way to set text format for a range of Text using TLF

Hi, i have to set the text format for some tokens in a plain text. I'm trying to use the Text Layout Framework to improve the speed of the operation but i've founded that TLF is far slower (10X in my tests) than the old setTextFormat(). For each token i call this function: public function setTextFormat(format:TextLayoutFormat, begin:int...

Frameworks for beginners?

Hi, I am intermediate Java developer, but have not written programs using a framework. I like server-side development, but am confused with which framework I should learn. What would you suggest? Thank you! ...

Why do most PHP frameworks use set/get for Session variables?

I am very curious as to why all the main PHP frameworks like zend use setter and getter methods to set and get basic $_SESSION['user'] variables? I am doing it myself right now but I really don't know why I am, other then the fact that I see it being done fairly often by others now. So in theory at least, it seems like wrapping these i...