development

Load Image in UIImage from XML

Hi I am having issues loading the image from an xml file. I was wondering if someone might be able to help // // BookDetailViewController.m // XML // // Created by iPhone SDK Articles on 11/23/08. // Copyright 2008 www.iPhoneSDKArticles.com. // #import "BookDetailViewController.h" #import "Book.h" @implementation BookDetailView...

How to take an engineered approach to making a website ?

I'm thinking of starting a website (Not static but PHP based) - something like a portal. However, i want to do this right. Can anyone help me in delineating the various processes that my site can go through ? Like : How the data flows between different pages (data flow diagram) ? Steps in selecting a design etc.. etc... Basically ...

Setting up a development server

When developing PHP applications, it's best to have a server you develop/test on, and then a live server you put everything once it's ready. OK, but how? If you are hosting through a hosting company how can you setup your own development server to test on that mimics all the LAMP settings as your live server? Because if they differ the...

What Should Be Taught to CS Students that's Not Being Taught?

Possible Duplicate: Why dont they teach these things in school? Question for those who have worked with their fair share of recently graduated CS students: If you were able to lecture a class while they were in school, what subject would you talk about? Why is this important for them to know? I'd like to know what should be ...

MoreViewController, edit, noneditable icon

I am using TabBar with more than 5 icons, co I get the MoreViewController as well and can edit icons in the TabBar. But I did not find the option how to forbid editing of one of the icons - similar to More. How can i fixate one icon? In the docu there is description of beginCustomizingItems, which if containing the item, will make it no...

Problem using JUnit4TestAdapter from eclipse plugin context

Hi! I am trying to create very simple eclipse plugin. I want to run current selected test case, using my tool with a help of JUnit4TestAdapter. When I run outside eclipse, using "main" with "parameters" everything is just fine. When I invoke "main" with the same "parameters" inside the eclipse (i am creating separate thread for tha...

Iterative Development with Remote Resources

My situation: I'm a software developer that's taking on new responsibilities as a development manager. Most of my team is overseas or in Canada (I'm in the US). They're all professionals and range from junior to senior level in development. Our code is written in C# and runs everything from the e-commerce site to the production floor. We...

Is there a way to fire jQuery's live() or delegate() without a user event?

I am trying use jQuery to poll dynamic DOM nodes, created outside of the jQuery object (with Google Maps API methods). I can do this easily by, for example, binding delegate() to a click event. However, I need to poll the DOM, without any additional user actions (user should not have to click), as part of a function that runs onload. Doe...

How to start developing Mozilla Firefox addons?

Guide me on the appropriate technologies to learn to start developing Mozilla firefox addons & later addons for Songbird & Thunderbird. What all technologies and softwares are needed. I use ubuntu 9.10 64 bit. ...

OBJ-C: Getting the minimum/maximum value in a NSMutableArray

I want to get the maximum and minimum values of a NSMutableArray so I can create a core-plot plotspace and graph based around those max and min values. My code is as follows: NSMutableArray *contentArray = [NSMutableArray arrayWithCapacity:100]; NSUInteger i; for (i=0; i<60; i++){ id x = [NSNumber numberWithFloat:i*0.05]; id y = [NSNum...

Does the GPLv2 preclude me from using KLone for my website?

I recently discovered Klone. Being a C++ developer, I'm fascinated by the idea of getting to use C++ for my web development work (I know, I'm a glutton for punishment!)... Anyhow, it looks like the open source version of KLone is licensed under GPLv2... Normally, this would be fine, but since you're app is compiled and linked right into ...

JavaScript development - bookmarking lines of code?

Hi, I constantly find myself rewriting the same lines of code in the Firebug console to test my application. The application uses UI so much that I don't think unit tests are the solution here? How could I quickly run lines of JavaScript code without typing them again and again? ...

What are the pros and cons of open sourcing your software

What are the pros and cons about going open source with a piece of software? is it benificial for the development of my appliation? will people likely be inclined to help? will people rip me off, steal my code, and use it for themselves? etc ...

java based development environment

Most of the project artifacts (build time, run time libraries) needed by our development environment is handled dynamically via maven dependencies. But there are other programs which have to be used for all developer accounts before they can reliably use the system (e.g. JDK, Ant, svn client or tortoise svn, eclipse, maven, jboss appserv...

Making Django development server faster at serving static media

I'm using the Django manage.py runserver for developing my application (obviously), but it takes 10 seconds to completely load a page because the development server is very, very slow at serving static media. Is there any way to speed it up or some kind of workaround? I'm using Windows 7. ...

Android Development: SMSManager deliveryIntent param

Hello I'm developing an android application that uses the SMSManager class to send messages and am unable to get the final parameter, a pendingIntent spec'd to launch upon delivery of the SMS, to fire. I won't post actual code but example of what i'm trying to accomplish is... THIS CODE IS EXAMPLE TO PROVE POINT ONLY -----------------...

Need Guidance to develop a linux OS

I like to develop a Linux OS , what are all the languages i should learn !! I have basic idea of C and C ++ Pls suggest me ...

What pros/cons come from using a server OS for your main .NET development machine?

I was considering using Windows Server as the OS for my main .NET development workstation. It includes the version of IIS to which I'm most often deploying, manages FIPS compliance differently, etc. I certainly don't use any of the multimedia or gaming advantages (if there are any?) of a workstation OS. What pros/cons come with using ...

I can't find this: How do I use 4 SPACES instead of a TAB in EMACS?

I am making the jump to EMACS, and I can't find what I need to do in my .emacs file to get php-mode AND all other modes to insert 4 spaces instead of a TAB. Help? UPDATE: When I hit tab I still get 8 spaces in a plain file with the given answers. In php-mode I still get 2 spaces. Hitting tab in php mode does nothing, tab in regular EMA...

Setting up an efficient and effective development process

I am in the midst of setting up the development environment (PHP/MySQL) for my start-up. We use three sets of servers: LIVE - the servers which provide the actual application TEST - providing a testing version before it is actually released DEV - the development servers The development servers run SVN with each developer checking out t...