Top new questions this week:
|
You can find an endless list of blogs, articles and websites promoting the benefits of unit testing your source code. It's almost guaranteed that the developers who programmed the compilers for Java, …
|
I know output to the console is a costly operation. In the interest of code readability sometimes it is nice to call a function to output text twice, rather than having a long string of text as an …
|
Abstract:
So, as I understand it (although I have a very limited understanding), there are three dimensions that we (usually) work with:
The 1st could be represented by a line.
The 2nd could be …
|
The following is pseudo code, I tried it in Java and PHP and both worked:
class Test {
private int a = 5;
public static function do_test(){
var t = new Test();
t.a = 1;
…
|
This post from Python creator, Guido Van Rossum, mentions an early attempt to remove the GIL from Python:
This has been tried before, with disappointing results, which is why
I'm reluctant to …
|
I just noticed that the FSharp.Core namespace includes generic array types of up to 4 dimensions, i.e. Core.[]<'T>, Core.[,]<'T>, etc. C# and VB seem to be doing just fine with System.Array - …
|
The place I work at does the following:
They manage a dev version of an app
They manage another replicate version of that app, they call this the rep
version
The live version of the app that is …
|
Greatest hits from previous weeks:
|
I'm not a game developer or anything, but I know that Java is not very widely used for game development. Java should be fast enough for most games, so where's the catch? I can think of some reasons:
…
|
I'm going to ask what is probably quite a controversial question: "Should one of the most
popular encodings, UTF-16, be considered harmful?"
Why do I ask this question?
How many programmers are …
|
Can you answer these?
|
I have MS C# and MS SQL 2008 database project. It can capture employees' records with pictures of more than 1000 records.
Presently, I'm able to capture say 150 records on PC1 using my installed C# …
|
I want to enable some real-time notifications about friend's activities (social network).
Technical context is: Webapp calling backend (REST API's).
Scenario is:
Kevin follows Bob.
When Bob …
|
I have been using cake php for over a year and generally I like it but I struggle to understand the advantages of the complex naming conventions over something simpler.
Cake uses plural here and …
|