Neil Williams

2,854
Reputation
329 views

Registered User

Name Neil Williams
Member for 1 year
Seen 5 hours ago
Website
Location Sunnyvale, CA, USA
Age 23
Ninjas Prove It
2d
revised Formatting an if statement for readability
looking back at this i realized that i had ===, not !== on the strrpos line... also cleaned up the explanation
Nov
22
revised How to cast a pointer to an int in c ( to get its ascii value )
deleted 7 characters in body
Nov
19
revised Printing 5 numbers in a row
corrected spelling, fixed grammar, improved formatting!
Oct
15
accepted Order dates by upcoming
Oct
2
comment how to convert IP address from char to int
Just use unsigned long instead of in_addr_t. You'll also probably have to capitalize the S in s_addr (so it should look like S_addr.) I don't have access to a Windows computer at the moment, so I hope that does it.
Oct
2
accepted how to convert IP address from char to int
Oct
1
revised how to convert IP address from char to int
ipv6
Oct
1
comment how to convert IP address from char to int
@R. Bemrose IPv6 just complicates this question unnecessarily; the original question stated that the address would be in dotted quad format which implies IPv4 only. I'll gladly update the code if you have any suggestions for replacing the htonl/ntohl calls with something that'll work for IPv6 addresses.
Oct
1
awarded  Nice Answer
Oct
1
revised how to convert IP address from char to int
added code example; deleted 64 characters in body; added 42 characters in body
Oct
1
answered how to convert IP address from char to int
Sep
24
revised How to find out which room i am?
edited tags
Sep
16
awarded  Yearling
Jul
20
awarded  Good Answer
Jul
9
revised C# Lambda expression, why should I use this?
tried to make this a more useful answer
Jul
2
comment Where can I download an offline installer of Cygwin?
MinGW does not have a Unix emulation layer. It's just a native port of the gcc toolchain. From the MinGW website: "MinGW provides a complete Open Source programming tool set which is suitable for the development of native MS-Windows applications, and which do not depend on any 3rd-party C-Runtime DLLs."
Jun
29
awarded  Nice Answer
Jun
24
comment when to leave space ,when not in CSS?
I'm not sure what you mean by "immediate descendant," but "li .highlight" selects elements with class "highlight" contained by an li element; "li > .highlight" would be the syntax for selecting immediate children only. w3.org/TR/CSS2/…
Jun
16
revised Formatting an if statement for readability
corrected return value check for strrpos
Jun
11
comment Type Checking: typeof, GetType, or is?
+1 for as, a great operator.
Jun
11
comment Type Checking: typeof, GetType, or is?
The latter isn't really using inheritance, either. Foo should be a virtual method of Entity that is overridden in Person and Animal.