Tagged Questions

19
votes
4answers
714 views

Design pattern for building a reasonably complex PHP web service

I have just "finished" coding up a relatively involved web service in PHP. The code base is now a bit of a mess due to last minute requests, changes, add-ons, the usual. I tried to code it as ...
16
votes
29answers
1k views

What is the best API/framework/platform you ever worked with?

Most programming is done on an existing framework or platform, and using various APIs which make your programming job much more convenient. It can either be a superbly designed set of APIs, or a nice ...
10
votes
9answers
2k views

Framework Vs. API

Now, this may be a silly question but sometimes the terms Framework and API are used interchangeably. The way I see it is that a Framework is a bigger more generic thing, containing many API's, that ...
7
votes
1answer
6k views

Android Google Directions

Some Questions about Android and Google Directions Service: Is there a native way on Android to use the Directions Service from Google or are there any nice Wrapper Frameworks? I would like to ...
7
votes
5answers
525 views

What are some of the less-known and interesting public APIs and frameworks that I can use for iPhone?

What are some of the less-known and interesting public APIs and frameworks that I can use for iPhone? In OS 3.0 they're supposed to be 1000 new APIs more than in 2.2, so which one of these are the ...
6
votes
9answers
166 views

I want to learn fundamentals first instead of specific API, Framework, Language. Where would I need to start?

After reading so many articles and blog posts on this vs that such as "RIA vs Web development", "Silverlight vs HTML5", "iPhone development vs Windows Phone 7 development", I realized that it doesn't ...
5
votes
2answers
2k views

Java XML APIs

I've dealt with a few XML APIs in Java, but I don't have a good understanding of all the frameworks available in Java for dealing with XML for whatever purpose (e.g. JAXB, JAXP, Xerces, StAX, Castor, ...
5
votes
3answers
246 views

API design: Flexibility Vs. Ease-of-use

When writing a library or the public API of a module that will be used by a lot of other code in a variety of use cases, what is the best way to balance flexibility with ease of use? I believe that ...
4
votes
5answers
785 views

What is the difference between an API , framework and middleware?

Just Randomly got this question in my head! Whats the difference between API , Framework and middleware? Essentially all of them provide abstract low level services to apps. In that case why is dot ...
4
votes
2answers
572 views

Is there still a difference between a library and an API?

Whenever I ask people about the difference between an API and a library, I get different opinions. Some give this kind of definition, saying that an API is a spec and a library is an ...
3
votes
1answer
513 views

How to choose the perfect RESTful framework?

I know this question is too wide to be answered with a simple "use this framework", but I would really appreciate your advice on that one. I'm looking to make a (quite complex) project than will run ...
3
votes
1answer
788 views

Building an IRC bot in Java

After some googling an obvious answer or starting point for a Java IRC bot has not presented itself, my question; is there an existing framework to help me do build an IRC bot? Failing that, is this ...
3
votes
3answers
176 views

What separates a “private language WTF” from merely bad library/API/DSL design?

Some of the most entertaining Daily WTF stories feature private languages run amok. However, domain-specific languages can be quite powerful and seem to be increasingly popular. And of course we can't ...
2
votes
2answers
101 views

Best Python Web Framework for my API Server Needs

I am working on developing two systems: A system that will constantly retrieve economic data from a 3rd party data feed and push it into a MySQL DB (using sqlalchemy) A server that will allow ...
2
votes
1answer
324 views

Python REST frameworks for App Engine?

Any pointers, advice on implementing a REST API on App Engine with Python? Using webapp for the application itself. What I currently know is that I can: hack up my own webapp handlers for handling ...
2
votes
1answer
41 views

API/Framework design: setting modes/environments (such as dev mode, etc)

I was wondering what the best way of setting modes for a reusable web framework written for asp.net, suitable for manual configuration or with a dependency injection framework. A bit of background ...
2
votes
3answers
506 views

Any API to share data between two iphones/ipod touches/ipads? (Except GameKit)

is there any framework/api to easily to find other devices and share data between them? Not gamekit please. And bonjour would be great but it is to complex to build..Mayby there's any API that uses ...
2
votes
3answers
368 views

API vs Toolkit vs FrameWork vs Libarary

so my question is too simple and i want clear answer with an simple example.. What's Main Difference between API & Toolkit & Framework and Libarary ?
2
votes
3answers
204 views

Framework for providing API access to website?

We have a website that we want to provide web based API access to to other sites. It may end up being a REST based API, but I'm not sure yet. It needs to be accessible from a Drupal module, but we ...
2
votes
3answers
306 views

What are some web-API-frameworks for .NET? Like Frapi or grape

There are two interesting frameworks for use in Ruby and PHP that provide tools for building APIs. Ruby: Grape https://github.com/intridea/grape/wiki Php: Frapi http://getfrapi.com/ Does anyone ...
2
votes
3answers
272 views

Recording current audio using C#?

How do I record Windows currently playing audio using .NET? Is there any robust audio framework for .NET? Note I'm not interested in recording microphone!
2
votes
1answer
107 views

possible to make codeigniter work with another framework?

the situation is this. my client (who also is a programmer) asks me to develop an address book (with mysql database) with a lot of functions. then he can interact with some class methods i provide ...
2
votes
5answers
591 views

Should exception messages that are targeted to the developer be localized?

I am referring to exception messages that show the developer is incorrectly using an API. For example incorrectly passing a null to method. So the type of exception that the developer will get the ...
2
votes
5answers
190 views

How to deal with an Undocumented API/Framework under .NET?

For work I have to code with an external company's API to deal with their proprietary database solution. Unfortunately the documentation they provide is more of an example guide then proper API docs, ...
1
vote
0answers
67 views

Is Qt and its implementation of OpenGL a good platform for developing a game engine with? [closed]

I've been using Qt for quite a while and have come to like it: it's great for RAD, and has an amazing library of various resources which is very comparable to .Net in many respects. Despite this, I ...
1
vote
2answers
75 views

Which ruby frameworks are appropriate for internal services?

I'm making a web service that will only be used internally by other parts of my system. It will never have html rendering, and it will never be a publicly available API. The two main candidates are ...
1
vote
2answers
109 views

How do you organize Luracast Restler classes to create related route endpoints?

I am working with Luracast Restler API framework and am wondering how to organize the class structures to create this style of route. webroot/user/:id/ webroot/user/:id/profile ...
1
vote
1answer
115 views

Using Luracast Restler PHP how to specify a default class method for the root path

I working with Luracast Restler API frame work and cannot figure out how to specify a default behavior for the root directory. For example: webroot/user - will invoke the class User method get() by ...
1
vote
1answer
169 views

What is a good technique for markup (HTML) generation?

Some time ago I asked here about a good html object model in java. I received a good answer pointing to the Element Construction Set project: I used happily this API to quickly build some HTML ...
1
vote
1answer
24 views

How do I go about creating my own API/Framework/Libraries

Some libraries are very obvious to me. I mean I can create the math, string etc libraries on my own. I don't understand how people create API's like OpenGL, OpenCV, DirectX, and MFC. I don't ...
1
vote
1answer
46 views

Recommendation on web language for building API set for application like friend-feed

I'm working on an idea for a website like friendfeed and need inputs on how to deverlop an API set. The module for tracking changes isnt a problem and has been build using system calls (so ...
1
vote
1answer
156 views

APIs to download songs from iTunes to iPhone

Hi all i am writing one iphone application to download the songs and store it in my application. Is there any framework for this?. Can you please help me how to get started with it. Thanks in advance. ...
1
vote
3answers
44 views

best way of knowing a frameworks api?

what is the best way of getting acquainted with a frameworks api in a quick way? is it by reading everything class and its members from top to bottom?
1
vote
1answer
586 views

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 ...
1
vote
2answers
2k views

Need an info on PHP Reporting Framework/API/Tools

I have created My portal on PHP and MYSQL. I am unable to find a competitive PHP based tool/Framework like Jasper report which can be used to design reports The framework must be an Open source and ...
0
votes
1answer
40 views

Kohana API Browser

I am new to kohana since i was used to codeigniter. I have to admit that kohana has lot of interesting stuff that i want to know deeply and it seems to be a step over ci, in almost everything, ofc ...
0
votes
1answer
99 views

Difference between framework vs Library vs IDE vs API vs SDK vs Toolkits?

Actually i want some examples. you see i always get confused,so with some examples i will be able to figure it out better. Thanks in Advance Also, Is Eclipse an API or IDE
0
votes
0answers
30 views

Using the PhotoLibrary framework with iPad app

I am trying to use the private framework PhotoLibrary in an application I am working on without much luck. I have been searching for a while only to find out of date information about how to use ...
0
votes
0answers
58 views

EF Fluent API - Inheritance mapping Table-Per-Type but one-to-many

I am looking for the EF fluent api mapping syntax of the following scenario. Suppose I had the following two tables: Products ProductID (e.g. 1, 2, 3) ProductName (e.g. Coke, Pepsi, etc.) ...
0
votes
1answer
10 views

Order to call registered events

I'm building a framework which relies heavily on user-registered events, All I really wanted to ask, was; is there an accepted order for calling event callbacks? i.e. should they be called in the ...
0
votes
0answers
56 views

How to instal Frapi in my windows localhost [closed]

I want crate a CRUD API, so i found http://getfrapi.com/. But i don't know how to instal frapi on my windows localhost(PHP 5.3 and Apache 2.2 + postgre SQL 9) or any CRUD Framework frapi like ? ...
0
votes
0answers
154 views

What language/framework for gamification system? [closed]

I'm gonna develope a really simple gamification system (only credits, badges and levels at the beginning) for an existing website but I really don't know how to start. Can you suggest me if there are ...
0
votes
5answers
36 views

Java - Framework to “APIzize” any class and make it available on TCP?

I have an application where both the backend and the frontend are built in Java. The backend provides some functionalities like accessing the DB, etc. While the frontend built in Struts calls those ...
0
votes
1answer
50 views

API - Framework -Library [closed]

Possible Duplicate: API vs Toolkit vs FrameWork vs Libarary Can someone Explain the differences between an API, a Framework and a Library. Some examples would be helpfull , specially for ...
0
votes
1answer
141 views

joomla API: head data overwritten

I am using the below PHP code to set the page title and the description meta tag within an article $doc =& JFactory::getDocument(); $options = $doc->getHeadData(); ...
0
votes
2answers
318 views

joomla: use API inside an article

I am using the Sourcerer plugin to use PHP code inside my articles. I would like to use the Joomla API/framework inside my article to dynamically set the HTML meta tags and other stuff. I found the ...
0
votes
1answer
130 views

Create a Twitter like web service

I am researching the requirements for a web service that is very similiar to twitter. It has users that can follow others, uses hash tags, messaging and has a user and global feed. Where do i start? ...
0
votes
1answer
228 views

What is the difference between API & Framework [closed]

Possible Duplicate: Framework Vs. API Hey, I want to know what are the differences between an API & a Framework. Thanks
0
votes
6answers
380 views

difference between API and framework

what is the difference between these two terms, thanks in advance for any good simplifications and good examples.
0
votes
1answer
179 views

java fb2 library

I want api for creating fb2 files. Can you help me ?

1 2