hot questions tagged poll - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T12:34:20Zhttp://stackoverflow.com/feeds/tag?tagnames=poll&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889617/polling-of-childs-stdout-stops-setting-pollin-after-first-read0polling of childs stdout stops setting POLLIN after first readmarco2009-12-11T17:31:52Z2009-12-11T18:27:03Z
<p>I want to read the output of my child's proccess, but for some reason it stops setting the POLLIN in revents when there is still output to be read.</p>
<p>Here is what I do:</p>
<ol>
<li>Fork my process </li>
<li>create pipe</li>
<li>dup2(pipe[0],STDOUT_FILENO) my child's stdout </li>
<li>poll the file descriptor of the pipe(I do this until I reach EOF)</li>
<li>read output if POLLIN is set</li>
</ol>
<p>the way that I see if I have reached an EOF is by setting a flag in a struct if after poll there was no POLLIN set in revents.</p>
<pre><code>(poll_fds[idx].revents & ~POLLIN)
</code></pre>
<p>Now this always evaluates to true even if POLLIN is set, I guess its beacuse some error flag is set on the bitmask, right?? </p>
<p>the way i test my program is ./my_program /bin/ls</p>
<p>now this should print the output of ls on my console but it only prints the first 16 bytes (I read() exactly 16 bytes).</p>
<p>I dont know why the error flag is being set any ideas??</p>
<p>EDIT: I just saw that the flag that is being set is POLLHUP... but I dont understand why its being set if I sill have not read all the pipe??</p>
http://stackoverflow.com/questions/1894239/choosing-dvcs-criteria0Choosing DVCS - criteriaGoran2009-12-12T18:08:43Z2009-12-12T18:38:52Z
<p>There are similar questions on SO but I'd like some clearer answers here.</p>
<ol>
<li>How important is DVCS not littering your working folder with files? (Alternately is single file repository a big plus to you?)</li>
<li>How important is cherry-picking functionality (choosing arbitrary changes instead of lineage of changes)?</li>
<li>How important is the speed of DVCS?</li>
<li>How important is the size of repository?</li>
<li>How important are GUI, IDE plugins, etc.?</li>
<li>How important is the blame tracking functionality?</li>
<li>Any other features you consider important?</li>
</ol>
http://stackoverflow.com/questions/1851662/why-is-lua-so-ignored1Why is Lua so ignored? [closed]RCIX2009-12-05T09:10:24Z2009-12-05T21:13:48Z
<p>[asking this at extreme risk of getting closed as S&A, hope it isn't as I want to improve <a href="http://en.wikipedia.org/wiki/Lua%5F%28programming%5Flanguage%29" rel="nofollow">Lua</a>'s visibility]</p>
<p>Everywhere I go from code-golf questions to anything relating scripting, people chant "PythonPythonPython PerlPerlPerl RubyRubyRuby" and I'm lucky to see one or two Lua answers. (and that's only here!) With its beginner friendly syntax, powerful language features, high performance (it's only beaten out by dedicated languages such as C or C++), and easy embeddability I would think it would get more traction outside of game development. That's not to say it could use a couple of extra things here and there, there's no language I know of out there that's perfect. Then there's the questions like <a href="http://stackoverflow.com/questions/1274972/lua-what-is-lua">Lua, What is Lua?</a> and every newcomer calling it LUA, making it feel like an obscure language only 5 people have heard about let alone used...</p>
<p>In short, Why is Lua so ignored? </p>
http://stackoverflow.com/questions/1865302/when-is-it-a-good-idea-to-clean-a-solution0When is it a good idea to clean a solution?RCIX2009-12-08T07:39:56Z2009-12-08T07:44:23Z
<p>As the title says - what are your guidelines for when you should run a "Clean solution" on your visual studio projects?</p>
http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers9Paying great programmers more than average programmersKelly French2009-11-20T02:32:45Z2009-12-02T20:53:12Z
<p>It's fairly well recognized that some programmers are up to 10 times more productive than others. Joel mentions <a href="http://www.joelonsoftware.com/articles/HighNotes.html" rel="nofollow">this topic</a> on his blog. There is a whole blog devoted to the idea of the "<a href="http://blogs.construx.com/blogs/stevemcc/archive/2008/03/27/productivity-variations-among-software-developers-and-teams-the-origin-of-quot-10x-quot.aspx" rel="nofollow">10x productive programmer</a>". </p>
<blockquote>
<p>In years since the original study, the
general finding that "There are
order-of-magnitude differences among
programmers" has been confirmed by
many other studies of professional
programmers (Curtis 1981, Mills 1983,
DeMarco and Lister 1985, Curtis et al.
1986, Card 1987, Boehm and Papaccio
1988, Valett and McGarry 1989, Boehm
et al 2000).</p>
</blockquote>
<p>The way programmers are paid by employers these days makes it almost impossible to pay the great programmers a large multiple of what the entry-level salary is. When the starting salary for a just-graduated entry-level programmer, we'll call him Asok (From Dilbert), is $40K, even if the top programmer, we'll call him Linus, makes $120K that is only a multiple of 3. I'd be willing to be that Linus does much more than 3 times what Asok does, so why wouldn't we expect him to get paid more as well?</p>
<p>Here is a quote from Stroustrup:</p>
<blockquote>
<p>"The companies are complaining because
they are hurting. They can't produce
quality products as cheaply, as
reliably, and as quickly as they would
like. They correctly see a shortage of
good developers as a part of the
problem. What they generally don't see
is that inserting a good developer
into a culture designed to constrain
semi-skilled programmers from doing
harm is pointless because the
rules/culture will constrain the new
developer from doing anything
significantly new and better."</p>
</blockquote>
<p>This leads to two questions. I'm excluding self-employed programmers and contractors. If you disagree that's fine but please include your rationale. It might be that the self-employed or contract programmers are where you find the top-10 earners, but please provide a explanation/story/rationale along with any anecdotes.</p>
<p>[EDIT] </p>
<p>I thought up some other areas in which talent/ability affects pay.<br>
- Financial traders (commodities, stock, derivatives, etc.)<br>
- designers (fashion, interior decorators, architects, etc.)<br>
- professionals (doctor, lawyer, accountant, etc.)<br>
- sales </p>
<p>1) Why aren't the top 1% of programmers paid like A-list movie stars? </p>
<p>2) What would the industry be like if we did pay the "Smart and gets things done" programmers 6, 8, or 10 times what an intern makes?</p>
http://stackoverflow.com/questions/1851818/how-does-one-go-about-evangelizing-a-language0How does one go about "evangelizing" a language?RCIX2009-12-05T10:30:44Z2009-12-05T10:48:07Z
<p>I was wondering: if you have a relatively unknown programming language that you love and want to get more people using it, what can be done to "evangelize" the langueage? E.G. where would you go, what would you say, etc.</p>
http://stackoverflow.com/questions/1860032/good-asp-net-hosting-in-europe0Good ASP.NET hosting in Europe [closed]SirMoreno2009-12-07T13:37:51Z2009-12-07T13:39:47Z
<p>I'm looking for a good ASP.NET Webhost in Europe, specifically Shared & Dedicated hosting.</p>
<p>Who should I try?</p>
http://stackoverflow.com/questions/1811562/rolling-my-own-version-control-3Rolling my own "Version Control"RCIX2009-11-28T04:31:41Z2009-11-29T05:07:18Z
<p>I'm a hobby developer and i want to put my projects in some sort of version control. I've tried several version control systems (git i think, SVN, mercurial, bazaar) and they were a pain in the neck for one or more of the following reasons:</p>
<ul>
<li>There was no GUI interface</li>
<li>The gui interface it DID have was clunky</li>
<li>it plastered decals all over my files in Explorer</li>
<li>i couldn't figure out how to get any projects into it properly (whether that was the fault of the interface, or the lack of a plugin for VS depends on the software)</li>
<li>None of them seemed to have a facility for rolling back to a previous revision</li>
</ul>
<p>Thus, i'm thinking of rolling my own. I only need a <em>very</em> simple system which allows committing of revisions and rolling back to a previous version. I can accomplish branching and merging/change inspection via a combination of Copying and WinMerge.</p>
<p>I plan to write the actual code that does the heavy lifting in lua with an occasional shell command executed for copying and such, and either AutoHotKey or a combination of AutoHotKey and Winforms/.NET for the gui interface (depends on how easy it is to create dialogs with input in AHK). I wanted to pick your brains on this, what do you guys think? is there software already that does what i want?</p>
<p>To rephrase my question in short: is there a minimal-functionality version control system that basically handles backup, revision annotation and rollback, and little to nothing else, failing that what is your opinion on my implementation and suggestions for improvement?</p>
<p>[I hope this doesn't get closed, i really think it's on topic and useful to the community.]</p>
http://stackoverflow.com/questions/1708662/reliable-java-libs-for-general-programming3Reliable Java libs for general programmingJim Downing2009-11-10T15:09:55Z2009-11-10T17:49:31Z
<p>There's always a balance when deciding whether to use a 3rd party library or write your own code. Writing your own takes time and will incur a maintenance cost. Using the 3rd party library has its downsides too, with the potential for version incompatibilities every time you update the dependencies. </p>
<p>With some libraries, the downsides are really light, and they're brought in as dependencies without much thought. For example, I use a couple of the apache commons libraries pretty much like the java.* packages - I'll pull in commons-lang or -io in just to use a single class. My justification for doing this is that the back compatibility of these libraries has been great so far, so they're unlikely to give me back compatibility problems in the future, and that they're likely to be on the classpath of some other library I'm relying on anyway. </p>
<p>Are there any other libraries that you bring in without worrying that back compatibility issues will hit you in the future?</p>
http://stackoverflow.com/questions/1637582/what-design-pattern-do-you-use-the-most4What design pattern do you use the most?asp3162009-10-28T14:25:02Z2009-10-29T16:54:43Z
<p>The reason I ask is because many applications, particularly web applications, do things in a similar fashion. Of course, the pattern used varies with the task at hand, perhaps even a combination of patterns. I'm guessing that many of us use a primary pattern for apps that we start out from scratch and I'm wanting to see if there is a commonality. </p>
<p>I'm also curious if others are coming to the same conclusion on what patterns they feel comfortable with and which ones work well in the test of time.</p>
<p><strong>Edit</strong>: Many of the responses so far are architectural patterns. I'm also really interested in creational design patterns.</p>
http://stackoverflow.com/questions/1716146/most-interest-feature-of-visual-studio-2010-and-net-framework-40most interest feature of visual studio 2010 and .Net framework 4Meysam Javadi2009-11-11T15:59:45Z2009-11-23T11:14:03Z
<p>hi everybody</p>
<p>when you install visual studio 2010, what feature of that is most interest for you?</p>
<p>why do i , upgrade to VS2010?</p>
<p>is it valuable to purchase?(why?)</p>
http://stackoverflow.com/questions/1708963/most-obscure-errors-due-to-c-complexity1Most obscure errors due to C++ complexity [closed]stas2009-11-10T15:49:08Z2009-11-10T18:25:55Z
<p>Daily C++ programming implies dealing with obscure errors in C++ code that appear due to C++ language complexity. I need to prepare some attractive examples of such errors (and how to avoid them). It would be great if anyone shared their favorite <strong>real life</strong> examples. Thanks!</p>
<p>My examples:</p>
<p><hr></p>
<p>Visual Studio specific</p>
<pre><code>CString someText = "Some text";
TRACE("Format: %s\n", someText);
</code></pre>
<p>Compiled but printed garbage. </p>
<p>Fix:</p>
<pre><code>TRACE("Format: %s\n", someText.GetString());
</code></pre>
<p>or</p>
<pre><code>TRACE("Format: %s\n", (const char*)someText);
</code></pre>
<p><hr></p>
<p>Compilation error after adding <code>std::auto_ptr<T> t</code> member to a class when <code>T</code> is incomplete type. To avoid obscure compiler error you need to make sure that all constructors and destructor implementations of the class are in cpp file (where T is complete).</p>
<p><hr></p>
<pre><code>void Foo(bool isTrue);
bool IsTrue();
</code></pre>
<p><code>Foo(IsTrue)</code> call is compiled but doesn't work correctly. <code>IsTrue</code> is treated as pointer to a function that casted to bool (always true) and passed to <code>Foo()</code>. To avoid, just do code review carefully. Or may be some good idea how to avoid this error?</p>
<p><hr></p>
<p>Smart shared pointer <code>FooPtr</code> with implicit constructor <code>FooPtr(const Foo* f)</code>. Use case:</p>
<pre><code>void Do(const Foo* f); // in separate file
FooPtr foo(new Foo());
Do(foo.get());
</code></pre>
<p>It worked correctly. Then someone changed <code>Do()</code> function signature to:</p>
<pre><code>void Do(const FooPtr& f); // in separate file
</code></pre>
<p>It is compiled, but then boom... crash...</p>
<p>Redundant <code>FooPtr</code> object was created and <code>Foo</code> object was managed by two independent smart pointers. So, it is crashed on destruction.</p>
<p>To avoid this, we have to use explicit constructors with one parameters.</p>
http://stackoverflow.com/questions/1604142/fun-ideas-for-an-embedded-senior-design-project4Fun Ideas for an embedded senior design project?thegreekness2009-10-21T23:04:50Z2009-10-23T00:08:52Z
<p>I have a class called Senior Design next semester and we are looking for fun or interesting ideas that anyone might have for an embedded project. We will have Electrical Engineers, Computer Sciene, and Software Engineering majors working on this. </p>
<p>All suggestions are welcome. Some ideas we are thinking about now are: </p>
<ul>
<li>Software Defined Radio (GNU) </li>
<li>Home Automation (zigbee?) </li>
<li>Autonomous Robot</li>
</ul>
http://stackoverflow.com/questions/1664531/ie6-joomla-poll-problem-after-converting-template-to-1-5x0IE6 Joomla Poll problem after converting template to 1.5xhisterix2009-11-03T00:18:07Z2009-11-10T15:16:20Z
<p>Hi!</p>
<p>Recently i converted Joomla 1.0x template to 1.5x for a client of mine. Almost everything went smoothly, i migrated the content, menus etc and the website is up & running atm. I didn't notice at start that my Poll window is sort of broken. Polls are displaying correctly in every browser except in IE6 (i know, one more crappy IE6 problem).</p>
<p>There's no error displaying, no modules flying all around and stuff like that :) The page body, where poll results should be displayed are showing nothing, nichevo, nada...like there's no content at all in there.</p>
<p>Here's the link to that page:</p>
<p><a href="http://zdravzivot.com/index.php/Poll-results/Koji-na%C4%8Din-ishrane-daje-najve%C4%87e-%C5%A1anse-za-dug-i-sre%C4%87an-%C5%BEivot.html" rel="nofollow">http://zdravzivot.com/index.php/Poll-results/Koji-na%C4%8Din-ishrane-daje-najve%C4%87e-%C5%A1anse-za-dug-i-sre%C4%87an-%C5%BEivot.html</a></p>
<p>As you can see, it looks ok in FF, IE7, Safari etc, but in IE6 - nothing.</p>
<p>Could someone please give me a hint, what could be wrong?</p>
<p>Thank You very very much in advance for Your time! </p>
http://stackoverflow.com/questions/1671827/poll-c-function-on-windows0poll() c function on windowsademir2009-11-04T05:27:26Z2009-11-04T05:36:30Z
<p>Hi there!I want to know if I can use the poll() function on a MinGW development chain. I have CodeBlocks+MinGW. Thanks a lot.</p>
http://stackoverflow.com/questions/1621750/joomla-poll-not-working-with-ie0Joomla poll not working with IEFred2009-10-25T19:09:51Z2009-10-25T19:09:51Z
<p>On my joomla wensite the joomla poll extension (down,right) or any other joomla poll only works in Firefox,Safari and all the other browser but not in IE8 or lower versions.
I need a poll on my site and 95% of my site visiters use IE8, its fustrating.</p>
<p>How can i get any joomla poll to work in IE8 ?</p>
<p>Its strange but IE8 displays the poll good,like Firefox, but you can't vote with it ?</p>
<p>Is there anyone who can help ?</p>
<p>Fred</p>
http://stackoverflow.com/questions/1540852/jquery-php-poll-in-blogger0jquery & php poll in BloggerKen B2009-10-08T22:26:20Z2009-10-22T19:46:23Z
<p>Would it be possible to use a poll like this in Blogger? </p>
<p>Link: <a href="http://net.tutsplus.com/tutorials/javascript-ajax/creating-a-dynamic-poll-with-jquery-and-php/" rel="nofollow">http://net.tutsplus.com/tutorials/javascript-ajax/creating-a-dynamic-poll-with-jquery-and-php/</a></p>
http://stackoverflow.com/questions/1549942/would-you-trust-a-site-whose-payment-processor-is-only-paypal1Would you trust a site whose payment processor is only PayPal? [closed]Alec Smart2009-10-11T05:36:17Z2009-10-11T05:38:34Z
<p>Hello,</p>
<p>I have been running a site which uses exclusively PayPal. Its going fine, but am I unknowingly losing out customers who are wary because the site offers only PayPal. Should I be looking at other options like Authorize.net etc.?</p>
<p>Is there something wrong in accepting only PayPal? I mean do users think its unprofessional etc.?</p>
<p>Thank you for your time.</p>
http://stackoverflow.com/questions/1383621/any-free-ajax-poll-script0Any free ajax poll script?Per Magnusson2009-09-05T15:39:07Z2009-09-06T19:09:26Z
<p>Hello, do you guys know any free php ajax poll script with an admin panel? i cant find one, i have googled for ages.</p>