User pomarc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T18:55:26Zhttp://stackoverflow.com/feeds/user/85738http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1477846/simulate-web-page-keystroke/1477998#14779980Answer by pomarc for simulate Web Page keystrokepomarc2009-09-25T15:28:27Z2009-09-25T15:28:27Z<p>if you can read Italian, take a look at this post:
<a href="http://www.innovactive.it/post/2009/09/04/Test-della-UI-di-una-applicazione-con-Selenium.aspx" rel="nofollow">http://www.innovactive.it/post/2009/09/04/Test-della-UI-di-una-applicazione-con-Selenium.aspx</a>
it's about testing an app UI with Selenium.</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/857677#8576775Answer by pomarc for What's your favorite "programmer ignorance" pet peeve?pomarc2009-05-13T12:27:45Z2009-09-24T00:45:25Z<p>Ignoring the latest community libraries/techinques, and continuing to develop software the way people did ten years ago.</p>
http://stackoverflow.com/questions/691942/speed-of-code-execution-asp-net-mvc-versus-php/1007939#10079391Answer by pomarc for Speed of code execution: ASP.NET-MVC versus PHPpomarc2009-06-17T15:50:50Z2009-06-17T15:50:50Z<p>maybe <a href="http://naspinski.net/post/AspNet-vs-php--speed-comparison.aspx" rel="nofollow">this</a> could be interesting for the present thread.</p>
http://stackoverflow.com/questions/1001221/kigg-dotnetkicks0kigg & dotnetkicks [closed]pomarc2009-06-16T12:38:03Z2009-06-16T12:46:11Z
<p>Did anyone try both kigg and dotnetkicks as a digg-like platform? what are the pro and cons?
which one do you prefer and why?</p>
http://stackoverflow.com/questions/990669/are-you-using-the-microsoft-enterprise-library/990695#9906950Answer by pomarc for Are you using the Microsoft Enterprise Library?pomarc2009-06-13T13:44:20Z2009-06-13T13:44:20Z<p>I have been using it for some time, but now I've turned to more agile and simple solutions, such as log4net for logging, EF or Linq2sql for data access and so on.</p>
http://stackoverflow.com/questions/801744/tinymce-wraps-my-text-in-p-p-can-i-avoid-this0TinyMCE wraps my text in <p></p>. Can I avoid this?pomarc2009-04-29T10:21:13Z2009-06-12T14:37:43Z
<p>Hello everybody.
I am using TinyMCE (<a href="http://tinymce.moxiecode.com/" rel="nofollow"><code>http://tinymce.moxiecode.com/</code></a>) in a .NET page.
Whenever I load a text </p>
<pre><code>myTMCE.value=mycontent;
</code></pre>
<p>I can see that my text gets wrapped in <code><p></p></code>. This is not desirable for me, so I am trying to avoid it.
Trying to initialize in </p>
<pre><code> <script>
tinyMCE.init({
force_p_newlines: true
})
</script>
</code></pre>
<p>did not work.
Any idea?
Thanks in advance,
m.</p>
http://stackoverflow.com/questions/974509/correct-way-to-get-selected-option-in-jquery-from-an-object0correct way to get selected option in jquery from an objectpomarc2009-06-10T09:16:10Z2009-06-10T09:20:08Z
<p>hi.
I've seen on StackOverflow and googling around that the most used way to get the selected text from a <code><SELECT></code> element with jquery is like this</p>
<pre><code>$("#cboId :selected").text()
</code></pre>
<p>what I have is not the id, but an object. I have an object, say</p>
<pre><code>var myCombo= $("#cboId");
</code></pre>
<p>coming from an earlier piece of code.</p>
<p>I've done like this to get the selected text, but is ugly:</p>
<pre><code> $("#" + myCombo.attr('id') + " :selected").text() ;
</code></pre>
<p>is there any cleaner way to do it?</p>
<p>thanks.</p>
http://stackoverflow.com/questions/955435/optimizing-delete-on-sql-server3Optimizing Delete on SQL Serverpomarc2009-06-05T11:31:44Z2009-06-05T14:40:41Z
<p><code>Delete</code>s on sql server are sometimes slow and I've been often in need to optimize them in order to diminish the needed time.
I've been googleing a bit looking for tips on how to do that, and I've found diverse suggestions.
I'd like to know your favorite and most effective techinques to tame the delete beast, and how and why they work.</p>
<p>until now:</p>
<ul>
<li><p>be sure foreign keys have indexes</p></li>
<li><p>be sure the where conditions are indexed</p></li>
<li><p>use of <code>WITH ROWLOCK</code></p></li>
<li><p>destroy unused indexes, delete, rebuild the indexes</p></li>
</ul>
<p>now, your turn.</p>
http://stackoverflow.com/questions/798553/user-defined-filter-for-linq/798647#7986471Answer by pomarc for User defined filter for linqpomarc2009-04-28T15:53:51Z2009-05-13T07:21:58Z<p>you can add each filter dynamically if it's needed, e.g.:</p>
<pre><code>if (txtFilter1.Text!="") qProducts=qProducts.Where(s=>s.Name==txtFilter1.Text);
if (txtFilter2.Text!="") qProducts=qProducts.Where(s=>s.Field==txtFilter2.Text);
if (cboCombo1.SelectedValue!=0) qProducts=qProducts.Where(s=>s.price...
</code></pre>
<p>and so on</p>
http://stackoverflow.com/questions/821252/replacement-for-bookpool/821335#8213350Answer by pomarc for Replacement for Bookpool?pomarc2009-05-04T18:38:44Z2009-05-04T18:38:44Z<p><a href="http://www.bookdepository.co.uk/" rel="nofollow">http://www.bookdepository.co.uk/</a>
not only programming books, but free delivery.</p>
http://stackoverflow.com/questions/168415/tcp-ip-socket-connections-in-net/819609#8196090Answer by pomarc for Tcp/Ip Socket connections in .NETpomarc2009-05-04T10:33:17Z2009-05-04T10:33:17Z<p>I strongly advice you to try WCF for such tasks. It gives you, after a not so steep learning curve, many benefits over raw socket communications.
For the task at hand, I agree with the preceeding answers, you should use a loop and dynamically allocate memory as needed.</p>
http://stackoverflow.com/questions/819446/how-to-debug-net-applications-without-visual-studio/819472#8194721Answer by pomarc for How to Debug .net applications without Visual Studiopomarc2009-05-04T09:38:34Z2009-05-04T09:38:34Z<p>you can use remote debugging: <a href="http://msdn.microsoft.com/en-us/library/y7f5zaaa.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/y7f5zaaa.aspx</a></p>
http://stackoverflow.com/questions/819213/how-to-debug-javascript-error/819223#8192230Answer by pomarc for How to debug Javascript error?pomarc2009-05-04T08:09:46Z2009-05-04T08:09:46Z<p>you can put breakpoints in the code, and wait for the execution to hit them. Then you can walk in the code, and use watches to know the values of variables.</p>
http://stackoverflow.com/questions/814581/how-to-call-server-side-function-using-jquery-wth-out-page-refresh/814630#8146301Answer by pomarc for How to call server side function using jquery wth out page refresh?pomarc2009-05-02T10:49:06Z2009-05-02T10:49:06Z<p>if you have server-only methods that you need to call, use a WebMethod on the server side, and ajax on the client.
reading <a href="http://www.dev102.com/2008/04/30/call-aspnet-webmethod-from-jquery/" rel="nofollow">this</a> my be useful.</p>
<p>bye</p>
http://stackoverflow.com/questions/538498/your-favorite-jquery-controls-plugins/811076#8110762Answer by pomarc for Your Favorite JQuery Controls & Pluginspomarc2009-05-01T11:46:51Z2009-05-01T11:46:51Z<p>I am using <a href="http://code.google.com/p/flot/" rel="nofollow">flot</a>, a charting and plotting library. I'm using it in many projects now and it's fast, stable and the produced charts are quite good looking.</p>
<p>I have embedded <a href="http://plugins.learningjquery.com/cluetip/" rel="nofollow">cluetip</a> in a .NET web control and I am using extensively on many projects.</p>
http://stackoverflow.com/questions/802910/net-3-5-missing-from-the-asp-net-drop-down-in-iis-after-new-install/802950#8029500Answer by pomarc for .Net 3.5 missing from the ASP.Net drop down in IIS after new installpomarc2009-04-29T15:38:26Z2009-04-29T15:38:26Z<p>you cannot find 3.5 on IIS, you'll find 2.0.
but, if you want to be sure that the install went well, go to</p>
<pre><code>%windir%\Microsoft.NET\Framework
</code></pre>
<p>(which is C:\Windows\Microsoft.NET\Framework on most systems)</p>
<p>and look for a folder named 3.5</p>
http://stackoverflow.com/questions/802159/linq-to-entity-using-contains-in-the-select-portion-throws-unexpected-error/802369#8023691Answer by pomarc for LINQ to Entity: using Contains in the "select" portion throws unexpected errorpomarc2009-04-29T13:30:30Z2009-04-29T13:30:30Z<pre><code>var fleets = from af in FleetSource;
var x = from u in fleets.ToList()
select new Fleet
{
fleetID = u.fleetID,
fleetName = u.fleetName,
isAllied = (allianceMembers.Contains(u.userID) ? true : false)
}
</code></pre>
<p>calling ToList() on fleets the query is executed, later you can use Contains().</p>
http://stackoverflow.com/questions/801300/as-a-c-c-developer-is-there-a-good-reason-to-learn-another-kind-of-language/801380#8013801Answer by pomarc for As a C++/C# developer, is there a good reason to learn another kind of language?pomarc2009-04-29T08:11:58Z2009-04-29T09:38:24Z<p>learning a new language can benefit you in two ways: </p>
<ul>
<li><p>you could do new things: e.g.learning a scripting language such as javascript lets you do things on the web in a very different and more responsive way, and take advantage of using libraries on top of it like jquery makes you go far beyond what classic ASP.NET lets you.</p></li>
<li><p>you start thinking differently. </p></li>
</ul>
http://stackoverflow.com/questions/801473/extracting-a-tar-z-file-in-c/801489#801489-1Answer by pomarc for Extracting a tar.z file in c#pomarc2009-04-29T08:53:07Z2009-04-29T08:53:07Z<p>maybe this could be useful:
<a href="http://community.sharpdevelop.net/forums/p/4969/14447.aspx#14447" rel="nofollow">http://community.sharpdevelop.net/forums/p/4969/14447.aspx#14447</a></p>
http://stackoverflow.com/questions/796654/how-can-i-prevent-the-keydown-event-of-a-form-in-c-from-firing-more-than-once/796694#7966941Answer by pomarc for How can I prevent the keydown event of a form in C# from firing more than once?pomarc2009-04-28T07:49:34Z2009-04-28T07:49:34Z<p>since the multiple occourrence of KeyDown is due to the keyrepeat settings of Windows, I think that you should somehow track the KeyUp event of that key also to know that the key has been released.</p>
http://stackoverflow.com/questions/793950/algorithm-for-deleting-one-element-in-an-single-linked-list-with-o1-complexity/794014#7940141Answer by pomarc for Algorithm for deleting one element in an single linked list with O(1) complexity pomarc2009-04-27T15:21:10Z2009-04-27T15:21:10Z<p>move the data, not the link.
look to this other thread:
<a href="http://stackoverflow.com/questions/69209/deleting-a-middle-node-from-a-single-linked-list-when-pointer-to-the-previous-nod">http://stackoverflow.com/questions/69209/deleting-a-middle-node-from-a-single-linked-list-when-pointer-to-the-previous-nod</a></p>
http://stackoverflow.com/questions/793897/check-if-keyvaluepair-exists-with-linqs-firstordefault/793922#7939221Answer by pomarc for Check if KeyValuePair exists with LINQ's FirstorDefaultpomarc2009-04-27T15:01:54Z2009-04-27T15:01:54Z<p>you could check if </p>
<pre><code>available.Key==Guid.Empty
</code></pre>
http://stackoverflow.com/questions/793883/gridview-pageindexchanging-fires-but-theres-no-selectedindex-afected/793896#7938960Answer by pomarc for GridView.PageIndexChanging fires but there's no SelectedIndex afected!pomarc2009-04-27T14:57:07Z2009-04-27T14:57:07Z<p>be sure that your controls are in the same UpdatePanel, or update the various container UpdatePanels.</p>
http://stackoverflow.com/questions/793575/how-to-denormalize-a-heavily-normalized-database-system/793630#7936301Answer by pomarc for How to denormalize a heavily normalized database system?pomarc2009-04-27T14:03:24Z2009-04-27T14:03:24Z<p>try to index heavily and wisely.
try to use indexed views.
Try precompiled stored procedures.
if this fails, remember that denormalizing and caching often require heavy synchronization works, so you should carefully look to each case before doing it.</p>
http://stackoverflow.com/questions/771966/link-to-print-in-a-webpage/771991#7719910Answer by pomarc for link to Print in a webpagepomarc2009-04-21T10:37:46Z2009-04-21T10:37:46Z<p>Hi.
You may look <a href="http://www.456bereastreet.com/archive/200709/how%5Fto%5Fcreate%5Fan%5Funobtrusive%5Fprint%5Fthis%5Fpage%5Flink%5Fwith%5Fjavascript/" rel="nofollow">here</a> and <a href="http://trevordavis.net/blog/tutorial/unobtrusive-javascript-print-link-with-jquery/" rel="nofollow">here</a>.</p>
<p>bye.</p>
http://stackoverflow.com/questions/52378/how-can-i-know-whether-i-am-a-good-programmer/741475#7414751Answer by pomarc for How Can I Know Whether I Am a Good Programmer?pomarc2009-04-12T08:45:09Z2009-04-12T08:45:09Z<p>imho you are a good programmer if </p>
<p>-you have a sound theoric background. reinventing the wheel as well as an algorithm or a framework is a waste of time, most of the times.</p>
<p>-you can see things and problems from a skewed perspective sometimes. this may bring you to find innovative solutions.</p>
<p>-you spend time money and efforts to have the best tools and the best skills updated.</p>
<p>-your code is easy to modify. if you design clean, elegant and understandable code, modyfing it will not be painful.</p>
<p>-if your code/bugs rate is reasonably high. I know this may seem trivial, but I know many creative and skilled developers that nonetheless are very prone to do trivial bugs. this impairs greately their effectiveness and usefulness.</p>
<p>-people around you know that you can help deciding what choices to do</p>
<p>-you can solve problems using different tools. bad programmers keep using the same tool (be it a language or a technology or an architecture and so on) for whatever problem they get</p>
<p>-you keep learning, you are curious.</p>
<p>-you have fun programming, after all these years</p>
http://stackoverflow.com/questions/733842/what-are-the-real-world-applications-of-singleton-pattern/733885#7338850Answer by pomarc for What are the real world applications of Singleton Patternpomarc2009-04-09T11:55:10Z2009-04-09T11:55:10Z<p>you could find useful the Singleton Pattern if you have a resource that costs a lot to get initialized, and that you use several times, such as an Object context when you use a OR/M or a connection of some sort.
Obviously you must pay attention that keeping that thing alive does not cost you more than recreating it every time.</p>
http://stackoverflow.com/questions/730039/web-config-locked-by-w3wp-exe0web.config locked by w3wp.exepomarc2009-04-08T13:36:38Z2009-04-09T04:35:07Z
<p>Hi all.
I've got a weird problem. It looks like if my IIS6 locked an application's web.config. If I try to edit it, Windows complains that the web.config is used by another process.</p>
<p>Using Process Explorer I can see that the file is owned by w3wp.exe. Removing the virtual directory and stopping the website wasn't useful at all.</p>
<p>Any idea (I cannot stop the whole server since a lot of sites are hosted in it)?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/726263/return-multiple-result-sets-from-ms-access-to-ado-net/726297#7262973Answer by pomarc for return multiple result sets from ms access to ado.netpomarc2009-04-07T15:19:13Z2009-04-07T15:19:13Z<p>as far as I know, if your data reside inside the Access mdb, you cannot have multiple data sets. If instead you use Access to connect to an external data source, you could use pass-through queries and do that, but I do not think this is your case. (see <a href="http://support.microsoft.com/kb/126992" rel="nofollow">http://support.microsoft.com/kb/126992</a>)</p>
http://stackoverflow.com/questions/724778/asp-net-dynamic-usercontrol-id-generation-problem/724807#7248070Answer by pomarc for ASP.NET Dynamic UserControl ID generation problempomarc2009-04-07T09:29:18Z2009-04-07T09:29:18Z<p>to be sure it's the same instance of the control and not another, check the GetHashCode() method of the control. </p>
http://stackoverflow.com/questions/955435/optimizing-delete-on-sql-serverComment by pomarc on Optimizing Delete on SQL Serverpomarc2009-06-10T11:19:43Z2009-06-10T11:19:43ZQuestion to the power users: this question does not have a single answer, is more a sort of a knowledge base than a simple question-answer. May be it could be turned into a community wiki? (if I well understand what a c.w. is for)http://stackoverflow.com/questions/974509/correct-way-to-get-selected-option-in-jquery-from-an-object/974527#974527Comment by pomarc on correct way to get selected option in jquery from an objectpomarc2009-06-10T09:29:57Z2009-06-10T09:29:57Zthis looks nice! thankshttp://stackoverflow.com/questions/955435/optimizing-delete-on-sql-server/956077#956077Comment by pomarc on Optimizing Delete on SQL Serverpomarc2009-06-05T23:00:07Z2009-06-05T23:00:07Zthanks matt.
well, my question is quite general, i've had slow deletes in various and different occasions, and this was meant to be a way to gather the tips people could share on the issue.
http://stackoverflow.com/questions/955435/optimizing-delete-on-sql-server/955452#955452Comment by pomarc on Optimizing Delete on SQL Serverpomarc2009-06-05T13:22:47Z2009-06-05T13:22:47ZI should have pointed out that destroy-delete-rebuild should be used only when lenghty deletes are done while the db is not used, such as by night, during batch operations, when the db is an enterprise db used only at daytime. obviously destroying indexes on a live and used db is not a good idea.
http://stackoverflow.com/questions/955435/optimizing-delete-on-sql-server/955531#955531Comment by pomarc on Optimizing Delete on SQL Serverpomarc2009-06-05T12:35:02Z2009-06-05T12:35:02ZSARGable:In relational databases, a condition (or predicate) in a query is said to be sargable if the DBMS engine can take advantage of an index to speed up the execution of the query (using index seeks, not covering indexes). The term is derived from a contraction of Search ARGument Able. (Wikipedia)http://stackoverflow.com/questions/955435/optimizing-delete-on-sql-server/955452#955452Comment by pomarc on Optimizing Delete on SQL Serverpomarc2009-06-05T12:32:47Z2009-06-05T12:32:47Z"unused" in the deletehttp://stackoverflow.com/questions/150339/generating-an-excel-file-in-asp-net/150368#150368Comment by pomarc on Generating an Excel file in ASP.NETpomarc2009-05-22T11:00:13Z2009-05-22T11:00:13Zyou could rename the file with an .xml extensio and add this:
<?mso-application progid="Excel.Sheet"?>
just after the
<?xml version="1.0"?>
this way windows recognize that the file is an Excel file, will give it the right icon, will open excel when you click the file and Excel will not complain that the file format and contents do not match.
bye.http://stackoverflow.com/questions/842135/use-c-regex-to-convert-casing-in-a-stringComment by pomarc on Use C# regex to convert casing in a stringpomarc2009-05-08T22:53:59Z2009-05-08T22:53:59ZPatrick, do you mean you have to convert the first and second group to upper and the third and fourth to lower case? http://stackoverflow.com/questions/216833/can-i-convert-a-boolean-to-yes-no-in-a-asp-net-gridview/315174#315174Comment by pomarc on Can I convert a boolean to Yes/No in a ASP.NET GridViewpomarc2009-05-06T11:03:43Z2009-05-06T11:03:43Zthe c# code works nicely, I've just used it :)http://stackoverflow.com/questions/305223/jon-skeet-facts/306973#306973Comment by pomarc on Jon Skeet Facts?pomarc2009-05-04T09:31:11Z2009-05-04T09:31:11Z"Jon Skeet can divide by zero." may be the best line ever written on stackoverflow.http://stackoverflow.com/questions/538498/your-favorite-jquery-controls-plugins/538512#538512Comment by pomarc on Your Favorite JQuery Controls & Pluginspomarc2009-05-01T11:39:27Z2009-05-01T11:39:27Zeasy to use and effective.http://stackoverflow.com/questions/801744/tinymce-wraps-my-text-in-p-p-can-i-avoid-this/801767#801767Comment by pomarc on TinyMCE wraps my text in <p></p>. Can I avoid this?pomarc2009-05-01T11:38:17Z2009-05-01T11:38:17Zhowever afaik force_p_newlines has another pourpose.http://stackoverflow.com/questions/801744/tinymce-wraps-my-text-in-p-p-can-i-avoid-this/801764#801764Comment by pomarc on TinyMCE wraps my text in <p></p>. Can I avoid this?pomarc2009-05-01T11:37:36Z2009-05-01T11:37:36ZI think I'll strip the leading and trailing <p></p> but is a dirty solution.http://stackoverflow.com/questions/801744/tinymce-wraps-my-text-in-p-p-can-i-avoid-this/801774#801774Comment by pomarc on TinyMCE wraps my text in <p></p>. Can I avoid this?pomarc2009-05-01T11:36:50Z2009-05-01T11:36:50Zthat's a pity, because tinyMCE works quite well, beside this unwanted behaviour.
http://stackoverflow.com/questions/793897/check-if-keyvaluepair-exists-with-linqs-firstordefault/793922#793922Comment by pomarc on Check if KeyValuePair exists with LINQ's FirstorDefaultpomarc2009-04-27T15:04:26Z2009-04-27T15:04:26Zyes, of course.