User Rob - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:38:43Z http://stackoverflow.com/feeds/user/12413 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1756880/best-open-sourced-net-based-e-commerce-store-solution-for-selling-jewelry 1 Best Open-Sourced .Net based E-Commerce store solution for selling Jewelry? Rob 2009-11-18T15:42:07Z 2009-11-18T16:38:07Z <p>I'm currently designing a shopping cart based jewelry site.<br> I've tried the latest version of dashcommerce but it's very buggy and I keep not being able to get it to work quite right.<br> I've also seen Nopcommerce but haven't tried it out yet and I'd like a few other options before I decide on my next solution. </p> <p>I'd love a .net based e-commerce site that makes skinning easy. An active community would be great, and I'm looking for free because as of right now I don't know how much product will be purchased through the store and I don't want to pay a monthly fee which may cost me more than I make from the online sales.</p> <p><a href="http://stackoverflow.com/questions/52248/whats-a-good-free-and-open-source-asp-net-ecommerce-solution">What's a good free and open-source ASP.net ecommerce solution</a> doesn't give as many options as I would have hoped but I did learn about Nopcommerce.</p> http://stackoverflow.com/questions/1487257/online-or-free-learning-resources-for-silverlight-styling/1487303#1487303 2 Answer by Rob for Online or free learning resources for Silverlight Styling Rob 2009-09-28T14:20:13Z 2009-09-28T14:20:13Z <p>What I've been using are the silverlight.net videos and then the MSDN site for properties of different controls. Watch the themeing videos on Silverlight.net for sure though. They're really useful.</p> <p>One thing to watch out for... if the control is not a part of the standard set of controls (IE they're still not built directly in like the datagird control) when you go to theme them, you will not have any pre-determined values in the "edit current template" option. You have to go and find an example of their default theme, copy in and then mess with that.</p> http://stackoverflow.com/questions/1486997/combining-outer-join-and-where/1487052#1487052 0 Answer by Rob for Combining OUTER JOIN and WHERE Rob 2009-09-28T13:31:24Z 2009-09-28T13:31:24Z <p>The issue is that the way you're joining (most of everything is joining to your left outer-joined table) whenever you're joining off of that, if the value in the outer joined table is nothing, there is nothing for the other fields to join to. Try to re-adjust your query so everything is joining off of your employeeID. I normally use left joined tables after I've limited everything down as much as possible with inner joins.</p> <p>So my query would be something like:</p> <p>SELECT TA.id, TEI.displayname, TA.threatment_id, TTS.appointment_date FROM tblemployee AS TE INNER Join tblemployeeinfo AS TEI ON TEI.employeeinfoid = TE.employeeinfoid Inner Join tblthreatment AS T ON TA.threatment_id = T.threatmentid Inner Join tblappointments AS TTS ON TTS.id = TA.appointments_id AND TTS.appointment_date = '2009-09-28' Inner Join tblcustomercard AS TCC ON TCC.customercardid = TTS.customercard_id LEFT OUTER Join tblappointment AS TA ON TE.employeeid = TA.employee_id WHERE TE.employeeid = 4</p> <p>where the last outer join just gives me one column worth of information, not using it all to join more things onto. For speed, you also want to try to limit your information down as fast as possible with your first few inner joins, and then you do the outer joins last to join possible null values on to the smallest dataset you can. I hope this helps, if it's confusing, I'm sorry... I haven't had my caffeine yet.</p> http://stackoverflow.com/questions/74461/silverlight-datagrid-control-selection-changed-event-interfering-with-sorting 1 Silverlight- DataGrid control - Selection Changed event interfering with sorting Rob 2008-09-16T16:52:20Z 2009-02-26T19:28:46Z <p>I'm currently playing with the Silverlight(Beta 2) Datagrid control. Before I wired up the SelectionChanged event, the grid would sort perfectly by clicking on the header. Now, when the grid is clicked, it will fire the SelectionChanged event when I click the header to sort. Is there any way around this?</p> <p>In a semi-related topic, I'd like to have the SelectionChanged event fire when I click on an already selected item (so that I can have a pop-up occur to allow the user to edit the selected value). Right now, you have to click on a different value and then back to the value you wanted in order for it to pop up. Is there another way? </p> <p>Included is my code. </p> <p>The Page:</p> <pre><code>&lt;UserControl x:Class="WebServicesApp.Page" xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data" Width="1280" Height="1024" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"&gt; &lt;Grid x:Name="LayoutRoot" Background="White"&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;/Grid.RowDefinitions&gt; &lt;StackPanel Grid.Row="0" x:Name="OurStack" Orientation="Vertical" Margin="5,5,5,5"&gt; &lt;ContentControl VerticalAlignment="Center" HorizontalAlignment="Center"&gt; &lt;StackPanel x:Name="SearchStackPanel" Orientation="Horizontal" Margin="5,5,5,5"&gt; &lt;TextBlock x:Name="SearchEmail" HorizontalAlignment="Stretch" VerticalAlignment="Center" Text="Email Address:" Margin="5,5,5,5" /&gt; &lt;TextBox x:Name="InputText" HorizontalAlignment="Stretch" VerticalAlignment="Center" Width="150" Height="Auto" Margin="5,5,5,5"/&gt; &lt;Button x:Name="SearchButton" Content="Search" Click="CallServiceButton_Click" HorizontalAlignment="Center" VerticalAlignment="Center" Width="75" Height="Auto" Background="#FFAFAFAF" Margin="5,5,5,5"/&gt; &lt;/StackPanel&gt; &lt;/ContentControl&gt; &lt;Grid x:Name="DisplayRoot" Background="White" ShowGridLines="True" HorizontalAlignment="Center" VerticalAlignment="Center" MaxHeight="300" MinHeight="100" MaxWidth="800" MinWidth="200" ScrollViewer.HorizontalScrollBarVisibility="Visible" ScrollViewer.VerticalScrollBarVisibility="Visible"&gt; &lt;data:DataGrid ItemsSource="{Binding ''}" CanUserReorderColumns="False" CanUserResizeColumns="False" AutoGenerateColumns="False" AlternatingRowBackground="#FFAFAFAF" SelectionMode="Single" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="5,5,5,5" x:Name="IncidentGrid" SelectionChanged="IncidentGrid_SelectionChanged"&gt; &lt;data:DataGrid.Columns&gt; &lt;data:DataGridTextColumn DisplayMemberBinding="{Binding Address}" Header="Email Address" IsReadOnly="True" /&gt; &lt;!--Width="150"--&gt; &lt;data:DataGridTextColumn DisplayMemberBinding="{Binding whereClause}" Header="Where Clause" IsReadOnly="True" /&gt; &lt;!--Width="500"--&gt; &lt;data:DataGridTextColumn DisplayMemberBinding="{Binding Enabled}" Header="Enabled" IsReadOnly="True" /&gt; &lt;/data:DataGrid.Columns&gt; &lt;/data:DataGrid&gt; &lt;/Grid&gt; &lt;/StackPanel&gt; &lt;Grid x:Name="EditPersonPopupGrid" Visibility="Collapsed"&gt; &lt;Rectangle HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Opacity="0.765" Fill="#FF8A8A8A" /&gt; &lt;Border CornerRadius="30" Background="#FF2D1DCC" Width="700" Height="400" HorizontalAlignment="Center" VerticalAlignment="Center" BorderThickness="1,1,1,1" BorderBrush="#FF000000"&gt; &lt;StackPanel x:Name="EditPersonStackPanel" Orientation="Vertical" Background="White" HorizontalAlignment="Center" VerticalAlignment="Center" Width="650" &gt; &lt;ContentControl&gt; &lt;StackPanel x:Name="EmailEditStackPanel" Orientation="Horizontal"&gt; &lt;TextBlock Text="Email Address:" Width="200" Margin="5,0,5,0" /&gt; &lt;TextBox x:Name="EmailPopupTextBox" Width="200" /&gt; &lt;/StackPanel&gt; &lt;/ContentControl&gt; &lt;ContentControl&gt; &lt;StackPanel x:Name="AppliesToDropdownStackPanel" Orientation="Horizontal" Margin="2,2,2,0"&gt; &lt;TextBlock Text="Don't send when update was done by:" /&gt; &lt;StackPanel Orientation="Vertical" MaxHeight="275" MaxWidth="350" &gt; &lt;TextBlock x:Name="SelectedItemTextBlock" TextAlignment="Right" Width="200" Margin="5,0,5,0" /&gt; &lt;Grid x:Name="UserDropDownGrid" MaxHeight="75" MaxWidth="200" Visibility="Collapsed" ScrollViewer.VerticalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Hidden" &gt; &lt;Rectangle Fill="White" /&gt; &lt;Border Background="White"&gt; &lt;ListBox x:Name="UsersListBox" SelectionChanged="UsersListBox_SelectionChanged" ItemsSource="{Binding UserID}" /&gt; &lt;/Border&gt; &lt;/Grid&gt; &lt;/StackPanel&gt; &lt;Button x:Name="DropDownButton" Click="DropDownButton_Click" VerticalAlignment="Top" Width="25" Height="25"&gt; &lt;Path Height="10" Width="10" Fill="#FF000000" Stretch="Fill" Stroke="#FF000000" Data="M514.66669,354 L542.16669,354 L527.74988,368.41684 z" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="1,1,1,1"/&gt; &lt;/Button&gt; &lt;/StackPanel&gt; &lt;/ContentControl&gt; &lt;TextBlock Text="Where Clause Condition:" /&gt; &lt;TextBox x:Name="WhereClauseTextBox" Height="200" Width="800" AcceptsReturn="True" TextWrapping="Wrap" /&gt; &lt;ContentControl&gt; &lt;StackPanel Orientation="Vertical"&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Button x:Name="TestConditionButton" Content="Test Condition" Margin="5,5,5,5" Click="TestConditionButton_Click" /&gt; &lt;Button x:Name="Save" Content="Save" HorizontalAlignment="Right" Margin="5,5,5,5" Click="Save_Click" /&gt; &lt;Button x:Name="Cancel" Content="Cancel" HorizontalAlignment="Right" Margin="5,5,5,5" Click="Cancel_Click" /&gt; &lt;/StackPanel&gt; &lt;TextBlock x:Name="TestContitionResults" Visibility="Collapsed" /&gt; &lt;/StackPanel&gt; &lt;/ContentControl&gt; &lt;/StackPanel&gt; &lt;/Border&gt; &lt;/Grid&gt; &lt;/Grid&gt; </code></pre> <p></p> <p>And the call that occurs when the grid's selection is changed:</p> <pre><code>Private Sub IncidentGrid_SelectionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) If mFirstTime Then mFirstTime = False Else Dim data As SimpleASMX.EMailMonitor = CType(IncidentGrid.SelectedItem, SimpleASMX.EMailMonitor) Dim selectedGridItem As SimpleASMX.EMailMonitor = Nothing If IncidentGrid.SelectedItem IsNot Nothing Then selectedGridItem = CType(IncidentGrid.SelectedItem, SimpleASMX.EMailMonitor) EmailPopupTextBox.Text = selectedGridItem.Address SelectedItemTextBlock.Text = selectedGridItem.AppliesToUserID WhereClauseTextBox.Text = selectedGridItem.whereClause IncidentGrid.SelectedIndex = mEmailMonitorData.IndexOf(selectedGridItem) End If If IncidentGrid.SelectedIndex &gt; -1 Then EditPersonPopupGrid.Visibility = Windows.Visibility.Visible Else EditPersonPopupGrid.Visibility = Windows.Visibility.Collapsed End If End If End Sub </code></pre> <p>Sorry if my code is atrocious, I'm still learning Silverlight.</p> http://stackoverflow.com/questions/406885/knowing-or-not-knowing-the-salary-of-your-co-worker/407132#407132 1 Answer by Rob for Knowing or not knowing the salary of your co-worker? Rob 2009-01-02T15:35:40Z 2009-01-02T15:35:40Z <p>I know about how much my coworkers make and it makes me want to strive to become better at my job to earn as much as they do.</p> http://stackoverflow.com/questions/373438/how-hard-is-it-to-stop-programming-after-you-get-off-work/403375#403375 0 Answer by Rob for how hard is it to stop programming after you get off work? Rob 2008-12-31T16:27:11Z 2008-12-31T16:27:11Z <p>Depends on the project. I have a side project I'm working on that I just can't seem to get motivated enough to work on. I should have had it near done by now.</p> <p>If it's something I'm excited about, I'll sometimes forget to leave work until about an hour or two after I should have.</p> http://stackoverflow.com/questions/95836/what-was-the-most-refreshing-idea-which-benefitted-you-in-your-programming-career/403367#403367 1 Answer by Rob for What was the most refreshing idea which benefitted you in your programming career? Rob 2008-12-31T16:23:57Z 2008-12-31T16:23:57Z <p>An eyeopener for me was when a coworker reduced a work of mine that was several hundred lines long into something that was only about 100. I learned that I needed to remember KISS and that if it's getting too convoluted, there is most likely a better way.</p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/403359#403359 1 Answer by Rob for What is the one programming skill you have always wanted to master but haven't had time? Rob 2008-12-31T16:21:17Z 2008-12-31T16:21:17Z <p>Learn PHP and python.</p> http://stackoverflow.com/questions/403084/optimal-off-the-shelf-development-machine/403340#403340 0 Answer by Rob for Optimal OFF THE SHELF development machine Rob 2008-12-31T16:16:06Z 2008-12-31T16:16:06Z <p>I've heard good things about Lenovo, but most of the places I've worked with went with Dell. </p> <p>Look at Sager and Falcon Northwest for high end laptops, but depending on what you're developing, I'd look for something like this:</p> <p>For a laptop, I'd go with slightly more portable over power so that I could program on the go. I'd go for maybe a 15.4" laptop that can do as high resolution as possible, if you're going to be using Vista, at least 4gb of ram, and then as big of a hard drive as I could use. Get the beefiest processor you can afford and have fun.</p> <p>For a desktop, I'd go for one of the new Core i7 chips from Intel and pair it up with some high end memory and tons of high speed hard drives for space. Most likely either in raid 1 (for redundancy) or raid 5 (speed + redundancy). </p> <p>With your budget, you can get 2 top end gaming systems for that cost.</p> http://stackoverflow.com/questions/403291/find-missing-values/403319#403319 1 Answer by Rob for Find missing values Rob 2008-12-31T16:07:28Z 2008-12-31T16:07:28Z <p>Unless you have a specific number layout already defined (it looks like you are), have a table with all of the possibilities (not very time efficient though) and you can do something like this:</p> <p>Get one table with all the possiblities of name PossibleEntries and then do this:</p> <p>SELECT pe.WebID from PossibleEntries pe WHERE pe.WebID Not In (Select WebID from SampleData)</p> <p>I think that should work, but I don't know how efficient it is. I agree with above. If the numbers aren't sequential, you won't be able to do this.</p> http://stackoverflow.com/questions/87587/silverlight-datagrid-control-how-do-i-stop-the-sorting-on-a-column 3 Silverlight Datagrid Control - How do I stop the sorting on a column? Rob 2008-09-17T20:56:37Z 2008-10-16T21:26:35Z <p>Continuing my problem from yesterday, the Silverlight datagrid I have from this <a href="http://stackoverflow.com/questions/74461/silverlight-datagrid-control-selection-changed-event-interfering-with-sorting">issue</a> is now causing Stack Overflow errors when sorting a column with a large amount of data (Like the text column that contains a where clause for a SQL statment). When you sort, it'll fire the SelectedIndexChanged event for the datagrid and then still try to stort. If you click the header again the stack overflow occours. </p> <p>Does anyone have an idea on how to stop the sorting on this control for a column? All the other columns sort fine (but still fire that darn SelectedIndexChanged event), but if I could shut off the column for whereClause it'd be perfect.</p> <p>Does anyone have a better idea at how to get this to work?</p> http://stackoverflow.com/questions/139097/how-do-you-waste-work-time-ie-procrastinate/139361#139361 0 Answer by Rob for How do you waste work time ie procrastinate? Rob 2008-09-26T13:03:25Z 2008-09-26T13:03:25Z <p>Stackoverflow, engadget, slashdot, coding horror, livejournal, facebook, repeat.</p> http://stackoverflow.com/questions/132798/what-should-every-programmer-know/133307#133307 3 Answer by Rob for What should every programmer know? Rob 2008-09-25T13:26:15Z 2008-09-25T13:26:15Z <p>Your code will inevitably have some little thing you never thought of go wrong. Don't worry, it's ok, just fix it and learn from the experience.</p> http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/129959#129959 9 Answer by Rob for When did you know it was time to leave your job? Rob 2008-09-24T21:02:16Z 2008-09-24T21:02:16Z <p>A few reasons:</p> <ul> <li>I had to drink a beer at lunch each day just to make it through the day.</li> <li>I had a headache each day when coming into and leaving work.</li> <li>I started going gray at 25... seriously.</li> <li>I had an electrical engineer that was my manager that didn't understand why coding took such a long time.</li> <li>Had daily 8 hour meetings to discuss processes that were then ignored by the other developers the next day.</li> <li>Had 6 developers in my group that each had their own way of doing things, and would not explain or entertain that things could be done better differently.</li> <li>My pre-ee boss got fired for telling us all to F* off in a meeting with other managers.</li> <li>I was hired in February and didn't start coding on a project until the end of May(all the days in between were full of me doing documentation on a project I didn't understand and 8 hour meetings during the day about processes, which I addressed above)</li> </ul> <p>Man what a nightmare.</p> <p>It was the best idea for me to leave as now I'm in a wonderful company that takes time to explain what they're doing and why, they take new ideas under consideration and encourage us to all learn new technologies and try to apply them to our current jobs. I've stopped going gray and now I don't need to drink during lunch to make it through the day. I also work with some truly amazing people and I wouldn't leave it for the world.</p> http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/129908#129908 3 Answer by Rob for Hidden Features of Visual Studio (2005-2008)? Rob 2008-09-24T20:54:13Z 2008-09-24T20:54:13Z <p>CTRL + Shift + U -> Uppercase highlighted section. CTRL + U -> Lowercase the highlighted section Great for getting my SQL Statements looking just right when putting them into string queries.</p> <p>Also useful for code you've found online where EVERYTHING IS IN CAPS.</p> http://stackoverflow.com/questions/128529/ideas-for-a-scary-programming-halloween-costume/129874#129874 8 Answer by Rob for Ideas for a scary programming Halloween costume? Rob 2008-09-24T20:48:16Z 2008-09-24T20:48:16Z <p>Microsoft Bob?</p> http://stackoverflow.com/questions/114521/hide-asp-net-gridview-row/115097#115097 0 Answer by Rob for Hide asp.net Gridview row Rob 2008-09-22T14:20:05Z 2008-09-22T14:39:34Z <p>I did this on a previous job, but since you can add rows, I always had it visible in the footer row. To make it so that the grid shows up, I bound an empty row of the type that is normally bound </p> <pre><code>dim row as Datarow = table.NewRow() table.AddRow(row) gridView.DataSource = table gridView.Databind() </code></pre> <p>then it has all the columns and then you need. You can access the footer by pulling this:</p> <pre><code>'this will get the footer no matter how many rows there are in the grid. Dim footer as Control = gridView.Controls(0).Controls(gridView.Controls(0).Controls.Count -1) </code></pre> <p>then to access any of the controls in the footer you would go and do a:</p> <pre><code>Dim cntl as Control = footer.FindControl(&lt;Insert Control Name Here&gt;) </code></pre> <p>I'd assume you'd be able to do a:</p> <pre><code>footer.Visible = false </code></pre> <p>to make the footer row invisible.</p> <p>I hope this helps!</p> <p><em>Edit</em> I just figured out what you said. I basically delete the row when I add a new one, but to do this you need to check to see if there are any other rows, and if there are, check to see if there are values in it. </p> <p>To delete the dummy row do something like this: </p> <pre><code>If mTable.Rows.Count = 1 AndAlso mTable.Rows(0)(&lt;first column to check for null value&gt;) Is DBNull.Value AndAlso mTable.Rows(0)(&lt;second column&gt;) Is DBNull.Value AndAlso mTable.Rows(0)(&lt;thrid column&gt;) Is DBNull.Value Then mTable.Rows.Remove(mTable.Rows(0)) End If mTable.Rows.Add(row) gridView.Datasource = mTable gridView.Databind() </code></pre> http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/94180#94180 1 Answer by Rob for How do I reward my developers for the little things they get right? Rob 2008-09-18T16:30:14Z 2008-09-18T16:30:14Z <p>Let them know that their work is appreciated through verbal queues, take a successful team out for a dinner every now and then or after a big product release as a thank you and to even inspire team building.</p> <p>Really though, most of the times I just enjoy being told "Thanks" it makes me feel like all the time I was working wasn't just for my paycheck, but it made a difference.</p> <p>Money is good too, but I agree with some people above where it ends up like you're training a dog and the programmer will realize it.</p> http://stackoverflow.com/questions/87587/silverlight-datagrid-control-how-do-i-stop-the-sorting-on-a-column/92430#92430 0 Answer by Rob for Silverlight Datagrid Control - How do I stop the sorting on a column? Rob 2008-09-18T13:16:13Z 2008-09-18T13:16:13Z <p>@<a href="#88253" rel="nofollow">BKimmel </a>- It won't work since this is in silverlight and apparently that part of the grid column has not yet been worked on. In the XAML of the page it doesn't show up with the attribute for sortmode on the columns, and in the backend code, it doesn't recognize it as it isn't a web control, it's a silverlight control.</p> <p>Thanks though. Anyone else?</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/87015#87015 0 Answer by Rob for What is the single most effective thing you did to improve your programming skills? Rob 2008-09-17T20:01:15Z 2008-09-17T20:01:15Z <p>Jump into something I don't know, try to code. If I don't know how to do something, look it up, then ask questions of others. Looking to coworkers for pair programming or asking why certain things are coded the way they are helps you out by finding the history and trying to think of how to rework the way their code works.</p> <p>All in all, experiment and don't be afraid to make a mistake... especially in a test environment. It's there for you to wipe out every now and then</p> http://stackoverflow.com/questions/86793/how-to-avoid-thousands-of-needless-listview-selectedindexchanged-events/86893#86893 1 Answer by Rob for How to avoid thousands of needless ListView.SelectedIndexChanged events? Rob 2008-09-17T19:47:53Z 2008-09-17T19:47:53Z <p>I would either try tying the postback to a button to allow the user to submit their changes and unhook the event handler.</p> http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics/86799#86799 0 Answer by Rob for What should be included in a programmer's code of ethics? Rob 2008-09-17T19:38:58Z 2008-09-17T19:38:58Z <p>Don't be cryptic in coding. Either use a clear variable or function name to explain what is going on or comment to allow people after you (or even yourself) to figure out what you were doing when you were trying to be clever.</p> http://stackoverflow.com/questions/83886/how-do-you-get-yourself-to-focus/83923#83923 0 Answer by Rob for How do you get yourself to focus? Rob 2008-09-17T14:38:05Z 2008-09-17T14:38:05Z <p>Headphones with good music, and sometimes the best way is to close all other websites (Like Slashdot, Endgadget and yes... Stack Overflow) in order to get things done.</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/83731#83731 2 Answer by Rob for What's Your Motto As A Developer/Programmer? Rob 2008-09-17T14:19:40Z 2008-09-17T14:19:40Z <p>There has to be a better way to do this...</p> <p>Most normally followed by... No whammies... no whammies... no whammies... COMPILED!</p> http://stackoverflow.com/questions/83475/deleting-rows-from-a-sql-table-marked-for-replication/83586#83586 2 Answer by Rob for Deleting Rows from a SQL Table marked for Replication Rob 2008-09-17T14:03:51Z 2008-09-17T14:03:51Z <p>You may have to truncate the table and reset the ID field back to 0 if you need the inserted rows to have the same ID. If not, just truncate and it should be fine.</p> http://stackoverflow.com/questions/83073/why-not-use-tables-for-layout-in-html/83100#83100 9 Answer by Rob for Why not use tables for layout in HTML? Rob 2008-09-17T13:21:35Z 2008-09-17T13:21:35Z <p>According to 508 compliance (for screen readers for visually impared), tables should only be used to hold data and not for layout as it causes the screen readers to freak out. Or so I've been told.</p> <p>If you assign names to each of the divs, you can skin them all together using CSS as well. They're just a bit more of a pain to get to sit the way you need them to.</p> http://stackoverflow.com/questions/82639/how-to-become-a-better-programmer/82954#82954 0 Answer by Rob for How to become a better programmer? Rob 2008-09-17T13:08:20Z 2008-09-17T13:08:20Z <p>The pragmatic programmer was an excellent book, and I highly recommend it. I also agree with practicing. Jump into something new that you've never tried before, watch the training videos that are out there for it, read through samples, come up with a simple program and try it out. I'm currently learning Silverlight now and although it gets frustrating at times, it is very cool to jumping into a new language without much background on it.</p> <p>So yeah... practice, practice, practice.</p> http://stackoverflow.com/questions/53423/what-virus-protection-internet-security-do-you-use-at-home-as-a-programmer/82896#82896 0 Answer by Rob for What virus protection/internet security do you use at home as a programmer Rob 2008-09-17T13:02:13Z 2008-09-17T13:02:13Z <p>I use AVG Free and have my router's firewall turned on. <em>Knocks on wood</em> I've only got a couple really nasty ones, but that was a long time ago. <em>Peers over at XP Box</em> It may be time to reformat just because it's been a couple years since I last did though...</p> http://stackoverflow.com/questions/82620/what-is-the-best-physical-operating-environment-for-a-developer/82839#82839 2 Answer by Rob for What is the best physical operating environment for a developer. Rob 2008-09-17T12:56:12Z 2008-09-17T12:56:12Z <ul> <li>Great Chair.</li> <li>At Least 2 LCD Monitors (17" or better).</li> <li>Quiet environment when necessary (ability to close a door).</li> <li>Dry-Erase board to allow for working stuff out in front of me and not on paper.</li> <li>Windows (I &lt;3 natural daylight).</li> <li>Good Blinds (in case the daylight becomes too much).</li> <li>Control of the overhead lights (sometimes, I just need the dark).</li> <li>Plenty of scratch paper.</li> <li>Plenty of programming books.</li> <li>As good of a computer that can be afforded. Laptops are nice as they allow for portability. </li> <li>A work environment that encourages for cooperative programming</li> <li>A work environment that encourages side projects to get you versed in new technologies that you can leverage for the good of your company.</li> </ul> http://stackoverflow.com/questions/82432/is-learning-assembly-language-worth-the-effort/82763#82763 0 Answer by Rob for Is learning Assembly Language worth the effort? Rob 2008-09-17T12:47:39Z 2008-09-17T12:47:39Z <p>I did alright in Java. I hated C++ because I never truly understood what the pointers were doing. THEN I took Assembly. The pointers then made sense! I actually started to enjoy programming once I learned assembly. I very much recommend learning it so you understand more of the basics of how the computer works. It was a real eye-opener for me!</p> http://stackoverflow.com/questions/1756880/best-open-sourced-net-based-e-commerce-store-solution-for-selling-jewelry/1757014#1757014 Comment by Rob on Best Open-Sourced .Net based E-Commerce store solution for selling Jewelry? Rob 2009-11-18T16:26:01Z 2009-11-18T16:26:01Z Thanks for your other options! Yeah it was really odd. I don't like Dash Commerce 3.3 RC, I accidentally created a circular reference to an item, once I deleted it, I get an error screen that I haven't sat down and worked out yet. It seems like 3.0 was much more stable, but the look was just kinda old for me. I like the look of Nopcommerce and I'm looking for easy setup. Also seems like much of dash's community has left it. http://stackoverflow.com/questions/1756880/best-open-sourced-net-based-e-commerce-store-solution-for-selling-jewelry/1756909#1756909 Comment by Rob on Best Open-Sourced .Net based E-Commerce store solution for selling Jewelry? Rob 2009-11-18T16:22:00Z 2009-11-18T16:22:00Z Version 3.3RC is not a good version (very buggy) and I wish they'd have easier access to previous releases. I used dash commerce before with 3.0 and didn't have quite as many issues, but now I can't get back to the 3.0 source! http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84629#84629 Comment by Rob on What's your favorite "programmer" cartoon? Rob 2009-10-16T21:04:12Z 2009-10-16T21:04:12Z This is one that made day the first time I saw it