indiv

630
Reputation
33 views

Registered User

Name indiv
Member for 1 year
Seen 1 hour ago
Website
Location
Age
Nov
25
answered How can I tell, with something like objdump, if an object file has been built with -fPIC?
Oct
17
answered How to convert to m4v
Oct
17
comment what is the assert function
You want to assert(myBank != NULL) if you want to halt when myBank is NULL.
Oct
14
comment Hard Code List of Years?
I'm not seeing what these unnecessary regexes are. I don't know asp.net, but I'd think you'd need to validate user input regardless of whether you're using a drop-down box or not to prevent malicious input (or to untaint the data).
Oct
11
comment I was asked this in a recent interview
20-decimal product IDs, not 20 decimal product IDs. kentlaw.edu/academics/lrw/…
Oct
3
awarded  Student
Oct
1
awarded  
Sep
25
awarded  Popular Question
Sep
24
comment Print an int in binary representation using C
You need parentheses in your comparison: ((a & 1) == 0. Otherwise it always prints '1'. I also prefer this: *buffer-- = (a & 1) + '0'
Sep
24
comment Need help with this programming question
I don't know whether it's homework, but a google search revealed the same question at javabat.com/prob/p160543.
Sep
24
awarded  Organizer
Sep
24
revised Need help with this programming question
edited tags
Sep
23
awarded  Commentator
Sep
23
comment C Bitwise, TRUNCATING zero’s in hex. 0x15000000 -> 0x15 ??? HOW?
Not quite. That would truncate the 1's. while(!(input & 0x01))
Sep
23
answered C Right shift (Division) -> ROUND TOWARD ZERO. Help :’’(*
Sep
23
answered Curl php youtube
Sep
21
comment get server ram with php
Should not be a comment because the original question intent is unclear. If the intent of the original poster is to modify script behavior based on available system RAM, then this person should be aware that php.ini defines resource limits like memory_limit. And in that case, this is a decent answer (although could be elaborated...). If that's not the intent and they just want to display RAM stats, well, then answers like this are just a side effect of not posting your intent with the question.
Sep
21
awarded  Yearling
Sep
20
answered Simple program adding “D” to output
Sep
17
answered Need better way to format a phone number in C.
Sep
10
accepted Getting and printing chars in C?
Sep
10
revised Getting and printing chars in C?
Clarified what the 2nd scanf call would do
Sep
10
comment Getting and printing chars in C?
Note to readers: want should be won't.
Sep
10
answered Getting and printing chars in C?
Sep
8
revised Animated Text Images in C
deleted 9 characters in body
Sep
4
awarded  Nice Answer
Sep
2
revised Animated Text Images in C
Modified the program to do variable-length frames and updated the text accordingly.
Aug
27
revised Animated Text Images in C
removed unused variable, took out morality statement
Aug
27
answered How to sort digits in a number?
Aug
26
revised Animated Text Images in C
meant "constant" instead of "continuous" for the time between frames
Aug
26
answered Animated Text Images in C
Jul
11
awarded  Nice Answer