Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
2answers
10k views

node.js + nginx - And now?

I've set up node.js and nginx on my server. Now I want to use it, but, before I start there are 2 questions: How should they work together? How should I handle the requests? There are 2 concepts for ...
11
votes
6answers
472 views

Recursion Vs Loops

I am trying to do work with examples on Trees as given here: http://cslibrary.stanford.edu/110/BinaryTrees.html These examples all solve problems via recursion, I wonder if we can provide a iterative ...
6
votes
8answers
237 views

Is it necessary to write else part in every if condition?

The question i asked might be closed. But i just want to know that is it necessary to write else part of every if condition. One of my senior programmer said me that "you should write else part in ...
6
votes
3answers
865 views

Getting started with Core Data

I am having trouble understanding how Core Data works conceptually and in terms of code. I get that there is a coordinator and a context. I also get that there is state management. How do they work ...
5
votes
4answers
119 views

Why .NET is a Framework and Java is a Language

Ok. It's not a battle. I'm curious about the concept of framework, I worked with some frameworks like django, zend, rail, and cakephp in various levels. Today a friend of mine sent me a presentation ...
4
votes
1answer
206 views

Unterstanding how Vaadin uses GWT

After playing around with Vaadin for about a week I'm curious about how Vaadin uses GWT. GWT compiles Javacode to Javascript. This has to be done everytime when you are redeploying. Since Vaadin has ...
4
votes
5answers
248 views

Remove unwanted jQuery functions

Helo, A library like jQuery is fully loaded and comes with many functions that we may not use in our scripts. Am wondering if there is a way to say read my script find out all the jQuery functions ...
3
votes
2answers
359 views

Extjs: How to approach the concept: Add, remove, add instance

Concept: Consider having two panels A and B, and a window C like in the following example. The buttons on the window switches between the two panels. var A = new Ext.Panel({ title: 'A' }); var B ...
3
votes
2answers
302 views

Happstack-state concept and docs?

I'm starting making Haskell web server. I've decided to start with Happstack and Happstack-state. And I'm feeling hard to understand concept and attribute of Happstack-state. Is it a new kind of ...
3
votes
4answers
442 views

Timer Efficiency

I am planning to develop a system with tens of thousands of objects in it, which will each have up to 42(but more likely down around 4 or 5) separate actions they will potentially be performing at ...
3
votes
7answers
126 views

Explaining a concept: Does showing code early make it clearer?

I guess this is a question that may interest many, so please discuss! :-) Now, imagine you want to show people you work with a concept for future development (like a new product or a new technology ...
3
votes
4answers
3k views

iPad magazine app concept?

what is the best way and technique to develop a ipad magazine app? is it possible to use html5/css including swipe effects and stuff? what are other techniques? thanks in advance regards
2
votes
1answer
94 views

Why does std::istreambuf_iterator fail boost's SinglePassIterator concept check?

The following program: #include <boost/range/concepts.hpp> #include <iterator> #include <istream> using boost::range_detail::SinglePassIteratorConcept; int main() { ...
2
votes
2answers
96 views

What does it mean in PHP to traverse arrays?

I was wondering what does it mean in layman's terms to traverse php arrays
2
votes
3answers
124 views

Is there any spreadsheet which use a formula repository instead of writing several copies directly in the cell?

I like speradsheet programs, but there is a disturbing thing with them: the formulas must be entered in the cells. It has several withdraws: I need to scan thru all the cells to see, what's going in ...
1
vote
6answers
69 views

Why should I use asynchronous operation over synchronous operation?

I have always pondered about this. Let's say we have a simple asynchronous web request using the HttpWebRequest class class webtest1 { HttpWebRequest webRequest = ...
1
vote
1answer
33 views

jquery grouping concept in asp.net

Hi i have two tables in a form it need to validate them individually in jquery.When i click on submit1 it should validate only table1, when i click on submit2 it should validate only table 2. right ...
1
vote
1answer
50 views

I don't understand the width field in pprint in python

I don't understand this concept clearly. Could somebody give me some examples to demonstrate the concept for width in pprint in python?
1
vote
1answer
54 views

How to build API handle Concurrency Request

I have been develop API using asp.net with C# back-end code. i would like to understand more concept how to make the API support more client to call, It's because i want to have experience the same ...
1
vote
3answers
71 views

showing threads or posts unread by a user

I am in the process of writing my own basic forum to plug into a code igntier site. I'm a little stuck on how to display threads/latest posts unread by a user. I was thinking of a table that holds ...
1
vote
5answers
327 views

Does the concept of “magic number” change from language to language?

Take the following code in C/C++, for example: int foo[] = {0, 0, 0, 0}; No magic numbers, right? Now, the Python "equivalent" of that would be: foo = [0, 0, 0, 0] Still no magic numbers. ...
1
vote
1answer
313 views

Login system concept & logic?

I want to know the process which usually web apps follow to maintain login between multiple requests and also how they manage things using COOKIES. In my login form I am providing "Remember Me" ...
1
vote
1answer
495 views

AS3 Collision response for a game

I hav bee struggling with a collision response method, im writing in actionscript 3, for a long time now, and I am hoping someone can explain what this code means, for I have only modified it. I did ...
1
vote
5answers
230 views

Creating objects during runtime in Python

I have a problem grasping the OOP concept when it comes to creating objects during runtime. All the educational code that I have looked into yet defines specific variables e.g. 'Bob' and assigns them ...
1
vote
2answers
276 views

Need concept regarding windows based chat application

suppose if i want to develop a windows chat application then a chat server need be developed and client too. after developing chat server apps we can run that apps in a machine and chat client will be ...
1
vote
6answers
110 views

How can we estimate the time needed for program to complete and reflect that to progress bar?

This is not programming language specific. I just need to understand how can I estimate the time needed for a process to complete ? Such as unzipping file for example or burning a CD ? What are the ...
1
vote
4answers
176 views

Reversable Loops

I have been experimenting with a game that I'm trying to make. I found I had two methods that were identical except for the for loop, which was simply the reverse of the former. I tried to make it ...
1
vote
1answer
1k views

encapsulation and abstraction OOPs concept

Does Encapsulation is information Hiding or it leads to information hiding?? As we say that Encapsulation binds data and functions in a single entity thus it provides us control over data flow and we ...
1
vote
2answers
480 views

Multiplayer game in iphone - concept, strategy, design?

I want to develop an online multiplayer game for iphone. I have developed two iphone applications but they weren't games. so This is my first game . so Basically I know nothing about how online ...
1
vote
4answers
400 views

What trivial real-life example do you use to explain programming to total non-programmers? [closed]

Possible Duplicate: What is a good example to show to a non-programmer to explain what programming “looks like”? Programmers seem to live in a world of their own (as this site ...
1
vote
2answers
337 views

Check if only single record exists

I have a table with GID ID DefaultA DefaultB DefaultC DefaultD DefaultE DefaultF my requirement is that there should always be one record in the database always. In the front end if the end user ...
0
votes
2answers
31 views

Concept Questions - Textbox with selective input

I've got a bit of a concept question I'd like to have answered. I'm aiming to make an android application in which textboxes can only have specific types of inputs. As an example, decimal numbers are ...
0
votes
2answers
17 views

What is the difference bewteen handler and callback function?

In my current project, there are lots of networking code, and it use the event handler to handle the input message. Is this mechanism different with the call back function ?
0
votes
1answer
40 views

what's the concept of mandatory in orientdb?

I'm trying OrientDB. Most of concepts are easy and clear to understand. But there was one unfamiliar concept. The mandatory. What's this?
0
votes
1answer
13 views

Can I assume an executable file as a snapshot image of an execution state?

I read some unix manual (http://pubs.opengroup.org/onlinepubs/009695399/functions/posix_spawn.html), and there was a mention about execution. The new process image shall be constructed from a ...
0
votes
1answer
42 views

Questions about site concept in eclipses (and iviewsite in particular)

1) Can somebody please explain what is a site? i can't seem to find anywhere a proper definition of this term? 2) What is the purpose of the IViewSite interface?...it does not have any children ...
0
votes
2answers
54 views

What is a part site in eclipse terms?

What is an eclipse part site?... I have searched for this concept in particular but found nothing. Anybody know a site (:D) where i can get some info on this concept ? LE here's an example ...
0
votes
0answers
34 views

WCF service - Partial / Async postback

I am trying to create a prototype on both client and server using WCF as follows : Client will request for 1000's of order details by placing those order-ids in one go (One string param that will ...
0
votes
0answers
32 views

Run run dash game history request for the review purposes [closed]

can somebody tell me the history and the concept of the game run run dash, were needing it for our review of the game..did the developers intentionally make the graphics somehow very pixelated. what ...
0
votes
2answers
90 views

Shopping Cart - The flow for sold out or less available items at checkout time?

I designed a shopping cart solution for a client. For one of their items (candy, for example), they have a certain quantity they can sell for each type. I deduct from the quantity available after ...
0
votes
1answer
42 views

Entity associations

i started to read Entity Framework Book. in first part of book it describes entity and object similarities and differents. it writes : Each entity has associations with other entities. what is ...
0
votes
1answer
245 views

Android P2P idea

I've been looking around for some way to simulate Peer 2 Peer for games on the android and the best way I've been able to come up with is connected an android to a server and then routing through that ...
0
votes
1answer
516 views

understanding a qthread subclass's run method and thread context

i have an encoder class with lots of methods . this is a subclass of Qthread. i am new to multi-threading and trying to understand how this class is threading its methods ... i understand to ...
0
votes
1answer
64 views

How can we appreciate stored-program concept?

To appreciate something, you need contrast with something else. How can our generation appreciate the concept of stored-program when we haven't seen any other way of computing?
0
votes
3answers
248 views

Need help on understanding pointers in c

I'm having trouble understanding pointers concept and below is the code. Why the swap(&a1, &a2) out puts the -5, 6 rather than 6, -5 ? The values are already swap right? void swap(int *ptr1, ...
0
votes
2answers
160 views

device to measure vibration - retrieving data?

hey guys, i'm working on a concept for university. i wonder what's the easiest and best way to measure certain vibration in a room. imagine a room full o people dancing. is there any affordable device ...
0
votes
1answer
130 views

About using an array of functions in Perl

We are trying to build an API to support commit() and rollback() automatically, so that we don't have to bother with it anymore. By researching, we have found that using eval {} is the way to go. For ...
0
votes
2answers
93 views

what kind of initialization is this called - conceptual?

I have this snippet from apple sample code "LazyTableImages" . In the code below they are initializing the IconDownloader class . So what kind of behavior is this . *************************This Line ...
0
votes
2answers
643 views

Hibernate on hypersonic in production?

Developers of hypersonic promise increase of performance? But I'm afraid problems with administrating and other aspects of using hsqlDB. Are anybody using this in production? Is it good idea?
0
votes
2answers
43 views

Concept Application Server IDE CIDE will not launch on XP in IE8?

I am trying with concept://localhost/Samples/CIDE/cide.con with the server running as an NT service A few code examples run (many crash Client.exe but not the server) e.g. ...

1 2