User Rismo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:52:54Zhttp://stackoverflow.com/feeds/user/1560http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/894859/best-editor-for-codeigniter1Best editor for CodeIgniter?Rismo2009-05-21T20:07:04Z2009-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-performance4Do you have any tips to improve ReSharper and/or Visual Studio performance ?Rismo2008-08-22T23:27:21Z2009-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-developers9Is there a better alternative to rentacoder for developers?Rismo2008-08-23T19:23:35Z2009-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-studio3Autocomplete on SQL Management Studio?Rismo2008-10-28T21:02:18Z2009-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-notepad1How to delete specific lines on notepad++?Rismo2009-05-27T21:43:53Z2009-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-javascript2How to detect right mouse click + paste using JavaScript?Rismo2009-01-14T01:51:51Z2009-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-mocks3What are the differences between mocks and stubs on Rhino Mocks?Rismo2009-01-21T00:33:19Z2009-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-10Where do you edit the constructor template on resharper 4.1?Rismo2009-01-09T00:40:48Z2009-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-decompiler2Is there a vb6 decompiler?Rismo2009-01-05T18:38:52Z2009-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-watin0How to click on an AutoCompleteExtender with WatinRismo2008-09-08T22:25:48Z2008-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") && 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#1635202Answer by Rismo for Writing maintainable codeRismo2008-10-02T17:21:01Z2008-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-list16When to use IList and when to use ListRismo2008-08-19T23:09:54Z2008-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#574990Answer by Rismo for Converting vb.net to c# tipsRismo2008-09-11T20:10:41Z2008-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#510051Answer by Rismo for How to click on an AutoCompleteExtender with WatinRismo2008-09-09T00:19:57Z2008-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#245470Answer by Rismo for C# String output: format or concat?Rismo2008-08-23T19:55:24Z2008-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#1539319Answer by Rismo for Hidden Features of C#?Rismo2008-08-18T23:47:06Z2008-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#918175Comment by Rismo on How to delete specific lines on notepad++?Rismo2009-05-27T22:25:34Z2009-05-27T22:25:34ZAlso just noticed that TextFx -> TextFx Edit -> Delete Surplus Blank Lines does the same :)http://stackoverflow.com/questions/918158/how-to-delete-specific-lines-on-notepad/918175#918175Comment by Rismo on How to delete specific lines on notepad++?Rismo2009-05-27T22:19:08Z2009-05-27T22:19:08ZDuh! that was it. Thanks !http://stackoverflow.com/questions/918158/how-to-delete-specific-lines-on-notepad/918175#918175Comment by Rismo on How to delete specific lines on notepad++?Rismo2009-05-27T22:07:40Z2009-05-27T22:07:40ZThanks 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#918175Comment by Rismo on How to delete specific lines on notepad++?Rismo2009-05-27T21:59:24Z2009-05-27T21:59:24ZThanks, 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#15393Comment by Rismo on Hidden Features of C#?Rismo2009-05-19T22:14:23Z2009-05-19T22:14:23ZLike this:
int? x;
if(x != null)http://stackoverflow.com/questions/201776/submit-login-control-button-when-i-hit-enter/201889#201889Comment by Rismo on Submit Login control button when I hit EnterRismo2009-04-21T23:14:03Z2009-04-21T23:14:03ZI'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-javascriptComment by Rismo on How to detect right mouse click + paste using JavaScript?Rismo2009-01-14T20:25:08Z2009-01-14T20:25:08Z@Guido Garcí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-javascriptComment by Rismo on How to detect right mouse click + paste using JavaScript?Rismo2009-01-14T20:11:23Z2009-01-14T20:11:23ZSorry 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#429318Comment by Rismo on Where do you edit the constructor template on resharper 4.1?Rismo2009-01-09T21:28:10Z2009-01-09T21:28:10ZThanks! That was it :Dhttp://stackoverflow.com/questions/426650/where-do-you-edit-the-constructor-template-on-resharper-4-1/426714#426714Comment by Rismo on Where do you edit the constructor template on resharper 4.1?Rismo2009-01-09T01:25:06Z2009-01-09T01:25:06ZI 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#251600Comment by Rismo on Passing int list as a parameter to a web user controlRismo2008-10-31T08:54:47Z2008-10-31T08:54:47ZTo 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#194695Comment by Rismo on How to tell if .net app was compiled in DEBUG or RELEASE mode?Rismo2008-10-28T15:41:26Z2008-10-28T15:41:26ZWhich one is the accepted answer? Did you figure it out based on all the answers? How did you solve it?
Thankshttp://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114463#114463Comment by Rismo on What are Code Smells? What is the best way to correct them?Rismo2008-10-14T19:53:49Z2008-10-14T19:53:49Zdo programming languages still have gotos ? :Shttp://stackoverflow.com/questions/163246/sql-server-equivalent-to-oracles-create-or-replace-view/163260#163260Comment by Rismo on Sql Server equivalent to Oracle's CREATE OR REPLACE VIEWRismo2008-10-02T17:39:45Z2008-10-02T17:39:45ZThat'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#42661Comment by Rismo on Upgrade from Vista 32 to Vista 64Rismo2008-09-26T19:26:28Z2008-09-26T19:26:28ZI did the same thing with my laptop. I only had to get the media and use the product key.