User itsmatt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T21:19:09Zhttp://stackoverflow.com/feeds/user/7862http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1675151/hierarchical-winform-checkboxes/1675293#16752932Answer by itsmatt for hierarchical winform checkboxesitsmatt2009-11-04T17:12:20Z2009-11-04T17:12:20Z<p>Something like this should work.</p>
<pre><code> private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Focused)
{
checkBox2.Checked = checkBox1.Checked;
checkBox3.Checked = checkBox1.Checked;
checkBox4.Checked = checkBox1.Checked;
}
}
private void subCheckBox_CheckedChanged(object sender, EventArgs e)
{
CheckBox theCheckbox = sender as CheckBox;
if (theCheckbox.Focused)
{
checkBox1.Checked = checkBox2.Checked || checkBox3.Checked || checkBox4.Checked;
}
}
</code></pre>
<p>Checkboxes 2, 3, and 4 are all tied to the same handler for my example.</p>
<p>Hope that helps!</p>
<p><hr></p>
<p>Obviously, this makes some assumptions as it is just an example. I'm relying on user input (Focused property) to control the flow. There are other solutions, I'm sure.</p>
http://stackoverflow.com/questions/1652729/c-simple-non-xml-config-files/1653050#16530500Answer by itsmatt for c# simple non-xml config files?itsmatt2009-10-31T01:11:48Z2009-10-31T01:11:48Z<p>I think I'd opt to spend the time to build a simple editor and keep the user out of the config file editing business. Otherwise, you may end up having to write a lot of code to catch all the possible errors that the user could inject in the system by messing up the config file. When you control the file format and can take advantage of a UI that limits input, the code is simpler, I think. </p>
<p>But, depending on the users, you could just opt for the one-per-line key-separator-value convention. Reading that in is straightforward enough.</p>
<p>One of the third-party tools I use has a dirt-simple config file. It is a simple, free-form text file that has the form:</p>
<pre><code>keyword [args]
</code></pre>
<p>It expects every line to start with a keyword and anything after that on the line is simply taken as arguments to the keyword. It doesn't have the notion of key/value pairs as args - more like just lists. Spaces are the delimiter for that config file. Might not work for every implementation, but it works for that one.</p>
<p>Binding is pretty straightforward and reading/writing an XML file from a bound grid control that the user can utilize as their editor, it certainly eliminates many of the formatting issues that arise from a simple "open it in notepad" solution.</p>
<p>If your user base is pretty savvy but just not developers, perhaps the plaintext solution would suffice. As my coworker says often - no need to put $100 in a $2 show. Obviously, it'll depend on your particular situation.</p>
http://stackoverflow.com/questions/1626855/ms-chart-control-zoom-minsize-issue0MS Chart Control Zoom MinSize issueitsmatt2009-10-26T19:30:55Z2009-10-29T17:38:43Z
<p>I'm implementing a scatter plot using the MS Chart Control .NET 3.5, WinForms, C#. My x-axis data is DateTime and noticed I couldn't zoom in smaller than a resolution of 1 day, despite setting the ScaleView as follows:</p>
<pre><code>chart1.ChartAreas["MyChart"].AxisX.ScaleView.MinSize = 4;
chart1.ChartAreas["MyChart"].AxisX.ScaleView.MinSizeType = DateTimeIntervalType.Hours;
</code></pre>
<p>Has anyone else had this issue? Any ideas?</p>
http://stackoverflow.com/questions/1626855/ms-chart-control-zoom-minsize-issue/1645380#16453800Answer by itsmatt for MS Chart Control Zoom MinSize issueitsmatt2009-10-29T17:38:43Z2009-10-29T17:38:43Z<p>Figured this out... perhaps I didn't RTFM close enough, but it wasn't obvious from the interactive demo.</p>
<p>Set</p>
<pre><code>chart1.ChartAreas["MyChart"].CursorX.Interval = 0;
</code></pre>
<p>and then it allowed me to zoom along the x-axis just fine.</p>
http://stackoverflow.com/questions/1632680/duplicate-a-record-in-mysql/1632756#16327560Answer by itsmatt for Duplicate a record in MySQLitsmatt2009-10-27T18:24:50Z2009-10-27T18:24:50Z<p>What about</p>
<pre><code>insert into test.abc select null, val1, val2 from test.abc where val2 = some_condition;
</code></pre>
<p>Seems to work for me like that. Substitute your table, fields, condition of course.</p>
<p>The null lets the DB generate the auto-increment ID for you.</p>
http://stackoverflow.com/questions/1631593/please-help-me-understand-unit-testing/1631667#16316670Answer by itsmatt for Please help me understand Unit Testing.itsmatt2009-10-27T15:35:45Z2009-10-27T15:35:45Z<p>I'd check out <a href="http://stackoverflow.com/questions/850279/recommended-unit-testing-book-for-an-asp-net-mvc-environment">this SO post</a> related to unit testing and ASP.NET. It has a bunch of links and some commentary about the subject.</p>
http://stackoverflow.com/questions/1630467/where-to-start-when-learning-c-development/1630501#16305013Answer by itsmatt for Where to start when learning C# development?itsmatt2009-10-27T12:32:42Z2009-10-27T12:32:42Z<p>Similar questions asked:</p>
<p><a href="http://stackoverflow.com/questions/287927/best-way-to-learn-c">http://stackoverflow.com/questions/287927/best-way-to-learn-c</a></p>
<p><a href="http://stackoverflow.com/questions/746561/quickest-approach-to-learn-c-programming">http://stackoverflow.com/questions/746561/quickest-approach-to-learn-c-programming</a></p>
<p><a href="http://stackoverflow.com/questions/72893/whats-the-best-way-to-learn-c-quickly">http://stackoverflow.com/questions/72893/whats-the-best-way-to-learn-c-quickly</a></p>
<p><a href="http://stackoverflow.com/questions/5795/recommended-books-for-learning-c">http://stackoverflow.com/questions/5795/recommended-books-for-learning-c</a></p>
http://stackoverflow.com/questions/534064/clickonce-dll-issue0ClickOnce DLL issueitsmatt2009-02-10T20:31:24Z2009-10-27T06:14:33Z
<p>I develop some C# plug-in libraries in VS2008 that are deployed along with someone else's application. They use ClickOnce for their deployments and I'm trying to do something a bit non-standard, I suppose.</p>
<p>On one of the machines where the app and my DLLs are installed, I'd like to manually replace some of my DLLs to test a fix.</p>
<p>The app is in c:\Documents and Settings\testsystem\Local Settings\Apps\2.0\blahblahblah...long nasty path\</p>
<p>and my DLLs are located in a subdirectory under that path.</p>
<p>My tester took my DLLs and puts them in that subdirectory but it appears from the Trace output that he sends me that an older version of the DLL is actually running. I had the tester verify that the DLLs are in the subdirectory and the Trace log shows the correct path, indicating that the app is running from that location, but the Trace output is not from the DLL that I've sent him.</p>
<p>The ClickOnce deployment stuff is all elven magic to me at this point. It doesn't appear that it is overwriting my new DLL but it certainly isn't running the version I expect it to run. Anyone have any ideas?</p>
<p>Thanks,
Matt</p>
http://stackoverflow.com/questions/1612668/action-required-to-do-the-operation-browse/1612757#16127572Answer by itsmatt for Action required to do the operation "browse" itsmatt2009-10-23T11:11:36Z2009-10-23T11:11:36Z<p>Check out the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.folderbrowserdialog.aspx" rel="nofollow">FolderBrowserDialog</a> if you are wanting to find a folder.
If you are wanting to open a file, you can use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.openfiledialog.aspx" rel="nofollow">OpenFileDialog</a>.</p>
<p>Both links provide examples of how to use the dialogs.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/14tx8hby.aspx" rel="nofollow">This MSDN link</a> provides how to get the special system folders. And you can specify the type of special folder you want by using the appropriate enumeration. Check <a href="http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx" rel="nofollow">this link</a> for those.</p>
<p>Essentially, you are going to do something like so if you want to pop up a dialog and browse to the System folder and select some files from there:</p>
<pre><code>private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog od = new OpenFileDialog();
od.InitialDirectory = Environgment.SpecialFolder.System;
od.Multiselect = true;
if (od.ShowDialog() == DialogResult.OK)
{
// do stuff
// od.Filenames will hold the string[] of selected files
}
}
</code></pre>
http://stackoverflow.com/questions/1608174/what-does-a-double-question-mark-do-in-c/1608211#16082110Answer by itsmatt for What does a double question mark do in C#?itsmatt2009-10-22T15:53:42Z2009-10-22T15:53:42Z<p>As others have stated, it is the null coalescing operator.</p>
<p>MSDN information on this:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms173224.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms173224.aspx</a></p>
http://stackoverflow.com/questions/1607690/finding-similar-sounding-text-in-vba/1607707#16077071Answer by itsmatt for Finding similar sounding text in VBAitsmatt2009-10-22T14:39:01Z2009-10-22T14:39:01Z<p>You are looking for SOUNDEX.</p>
http://stackoverflow.com/questions/1606807/staying-current-with-your-programming-language/1606866#16068663Answer by itsmatt for Staying current with your programming language? itsmatt2009-10-22T12:27:53Z2009-10-22T12:27:53Z<p>Some Similar questions:</p>
<p><a href="http://stackoverflow.com/questions/775636/staying-current-on-programming-trends-via-twitter">http://stackoverflow.com/questions/775636/staying-current-on-programming-trends-via-twitter</a>
<a href="http://stackoverflow.com/questions/647390/how-to-stay-connected-to-the-programming-community">http://stackoverflow.com/questions/647390/how-to-stay-connected-to-the-programming-community</a>
<a href="http://stackoverflow.com/questions/14490/how-can-i-continue-to-stay-current-on-the-latest-and-maybe-greatest-tools-tech">http://stackoverflow.com/questions/14490/how-can-i-continue-to-stay-current-on-the-latest-and-maybe-greatest-tools-tech</a></p>
<p>I'd also say that getting involved with a local (or relatively local) group helps.</p>
<p>Maybe get involved in an OS project that uses a language you like.</p>
<p>Perhaps attend code camps and things like that.</p>
http://stackoverflow.com/questions/1595955/retrieve-value-of-most-recently-selecteditem-from-multi-select-listbox/1596064#15960640Answer by itsmatt for Retrieve value of most recently SelectedItem from multi-select listboxitsmatt2009-10-20T17:13:41Z2009-10-20T17:13:41Z<p>The SelectedIndexChanged handler will get called when you select/unselect an item in the listbox.</p>
<p>However, it doesn't indicate which one was selected/unselected.</p>
<pre><code>listbox1.SelectedItems
</code></pre>
<p>will contain the currently selected items and you could internally keep track of which index was most recently added.</p>
http://stackoverflow.com/questions/1594813/ms-chart-control-axis-formatting0MS Chart Control axis formattingitsmatt2009-10-20T13:59:22Z2009-10-20T13:59:22Z
<p>I'm using the MS Chart Control in a Winforms app I'm writing. The X-axis component of the scatter plot I'm displaying is Int64 data, which ultimately represents a UTC time. I'd like to take that Int64 data and essentially do a DataTime.FromFileTimeUTC(theTime).ToString() on it to show the end-user X-axis labels that are meaningful.</p>
<p>Currently, I'm creating another column in the in-memory DataTable to hold the DateTime equivalent of that Int64 like so:</p>
<pre><code>dataTable.Columns.Add("mytimestamp");
foreach (DataRow dr in dataTable.Rows)
{
dr["mytimestamp"] = DateTime.FromFileTimeUTC(Convert.ToInt64(dr["theint64val"].ToString()));
}
</code></pre>
<p>And then using the "mytimestamp" column as the x-axis value. This works fine and I can show the x-axis labels as datetime values.</p>
<p>But, I'd rather not go through the trouble of creating the column and essentially duplicating the other column's data but didn't see any way to format the x-axis labels. Might have missed this, I supposed. I saw the AxisViewChanged event in the documentation and saw how I might set the chart title with that data but not the x-axis labels themselves.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1591771/datatable-how-to-conditionally-delete-rows/1591848#15918481Answer by itsmatt for DataTable, How to conditionally delete rowsitsmatt2009-10-20T00:23:18Z2009-10-20T00:23:18Z<p>I don't have a windows box handy to try this but I think you can use a DataView and do something like so:</p>
<pre><code>DataView view = new DataView(ds.Tables["MyTable"]);
view.RowFilter = "MyValue = 42"; // MyValue here is a column name
// Delete these rows.
foreach (DataRowView row in view)
{
row.Delete();
}
</code></pre>
<p>I haven't tested this, though. You might give it a try.</p>
http://stackoverflow.com/questions/1578217/mysql-innodb-cascade/1578385#15783850Answer by itsmatt for MySQL InnoDB CASCADE?itsmatt2009-10-16T14:27:19Z2009-10-16T14:39:23Z<p>I quickly put together two similar tables in the MySQL Query Browser with the following definitions:</p>
<pre><code>DROP TABLE IF EXISTS `test`.`sections`;
CREATE TABLE `test`.`sections` (
`section_id` int(10) unsigned NOT NULL auto_increment,
`title` varchar(30) NOT NULL,
`created_at` int(10) unsigned NOT NULL,
`updated_at` int(10) unsigned NOT NULL,
PRIMARY KEY (`section_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `test`.`pages`;
CREATE TABLE `test`.`pages` (
`page_id` int(10) unsigned NOT NULL auto_increment,
`section_idfk` int(10) unsigned NOT NULL,
PRIMARY KEY (`page_id`),
KEY `section_idfk` (`section_idfk`),
CONSTRAINT `section_idfk` FOREIGN KEY (`section_idfk`) REFERENCES `sections` (`section_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
</code></pre>
<p>Not exactly the same as the ones you posted, but close enough.</p>
<p>I insert into sections a row.
I add a row with a matching section_id into the pages table.
Then I do a DELETE FROM sections; and it deletes from pages as well.</p>
<p>Works just fine.</p>
<p>edit - I entered your creates and it works fine too.</p>
http://stackoverflow.com/questions/1577590/how-to-convert-our-programs-to-good-end-product/1577682#15776821Answer by itsmatt for How to convert our programs to good end product ?itsmatt2009-10-16T12:10:07Z2009-10-16T12:10:07Z<p>I think what is going to drive you forward is to find something that interests <em>you</em> first and foremost. </p>
<p>Are you interested in graphics?<br />
Are you interested in games?<br />
Do you have a itch to scratch in the area of productivity tools?
Are you consumed by Twitter?</p>
<p>Whatever it is, you'll probably find there are a lot of other folks interested in that too. I think you'll find that if you can focus on something that you are passionate about that has some sort of applicability in the lives of others, <strong>and</strong> you can take it from concept to a finished, application, there will be a market there.</p>
<p>But whatever you write has to be darn good to get anyone to pay for it because there are a world of free and open source apps out there already. If I am your target market, you'd better wow me if you expect me to fork over my hard-earned greenbacks for your application.</p>
<p>You probably already know whether you can market things yourself, and I'd guess that you aren't a marketing person. No slight intended against you - I'm not one either. If you were, you would have phrased your question differently or not asked it at all. As others have posted, you'll need a good marketing machine to get your app noticed. There are lots of innovative ways to get your app noticed and depending on the platform, there are some easy ways to handle the business side (e.g., the iPhone app store).</p>
<p>If it were me, I'd focus on developing something that is of high quality and give a "lite" version of it away... let the end user try it out and see if it has a market. I've purchased a TON of apps from the iPhone app store by trying the "lite" version first and then forking over my money for the full version. </p>
<p>Focus on quality and the market will be there, I bet. </p>
<p>Just my two cents.</p>
http://stackoverflow.com/questions/1561940/mysql-function-if-else/1562165#15621650Answer by itsmatt for mysql function if/elseitsmatt2009-10-13T18:42:13Z2009-10-13T18:50:09Z<p>I'm no expert but here are a few of things I see.</p>
<p>First, you've got</p>
<pre><code>DELIMITER $$
</code></pre>
<p>and then use it in the function itself. That DELIMITER line allows you to use the semicolons within the body of the function. Otherwise the ';' would end the CREATE FUNCTION statement prematurely.</p>
<p>Also, the line</p>
<pre><code>DECLARE ox varchar(20)
</code></pre>
<p>is missing a semicolon at the end.</p>
<p>And then you're missing the</p>
<pre><code>END IF;
</code></pre>
<p>after the else condition.</p>
<p>Also what about the BEGIN END$$ wrapped around the function's definition?</p>
<p>I'd expect a stored function to generally take the form:</p>
<pre><code>DELIMITER $$
DROP FUNCTION IF EXISTS `testdb`.MyFunc$$
CREATE FUNCTION `testdb`.`MyFunc` () RETURNS INT
BEGIN
DECLARE someVar varchar(20);
# some stuff
RETURN something;
END $$
DELIMITER ;
</code></pre>
<p>Modifying the guts of the function to suit your needs and setting the return type as appropriate.</p>
<p>Anyway, I'm not an expert but that is what I see and hope that helps.</p>
http://stackoverflow.com/questions/1549600/trying-to-determine-best-user-interface-for-layouts-winform-button-that-shows-d/1549665#15496650Answer by itsmatt for trying to determine best user interface for layouts - winform button that shows dropdown itsmatt2009-10-11T02:18:46Z2009-10-11T02:18:46Z<p>I try to keep the UI as uncluttered as I can, particularly when it comes to functionality that is of a more ancillary nature. To that end, if I can utilize something like a context menu that the user can right-click to pull up, I will. From the context menu, I generally provide a dialog box to support the functionality needed.</p>
<p>If the saving of the layout is a primary function of the form you are displaying to the user, it might warrant UI elements like a button or combo box that has dedicated real estate. Otherwise, I'd think seriously about putting the controls that provide that functionality on another pop-up dialog and using a mechanism like a context menu to bring up that dialog.</p>
<p>The downside to the context menu idea, initially, is that the user needs to "know" that the functionality exists. That might be solved by training or by tooltip hints or other means. Typically once the user "knows" that controls like ListViews, TreeViews and DataGridViews can have context menus, they don't have problems finding the functionality.</p>
<p>Just my two cents.</p>
http://stackoverflow.com/questions/1546485/where-should-i-store-photos-file-system-or-the-database/1546512#15465122Answer by itsmatt for Where should I store photos? File system or the database?itsmatt2009-10-09T23:27:38Z2009-10-09T23:27:38Z<p>We had a similar decision to make for a project I am on. The compelling thing about jamming stuff (images and other BLOBy things) into the DB is that it is is less likely that someone might delete/alter something (either intentionally or unintentionally). But, that isn't the choice we made. Instead we have the path info stored in the DB and use that to reference the data via UNC path. Data paths are stored in two parts - a part that references the location of the data relative to which machine it resides on and a part that points to which machine that group of data is on. When we need to move data around we can update the appropriate path info.</p>
<p>It is certainly quick to get the data without pulling out of the DB. Ultimately that was a major deciding factor.</p>
http://stackoverflow.com/questions/1544861/which-code-is-more-readable/1544904#15449040Answer by itsmatt for Which code is more readable?itsmatt2009-10-09T16:48:22Z2009-10-09T16:48:22Z<p>It comes down to being intentional and clear, in my mind.</p>
<p>The first way makes it clear to the casual observer that you aren't executing Bar() unless Foo() returns true. I get that the short circuit logic will keep Bar() from being called in the second example (and I might write it that way myself) but the first way is far more intentional at first glance.</p>
http://stackoverflow.com/questions/1544642/what-is-your-most-useful-technique-for-finding-or-preventing-bugs/1544738#15447385Answer by itsmatt for What is your most useful technique for finding (or preventing) bugs?itsmatt2009-10-09T16:13:40Z2009-10-09T16:13:40Z<ul>
<li>Understand what the problem is. </li>
<li>Design a solution. </li>
<li>Bounce the solution off of some coworkers who understand the problem domain.</li>
<li>Rework the solution design if necessary.</li>
<li>Keep code small. Classes that aren't monolithic. Functions that aren't hundreds of lines long. </li>
<li>Write test code. It will keep you honest and help find the bugs. Don't skimp on this.</li>
<li>Don't try to be too clever. Some of my worst problem code was the result of my trying to be clever. </li>
<li>Don't try to juggle more things than you can. Context switching between projects can be a productivity killer.</li>
</ul>
<p>One other thing:</p>
<ul>
<li>Manage expectations. That means don't let the schedule force you into slinging a bunch of crap code to meet an unrealistic deadline. The test code goes out the window most of the time when the schedule gets to be unattainable. This generally means buggy software gets delivered. You aren't going to deliver perfect software but the goal is to ship the best you can. </li>
</ul>
<p>Other things help but ultimately knowing what you trying to solve and not letting the drive to be "done" derail your train is the key.</p>
<p>Just my two cents.</p>
http://stackoverflow.com/questions/1504871/options-for-initialization-a-string-array/1504900#15049003Answer by itsmatt for options for initialization a string arrayitsmatt2009-10-01T16:08:25Z2009-10-01T16:08:25Z<p><a href="http://msdn.microsoft.com/en-us/library/0a7fscd0.aspx" rel="nofollow">MSDN has the skinny on this.</a></p>
http://stackoverflow.com/questions/1504754/why-does-keychar-for-delete-return-the-same-as-for-period/1504801#15048010Answer by itsmatt for Why does KeyChar for Delete return the same as for Period?itsmatt2009-10-01T15:54:54Z2009-10-01T15:59:54Z<p>Perhaps it would work in your application to instead capture the KeyDown event.</p>
<p>You could then do something such as:</p>
<pre><code>if (e.KeyCode == Keys.Delete || e.KeyCode == Keys.Back)
{
return;
}
</code></pre>
<p>Note that KeyCode is part of the args passed for KeyDown and KeyUp but not for KeyPress.</p>
http://stackoverflow.com/questions/1498020/how-can-i-persist-mdi-layout-in-net/1498336#14983361Answer by itsmatt for How can I Persist MDI Layout in .NET?itsmatt2009-09-30T14:06:06Z2009-09-30T14:06:06Z<p>I've seen a few form persistence classes around but they didn't do exactly what I needed. I ended up rolling my own, essentially doing the following:</p>
<pre><code>Control mdiClientControl;
foreach (Control control in Controls)
{
if (control is MdiClient)
{
mdiClientControl = control;
break;
}
}
foreach (Form mdiChild in MdiChildren)
{
string theName = mdiChild.Name + "_Window_Layout";
DoSave(theName, "Top", mdiChildTop);
.
.
.
DoSave(theName, "WindowState", (int)mdiChild.WindowState);
DoSave(theName, "Visible", mdiChild.Visible);
DoSave(theName, "ChildIndex", theMDIClientControl.Controls.GetChildIndex(mdiChild));
}
</code></pre>
<p>DoSave() just stores this info off in some XML file in the user's space, but you could store it differently, of course.</p>
<p>When appropriate, such as at startup, I have a ReadSettings() method that essentially reverses the process, interrogating the saved settings, setting the values. There might be a more elegant solution to the problem, but this one has worked really well for me.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/634253/anyone-using-spirateam0Anyone using SpiraTeam?itsmatt2009-03-11T12:11:20Z2009-08-28T18:10:40Z
<p>We've been using Mantis for some time now at my shop and it has performed well. The powers that be have decided we'll be using a commercial tool called SpiraTeam from this point forward. Has anyone had experience with this tool? I noticed that it has import ability from Jira and a few other systems but didn't see one for Mantis. I'm still bummed about the move but change is coming so we've got to make the best of it. Has anyone migrated historic data out of Mantis into this tool or another closed tool? What were your experiences? </p>
http://stackoverflow.com/questions/634253/anyone-using-spirateam/1348570#13485700Answer by itsmatt for Anyone using SpiraTeam?itsmatt2009-08-28T18:10:40Z2009-08-28T18:10:40Z<p>Well, we've been using SpiraTeam now for just shy of 6 months and while it has some interesting ideas, like a step-by-step test section, I think the interface is pretty clunky and really wish we were still using Mantis. On of the really useful things in Mantis was how easy it was to see at a glance what showed up in each new build. Haven't found anything like this in SpiraTeam.</p>
http://stackoverflow.com/questions/1223071/using-time-machine-for-test-environment-rollback-for-mac-platform0Using Time Machine for test environment rollback for Mac platformitsmatt2009-08-03T15:43:52Z2009-08-08T21:24:07Z
<p>When I'm testing software I'm going to deploy or running through tests in the Windows world, I'll use VMWare images so that I can start from a fresh, known state at the beginning of each test. This has worked really well so that I can install software on different OS flavors or with other/different apps and drivers loaded. This makes it super simple to duplicate or nearly duplicate a customer's environment when addressing issues that crop up.</p>
<p>Now I'm tasked with doing something similar for Mac OS X. I'm far less familiar with this OS and didn't really see the same sort of thing available. I noted that the server version of 10.5 might allow this, but I'm not running that here. I've got access to 10.5 on a Mac Book and one of those Mac Minis.</p>
<p>Has anyone used Time Machine to put their test Mac box into a known state? Or do you have other ideas? I'm also interested in a solution for 10.4 since some of my customers run "Tiger".</p>
http://stackoverflow.com/questions/1214475/applescript-path-to-application-using-variable0Applescript path to application using variableitsmatt2009-07-31T19:38:32Z2009-07-31T19:58:01Z
<p>If I have an applescript snippet such as this</p>
<pre><code>tell application "Finder"
set thePath to (POSIX path of (path to application "MyApp"))
end tell
</code></pre>
<p>it will return to me</p>
<p>"/Applications/MyApp.app"</p>
<p>Now, what I can't seem to figure out is how to instead specify "MyApp" via a variable rather than the literal. </p>
<p>My applescript reads in some XML values, one of them being the name of the application I'm interesting in. I've tried this:</p>
<pre><code>tell application "Finder"
set thePath to (POSIX path of (path to application someVariable))
end tell
</code></pre>
<p>but this simply tells me the error</p>
<p>"Finder got an error: Can't make application "MyApp" into type constant."</p>
<p>Any ideas how I can do this?</p>
http://stackoverflow.com/questions/1214475/applescript-path-to-application-using-variable/1214561#12145610Answer by itsmatt for Applescript path to application using variableitsmatt2009-07-31T19:58:01Z2009-07-31T19:58:01Z<p>The answer (or at least one answer) is:</p>
<pre><code>set theApp to "MyApp"
set pathToTarget to POSIX path of (path to application theApp)
</code></pre>
<p>Since <strong>path to application</strong> is a part of Standard Additions, the Finder is not needed.</p>
<p>Thanks to Stephan K on MacScripter for setting me straight on this. </p>
http://stackoverflow.com/questions/1632680/duplicate-a-record-in-mysql/1632756#1632756Comment by itsmatt on Duplicate a record in MySQLitsmatt2009-10-27T20:18:30Z2009-10-27T20:18:30ZYes, that is the downside. I'd probably opt to programmatically determine the column names and construct the appropriate insert statement on the fly to avoid hard coding the columns. "SHOW COLUMNS FROM table" will provide you with that info and there is a 'Field' and 'Key' column in the results from that call. While I'm not a PHP developer, I suspect you could make the call to retrieve the column names, cull out the non-primary key Fields and construct the insert statement from that. Haven't tried it, but suspect that this would work.http://stackoverflow.com/questions/1625217/what-kind-of-web-effects-are-out-there/1625229#1625229Comment by itsmatt on What kind of web effects are out there?itsmatt2009-10-26T14:46:02Z2009-10-26T14:46:02ZWhat is this "google" you speak of? ;-)http://stackoverflow.com/questions/1624505/pass-by-reference-in-cComment by itsmatt on Pass by Reference in C#itsmatt2009-10-26T12:30:47Z2009-10-26T12:30:47ZRelated question: <a href="http://stackoverflow.com/questions/135234/difference-between-ref-and-out-parameters-in-net" rel="nofollow" title="difference between ref and out parameters in net">stackoverflow.com/questions/135234/…</a>http://stackoverflow.com/questions/1618784/others-free-deployment-project-for-net-applications/1618795#1618795Comment by itsmatt on Others free deployment project for .NET applicationsitsmatt2009-10-24T19:14:56Z2009-10-24T19:14:56ZI'll second that. You can do a lot with it. Plus, you get to write a little Pascal (blasted := and no semicolon before and else!) ;-) Seriously, it is definitely worth checking out. There's a good amount of examples and, as Christopher has stated, it is flexible. Coolest thing for me - calling external DLLs to address application-specific steps during install.http://stackoverflow.com/questions/1595166/why-is-it-so-bad-to-mock-classesComment by itsmatt on Why is it so bad to mock classes?itsmatt2009-10-20T14:50:32Z2009-10-20T14:50:32ZI assume your colleague had some reasons why and when they shouldn't be used, right? What were they?http://stackoverflow.com/questions/1588443/mgmt-wants-to-re-title-my-position-any-helpComment by itsmatt on Mgmt wants to re-title my position: Any help...?itsmatt2009-10-19T12:40:51Z2009-10-19T12:40:51ZWhy exactly is a title important? Shouldn't really matter. In-house who cares? If you are planning to go elsewhere, it is your experience that will matter, not any title on it. I don't think I've ever cared what someone's title was when making a hiring decision.http://stackoverflow.com/questions/1577361/get-the-first-few-words100-or-200-from-a-long-summaryplain-string-or-html-usiComment by itsmatt on Get the first few words(100 or 200) from a long summary(plain string or html) using c#?itsmatt2009-10-16T11:23:21Z2009-10-16T11:23:21ZWhat are you currently doing to get the words? http://stackoverflow.com/questions/212999/continuous-integration-for-xcode-projects/1182726#1182726Comment by itsmatt on Continuous Integration for Xcode projects?itsmatt2009-10-10T00:18:59Z2009-10-10T00:18:59Z@Spanky - I updated the link to Silencode's blog.http://stackoverflow.com/questions/213121/c-use-class-or-typename-for-template-parameters/213135#213135Comment by itsmatt on C++: Use 'class' or 'typename' for template parameters?itsmatt2009-10-05T16:20:30Z2009-10-05T16:20:30ZI wrote this response nearly a year ago, about a month after the site went public. There was hardly a defacto anything at that point. Point taken, though.http://stackoverflow.com/questions/1509288/is-there-a-site-where-i-can-post-snippets-of-code-for-review/1509315#1509315Comment by itsmatt on Is there a site where I can post snippets of code for review?itsmatt2009-10-02T13:12:35Z2009-10-02T13:12:35ZInteresting idea for a site but they need to submit their site to "RefactorMySite"... wow that is hard to look at!http://stackoverflow.com/questions/1505051/richtextbox-links-dont-do-anything/1505061#1505061Comment by itsmatt on RichTextBox links don't do anythingitsmatt2009-10-01T16:52:01Z2009-10-01T16:52:01ZTry Process.Start(e.LinkText).http://stackoverflow.com/questions/1498453/what-to-use-when-text-comments-just-wont-do/1498482#1498482Comment by itsmatt on What to use when text comments just wont do?itsmatt2009-09-30T14:34:23Z2009-09-30T14:34:23ZThis is exactly what I do too. <see cref="///path-to-mypdf"/> works exceedingly well for pointing to the diagrams or design notes.http://stackoverflow.com/questions/1223071/using-time-machine-for-test-environment-rollback-for-mac-platform/1249940#1249940Comment by itsmatt on Using Time Machine for test environment rollback for Mac platformitsmatt2009-08-08T22:22:08Z2009-08-08T22:22:08ZThanks for the info on RooSwitch, Charles, I'll be checking it out - and your iPhone apps too!http://stackoverflow.com/questions/1223071/using-time-machine-for-test-environment-rollback-for-mac-platform/1223226#1223226Comment by itsmatt on Using Time Machine for test environment rollback for Mac platformitsmatt2009-08-04T09:59:53Z2009-08-04T09:59:53ZYeah, knew that I couldn't virtualize the client stuff. Thanks for the info, though.http://stackoverflow.com/questions/1223071/using-time-machine-for-test-environment-rollback-for-mac-platform/1223083#1223083Comment by itsmatt on Using Time Machine for test environment rollback for Mac platformitsmatt2009-08-04T09:58:55Z2009-08-04T09:58:55ZThanks for the info on the guest account. It is my understanding that under normal circumstances things clean up pretty well, though I saw (but haven't verified the statements made in) an article talking about how not everything 'guest' does necessarily is wiped at logout, namely things written to certain non-user directories, but that stuff is pretty esoteric and not really applicable for my well-behaved application. Appreciate the tip!