User palotasb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T13:33:31Zhttp://stackoverflow.com/feeds/user/3063http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c1Fastest way to calculate primes in C#?palotasb2008-08-27T18:54:44Z2008-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 < (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 < Until; PMultiply += P)
PrimeBits.Set(PMultiply, false);
// We use this to store the actual prime numbers
List<int> Primes = new List<int>();
for (int i = 2; i < 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#319102Answer by palotasb for Multiple submit buttons on a formpalotasb2008-08-28T09:34:40Z2008-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><html>
<head>
<style>
.f {
float: right;
}
</style>
</head>
<body>
<form action="action" method="get">
<input type="text" name="abc">
<div id="buttons">
<input type="submit" class="f" name="next" value="Next">
<input type="submit" class="f" name="prev" value="Prev">
<div style="clear:both"></div><!-- Need this to have the buttons actually inside div#buttons -->
</div>
</form>
</body>
</html>
</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#379505Answer by palotasb for What's the answer to this Microsoft PDC challenge?palotasb2008-09-01T13:34:29Z2008-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#368970Answer by palotasb for What's the answer to this Microsoft PDC challenge?palotasb2008-08-31T14:54:47Z2008-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#368592Answer by palotasb for FileUpload control inside an UpdatePanel without refreshing the whole page?palotasb2008-08-31T13:49:08Z2008-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#368192Answer by palotasb for What's the answer to this Microsoft PDC challenge?palotasb2008-08-31T12:23:10Z2008-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#368042Answer by palotasb for What's the answer to this Microsoft PDC challenge?palotasb2008-08-31T11:56:03Z2008-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#319950Answer by palotasb for How do I get the coordinates of the caret in text boxes?palotasb2008-08-28T10:33:38Z2008-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#318881Answer by palotasb for How to submit a form when the return key is pressed?palotasb2008-08-28T09:10:47Z2008-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><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#318640Answer by palotasb for How should I handle autolinking in wiki page content?palotasb2008-08-28T08:49:12Z2008-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#312350Answer by palotasb for Prime factorspalotasb2008-08-27T20:45:14Z2008-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#311763Answer by palotasb for Most efficient code for the first 10000 prime numbers?palotasb2008-08-27T20:26:27Z2008-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 < 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#309321Answer by palotasb for Fixed page layout in IE6palotasb2008-08-27T19:12:40Z2008-08-27T19:12:40Z<p>Add the following code to the <code><head></code></p>
<pre><code><!--[if lte IE 6]>
<style type="text/css">
html, body {
height: 100%;
overflow: auto;
}
.ie6fixed {
position: absolute;
}
</style>
<![endif]-->
</code></pre>
<p>Add the <code>ie6fixed</code> CSS class to whatever you want to be <code>position: fixed;</code></p>