Top new questions this week:
|
We concatenate CSS and JavaScript files to reduce the number of HTTP requests, which improves performance. The result is HTML like this:
<link rel="stylesheet" …
|
A block is a list of statements to be executed. Examples of where blocks come up in C are after a while statement and in if statements
while( boolean expression)
statement OR block
if (boolean …
|
In quite many assemblers, a value copying instruction is usually named "MOV" and its description in manuals usually also contains "move" (however, other words can be used, like "load", "store", …
|
When you have to iterate a reader where the number of items to read is unknown, and the only way to do is it to keep reading until you hit the end.
This is often the place you need an endless loop.
…
|
I've never built a RESTful API before and I am wondering how discrete should it be?
For example lets say I have a customer which has a name, address, phone number, email address, language, etc.
Does …
|
I've already read If you use multiple computers, how do you sync everything? - but that was off topic... I am specifically thinking about this from a programming side.
I have powerful desktops at …
|
I am new to c++ and have been making the good old Calculator. I have gone forward from a 2 value calculator to a 3 value calculator and wondered.. How is it possible to make a 10 digit calculator …
|
Greatest hits from previous weeks:
|
What's the difference between overloading a method and overriding it in Java?
Is there a difference in method signature, access specifier, return type, etc.?
|
Instead of a database I just serialize my data to JSON, saving and loading it to disk when necessary. All the data management is made on the program itself, which is faster AND easier than using SQL …
|
Can you answer these?
|
We are a team of 8-10 developers working on different parts of a Sitecore instance. In the past we've used SVN and more recently (and successfully) Hg, but are moving to using Git as our primary …
|
I am doing a research on this and can't find my answer to this question:
Which interface allows you to use a design pattern that is characteristically changed with the instantiation of objects?
…
|
I'v developed an internal singe-page web-app (unix, apache & postgresql) protected by a simple login page. Currently, the users have their own login role with a password.
This is starting to get …
|