User Rismo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:52:54Z http://stackoverflow.com/feeds/user/1560 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/894859/best-editor-for-codeigniter 1 Best editor for CodeIgniter? Rismo 2009-05-21T20:07:04Z 2009-12-21T22:40:43Z <p>I'm learning CodeIgniter and I come from Microsoft Visual Studio so I'm used to the auto complete feature. I've been using notepad++ so far but I wonder if anyone knows an editor that works better with CodeIgniter.</p> <p>I would love to see features like:</p> <ul> <li>Right-click -> Add new model</li> <li>Right-click -> Add new view</li> <li>Autocomplete with CodeIgniter helpers and libraries</li> </ul> http://stackoverflow.com/questions/23737/do-you-have-any-tips-to-improve-resharper-and-or-visual-studio-performance 4 Do you have any tips to improve ReSharper and/or Visual Studio performance ? Rismo 2008-08-22T23:27:21Z 2009-12-10T19:54:20Z <p>I'm using visual studio 2008 and <a href="http://en.wikipedia.org/wiki/ReSharper" rel="nofollow">ReSharper</a> 4 and it's kind of slow. My machine has 2 GB of RAM, dual core processor and a 7200 rpm hard disk. I know more RAM and a faster hard disk could improve performance, but do you have any tips to improve ReSharper/Visual Studio performance?</p> http://stackoverflow.com/questions/24520/is-there-a-better-alternative-to-rentacoder-for-developers 9 Is there a better alternative to rentacoder for developers? Rismo 2008-08-23T19:23:35Z 2009-11-27T04:37:20Z <p>I've read a lot of reviews about rentacoder and all of them say that the pay is too low, do you know a better site?</p> http://stackoverflow.com/questions/244860/autocomplete-on-sql-management-studio 3 Autocomplete on SQL Management Studio? Rismo 2008-10-28T21:02:18Z 2009-10-22T13:43:04Z <p>Does anyone know if there's an add-in that does autocomplete for queries on SQL Management Studio?</p> http://stackoverflow.com/questions/918158/how-to-delete-specific-lines-on-notepad 1 How to delete specific lines on notepad++? Rismo 2009-05-27T21:43:53Z 2009-10-06T14:53:59Z <p>I'm cleaning up some code files (c#) and want to remove the regions. And what I would like to do is delete all the lines that have the string '#region'. That's just an example, I can think of several more uses, but is that even possible?</p> http://stackoverflow.com/questions/441631/how-to-detect-right-mouse-click-paste-using-javascript 2 How to detect right mouse click + paste using JavaScript? Rismo 2009-01-14T01:51:51Z 2009-09-28T13:21:27Z <p>Is there a way to detect a right click followed by paste with JavaScript on IE and Firefox ?</p> <p>Update:</p> <p>I decided to use Jquery to do it:</p> <pre><code>$('#controlId').bind('paste', null, function() { // code }); </code></pre> <p>It's not exactly what I was looking (because it gets fired on 'ctrl + v' as well as in 'right click + paste' but I can work around it.</p> <p>Tested it on Chrome, Firefox 3, IE 7 and IE 6 and it's working</p> http://stackoverflow.com/questions/463707/what-are-the-differences-between-mocks-and-stubs-on-rhino-mocks 3 What are the differences between mocks and stubs on Rhino Mocks? Rismo 2009-01-21T00:33:19Z 2009-05-28T00:35:06Z <p>I haven't play enough with this and usually use mocks, but I wonder what are the differences between this two and when to use one or the other on Rhino Mocks.</p> <p>Update:</p> <p>I also found the answer to my question in <a href="http://ayende.com/Wiki/Rhino+Mocks+3.5.ashx#Thedifferencebetweenstubsandmocks" rel="nofollow" title="Ayende's words">Ayende's words</a>:</p> <p><strong>The difference between stubs and mocks</strong><br/><br/> You can get the actual definition of the these terms in this article: <a href="http://martinfowler.com/articles/mocksArentStubs.html" rel="nofollow">Mocks Aren't Stubs</a>. I want to focus on the difference from the point of view of Rhino Mocks.</p> <p>A mock is an object that we can set expectations on, and which will verify that the expected actions have indeed occurred. A stub is an object that you use in order to pass to the code under test. You can setup expectations on it, so it would act in certain ways, but those expectations will never be verified. A stub's properties will automatically behave like normal properties, and you can't set expectations on them.</p> <p>If you want to verify the behavior of the code under test, you will use a mock with the appropriate expectation, and verify that. If you want just to pass a value that may need to act in a certain way, but isn't the focus of this test, you will use a stub.</p> <p>IMPORTANT: A stub will never cause a test to fail. </p> http://stackoverflow.com/questions/426650/where-do-you-edit-the-constructor-template-on-resharper-4-1 0 Where do you edit the constructor template on resharper 4.1? Rismo 2009-01-09T00:40:48Z 2009-01-09T19:15:19Z <p>When I create a constructor with parameters using Resharper's 'Generate code' feature, I get something like this:</p> <pre><code>public class Example{ private int _x; private int _y; public Example(int _x, int _y){ this._x = _x; this._y = _y; } } </code></pre> <p>I would like to use this naming convention instead:</p> <pre><code>public class Example{ private int _x; private int _y; public Example(int x, int y){ _x = x; _y = y; } } </code></pre> <p>but I don't know if it's possible to edit this constructor template and where.</p> http://stackoverflow.com/questions/414068/is-there-a-vb6-decompiler 2 Is there a vb6 decompiler? Rismo 2009-01-05T18:38:52Z 2009-01-05T19:22:36Z <p>I lost the source code from one project I did on the company I'm working for and haven't been able to find a vb6 decompiler, does that even exists?</p> <p>Forgot to say that I only have the EXE. I completely forgot about this project and rescued the EXE from a user's machine.</p> http://stackoverflow.com/questions/50845/how-to-click-on-an-autocompleteextender-with-watin 0 How to click on an AutoCompleteExtender with Watin Rismo 2008-09-08T22:25:48Z 2008-11-13T00:29:52Z <p>For my acceptance testing I'm writing text into the auto complete extender and I need to click on the populated list.</p> <p>In order to populate the list I have to use AppendText instead of TypeText, otherwise the textbox looses focus before the list is populated.</p> <p>Now my problem is when I try to click on the populated list. I've tried searching the UL element and clicking on it; but it's not firing the click event on the list.</p> <p>Then I tried to search the list by tagname and value:</p> <pre><code>Element element = Browser.Element(Find.By("tagname", "li") &amp;&amp; Find.ByValue("lookupString")); </code></pre> <p>but it's not finding it, has anyone been able to do what I'm trying to do?</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163520#163520 2 Answer by Rismo for Writing maintainable code Rismo 2008-10-02T17:21:01Z 2008-10-02T17:21:01Z <p>I would say the most important factor is DRY. glenatron Mention it already on his answer among other factors, but I think that's the most important one.</p> http://stackoverflow.com/questions/17170/when-to-use-ilist-and-when-to-use-list 16 When to use IList and when to use List Rismo 2008-08-19T23:09:54Z 2008-09-17T17:22:50Z <p>I know that IList is the interface and List is the concrete type but I still don't know when to use each one. What I'm doing now is if I don't need the Sort or FindAll methods I use the interface. Am I right? Is there a better way to decide when to use the interface or the concrete type?</p> http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57499#57499 0 Answer by Rismo for Converting vb.net to c# tips Rismo 2008-09-11T20:10:41Z 2008-09-11T20:10:41Z <p>Have you tried C-Sharpener For VB ?</p> <p><a href="http://www.elegancetech.com/csvb/csvb.aspx" rel="nofollow">http://www.elegancetech.com/csvb/csvb.aspx</a></p> http://stackoverflow.com/questions/50845/how-to-click-on-an-autocompleteextender-with-watin/51005#51005 1 Answer by Rismo for How to click on an AutoCompleteExtender with Watin Rismo 2008-09-09T00:19:57Z 2008-09-09T00:19:57Z <p>In case someone has the same problem. It works with the next code:</p> <pre><code>string lookupString = "string in list"; Regex lookup = new Regex(string.Format(".*{0}.*", lookupString)); Element list = Browser.Element("li", Find.ByText(lookup)); list.MouseDown(); </code></pre> http://stackoverflow.com/questions/16432/c-string-output-format-or-concat/24547#24547 0 Answer by Rismo for C# String output: format or concat? Rismo 2008-08-23T19:55:24Z 2008-08-23T19:55:24Z <p>The first one (format) looks better to me. It's more readable and you are not creating extra temporary string objects.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/15393#15393 19 Answer by Rismo for Hidden Features of C#? Rismo 2008-08-18T23:47:06Z 2008-08-18T23:47:06Z <p>Not hidden, but I think that a lot of developers are not using the HasValue and Value properties on the nullable types.</p> <pre><code> int? x = null; int y; if (x.HasValue) y = x.Value; </code></pre> http://stackoverflow.com/questions/918158/how-to-delete-specific-lines-on-notepad/918175#918175 Comment by Rismo on How to delete specific lines on notepad++? Rismo 2009-05-27T22:25:34Z 2009-05-27T22:25:34Z Also just noticed that TextFx -&gt; TextFx Edit -&gt; Delete Surplus Blank Lines does the same :) http://stackoverflow.com/questions/918158/how-to-delete-specific-lines-on-notepad/918175#918175 Comment by Rismo on How to delete specific lines on notepad++? Rismo 2009-05-27T22:19:08Z 2009-05-27T22:19:08Z Duh! that was it. Thanks ! http://stackoverflow.com/questions/918158/how-to-delete-specific-lines-on-notepad/918175#918175 Comment by Rismo on How to delete specific lines on notepad++? Rismo 2009-05-27T22:07:40Z 2009-05-27T22:07:40Z Thanks John. I did that and works for one line break \n, but not for two. I'm searching for \n\n and replacing it with \n, but it doesn't work. Does it work for you ? http://stackoverflow.com/questions/918158/how-to-delete-specific-lines-on-notepad/918175#918175 Comment by Rismo on How to delete specific lines on notepad++? Rismo 2009-05-27T21:59:24Z 2009-05-27T21:59:24Z Thanks, I did that and it works. But now I'm trying to replace \n\n with just one \n but doesn't seem to work, any ideas? http://stackoverflow.com/questions/9033/hidden-features-of-c/15393#15393 Comment by Rismo on Hidden Features of C#? Rismo 2009-05-19T22:14:23Z 2009-05-19T22:14:23Z Like this: int? x; if(x != null) http://stackoverflow.com/questions/201776/submit-login-control-button-when-i-hit-enter/201889#201889 Comment by Rismo on Submit Login control button when I hit Enter Rismo 2009-04-21T23:14:03Z 2009-04-21T23:14:03Z I've completely forgot about the DefaultButton on the panels. Thanks for reminding me. http://stackoverflow.com/questions/441631/how-to-detect-right-mouse-click-paste-using-javascript Comment by Rismo on How to detect right mouse click + paste using JavaScript? Rismo 2009-01-14T20:25:08Z 2009-01-14T20:25:08Z @Guido Garc&#237;a: I'm using the ajax control toolkit autocomplete extender, the problem is that it doesn't autocomplete when you paste text using the mouse on IE (works on Firefox and using ctrl+v works on both) so I'm trying to catch the event to fire the autocomplete. Does this make sense? http://stackoverflow.com/questions/441631/how-to-detect-right-mouse-click-paste-using-javascript Comment by Rismo on How to detect right mouse click + paste using JavaScript? Rismo 2009-01-14T20:11:23Z 2009-01-14T20:11:23Z Sorry about that. I changed the title and added more text to make it easier to understand. http://stackoverflow.com/questions/426650/where-do-you-edit-the-constructor-template-on-resharper-4-1/429318#429318 Comment by Rismo on Where do you edit the constructor template on resharper 4.1? Rismo 2009-01-09T21:28:10Z 2009-01-09T21:28:10Z Thanks! That was it :D http://stackoverflow.com/questions/426650/where-do-you-edit-the-constructor-template-on-resharper-4-1/426714#426714 Comment by Rismo on Where do you edit the constructor template on resharper 4.1? Rismo 2009-01-09T01:25:06Z 2009-01-09T01:25:06Z I see the parameterless (default) constructor template, but I don't see the one with parameters, do you see it ? http://stackoverflow.com/questions/251439/passing-int-list-as-a-parameter-to-a-web-user-control/251600#251600 Comment by Rismo on Passing int list as a parameter to a web user control Rismo 2008-10-31T08:54:47Z 2008-10-31T08:54:47Z To me, this looks way better than the Type converter class. Which one is more readable? http://stackoverflow.com/questions/194616/how-to-tell-if-net-app-was-compiled-in-debug-or-release-mode/194695#194695 Comment by Rismo on How to tell if .net app was compiled in DEBUG or RELEASE mode? Rismo 2008-10-28T15:41:26Z 2008-10-28T15:41:26Z Which one is the accepted answer? Did you figure it out based on all the answers? How did you solve it? Thanks http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114463#114463 Comment by Rismo on What are Code Smells? What is the best way to correct them? Rismo 2008-10-14T19:53:49Z 2008-10-14T19:53:49Z do programming languages still have gotos ? :S http://stackoverflow.com/questions/163246/sql-server-equivalent-to-oracles-create-or-replace-view/163260#163260 Comment by Rismo on Sql Server equivalent to Oracle's CREATE OR REPLACE VIEW Rismo 2008-10-02T17:39:45Z 2008-10-02T17:39:45Z That's the way I do it too. Oracle's Create or replace is way better, I hate to repeat code. http://stackoverflow.com/questions/42654/upgrade-from-vista-32-to-vista-64/42661#42661 Comment by Rismo on Upgrade from Vista 32 to Vista 64 Rismo 2008-09-26T19:26:28Z 2008-09-26T19:26:28Z I did the same thing with my laptop. I only had to get the media and use the product key.