0
votes
4answers
13 views
undefined offset when using php explode()
I've written what I thought was a very simple use of the php explode() function to split a name into forename and surname:
// split name into first and last
$split = explode(' ', …
4
votes
13answers
164 views
3-d game programming
what programming language/languages do they use to produce games lik Bioware's Dragon Age Origins and some other 3-d games like Call of Duty?
If I would like to do 3d-game program …
6
votes
13answers
208 views
Does using a framework prevent me from mastering JavaScript?
How would I become a master of JavaScript if I always used frameworks and did nothing by myself?
I asked a question on JavaScript and everyone recommend that I use framework (whic …
0
votes
2answers
25 views
Log4J not adding newlines between logfile entries
I am just starting with log4j. I don't have a problem with it reading my properties file and actually logging events, but it seems to be appending everything to the end of the same …
4
votes
13answers
206 views
How do I find the drive to learn?
I've read a few things here, and I've learned a lot, but I'm still itching for more answers.
This is going to be a long one, but I hope to create a profound question that engages …
2
votes
7answers
151 views
Pythonic way to select first variable that is defined
I have some variables and I want to select the first one that is defined, or else return a default value.
For instance I have a, b, and c. My existing code:
result = a if a else …
1
vote
6answers
147 views
How would you represent a MineSweeper grid in Python?
What datastructure would you use in Python to represent the internal state of a MineSweeper grid?
Each x,y position will hold a numerical value which represents its current cell s …
0
votes
3answers
59 views
Any good Java HTML parsers?
I was using Cobra until now because of how easy it was but unfortunately it had some problem with a few test cases. Does anyone suggest a tried-and-tested library?
I've tried Cobr …
0
votes
6answers
87 views
How to remove a row in two-dimensional array
I have a simple array, sort of like this
1 2 3 4 5 6 7 8 9
6 2 7 2 9 6 8 10 5
2 6 4 7 8 4 3 2 5
9 8 7 5 9 7 4 1 10
5 3 6 8 2 7 3 7 2
So, let's call this matrix[5][9]. I wish to …
1
vote
9answers
60 views
Compare inner join and outer join SQL statements
What is the difference between an inner join and outer join? What's the precise meaning of these two kinds of joins?
1
vote
6answers
119 views
#define, #ifdef #undef #endif
Hello,
VS 2008
I have the following code
#define PROC_ADD
void main(void)
{
while(1)
{
#ifdef PROC_ADD
// Do this code here then undefined it to run the code in the els …
1
vote
2answers
102 views
NameError: name ‘self’ is not defined
Why such structure
class A:
def __init__(self, a):
self.a = a
def p(self, b=self.a):
print b
gives an error NameError: name 'self' is not defined?
1
vote
4answers
56 views
Display previously received UART values
This should be easy to answer to anyone familiar with C. I want to display the previous values of a variable (receive register of a UART (RS-232) on a microcontroller) on an LCD. T …
10
votes
32answers
728 views
Difficult lessons for new programmers? [closed]
I started off programming with no formal education in it all. I suspect this was (and still is) pretty normal, especially with the culture around programming. However, this inevi …
1
vote
1answer
43 views
understanding dates/times (POSIXc and POSIXct) in R
I'm reading a table and it contains strings that describe timestamps. I just want to convert from string to a built-in datetime type...
R> Q <- read.table(textConnection('
…
