2
votes
7answers
51 views
Why does C++ use pointers?
Why does C++ need and use pointers? I know they add power to the language but they make it a lot harder to understand for beginners. Languages like F#, C#, Ruby, Python, Lua, etc. …
1
vote
5answers
14 views
Accessing an object’s property from an event listener call in Javascript
Below I am creating an object in Javascript. Within the constructor I am setting up an event listener. The problem is that when the event gets fired, this.prop cannot be found, and …
0
votes
0answers
30 views
write algorithms [closed]
My project is to write a new tcp for persistent packet reordering. This project is to include implementations of the following algorithms:
Fast retransmit algorithm
Scheduling …
0
votes
2answers
10 views
What is the “Quickest” Programming Language?
If you are under the gun and need to quickly write a simple application with a respectable interface (not just something for your own personal use), what would you use, and why?
1
vote
1answer
27 views
What motivates the design of Visual Studio 2005/2008 to consider C# a second-class citizen regarding intellisense when compared to VB.Net?
For me, developing for the Java ecosystem payed the bills for many years. However, for several years now, I have been working primarily in the .Net space. Initially, my transitio …
0
votes
2answers
25 views
wchar_t vs wint_t
Hello. This is an ANSI C question. I have the following code.
#include <stdio.h>
#include <locale.h>
#include <wchar.h>
int main()
{
if (!setlocale(LC_C …
0
votes
4answers
24 views
MySql or Mssql?
Hi
Currently I have an Asp.net website. Basically it was a prototype that showed to my school who are interested in my product. I decided to use this as my industry project that I …
3
votes
8answers
118 views
Why should I use asserts?
I never got the idea of asserts -- why should U ever use them?
I mean, let's say I were a formula driver and all the asserts were things like security belt, helmet, etc.
The tes …
0
votes
1answer
20 views
looking for an e-book about Architecting Applications using .NET
Hi all
Sorry, I really don't know that whether I can ask my request here or not. but
actually, I need to read a book named:
"Microsoft® .NET: Architecting Applications for the Ent …
0
votes
1answer
8 views
How much a Programmer should Know about System Admin?
How much should a programmer should know about system admin? I mean, obviously the more the better. But for the sake of argument, what is the average a programmer should know?
I h …
1
vote
0answers
18 views
Limit CPU / Stack for Java method call?
I am using an NLP library (Stanford NER) that throws OOM errors for rare input documents.
I plan to eventually isolate these documents and figure out what about them causes the er …
0
votes
3answers
18 views
Setting background color for the JFrame
how to set a background color for the jframe ???
0
votes
3answers
17 views
osx ‘mount’ local directory
is it possible to mount a local directory into another one. Using perfoce I want to do something equivalent to symlinking a directory, but in a way that fools it into thinking it' …
0
votes
1answer
15 views
Why isn’t this simple Perl push/pop program working?
I'm reading the Llama book, and working on the exercises. And for this exercise:
Write a program that reads a list of strings on separate lines until end-of-input and prints ou …
0
votes
7answers
113 views
Iterating over a data structure with 51 million primes quickly.
What's the best data structure (in java) for the task of loading 51 million primes and then iterating over them?
I need to know, for example, the primes that are between 10000000 …
