User palotasb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:33:31Z http://stackoverflow.com/feeds/user/3063 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c 1 Fastest way to calculate primes in C#? palotasb 2008-08-27T18:54:44Z 2008-12-29T22:26:02Z <p>I actually have an answer to my question but it is not parallelized so I am interested in ways to improve the algorithm. Anyway it might be useful as-is for some people.</p> <pre><code>int Until = 20000000; BitArray PrimeBits = new BitArray(Until, true); /* * Sieve of Eratosthenes * PrimeBits is a simple BitArray where all bit is an integer * and we mark composite numbers as false */ PrimeBits.Set(0, false); // You don't actually need this, just PrimeBits.Set(1, false); // remindig you that 2 is the smallest prime for (int P = 2; P &lt; (int)Math.Sqrt(Until) + 1; P++) if (PrimeBits.Get(P)) // These are going to be the multiples of P if it is a prime for (int PMultiply = P * 2; PMultiply &lt; Until; PMultiply += P) PrimeBits.Set(PMultiply, false); // We use this to store the actual prime numbers List&lt;int&gt; Primes = new List&lt;int&gt;(); for (int i = 2; i &lt; Until; i++) if (PrimeBits.Get(i)) Primes.Add(i); </code></pre> <p>Maybe I could use multiple <code>BitArray</code>s and <a href="http://msdn.microsoft.com/en-us/library/system.collections.bitarray.and.aspx" rel="nofollow">BitArray.And()</a> them together?</p> http://stackoverflow.com/questions/48/multiple-submit-buttons-on-a-form/31910#31910 2 Answer by palotasb for Multiple submit buttons on a form palotasb 2008-08-28T09:34:40Z 2008-11-03T18:10:21Z <p>Hi, I hope this helps. I'm just doing the trick of <code>float</code>ing the buttons on the right - like in normal wizard :-)</p> <p>This way the Prev button is left of the Next button but the Next comes first in the HTML code:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;style&gt; .f { float: right; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;form action="action" method="get"&gt; &lt;input type="text" name="abc"&gt; &lt;div id="buttons"&gt; &lt;input type="submit" class="f" name="next" value="Next"&gt; &lt;input type="submit" class="f" name="prev" value="Prev"&gt; &lt;div style="clear:both"&gt;&lt;/div&gt;&lt;!-- Need this to have the buttons actually inside div#buttons --&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Hope this helps... :-) Edit: benefits over other suggestions: no javascript, accessible, both buttons remain <code>type="submit"</code></p> http://stackoverflow.com/questions/36296/whats-the-answer-to-this-microsoft-pdc-challenge/37950#37950 5 Answer by palotasb for What's the answer to this Microsoft PDC challenge? palotasb 2008-09-01T13:34:29Z 2008-09-01T13:34:29Z <p>Anyone interested in solving the puzzle yourself: <em><a href="http://boldizsar.palotas.eu/blog/?p=62" rel="nofollow">Don't. Read. This.</a></em></p> http://stackoverflow.com/questions/36296/whats-the-answer-to-this-microsoft-pdc-challenge/36897#36897 0 Answer by palotasb for What's the answer to this Microsoft PDC challenge? palotasb 2008-08-31T14:54:47Z 2008-08-31T14:54:47Z <p>OK, since no one asked for the answer and lassevk said I shouldn't post it I am not posting it. So keep thinking. :D (My email address is <code>boldizsar.palotas at gmail</code> if you want some hints.)</p> http://stackoverflow.com/questions/35743/fileupload-control-inside-an-updatepanel-without-refreshing-the-whole-page/36859#36859 2 Answer by palotasb for FileUpload control inside an UpdatePanel without refreshing the whole page? palotasb 2008-08-31T13:49:08Z 2008-08-31T13:49:08Z <p>You can't upload file(s) via <code>AJAX</code> only by reloading a whole <code>HTML</code> document. You should either use <code>iframe</code>s if you prefer pure HTML (this is more common, eg. used by WordPress) or something else like swfupload suggested by Sven.</p> http://stackoverflow.com/questions/36296/whats-the-answer-to-this-microsoft-pdc-challenge/36819#36819 2 Answer by palotasb for What's the answer to this Microsoft PDC challenge? palotasb 2008-08-31T12:23:10Z 2008-08-31T12:23:10Z <p>Anonymouse has posted a long answer. And there is a bit of <strong>very</strong> useful information in there if you want to solve it. Anyway, I am goint to post my answer and the code here and on my blog at 4:30PM GMT+1 Budapest (and Paris, Berlin, Warsaw...) time. (Unless anyone else says s/he has an answer and wants me to wait with posting it OR when someone else has also posted the answer.)</p> <p>Good luck :-)</p> http://stackoverflow.com/questions/36296/whats-the-answer-to-this-microsoft-pdc-challenge/36804#36804 2 Answer by palotasb for What's the answer to this Microsoft PDC challenge? palotasb 2008-08-31T11:56:03Z 2008-08-31T11:56:03Z <p><a href="http://channel9.msdn.com/posts/Dan/Countdown-to-PDC2008-By-Developers-for-Developers-Don-Box-and-Chris-Anderson/?CommentID=424465" rel="nofollow">I've got the answer on Channel9.</a> Do you want me to post it here <strong>how</strong> I solved it?</p> http://stackoverflow.com/questions/29709/how-do-i-get-the-coordinates-of-the-caret-in-text-boxes/31995#31995 0 Answer by palotasb for How do I get the coordinates of the caret in text boxes? palotasb 2008-08-28T10:33:38Z 2008-08-28T10:33:38Z <p>Pat, I think the functionality you are looking for only exists in IE. <a href="http://msdn.microsoft.com/en-us/library/ms536394.aspx" rel="nofollow">MSDN.</a> But this is not an official JS thing nor is it implemented in other browsers so I don't recommend using it.</p> http://stackoverflow.com/questions/29943/how-to-submit-a-form-when-the-return-key-is-pressed/31888#31888 1 Answer by palotasb for How to submit a form when the return key is pressed? palotasb 2008-08-28T09:10:47Z 2008-08-28T09:10:47Z <p>I think you should actually have a submit button or a submit image... Do you have a specific reason for using a "submit div"? If you just want custom styles I recommend <code>&lt;input type="image"...</code>. <a href="http://webdesign.about.com/cs/forms/a/aaformsubmit_2.htm" rel="nofollow">http://webdesign.about.com/cs/forms/a/aaformsubmit_2.htm</a></p> http://stackoverflow.com/questions/14545/how-should-i-handle-autolinking-in-wiki-page-content/31864#31864 0 Answer by palotasb for How should I handle autolinking in wiki page content? palotasb 2008-08-28T08:49:12Z 2008-08-28T08:49:12Z <p>My idea would be to query the titles like <code>SELECT title FROM articles</code> and simply check if each wikilink is in that array of strings. If it is you link to the page, if not, you link to the create page.</p> http://stackoverflow.com/questions/23287/prime-factors/31235#31235 0 Answer by palotasb for Prime factors palotasb 2008-08-27T20:45:14Z 2008-08-27T20:45:14Z <p>This is probably not always faster but more optimistic about that you find a big prime divisor:</p> <ol> <li><code>N</code> is your number</li> <li>If it is prime then <code>return(N)</code></li> <li>Calculate primes up until <code>Sqrt(N)</code></li> <li>Go through the primes in descending order (largest first) <ul> <li>If <code>N is divisible by Prime</code> then <code>Return(Prime)</code></li> </ul></li> </ol> <p>Edit: In step 3 you can use the Sieve of Eratosthenes or Sieve of Atkins or whatever you like, but by itself the sieve won't find you the biggest prime factor. (Thats why I wouldn't choose SQLMenace's post as an official answer...)</p> http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers/31176#31176 3 Answer by palotasb for Most efficient code for the first 10000 prime numbers? palotasb 2008-08-27T20:26:27Z 2008-08-27T20:26:27Z <p><a href="http://beta.stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers#2753" rel="nofollow">GateKiller</a>, how about adding a <code>break</code> to that <code>if</code> in the <code>foreach</code> loop? That would speed up things <strong>a lot</strong> because if like 6 is divisible by 2 you don't need to check with 3 and 5. (I'd vote your solution up anyway if I had enough reputation :-) ...)</p> <pre><code>ArrayList primeNumbers = new ArrayList(); for(int i = 2; primeNumbers.Count &lt; 10000; i++) { bool divisible = false; foreach(int number in primeNumbers) { if(i % number == 0) { divisible = true; break; } } if(divisible == false) { primeNumbers.Add(i); Console.Write(i + " "); } } </code></pre> http://stackoverflow.com/questions/30346/fixed-page-layout-in-ie6/30932#30932 1 Answer by palotasb for Fixed page layout in IE6 palotasb 2008-08-27T19:12:40Z 2008-08-27T19:12:40Z <p>Add the following code to the <code>&lt;head&gt;</code></p> <pre><code>&lt;!--[if lte IE 6]&gt; &lt;style type="text/css"&gt; html, body { height: 100%; overflow: auto; } .ie6fixed { position: absolute; } &lt;/style&gt; &lt;![endif]--&gt; </code></pre> <p>Add the <code>ie6fixed</code> CSS class to whatever you want to be <code>position: fixed;</code></p>