Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 169
Search took 0.02 seconds.
Search: Posts Made By: sarumont
Forum: C Oct 27th, 2006, 11:02 AM
Replies: 7
Views: 283
Posted By sarumont
I do not see that in the malloc() manpage. ...

I do not see that in the malloc() manpage. *shrug*

To my knowledge, the biggest performance-affecting difference here will be the calls to realloc(). It takes time and resources to fulfill these...
Forum: Coder's Corner Lounge Oct 27th, 2006, 3:15 AM
Replies: 30
Views: 576
Posted By sarumont
I seem to remember from Anthropology that 'they'...

I seem to remember from Anthropology that 'they' stopped doing these sorts of IQ tests around the middle of the 20th century so as to not detract from the plethora of civil rights movements at the...
Forum: Coder's Corner Lounge Oct 11th, 2006, 9:02 AM
Replies: 39
Views: 749
Posted By sarumont
Aww...I liked the sniper kitty. :cool:

Aww...I liked the sniper kitty. :cool:
Forum: C++ Oct 11th, 2006, 8:59 AM
Replies: 4
Views: 196
Posted By sarumont
I should have added "and many related algorithms"...

I should have added "and many related algorithms" to that. A container is, in fact, a data structure itself. :cool:



Iterators are also a big addition in the STL that I neglected to mention. My...
Forum: C++ Oct 10th, 2006, 11:35 PM
Replies: 4
Views: 196
Posted By sarumont
The biggest difference is that the STL uses...

The biggest difference is that the STL uses templates (hence the T) to provide some more advanced data structures. These data structures are type-agnostic, a benefit derived from templates.
Forum: Community Announcements and Feedback Oct 4th, 2006, 12:37 PM
Replies: 8
Views: 262
Posted By sarumont
DaWei: Your screen shot is pointing to the...

DaWei: Your screen shot is pointing to the portion of the page showing the current thread you are viewing; it is also a link to the thread, which would appear as a refresh. The problem is via the...
Forum: Bash / Shell Scripting Oct 4th, 2006, 1:50 AM
Replies: 12
Views: 627
Posted By sarumont
awk is a very useful tool. Out of curiosity,...

awk is a very useful tool. Out of curiosity, what is the end result you want here? :cool:
Forum: Bash / Shell Scripting Oct 3rd, 2006, 10:17 PM
Replies: 12
Views: 627
Posted By sarumont
That clears things up a bit. Whether the domain...

That clears things up a bit. Whether the domain exists or not has no bearing on OpenDNS's reply. That is quite crappy. Short of using your own DNS servers (or your ISP's), putting two and two...
Forum: C++ Oct 3rd, 2006, 10:18 AM
Replies: 3
Views: 213
Posted By sarumont
OP does have it only reading 1024 bytes at a...

OP does have it only reading 1024 bytes at a time, but that can still be problematic for this reason. I would concur with climbnorth's suggestion of threading the recv(); alternatively, OP could use...
Forum: Bash / Shell Scripting Oct 3rd, 2006, 10:11 AM
Replies: 12
Views: 627
Posted By sarumont
If the problem cannot be solved with existing...

If the problem cannot be solved with existing shell tools, then you may need to write your own. ;)

If you just simply want to see if a domain name resolves, you can use something like:

ping $DOMAIN...
Forum: Java Oct 3rd, 2006, 9:15 AM
Replies: 31
Views: 1,167
Posted By sarumont
On that note, Fortran code is still being...

On that note, Fortran code is still being maintained today. I am sure that it is being replaced moreso than maintained, but the point is that Fortran is almost 50 years old and still around. This...
Forum: Coder's Corner Lounge Oct 3rd, 2006, 9:04 AM
Replies: 18
Views: 393
Posted By sarumont
Merged two relevant replies with the above linked...

Merged two relevant replies with the above linked thread. Please search before posting!

Thanks.
Forum: C++ Sep 29th, 2006, 1:06 PM
Replies: 3
Views: 213
Posted By sarumont
You are opening a persistent...

You are opening a persistent connection.

Connection: Keep-Alive

This is most likely due to HTTP/1.1; try using HTTP/1.0.
Forum: Coder's Corner Lounge Sep 29th, 2006, 12:58 PM
Replies: 52
Views: 914
Posted By sarumont
CORNY! (but still funny) ...

CORNY! (but still funny) :cool:

Congratulations, IR!!!
Forum: Bash / Shell Scripting Sep 29th, 2006, 12:19 PM
Replies: 12
Views: 627
Posted By sarumont
Check out 'man gethostbyname'. I believe that...

Check out 'man gethostbyname'. I believe that this library uses the standard DNS lookup stack in *nix (typically in /etc/host.conf).
Forum: C Sep 27th, 2006, 4:17 PM
Replies: 19
Views: 446
Posted By sarumont
They probably want you to use...

They probably want you to use this:

http://en.wikipedia.org/wiki/Message_passing_interface
http://www-unix.mcs.anl.gov/mpi/

:cool:
Forum: Assembly Sep 27th, 2006, 4:12 PM
Replies: 4
Views: 307
Posted By sarumont
Not being fluent in x86 ASM, does the 'be'...

Not being fluent in x86 ASM, does the 'be' instruction exist? That looks like where you are attempting to branch back to 'loop', but I cannot (quickly) find a reference to that instruction.
Forum: Paid Job Offers Sep 25th, 2006, 9:19 AM
Replies: 13
Views: 322
Posted By sarumont
The quality of the OP's English does not give...

The quality of the OP's English does not give just cause for flaming. If you do not have any interest in this job offer, simply move to another thread.



Please keep this in mind in the future to...
Forum: Coder's Corner Lounge Sep 24th, 2006, 11:51 PM
Replies: 16
Views: 361
Posted By sarumont
Yes..in that sense, it depends on the subject. I...

Yes..in that sense, it depends on the subject. I prefer to read theory-type books wherever. I like to read programming (how to do $x, $y hacks, $z cookbook, etc.) at the computer so I can type the...
Forum: Coder's Corner Lounge Sep 23rd, 2006, 11:39 PM
Replies: 2,124
Views: 26,184
Posted By sarumont
A: Because none of us work at Google. Q: Why...

A: Because none of us work at Google.

Q: Why don't we do it by actually posting about programming?
Forum: Perl Sep 19th, 2006, 12:56 PM
Replies: 4
Views: 284
Posted By sarumont
Looking at the Mail::Sender documentation, the...

Looking at the Mail::Sender documentation, the value in the MailFile hash should be 'file', not 'File'. See if changing the case of your 'f' helps. :cool:
Forum: Software Design and Algorithms Sep 18th, 2006, 12:38 AM
Replies: 36
Views: 2,755
Posted By sarumont
Moved to SW Design/Algorithms and made sticky. ...

Moved to SW Design/Algorithms and made sticky. Excellent thread, guys. :cool:
Forum: C++ Sep 13th, 2006, 11:13 AM
Replies: 8
Views: 280
Posted By sarumont
It also sounds like the easier way to do what you...

It also sounds like the easier way to do what you want is with some system administration wizardry, not programming. Can you clarify a bit on the implementation? Is this going to be distributed...
Forum: C++ Sep 13th, 2006, 10:47 AM
Replies: 19
Views: 407
Posted By sarumont
Guys, Please dis-continue the off-topic turn of...

Guys,

Please dis-continue the off-topic turn of this thread. I agree that the OP should have been more clear as to what he needed to implement the priveledge escalation for, but the proper way for...
Forum: C++ Sep 11th, 2006, 11:00 PM
Replies: 11
Views: 247
Posted By sarumont
That would not be a very good triangle, would it?...

That would not be a very good triangle, would it? ;)

You would want to check this, though, if you change the values of the sides to be !static.
Forum: C++ Sep 6th, 2006, 10:24 AM
Replies: 5
Views: 296
Posted By sarumont
Yes, but you still have to know the 2nd dimension...

Yes, but you still have to know the 2nd dimension of the array at compile time.
Forum: C++ Sep 1st, 2006, 8:50 AM
Replies: 3
Views: 167
Posted By sarumont
I would also initialize all those variables to...

I would also initialize all those variables to something (0), just for clarity's sake.
Forum: Coder's Corner Lounge Feb 22nd, 2005, 7:02 AM
Replies: 24
Views: 530
Posted By sarumont
Spare time? What's that? Working full time and...

Spare time? What's that? Working full time and going to school full time do not spare time leave...I try to find the time to actually read/reply on these forums during my "spare time". ;)
Forum: Perl Jan 10th, 2005, 11:03 AM
Replies: 5
Views: 942
Posted By sarumont
You could have the perl script use a system()...

You could have the perl script use a system() call to execute that bash stuff. Or better yet you could use the time() function for your time and get the env. variable $USER for the username.

As far...
Forum: Show Off Your Open Source Projects Sep 26th, 2004, 7:11 PM
Replies: 5
Views: 151
Posted By sarumont
Downloaded it...I'll install and get back to you....

Downloaded it...I'll install and get back to you. B)
Forum: Community Introductions Sep 26th, 2004, 7:00 PM
Replies: 82
Views: 1,333
Posted By sarumont
So that.s where I've been going wrong... <_<...

So that.s where I've been going wrong... <_< [/b][/quote]
:lol:
Forum: Coder's Corner Lounge Sep 26th, 2004, 6:59 PM
Replies: 24
Views: 368
Posted By sarumont
I've never really gotten in on the whole...

I've never really gotten in on the whole fraternity thing...it isn't that appealing. Throwing parties and getting drunk every weekend? Where's the fun in that? I know that there is more to most...
Forum: Community Introductions Sep 26th, 2004, 6:56 PM
Replies: 37
Views: 823
Posted By sarumont
I think that I get what G.I. is saying. I tend...

I think that I get what G.I. is saying. I tend to agree. I'm tickled pink to see females interested in programming and actively posting on a programming forum, but I don't really see the need to...
Forum: Coder's Corner Lounge Sep 26th, 2004, 6:43 PM
Replies: 10
Views: 404
Posted By sarumont
Go rent Shawshank Redemption today. It is a most...

Go rent Shawshank Redemption today. It is a most excellent movie. B)
Forum: Other Web Development Languages Sep 21st, 2004, 9:43 PM
Replies: 9
Views: 440
Posted By sarumont
Ooble jipped you on quotes. ;) You need to add...

Ooble jipped you on quotes. ;) You need to add a double-quote (") to the left of the > before the 1.

;">1</a>
Forum: Coder's Corner Lounge Sep 21st, 2004, 9:40 PM
Replies: 12
Views: 379
Posted By sarumont
I voted no because I don't consider IRC an IM. I...

I voted no because I don't consider IRC an IM. I use IRC, and that's it. I would use jabber if I knew anyone who uses it, but I can't seem to convert the sheep that are my friends.

I refuse to use...
Forum: Project Ideas Sep 21st, 2004, 9:35 PM
Replies: 23
Views: 394
Posted By sarumont
So...did you code the strippers? Or did it...

So...did you code the strippers? Or did it control a robotic arm (or more) to strip the players when they were supposed to take something off? :D
Forum: Coder's Corner Lounge Sep 21st, 2004, 9:32 PM
Replies: 48
Views: 808
Posted By sarumont
Xylophones Yesterday Left Our People Hung Out, No...

Xylophones Yesterday Left Our People Hung Out, No Escape

:angry:

XYLOPHONES (muwahahahahahahahahahahahaha)

but not really...YESTERDAY
Forum: Coder's Corner Lounge Sep 21st, 2004, 9:18 PM
Replies: 31
Views: 549
Posted By sarumont
And that's why I emerge daily. ;) <plug...

And that's why I emerge daily. ;)

<plug type='shameless'>
Any more Linux-related questions will be happily answered by the good folks over at LinuxForums.org (http://linuxforums.org) ;)
</plug>
Forum: Coder's Corner Lounge Sep 18th, 2004, 8:15 PM
Replies: 7
Views: 274
Posted By sarumont
I love my computer...I love technology in...

I love my computer...I love technology in general. But I see the point and agree with it. Kids today (stereotypically)(and by kids I mean anyone who can't vote ;)) depend on these things way too...
Showing results 1 to 40 of 169

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 7:30 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC