10,570 reputation
21126
bio website
location
age
visits member for 3 years, 5 months
seen 1 hour ago
stats profile views 603

22h
answered Django fail to raise an error when a minimum length password is required
1d
comment truncate characters in a HTML element - Django Templates
Don't think django can help you here. Try to do that through CSS by specifying max-width and overflow: hidden. Or format the strings in view and pass them in list to template.
1d
answered strange behavior in character string and pipe
2d
comment How do you return multiple values in Python?
You may want to suggest some code.
2d
comment Warning in C: assignment makes integer from pointer without a cast
You may want to change s[strlen(s)-2]=NULL; to s[strlen(s)-2]='\0';
2d
comment feof() detecting end of file one line before actual end
Do you have '\n' on last line? So you should have last line as empty line. Otherwise fscanf("...\n"); will not put the values in variables appropriately.
2d
comment Django: delete related object via OneToOneField
@ChRapO, How does that matter where its defined? You can have parent_link=True if you want reverse link.
2d
comment Passing a double pointer to a function as reference - c
What is purpose of messageVector function, do you want to change the double pointer allocated earlier? If not you don't have to allocate it.
2d
comment Why does a call to fread set my file pointer to null?
What is address of clo->heap_file as you have shown in gdb output?
2d
answered Why does a call to fread set my file pointer to null?
May
18
reviewed Reject suggested edit on Query Between Two Tables Using Ruby
May
18
reviewed Reject suggested edit on how to import and consolidate similar (but not equal) text from several different sources
May
18
reviewed Approve suggested edit on ClassNotFound exception
May
18
reviewed Approve suggested edit on php mysql and javascript conflict in loading
May
18
reviewed Reject suggested edit on angular-ui bootstrap accordion: How do I properly $watch the is-open attribute?
May
18
reviewed Approve suggested edit on php mysql and javascript conflict in loading
May
18
reviewed Reject suggested edit on eclipse tag wiki
May
18
reviewed Reject suggested edit on xml tag wiki
May
18
reviewed Reject suggested edit on Check if images are loaded?
May
18
comment Django: delete related object via OneToOneField
Problem with overriding delete() method is that it will not be called if you do bulk delete operation as Car.objects.filter().delete()