Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
40% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
Ranked #20.4K
Ranked #4K
~5K People Reached
About Me

Over 35 years in the embedded system business. Frequent speaker at Embedded Systems Conference. Linux and multi-core are a specialty.

Interests
Kung Fu Instructor Ham Radio Operator
PC Specs
Dell Latitude 6540 Quad Core with 8GBs RAM, 1TB SSD running Linux Mint 17

9 Posted Topics

Member Avatar for happygeek

Get ready for the new machines that are built to run WIndows 8. They will have a TPM installed that only has MS WIndows as a boot option. Booting from USB/CDROM will now be impossible if the BIOS vendor doesn't give you a way to disable the TPM or reload …

Member Avatar for simhakidsden
9
3K
Member Avatar for Felisha_1

OK, I'm not going to do you homework for you. However, you should seriously consider running this program through a pretty printer. The formatting is so bad that it's a wonder you can read it yourself. And, so many variables names starting with "m" and "h"? Try giving the variables …

Member Avatar for taichichuan
0
125
Member Avatar for wan_1

Well, I'm not going to do your homework for you. However, you should look closely at your numeric sorting function. It sorts the numbers, but it's missing something important.

Member Avatar for taichichuan
0
148
Member Avatar for Reverend Jim

At one time, I used to write a lot of FORTRAN code. In FORTRAN, many of these gems were ingrained in the way you were taught (i,j,k as integer variables, etc.). As I read through this, I had deja vu all over again with some of the code I've come …

Member Avatar for taichichuan
0
311
Member Avatar for Lightninghawk

Actually, you should consider making the default lease time much shorter. More like 30 minutes. This does increase the number of lease renewals, but guarrantees that anyone who's not actively on the network gets their IP dropped for reuse by someone else.

Member Avatar for Lightninghawk
0
320
Member Avatar for Nandomo

Here's a good explaination of ICMP redirects and when they're sent: http://www.cisco.com/c/en/us/support/docs/ip/routing-information-protocol-rip/13714-43.html

Member Avatar for taichichuan
0
161
Member Avatar for yeyo_1

If you're running any of the Debian-based distros, an "apt-get install build-essential" will install everything you need to be able to develop C/C++ code on Linux. Then make sure that you use the CDT (C/C++ developer toolkit) version of Luna rather than the Java version to be able to find …

Member Avatar for taichichuan
0
278
Member Avatar for Ghost0s

If you're sending this with TCP sockets, the data will be converted to a stream of bytes and stuffed into the packet to be sent. There are no delimiters placed into the stream by the protocol. And, there's no guarrantee that you will get full MTU transfers (the Nagle algorithm …

Member Avatar for taichichuan
-1
181
Member Avatar for DavidB

In this case, FORTRAN formats arrays in column-major order. That is, columns are adjacent in memory instead of the rows (C is row-major order). So, the developer is taking advantage of that knowledge in the way he/she is passing parameters. As you can see, this is really bad practice because …

Member Avatar for taichichuan
0
238

The End.