Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~713 People Reached

4 Posted Topics

Member Avatar for darkphotn

Is computer programming worth it? It seems like you have to spend a LOT of time learning a new language (employers in California are now asking for 4 years of professional experience), use it for a time, then watch it come obsolete and take a lower paying job so as …

Member Avatar for jbennet
0
270
Member Avatar for kostasxx

long long blahblahquack = 930342; blahblahquack *= 1000000; blahblahquack += 900243; do_something(blahblahquack); ----- or you could make a function: long long from_thousands(int a, int b, int c, int d, int e){ long long ans = 0; ans += a; ans *= 1000; ans += b; ans *= 1000; ans += …

Member Avatar for Dave Sinkula
0
150
Member Avatar for giora88

You could have a parallel thread using another port whose sole duty is to say "yes I'm here," or "I'm busy - try again later." I wouldn't try to have that in the same thread as the main network code -- too much can go wrong.

Member Avatar for Salem
0
135
Member Avatar for Suraj Nayak

Modern computers are based on transistors, which are like light switches -- they are either on or off. Binary means, roughly, "two", so we use that term to describe this on-off system. All data processing ("thinking") in the computer is done with on-off switches. Each individual switch is called a …

Member Avatar for darkphotn
0
158

The End.