User RodgerB - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T16:19:33Zhttp://stackoverflow.com/feeds/user/20900http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/145951/what-is-the-first-thing-you-do-when-you-install-visual-studio21What is the first thing you do when you install Visual Studio?RodgerB2008-09-28T14:37:28Z2009-11-20T07:08:14Z
<p>What is the first thing you do when you install Visual Studio? I am talking about anything customization-wise (so we don't get answers based on 'I create a new project').</p>
<p>Do you have a favorite font? </p>
<p>Do you have a must have extension you couldn't possibly live without? </p>
<p>Do you have a keyboard shortcut you like to set? </p>
<p>I am interested to know your favorites.</p>
<p>For me, I only change the font to Calibri, I find it is easier to read, and I can fit more text on the screen.</p>
http://stackoverflow.com/questions/139621/merit-of-screencasts-vs-text-based-documentation/139777#1397772Answer by RodgerB for Merit of screencasts vs text-based documentation?RodgerB2008-09-26T14:14:31Z2009-10-09T10:05:43Z<p>It depends how the quality of the video is (don't judge a video by its container). The <a href="http://www.asp.net/learn/videos/#Popular" rel="nofollow">ASP.NET How To</a> videos are the some of the best video tutorials I've seen on the Internet. Some things you just don't ever show in plain-text, such as Visual Studio shortcuts to clean up (X)HTML or XML indentation (Ctrl K + D).</p>
<p>They are good when used effectively.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/119299#1192995Answer by RodgerB for What are Code Smells? What is the best way to correct them?RodgerB2008-09-23T05:47:08Z2009-08-28T18:13:35Z<p><strong>Smell: Long lines of code</strong></p>
<p>My definition of a long line of code (because I'm a .NET developer), is any line of code that requires a horizontal scroll bar to be viewed in the editor in Visual Studio (without collapsing the toolbox or the Solution Explorer pane). The developer should visualise the poor programmer working at a low resolution, with a seemingly never ending horizontal scroll bar.</p>
<p>Example:</p>
<pre><code>Dim cn As New SqlConnection(ConfigurationManager.ConnectionStrings("DatabaseConnectionString").ConnectionString)
</code></pre>
<p><strong>Solution: Use New Lines</strong></p>
<p>Break up your code into appropriately sized pieces, not bite sized, not generous, but just right.</p>
<p>Example:</p>
<pre><code>Dim cn As New SqlConnection( _
ConfigurationManager.ConnectionStrings("DatabaseConnectionString") _
.ConnectionString)
</code></pre>
http://stackoverflow.com/questions/152028/are-there-any-ok-image-recognition-libraries-for-net10Are there any 'ok' Image Recognition libraries for .NET?RodgerB2008-09-30T07:02:49Z2009-07-31T15:55:35Z
<p>I want to be able to compare an image taken from a webcam to an image stored on my computer. </p>
<p>The library doesn't need to be one hundred percent accurate as it won't be used in anything mission critical (e.g. Police investigation), I just want something 'ok' I can work with.</p>
<p>I have tried a demonstration project for <a href="http://www.codeproject.com/KB/cs/BackPropagationNeuralNet.aspx" rel="nofollow">Image Recognition from CodeProject</a>, and it only works with small images / doesn't work at all when I compare an exact same image 120x90 pixels (this is not classified as 'ok' :P ).</p>
<p>Has anybody here had success with image recognition before?</p>
<p>If so, would you be able to provide a link to a library I could use in either C# or VB.NET?</p>
<p>Thanks in advance. :)</p>
http://stackoverflow.com/questions/161975/refactoring-code-when-to-do-what12Refactoring Code: When to do what?RodgerB2008-10-02T12:19:00Z2009-07-22T13:23:57Z
<p>Ever since I started using .NET, I've just been creating Helper classes or Partial classes to keep code located and contained in their own little containers, etc. </p>
<p>What I'm looking to know is the best practices for making ones code as clean and polished as it possibly could be.</p>
<p>Obviously clean code is subjective, but I'm talking about when to use things (not how to use them) such as polymorphism, inheritance, interfaces, classes and how to design classes more appropriately (to make them more useful, not just say 'DatabaseHelper', as some considered this bad practice in the <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">code smells wiki</a>).</p>
<p>Are there any resources out there that could possibly help with this kind of decision making? </p>
<p>Bare in mind that I haven't even started a CS or software engineering course, and that a teaching resource is fairly limited in real-life.</p>
http://stackoverflow.com/questions/346913/readprocessmemory-keeps-returning-00ReadProcessMemory keeps returning 0RodgerB2008-12-06T22:35:26Z2009-07-07T20:55:20Z
<p>I'm currently developing a little hobby project to display health information in a game on my G15 keyboard through VB.NET.</p>
<p>When I use ReadProcessMemory via an API call, it keeps returning zero. The MSDN documentation referred me to use the Marshal.GetLastWin32Error() call to find out what is wrong and it returns 1400: INVALID WINDOW HANDLE.</p>
<p>I am now confused about whether the first argument of the function wants a window handle or a process id. Regardless, I have tried both with FindWindow and hardcoding the process id while the application is running (getting it from task manager).</p>
<p>I have tried three different games, Urban Terror, Grand Theft Auto: SA and 3D pinball for windows, getting the memory addresses from an application called Cheat Engine; they all seem to fail.</p>
<p>Here is the code I'm using to do it:</p>
<p>API Call:</p>
<pre><code>Private Declare Function ReadProcessMemory Lib "kernel32" ( _
ByVal hProcess As Integer, _
ByVal lpBaseAddress As Integer, _
ByRef lpBuffer As Single, _
ByVal nSize As Integer, _
ByRef lpNumberOfBytesWritten As Integer _
) As Integer
</code></pre>
<p>Method:</p>
<pre><code>Dim address As Integer
address = &HA90C62&
Dim valueinmemory As Integer
Dim proc As Process = Process.GetCurrentProcess
For Each proc In Process.GetProcesses
If proc.MainWindowTitle = "3D Pinball for Windows - Space Cadet" Then
If ReadProcessMemory(proc.Handle.ToInt32, address, valueinmemory, 4, 0) = 0 Then
MsgBox("aww")
Else
MsgBox(CStr(valueinmemory))
End If
End If
Next
Dim lastError As Integer
lastError = Marshal.GetLastWin32Error()
MessageBox.Show(CStr(lastError))
</code></pre>
<p>Could somebody please explain to me why it is not working? Thanks in advance.</p>
http://stackoverflow.com/questions/249319/modify-the-behaviour-of-a-notifyicon-with-via-a-3rd-party-application0Modify the behaviour of a NotifyIcon with via a 3rd party applicationRodgerB2008-10-30T05:01:01Z2009-06-17T01:51:43Z
<p>I've always been curious to see if I can show, hide or change a NotifyIcon created by another application via a C# application.</p>
<p>Could someone please post an example on how to do this? :)</p>
http://stackoverflow.com/questions/171246/programming-on-the-asus-eee-pc-in-visual-studio9Programming on the Asus EEE Pc in Visual StudioRodgerB2008-10-05T00:26:55Z2009-04-10T20:21:22Z
<p>Has anybody tried programming on the EEE Pc in Visual Studio?</p>
<p>I'm considering buying one so I can show some apps on the fly, but also make small changes to them if necessary, without the inconvenience of a large laptop.</p>
<p>Some key points I'm after:</p>
<ul>
<li>How fast it is</li>
<li>Would it suit the needs of a developer making small changes to code?</li>
</ul>
<p>It sounds like the specs would get completely owned, but I've heard/seen strangely good things about the EEE Pc, like how it launches Word 2007 super quick on a nLite'd XP install. :)</p>
http://stackoverflow.com/questions/211224/why-youd-recommend-x-library-framework-2Why you'd recommend 'x' library/framework [closed]RodgerB2008-10-17T06:30:16Z2009-01-26T12:10:42Z
<p>In todays developing age, there are a lot of libraries and frameworks to choose from. </p>
<p>Selecting a bad one could set you back a couple of hours, selecting a good one could buy you some time in a project where you have a tight deadline and can't afford to waste time reinventing the wheel.</p>
<p>In a nutshell, describe how 'x' framework or library has bought yourself some time. Please give each framework/library their own individual answer, so we can have an orderly bite-sized wiki.</p>
<p>For each framework, please clearly state:</p>
<ul>
<li>Intended platform</li>
<li>The license</li>
<li>Which language(s) the library/framework supports</li>
<li>Pre-requisite libraries that need to be installed prior (if applicable)</li>
<li>How it saved you time</li>
<li>The pros and cons</li>
</ul>
<p>It would be acceptable to add some constructive comparisons to other similar libraries/frameworks as well, just to know where it stands in the line.</p>
<p>EDIT: Why the downvotes? This is an on-topic, well formed question with intent of possibly making another developer's job easier.</p>
http://stackoverflow.com/questions/396128/get-most-frequently-used-applications-in-vb-net4Get most frequently used applications in VB.NETRodgerB2008-12-28T12:22:29Z2009-01-07T15:13:09Z
<p>Is there a way that I can get the most used applications via VB.NET? I'm developing a sort of hobby project as a quick launcher kind of thing and thought this would sit perfectly on the main form.</p>
<p>If possible, would somebody be able to explain to me how add/remove applications manages to get the frequency of used applications? It would be good if I could get it in a list like the XP/Vista start menu as well.</p>
<p>Any guidance would be greatly appreciated. :)</p>
http://stackoverflow.com/questions/396935/visual-studio-attach-to-process1Visual Studio Attach to ProcessRodgerB2008-12-29T01:13:03Z2008-12-29T23:43:07Z
<p>How is this tool used? Not the debugger, I mean Tools > Attach to Process.</p>
<p>Does this mean I have the ability to dynamically link a DLL into another application or am I thinking far beyond this?</p>
http://stackoverflow.com/questions/346913/readprocessmemory-keeps-returning-0/351269#3512690Answer by RodgerB for ReadProcessMemory keeps returning 0RodgerB2008-12-08T23:02:01Z2008-12-08T23:02:01Z<p>message 299 : Only part of a ReadProcessMemory or WriteProcessMemory request was completed meant the memory I was trying to read was protected.</p>
<p>Thanks for all your help, I'm going to mark arul's answer as the answer.</p>
http://stackoverflow.com/questions/346913/readprocessmemory-keeps-returning-0/346998#3469980Answer by RodgerB for ReadProcessMemory keeps returning 0RodgerB2008-12-06T23:46:28Z2008-12-06T23:46:28Z<p>Thank you arul, I have sort of fixed my problem.</p>
<pre><code>Dim address As Integer
address = &HA90C62&
Dim floatvalueinmemory() As Byte
Dim proc As Process = Process.GetCurrentProcess
For Each proc In Process.GetProcesses
If proc.MainWindowTitle = "3D Pinball for Windows - Space Cadet" Then
Dim winhandle As IntPtr = OpenProcess(PROCESS_ACCESS.PROCESS_VM_READ, True, proc.Id)
If ReadProcessMemory(winhandle, address, floatvalueinmemory, 4, 0) = 0 Then
Dim lastError As Integer
lastError = Marshal.GetLastWin32Error()
MessageBox.Show(CStr(lastError))
MsgBox("aww")
Else
MsgBox("woo")
End If
CloseHandle(winhandle)
End If
Next
</code></pre>
<p>Now it believes the handle is valid and attempts to read the processes memory, but I get the error message 299 : Only part of a ReadProcessMemory or WriteProcessMemory request was completed.</p>
<p>Does anyone have any ideas as to how I should proceed to fix this issue?</p>
http://stackoverflow.com/questions/256544/constantly-repeating-timer-in-an-asp-net-ajax-page0Constantly repeating timer in an asp.net ajax pageRodgerB2008-11-02T05:10:16Z2008-11-02T17:37:26Z
<p>Today I had my first test with the ASP.NET AJAX Timer Control, in hope that it would allow me to constantly keep updating my site.</p>
<p>At the moment, it just updates once; this does not match the behavior of the previous .NET timers.</p>
<p>Was the AJAX Timer control only made to update an item once? Or do I need to use another framework?</p>
http://stackoverflow.com/questions/214988/whats-the-best-strategy-for-team-room-music/214995#21499544Answer by RodgerB for What's the best strategy for team room music?RodgerB2008-10-18T12:50:23Z2008-10-18T12:50:23Z<p>Really, headphones is the only proper solution, and they really aren't such a bad one. With a little bit of cash and know-how you can get yourself some very crisp and clear headphones.</p>
<p>I know myself that I hate listening to other people's music, sometimes I don't feel like listening to music at all, so being an ass and playing any kind of music to a developer that doesn't want it is a huge kick in the balls for productivity imo.</p>
http://stackoverflow.com/questions/211224/why-youd-recommend-x-library-framework/211253#2112530Answer by RodgerB for Why you'd recommend 'x' library/frameworkRodgerB2008-10-17T06:54:34Z2008-10-17T06:54:34Z<h2>AForge.NET</h2>
<blockquote>
<p>AForge.NET is a C# framework designed for developers and researchers in the fields of Computer Vision and Artificial Intelligence - image processing, neural networks, genetic algorithms, machine learning, etc. </p>
</blockquote>
<p>AForge.NET is licensed under the GPLv2 license, and is intended for use on Windows. It works with C#, and doesn't require anything else other than your compiler.</p>
<p>AForge.NET saved me time with it's image simularity option, I was using this to test the simularity of my face and another persons face to see if I could get my computer to recognise me over webcam.</p>
<p>Pros:</p>
<ul>
<li>Great for getting the simularity of two images.</li>
<li>Nicely documented, easy to dive into.</li>
</ul>
<p>Cons:</p>
<ul>
<li>The hand recognition didn't work for me :(.</li>
<li>Might be a bit too resource-intensive for slower computers.</li>
</ul>
<p>I haven't really been able to compare it to any other library, because I haven't seen any that does it any better really.</p>
http://stackoverflow.com/questions/208791/what-is-your-most-wanted-non-existent-or-underdeveloped-open-source-project/208956#2089569Answer by RodgerB for What is your most wanted non-existent or underdeveloped open source project?RodgerB2008-10-16T15:09:23Z2008-10-16T15:09:23Z<p>A <strong>good</strong> open-source touch typing game.</p>
http://stackoverflow.com/questions/208871/how-much-time-and-effort-do-you-spend-on-ie6/208918#2089181Answer by RodgerB for How much time and effort do you spend on IE6?RodgerB2008-10-16T15:02:07Z2008-10-16T15:02:07Z<p>Depends on the project. If I write the code conforming to web standards usually I don't have many issues.</p>
<p>If I'm using a template downloaded from the web, it often spells out very clear in bold letters: "<strong>manifest destiny is a bitch. don't trade blankets with anyone.</strong>"</p>
http://stackoverflow.com/questions/208807/how-can-a-beginner-escape-tutorial-land-and-actually-get-programming/208859#2088591Answer by RodgerB for How can a Beginner escape tutorial-land and actually get programming?RodgerB2008-10-16T14:48:30Z2008-10-16T14:48:30Z<p>Tutorial land is fun, really, it's a great place to be.</p>
<p>Write your own snippets, tutorials or just try and answer a few questions here at stackoverflow. A good site I would recommend for people wanting to start making tutorials for other beginners is <a href="http://www.dreamincode.net" rel="nofollow">dream.in.code</a> . The moderators there are kind and active and this very site is how I became a lot better, simply because of code review.</p>
<p>I believe the <em>meat</em> you are looking for really is snippets.</p>
http://stackoverflow.com/questions/208133/set-locale-of-a-sql-server-20051Set Locale of a SQL Server 2005RodgerB2008-10-16T11:10:19Z2008-10-16T11:35:39Z
<p>By default the SQL Server comes with the Langauge set to "English (United States)", setting the date format to mm/dd/yy instead of the date format I want it in, which is Australian and has a date format such as dd/mm/yy.</p>
<p>Is there an option in the Server Management Studio / Configuration tools where I can set the locale of the SQL Server, which will prevent the DateTime fields from being formatted in US date format?</p>
<p>If not, how can I convert it when I am using a SQL query such as (forgive me if there is incorrect syntax, I made it up on the spot):</p>
<pre><code>Dim dc As New SqlCommand("INSERT INTO hello VALUES (@Date)", cn)
dc.Parameters.Add(New SqlParameter("Date", System.DateTime.Now))
</code></pre>
<p>Many thanks in advance. :)</p>
http://stackoverflow.com/questions/206440/best-way-to-check-when-a-specified-date-occurs1Best way to check when a specified date occursRodgerB2008-10-15T20:54:38Z2008-10-15T21:37:54Z
<p>Are there any classes in the .NET framework I can use to throw an event if time has caught up with a specified DateTime object?</p>
<p>If there isn't, what are the best practices when checking this? Create a new thread constantly checking? A timer (heaven forbid ;) )?</p>
http://stackoverflow.com/questions/171246/programming-on-the-asus-eee-pc-in-visual-studio/171273#1712730Answer by RodgerB for Programming on the Asus EEE Pc in Visual StudioRodgerB2008-10-05T00:46:29Z2008-10-05T00:46:29Z<p><a href="http://www.hardforum.com/showthread.php?t=1303682" rel="nofollow">http://www.hardforum.com/showthread.php?t=1303682</a></p>
<p>It seems that other people have tried it, all have complained about the screen resolution, but surprisingly not the CPU. Needless to say, I didn't want to have all the panels open / want to use it primarily for a development machine, I just wanted the option to do so if possible.</p>
<p>I'm looking at a 700 series, if it works it's a bonus, if it doesn't, I'll just have to look into using SharpDevelop maybe (I'm a student without much money, so it really needs to be budget.</p>
http://stackoverflow.com/questions/71199/what-makes-you-lose-motivation/171227#1712270Answer by RodgerB for What makes you lose motivation?RodgerB2008-10-05T00:14:07Z2008-10-05T00:14:07Z<p>Losing Basketball. I get all angry and start raging at stuff for no good reason.</p>
http://stackoverflow.com/questions/170186/set-a-database-value-to-null-with-a-sqlcommand-parameters1Set a database value to null with a SqlCommand + parametersRodgerB2008-10-04T11:44:39Z2008-10-04T16:56:41Z
<p>I was previously taught today how to set parameters in a SQL query in .NET in this answer (<a href="http://stackoverflow.com/questions/169359/improving-code-readability-for-sql-commands#169369">click</a>).</p>
<p>Using parameters with values are fine, but when I try to set a field in the database to null I'm unsuccessful. Either the method thinks I am not setting a valid parameter or not specifying a parameter.</p>
<p>e.g.</p>
<pre><code>Dim dc As New SqlCommand("UPDATE Activities SET [Limit] = @Limit WHERE [Activity] = @Activity", cn)
If actLimit.ToLower() = "unlimited" Then
' It's not nulling :(
dc.Parameters.Add(New SqlParameter("Limit", Nothing))
Else
dc.Parameters.Add(New SqlParameter("Limit", ProtectAgainstXSS(actLimit)))
End If
</code></pre>
<p>Is there something I'm missing? Am I doing it wrong?</p>
http://stackoverflow.com/questions/169359/improving-code-readability-for-sql-commands9Improving code readability for SQL commandsRodgerB2008-10-03T23:52:41Z2008-10-04T01:16:55Z
<p>In one of my classes for a web application I am developing, I have some reasonably long SQL queries.</p>
<p>When developing a three-tier application, what are the best practices to make this kind of code neater?</p>
<pre><code>Dim dc As New SqlCommand("INSERT INTO Choices VALUES ('" + _
SanitizeInput(strUser) + "', '" + _
SanitizeInput(strFirstHalfDay) + "', '" + _
SanitizeInput(strSecondHalfDay) + "', '" + _
SanitizeInput(strFullDay) + "', " + _
SanitizeInput(Convert.ToInt32(firstHalfPaid).ToString()) + ", " + _
SanitizeInput(Convert.ToInt32(secondHalfPaid).ToString()) + ", " + _
SanitizeInput(Convert.ToInt32(fullPaid).ToString()) + ")", cn)
</code></pre>
<p>Do you consider this kind of code to be acceptable or stinky?</p>
http://stackoverflow.com/questions/169275/resharper-unstable-for-anybody-else/169335#1693350Answer by RodgerB for ReSharper-- Unstable for anybody else?RodgerB2008-10-03T23:41:29Z2008-10-03T23:41:29Z<p>The only thing I've found remotely sluggish about it is right-clicking anything. </p>
<p>The context menu strip takes ages to load, but the time i lose right-clicking anything is far less compared to the time it saves me refactoring.</p>
http://stackoverflow.com/questions/169310/is-using-resharper-a-time-saver/169322#1693223Answer by RodgerB for Is using resharper a time saver?RodgerB2008-10-03T23:32:58Z2008-10-03T23:32:58Z<p>It saves me a lot of time when I can just use the <em>Find Usages...</em> option, when I am merging methods into classes to improve the encapsulation.</p>
<p>I also like how I can make TODO comments in my code and easily find them on the scrollbar, and I like knowing I can safely remove namespace declarations when they are not needed.</p>
<p>I also use the namespace declaration not needed thing to know if I have separated the UI from the code good enough. If I'm importing System.Data for something in the code-behind, really it probably deserves it's own class.</p>
http://stackoverflow.com/questions/169276/is-the-region-directive-really-useful-in-net/169307#1693072Answer by RodgerB for Is the #region directive really useful in .NET?RodgerB2008-10-03T23:27:46Z2008-10-03T23:27:46Z<p>Going on with what has been previously said by Russell Myers, if you learn how to refactor your code properly (a skill proficient developers must learn), there really isn't too much of a need for regions.</p>
<p>A couple of weeks ago I thought regions were great because they allowed me to hide my fat code, but after exercising my code skills I was able to make it slimmer and now I fit into a size 7 class (someone should SO make that a measurement for refactoring in the future! :P)</p>
http://stackoverflow.com/questions/169193/scroll-of-a-texbox-always-on-bottom/169264#1692640Answer by RodgerB for Scroll of a texbox always on bottomRodgerB2008-10-03T23:13:16Z2008-10-03T23:13:16Z<p>Interesting question. I'm guessing that you are trying to select the text via form load? I can't get it working on form load, but I can on form click. Wierd. :)</p>
<pre><code>Public Class Form1
Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click
ScrollTextbox()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ScrollTextbox()
End Sub
Private Sub ScrollTextbox()
TextBox1.SelectionStart = TextBox1.TextLength
TextBox1.ScrollToCaret()
End Sub
End Class
</code></pre>
<p>If it is completely necessary, you could use a timer.</p>
http://stackoverflow.com/questions/148068/is-encrypting-ajax-calls-for-authentication-possible-with-jquery6Is encrypting AJAX calls for authentication possible with jQuery?RodgerB2008-09-29T09:20:39Z2008-10-03T22:49:02Z
<p>I'm fairly new to the AJAX methodologies (I only recently discovered jQuery a short time ago). I am interested to know if there is anyway to authenticate a user on a PHP setup; securely.</p>
<p>Does jQuery have any special options to allow use of HTTPS (or any other way to encrypt my ajax call)?</p>
<p>Yes, I could very well just post data back to the server, but that ruins the fun. Thanks in advance. :)</p>
http://stackoverflow.com/questions/396935/visual-studio-attach-to-process/396941#396941Comment by RodgerB on Visual Studio Attach to ProcessRodgerB2008-12-29T01:19:09Z2008-12-29T01:19:09ZOk thanks. That's just silly though! :(http://stackoverflow.com/questions/346913/readprocessmemory-keeps-returning-0/346935#346935Comment by RodgerB on ReadProcessMemory keeps returning 0RodgerB2008-12-06T22:53:11Z2008-12-06T22:53:11ZI will try this, thanks.http://stackoverflow.com/questions/214988/whats-the-best-strategy-for-team-room-music/220627#220627Comment by RodgerB on What's the best strategy for team room music?RodgerB2008-10-31T21:56:00Z2008-10-31T21:56:00ZCompletely agree.http://stackoverflow.com/questions/249319/modify-the-behaviour-of-a-notifyicon-with-via-a-3rd-party-application/249398#249398Comment by RodgerB on Modify the behaviour of a NotifyIcon with via a 3rd party applicationRodgerB2008-10-31T20:49:04Z2008-10-31T20:49:04ZThanks. Every time I have tried this method using NIM_DELETE I have failed miserably, but your brute force idea has invoked thinking...http://stackoverflow.com/questions/214988/whats-the-best-strategy-for-team-room-music/214995#214995Comment by RodgerB on What's the best strategy for team room music?RodgerB2008-10-26T20:44:47Z2008-10-26T20:44:47ZHow can you work when your locked in your own room with distraction? Some people develop better under the influence of music, this is what this question is about isn't it?http://stackoverflow.com/questions/687/keyboard-for-programmers/4603#4603Comment by RodgerB on Keyboard for programmersRodgerB2008-10-19T20:41:05Z2008-10-19T20:41:05ZDid you need to get a converter?http://stackoverflow.com/questions/687/keyboard-for-programmers/28355#28355Comment by RodgerB on Keyboard for programmersRodgerB2008-10-17T04:49:34Z2008-10-17T04:49:34ZThat will keep the nuff nuffs off your computer!http://stackoverflow.com/questions/687/keyboard-for-programmers/3959#3959Comment by RodgerB on Keyboard for programmersRodgerB2008-10-17T04:47:32Z2008-10-17T04:47:32ZMy brother has one of these, I tried it for a while... not really so impressive to me. I would rather not type on a keyboard with less throw then a regular keyboard all day.http://stackoverflow.com/questions/687/keyboard-for-programmers/4603#4603Comment by RodgerB on Keyboard for programmersRodgerB2008-10-17T04:44:06Z2008-10-17T04:44:06ZOn my first personal computer I picked up a $3 Ipex keyboard (Aussie brand), and it was love. The keyboard was chunky as hell, but it sort of curved inward such as the one displayed in the post. Now, it isn't very good to program with because no new computers support the old style keyboard port. :(http://stackoverflow.com/questions/206440/best-way-to-check-when-a-specified-date-occurs/206601#206601Comment by RodgerB on Best way to check when a specified date occursRodgerB2008-10-16T09:27:52Z2008-10-16T09:27:52ZThanks for the answer. I was hoping there would be some sort of amazing event I had never heard of, and I'm always open to better and cleaner ways of doing things rather then performing a heap of conditional statements in timer. :)http://stackoverflow.com/questions/200080/suggestions-for-a-web-application-for-a-group-project/200111#200111Comment by RodgerB on Suggestions for a Web application for a group project.RodgerB2008-10-14T06:13:17Z2008-10-14T06:13:17ZI like this idea. Nearly every good one requires money, most of the open-source project management systems are lacking many nice-to-have features and Google Code etc all requires you to be developing an open-source project.http://stackoverflow.com/questions/170186/set-a-database-value-to-null-with-a-sqlcommand-parameters/170205#170205Comment by RodgerB on Set a database value to null with a SqlCommand + parametersRodgerB2008-10-04T12:03:29Z2008-10-04T12:03:29ZThanks, works perfectly. :)http://stackoverflow.com/questions/169359/improving-code-readability-for-sql-commands/169371#169371Comment by RodgerB on Improving code readability for SQL commandsRodgerB2008-10-04T00:15:32Z2008-10-04T00:15:32ZWell basically, I just used the String.Replace("'", "") method to make sure the attacker couldn't break the string. Then I just used the HttpUtility.HtmlEncode function to protect against XSS. The inputs are well validated against to ensure the string was being supplied with correct input.http://stackoverflow.com/questions/169359/improving-code-readability-for-sql-commands/169369#169369Comment by RodgerB on Improving code readability for SQL commandsRodgerB2008-10-04T00:06:45Z2008-10-04T00:06:45ZThanks again. I have a lot of work to do :(. ;)http://stackoverflow.com/questions/169359/improving-code-readability-for-sql-commands/169369#169369Comment by RodgerB on Improving code readability for SQL commandsRodgerB2008-10-04T00:03:00Z2008-10-04T00:03:00ZThanks a lot. Will this prevent SQL Injection and XSS?