Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Programming | Forum profile

Forum profile page for Programming on http://www.fedoraforum.org. This report page is the aggregated overview from a single forum: Programming , located on the Message Board at http://www.fedoraforum.org. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Programming " on the Message Board at http://www.fedoraforum.org is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: FedoraForum.org - Fedora Core Support Forum & Community - Programming  (site profile, domain info fedoraforum.org)
Title: Programming
Url: http://forums.fedoraforum.org/forumdisplay.php?...
Users activity: 24 posts per thread
Forum activity: 18 active threads during last week
 

Posting activity on Programming :

  Week Month 3 Months
Threads: 18 62 220
Post: 37 147 537
 

Programming Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
premudriy
6
user's latest post:
Multiple POSIX Timers with...
Published (2009-11-09 18:23:00)
Oh, yes, I must not implement NAKs in this project, only ACKs. Acknowledgements are cumulative, i.e. if three packets were received, then I'll send ACK for the last (third) packet, which will mean that all tree packets got through. As for congestion: there's a receiver buffer and ACKs have a special field that tell how much more packets the sender can supply to receiver.
jpollard
4
user's latest post:
Multiple POSIX Timers with...
Published (2009-11-09 14:25:00)
And none of them implement reliable delivery over UDP without implementing some form of ACK/NAK and sending limits. Reliable delivery of UDP is not a standard... The problem with UDP is that the senders/receivers cannot assume reliable delivery. Reliable delivery can only be supported at the application layer. The original statement was '"pseudo TCP" on top of UDP protocol'. I know TCP works differently. It...
stevea
4
user's latest post:
Multiple POSIX Timers with...
Published (2009-11-09 09:49:00)
Quote: Originally Posted by jpollard Yup - the application specified is using UDP, which doesn't block. That calls for something external to invoke the stall. In this case, I'd suggest a NAK when the count reaches the limit, and drop the data. So much misinformation in such few lines .... /UDP certainly does block, tho' for a smaller set of reasons. This "toy" case is presumable implemented in userspace making...
sajadfedorafrum
2
user's latest post:
perl and using app
Published (2009-11-05 23:40:00)
what do you mean? valhamdolelah
pushparaj_bits
2
user's latest post:
C doubt
Published (2009-11-09 23:13:00)
Thank you pollard for your reply. Could you tell me how can we vary the optimization levels.
giulix
2
user's latest post:
C doubt
Published (2009-11-10 01:44:00)
Code: man gcc Then search for `Options That Control Optimization'
JC1DA
2
user's latest post:
Some body help syscall
Published (2009-11-13 22:04:00)
I have a code asmlinkage long sys_dxcastupdate(char *src) { if(src == NULL) printk(KERN_INFO"NULL POINTER"); else { printk(KERN_INFO"you entered %s",src); // update_dxcast_string(src); } return -EINVAL; } I compiled and run that kernel but there was a problem. When system boot up, it autoruns my system call and put a NULL to src. the problem is if src == NULL it must print NULL POINTER but in fact sometimes...
kramulous
2
user's latest post:
C++: Reading archives inside...
Published (2009-11-13 17:28:00)
Just an update in case anybody follows this path. I ditched the java solution. It inspected the inner zip files perfectly, but the text processing was unacceptably slow. I went back to the original C++ implementation, but unpacked the top level zip file into a RAM drive. Performance was acceptable. I fear it won't scale well though. For this problem, fine. I also found that it is much better to have a compression other than zip. The...
shreedhan
2
user's latest post:
Authentication in POP3
Published (2009-11-13 04:46:00)
somebody Please help me...........
ibbo
1
user's latest post:
perl and using app
Published (2009-11-05 10:21:00)
You will have to explain yourself a bit better mate. Ibbo
 

Latest active threads on Programming ::

FedoraForum.org - Fedora Core Support Forum & Community
Started 1 week, 4 days ago (2009-11-03 22:17:00)  by jpollard
You might consider reading the file to extract a single zip file... Then sending that zip file to another process (reading from a pipe) to process that file... If you are collating data extracted you could have them all sending their extracted data to a collection process... Clumsy, but it is recursive, and could process nearly anything you want. The top level process would start ...
Thread:  Show this thread (4 posts)   Thread info: C++: Reading archives inside archives Size: 742 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: C++: Reading archives inside archives :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
FedoraForum.org - Fedora Core Support Forum & Community
Started 2 days, 14 hours ago (2009-11-13 04:46:00)  by shreedhan
somebody Please help me...........
Thread:  Show this thread (2 posts)   Thread info: Authentication in POP3 Size: 42 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Authentication in POP3 :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
FedoraForum.org - Fedora Core Support Forum & Community
Started 6 days, 11 hours ago (2009-11-09 08:06:00)  by jpollard
1. the function returns the value of the last expression evaluated. Though doing this without the return is considered "poor practise". 2. same 3. same 4. There is the possibility that the compiler re-orderd your code. Since the invocation of printf does not depend on the results ring or ping it is permissible to put the printf first (efficiency - no registers to save or restore) and ...
Thread:  Show this thread (5 posts)   Thread info: C doubt Size: 682 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: C doubt :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
FedoraForum.org - Fedora Core Support Forum & Community
Started 3 weeks, 2 days ago (2009-10-23 08:40:00)  by i2ambler
okay, so I managed to figure out how to edit one stanza at a time.. like this: #!/bin/bash cn=`grep cn file.ldif | awk -F: {'print $2'}|cut -c2-` sed -e "1i dn: cn=\\$cn,ou=People,dc=domain,dc=com" file.ldif this outputs the ldif file with the correct cn information.. however - How do I get it to roll through each stanza and have it modify the dn like this? or am i barking up ...
Thread:  Show this thread (9 posts)   Thread info: Scripting/text manipulation help Size: 465 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Scripting/text manipulation help :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
FedoraForum.org - Fedora Core Support Forum & Community
Started 1 week, 1 day ago (2009-11-07 06:56:00)  by JN4OldSchool
Yes, I could shed some light on the TCP timeout concept but...I am not a guru, so...
Thread:  Show this thread (17 posts)   Thread info: Multiple POSIX Timers with handlers: how to? Size: 238 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Multiple POSIX Timers with handlers: how to? :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
FedoraForum.org - Fedora Core Support Forum & Community
Started 1 week ago (2009-11-08 10:37:00)  by Hlingler
I never could get MotD working... . V
Thread:  Show this thread (3 posts)   Thread info: Goofy/Funny little bash scripts/processes Size: 54 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Goofy/Funny little bash scripts/processes :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
FedoraForum.org - Fedora Core Support Forum & Community
Started 1 week, 3 days ago (2009-11-05 10:21:00)  by ibbo
You will have to explain yourself a bit better mate. Ibbo
Thread:  Show this thread (3 posts)   Thread info: perl and using app Size: 72 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: perl and using app :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
 

Hot threads for last week on Programming ::

Programming
Started 1 week, 1 day ago (2009-11-07 06:56:00)  by JN4OldSchool
Yes, I could shed some light on the TCP timeout concept but...I am not a guru, so...
Thread:  Show this thread (17 posts)   Thread info: Multiple POSIX Timers with handlers: how to? Size: 238 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Multiple POSIX Timers with handlers: how to? :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
Programming
RE: C doubt - 5 new posts
Started 6 days, 11 hours ago (2009-11-09 08:06:00)  by jpollard
1. the function returns the value of the last expression evaluated. Though doing this without the return is considered "poor practise". 2. same 3. same 4. There is the possibility that the compiler re-orderd your code. Since the invocation of printf does not depend on the results ring or ping it is permissible to put the printf first (efficiency - no registers to save or restore) and ...
Thread:  Show this thread (5 posts)   Thread info: C doubt Size: 682 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: C doubt :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
Programming
Started 1 week ago (2009-11-08 10:37:00)  by Hlingler
I never could get MotD working... . V
Thread:  Show this thread (3 posts)   Thread info: Goofy/Funny little bash scripts/processes Size: 54 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Goofy/Funny little bash scripts/processes :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
Programming
Started 2 days, 14 hours ago (2009-11-13 04:46:00)  by shreedhan
somebody Please help me...........
Thread:  Show this thread (2 posts)   Thread info: Authentication in POP3 Size: 42 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Authentication in POP3 :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
Programming
Started 3 weeks, 2 days ago (2009-10-23 08:40:00)  by i2ambler
okay, so I managed to figure out how to edit one stanza at a time.. like this: #!/bin/bash cn=`grep cn file.ldif | awk -F: {'print $2'}|cut -c2-` sed -e "1i dn: cn=\\$cn,ou=People,dc=domain,dc=com" file.ldif this outputs the ldif file with the correct cn information.. however - How do I get it to roll through each stanza and have it modify the dn like this? or am i barking up ...
Thread:  Show this thread (9 posts)   Thread info: Scripting/text manipulation help Size: 465 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Scripting/text manipulation help :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."
Programming
Started 1 week, 4 days ago (2009-11-03 22:17:00)  by jpollard
You might consider reading the file to extract a single zip file... Then sending that zip file to another process (reading from a pipe) to process that file... If you are collating data extracted you could have them all sending their extracted data to a collection process... Clumsy, but it is recursive, and could process nearly anything you want. The top level process would start ...
Thread:  Show this thread (4 posts)   Thread info: C++: Reading archives inside archives Size: 742 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: C++: Reading archives inside archives :: Programming   :: FedoraForum.org - Fedora Core Support Forum & ..."

This page was found by:   ../libtool: fork: retry: Resource temporarily unavailable  Unsatisfied dependency: [com.android.ide.eclipse.adt.feature.group 0.9.1.v200905011822-1621] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.wst.xml.core/0.0.0  libtool: fork: retry: Resource temporarily unavailable