1
vote
4answers
195 views
how to become a good python coder
EDITED
ALL GREAT COMMENTS - THANK YOU
I started with c++ but as we all know, c++ is a monster. I still have to take it and I do like C++ (it takes programming a step further)
However, currently I …
5
votes
6answers
82 views
Appropriate data structure for table that uses ranges
I have a table that looks like this:
<22 23-27
8-10 1.3 1.8
11-13 2.2 2.8
14-16 3.2 3.8
and it goes on. So I'd like to lookup a value like this:
lookup(11,25)
and get the …
0
votes
8answers
145 views
The Zen of Programming [closed]
I think these things are common for the programming in general:
Compile time errors are better than run time errors
Anything unsafe should be made explicit; the more unsafe, the more explicit.
Code …
2
votes
6answers
246 views
Optimal way to perform a shift operation on an array
Suppose I have an array
unsigned char arr[]= {0,1,2,3,4,5,6,7,8,9};
Is there a way to perform shift operation on them besides just copying them all into another array. We can easily do it using …
8
votes
17answers
412 views
Programmer working conditions
The company I work for currently has several groups of programmers working in separate rooms pretty close to each other (3-7 people per office)
Recently there has been an idea floating around that …
4
votes
7answers
166 views
dynamic memory created inside a function
I would like to know the technical reason(in terms of memory) why this piece of code will not work:
#include <stdio.h>
#include <stdlib.h>
int* fun(int*);
int main()
{
int a=5;
int* …
17
votes
38answers
977 views
In what areas of programming is a knowledge of mathematics helpful?
For example, math theory, graph logic.
Everyone around tell me that math is necessary for programmer. I saw a lot of threads where people say that they used linear algebra and some other math, but no …
2
votes
7answers
153 views
Should code prevent a logically invalid call even when no harm would be done?
This one has been puzzling my for some time now.
Let's imagine a class which represents a resource, and in order to be able to use this resource one needs to first call the 'Open' method on it, or an …
8
votes
14answers
250 views
Version numbering basics?
Hi,
Suppose I have a web application with some basic functions. I want to market it. So I would like to assign a version number - something like 0.0.1. What I want to know is are there any …
0
votes
3answers
109 views
Question about passing a variable created in a function
Suppose there exists a function which returns a message
say of the following format:
struct message
{
void* data;
}msgG;
Which would be the best way to extract the data (i.e. Get the message …
2
votes
11answers
291 views
Constructor (Java)
Hi,
I wonder if it's a big error (in small one class Java program) when I define variable in a class level rather that using the constructor? Can we do that?
The method body will be the same in …
3
votes
5answers
123 views
Online Game Development
Hi,
I have currently been programming for about two years as a student. I have experience with programming languages like Java and C++. I want to take an independent shift and try to develop a simple …
0
votes
5answers
35 views
What programming language are most phones written in?
What are the majority of phone softwares written in? Is it C, C++, Python..?
1
vote
3answers
60 views
Check for the right typecasting
Is there a safer way to typecast data from a generic pointer.?
More specifically , is there a way to check if the type casting is safe or not.
Suppose void*data we receive from the recv function in …
2
votes
2answers
36 views
How to setup a donations page for a charity website?
I need to help a human rights organisation to setup a donation page at their website. They have tried PayPal and GlobalGiving and they found some glitches with these services like ceiling, transaction …
