mpez0

141
Reputation
35 views

Registered User

Name mpez0
Member for 1 year
Seen yesterday
Website
Location
Age
1d
answered Download file using partial download (HTTP)
2d
comment How do you determine equality between two ipv6 addresses?
Note well the "actual syntax of zone indices depends on the OS.." You can not assume the zone index is three characters. You can, however, assume that if present, it follows a % symbol. So, if you're comparing addresses without concern for the local interface specification, stop at the %. Conversely, if you differ between local interfaces, include the string after the %.
2d
comment Is system programming dead?
There will always be some things that are better or easier to do in a low-level, closer to the hardware, type of programming language. C is the best example of that category right now.
Oct
20
answered What is the best UI you’ve ever used?
Oct
15
awarded  Yearling
Aug
27
comment Strange 64/32-bit GUID issue under IIS7
Similar wild guess -- could this be order of evaluation? Try putting parens around the ternary statement to ensure that you're not parsing the assignment as the conditional.
Aug
27
comment Utility to search for a class inside dozens of jar files?
find <directory trees to search for .jar files> -name '*.jar' -print | while read i; do <same jar -tvf | grep as above>; done
Aug
11
awarded  Commentator
Aug
11
comment What’s better multiplication by 2 or adding the number to itself ? BIGnums
How much performance difference do you see? First thing, benchmark it.
Jul
24
comment What scripting language should I learn for file/text manipulation tasks?
The usual tongue-in-cheek algorithm for correcting one is initial estimate is to double it, then go to the next higher unit of time. Thus, a 2 hour initial estimate will map to 4 days.
Jul
1
comment What are software practices in mission-critical industries (e.g. nuclear power plant)?
The software practices, at least a decade ago, were simple: No safety precaution or operating control would rely on software, since it couldn't be properly analyzed for failure modes. Sofware was only used for log keeping, communication facilities, etc. So there isn't much to learn in terms of how to build reliable SW. I think you might be better off looking to "Safety of flight" rated systems.