User Kim Major - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:40:31Zhttp://stackoverflow.com/feeds/user/32498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1408874/speech-recognition-programming/1802825#18028251Answer by Kim Major for Speech Recognition & ProgrammingKim Major2009-11-26T10:19:48Z2009-11-26T10:19:48Z<p>I tried to program using general purpose speech recognition and came to the conclusion that programming is too far from regular spoken language. You need a specific grammar that it is tailored to coding (not necessarily language specific). As a result of this experience I looked into programming using speech recognition. It's still only a proof of concept, but to some extent I believe it is doable.</p>
<p><strong>Things to consider:</strong></p>
<ul>
<li>If you are healthy and can code at full speed with both hands, you will be faster with a keyboard/mouse. I type at around 60 wpm and there's no way I can go faster with voice. However, I'm a very slow typer with only one hand. I believe that you can decrease the amount of strain on your arms considerably by being assisted by voice commands as opposed to going voice only.</li>
<li>There are activities within a programming IDE that are not coding/typing. Being able to perform many of these tasks using voice should further reduce strain.</li>
<li>Not everyone works in an environment where it is feasible to sit and talk to the computer.</li>
</ul>
<p>A short video of the POC is on Youtube. <a href="http://www.youtube.com/watch?v=x3Lm9nrFeMk" rel="nofollow">http://www.youtube.com/watch?v=x3Lm9nrFeMk</a></p>
http://stackoverflow.com/questions/1655360/having-troubles-loading-related-entities-eager-load-with-objectcontext-createqu/1655473#16554730Answer by Kim Major for Having troubles loading related entities (Eager Load) with ObjectContext.CreateQuery (Entity Framework and Repositories)Kim Major2009-10-31T20:06:50Z2009-11-02T16:50:07Z<p>The previous rev of this answer is incorrect as pointed out by Craig in the comments. Since I can't delete this answer (because of comments?) I'll at least try to leave something that's not incorrect.</p>
<p>Assuming you have a model (.edmx) with two entities Product and ProductDetail. Further assuming you want to retrieve a given product and its related details.</p>
<p>I would make sure the following works (given you have a product with an ID of 1 that have detail records):</p>
<pre><code>var result = ctx.CreateQuery<Product>("Products").Include("ProductDetails").Where(p => p.ProductId == 1);
</code></pre>
<p>In the Include statement above, "ProductDetails" is a property on Product.
If that works, I would try the following:</p>
<pre><code>public ObjectQuery DoQuery<E>(Expression<Func<E, bool>> filter)
{
string entitySetName = GetEntitySetName(typeof(T));
return (ObjectQuery<E>)_ctx.CreateQuery<E>(entitySetName).Include("ProductDetails").Where(filter);
}
</code></pre>
<p>Note that GetEntitySetName() is not a built-in function</p>
<pre><code>var result = DoQuery<Product>(p => p.ProductId == 1);
</code></pre>
http://stackoverflow.com/questions/1540179/is-this-thread-safe-shared-data-without-mutex-semaphore/1540264#15402640Answer by Kim Major for Is this thread safe? (shared data without mutex/semaphore)Kim Major2009-10-08T20:34:08Z2009-10-08T20:43:17Z<p>Atomic reads/writes might not be the only consideration in order to make operations thread-safe. I think the answer would depend on the OS memory model as well. You need to make sure that a read in your main thread will get the latest value written by the interrupt.</p>
http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-31How to add words to an already loaded grammar using System.Speech and SAPI 5.3Kim Major2008-11-29T16:32:04Z2009-09-17T22:29:27Z
<p>Given the following code,</p>
<pre><code>Choices choices = new Choices();
choices.Add(new GrammarBuilder(new SemanticResultValue("product", "<product/>")));
GrammarBuilder builder = new GrammarBuilder();
builder.Append(new SemanticResultKey("options", choices.ToGrammarBuilder()));
Grammar grammar = new Grammar(builder) { Name = Constants.GrammarNameLanguage};
grammar.Priority = priority;
_recognition.LoadGrammar(grammar);
</code></pre>
<p>How can I add additional words to the loaded grammar? I know this can be achieved both in native code and using the SpeechLib interop, but I prefer to use the managed library.</p>
<p><strong>Update:</strong> What I want to achieve, is not having to load an entire grammar repeatedly because of individual changes. For small grammars I got good results by calling</p>
<pre><code>_recognition.RequestRecognizerUpdate()
</code></pre>
<p>and then doing the unload of the old grammar and loading of a rebuilt grammar in the event:</p>
<pre><code>void Recognition_RecognizerUpdateReached(object sender, RecognizerUpdateReachedEventArgs e)
</code></pre>
<p>For large grammars this becomes too expensive.</p>
http://stackoverflow.com/questions/331702/asp-net-schema-tables-causing-issues-in-vsts/378028#3780281Answer by Kim Major for ASP.NET Schema Tables Causing Issues in VSTSKim Major2008-12-18T14:37:52Z2009-07-10T17:49:44Z<p>I'm not sure, but a quick look seems to reveal the following.
The offending line in the script seems to be:</p>
<p>Line 42 in procedure [dbo].[aspnet_Users_DeleteUser] <strike>(how do you do underscores here?)</strike> <em>(like this: \_ )</em></p>
<p>(EXISTS (SELECT name FROM <strong>sysobjects</strong> WHERE (name = N'vw_aspnet_MembershipUsers') AND (type = 'V'))))</p>
<p>the system view sysobjects belongs to the built in system schema 'sys' which is not included in the database project. As a result the database project parser thinks (wrongly) that the reference is unresolved. </p>
<p>I don't think there is anything you can do but select to ignore the warning from the project settings. (Be aware that that will hide real errors from you as well.) I would probably just ignore the warnings.</p>
<p><strong>Update:</strong>
Try to add a reference to:</p>
<p>C:\Program Files\Microsoft Visual Studio 9.0\VSTSDB\Extensions\SqlServer\2008\DBSchemas\master.dbschema </p>
http://stackoverflow.com/questions/1054980/how-to-use-transactions-with-the-entity-framework/1055036#10550361Answer by Kim Major for How to use transactions with the Entity Framework?Kim Major2009-06-28T14:42:23Z2009-06-29T07:00:47Z<p>The ObjectContext has a connection property that you can use to manage transactions.</p>
<pre><code>using (var context = new BlahEntities())
using (var tx = context.BeginTransaction())
{
// do db stuff here...
tx.Commit();
}
</code></pre>
<p>In the case of an exception the transaction will be rolled back. Because the call to BeginTransaction() requires and open connection it makes sense to wrap the call to BeginTransaction possibly in an extension method.</p>
<pre><code>public static DbTransaction BeginTransaction(this ObjectContext context)
{
if (context.Connection.State != ConnectionState.Open)
{
context.Connection.Open();
}
return context.Connection.BeginTransaction();
}
</code></pre>
<p>One scenario where I believe this approach could be useful over TransactionScope, is when you have to access two datasources and only need transactional control over one of the connections. I think that in that case the TransactionScope will promote to a distributed transaction which might not be requiered.</p>
http://stackoverflow.com/questions/1042670/sql-counts-performance-sql-2000/1043033#10430330Answer by Kim Major for SQL counts performance (sql 2000)Kim Major2009-06-25T10:04:27Z2009-06-25T10:04:27Z<p>One thing to take into consideration, is that the SQL Server query optimizer is cost based. In other words it will inspect your query, index strategies, statistics and other factors to create a query plan before executing the query. You need a representative set of data to test your query against.</p>
http://stackoverflow.com/questions/1026006/how-to-get-number-of-chars-in-string-in-transact-sql-the-other-way/1026111#10261112Answer by Kim Major for How to get number of chars in string in Transact SQL, the "other way"Kim Major2009-06-22T08:40:03Z2009-06-22T08:40:03Z<p>My understanding is that DATALENGTH(@txt)/2 should always give you the number of characters. SQL Server stores Unicode characters in UCS-2 which does not support surrogate pairs.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms186939.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms186939.aspx</a></p>
<p><a href="http://en.wikipedia.org/wiki/UCS2" rel="nofollow">http://en.wikipedia.org/wiki/UCS2</a></p>
http://stackoverflow.com/questions/1025971/how-can-i-programmatically-make-certain-parts-of-a-label-in-a-windows-form-bold/1025988#10259883Answer by Kim Major for How can I programmatically make certain parts of a label, in a windows form, bold? Kim Major2009-06-22T07:58:50Z2009-06-22T07:58:50Z<p><a href="http://stackoverflow.com/questions/11311/formatting-text-in-winform-label">http://stackoverflow.com/questions/11311/formatting-text-in-winform-label</a></p>
http://stackoverflow.com/questions/1024006/error-inserting-data-using-sqlbulkcopy/1024629#10246291Answer by Kim Major for Error inserting data using SqlBulkCopyKim Major2009-06-21T19:53:08Z2009-06-21T19:53:08Z<p>Using your original table script, the following code works.</p>
<pre><code>private static DataTable GetTable()
{
var list = new List<DataColumn>();
list.Add(new DataColumn("amount", typeof(Double)));
list.Add(new DataColumn("date", typeof(DateTime)));
var table = new DataTable("statement");
table.Columns.AddRange(list.ToArray());
var row = table.NewRow();
row["amount"] = 1.2d;
row["date"] = DateTime.Now.Date;
table.Rows.Add(row);
return table;
}
private static void WriteData()
{
string strConnection = "Server=(local);Database=ScratchDb;Trusted_Connection=True;";
using (var bulk = new SqlBulkCopy(strConnection, SqlBulkCopyOptions.KeepIdentity & SqlBulkCopyOptions.KeepNulls))
{
bulk.ColumnMappings.Add(new SqlBulkCopyColumnMapping("amount", "amount"));
bulk.ColumnMappings.Add(new SqlBulkCopyColumnMapping("date", "date"));
bulk.BatchSize = 25;
bulk.DestinationTableName = "statement";
bulk.WriteToServer(GetTable());
}
}
</code></pre>
<p>As already stated by Amal, you need the column mappings because of the Identity column.</p>
http://stackoverflow.com/questions/1024543/msdn-license-development-testing-demo/1024562#10245626Answer by Kim Major for MSDN License (Development, Testing, Demo)Kim Major2009-06-21T19:16:50Z2009-06-21T19:16:50Z<p>From the main MSDN subscription page you can access the subscription information. The following was copied from that page. <a href="http://msdn.microsoft.com/en-us/subscriptions/cc150618.aspx" rel="nofollow">"Software Use Rights"</a></p>
<blockquote>
<p>MSDN subscriptions are licensed on a per-user basis. One person can use the software to design, develop, test, or demonstrate his or her programs on any number of devices. Each person who uses the software this way needs a license.</p>
</blockquote>
http://stackoverflow.com/questions/1015381/c-waiting-for-other-services-to-start/1015454#10154540Answer by Kim Major for C# Waiting for other services to startKim Major2009-06-18T22:04:50Z2009-06-18T22:04:50Z<p>In addition to what other answers have alredy pointed out, if one of those services is SQL Server you will need to ensure that the specific database is available as well as the SQL Server service itself.
I use a function similar to the following:</p>
<pre><code>public class DbStatus
{
public static bool DbOnline()
{
const int MaxRetries = 10;
int count = 0;
while (count < MaxRetries)
{
try
{
// Just access the database. any cheap query is ok since we don't care about the result.
return true;
}
catch (Exception ex)
{
Thread.Sleep(30000);
count++;
}
}
return false;
}
}
</code></pre>
http://stackoverflow.com/questions/906100/run-one-instance-from-the-application/906488#9064882Answer by Kim Major for Run one instance from the application Kim Major2009-05-25T12:08:31Z2009-05-25T12:08:31Z<p>The VB.Net team has already implemented a solution. You will need to take a dependency on Microsoft.VisualBasic.dll, but if that doesn't bother you, then this is a good solution IMHO.
See the end of the following article: <a href="http://msdn.microsoft.com/en-us/magazine/cc163741.aspx" rel="nofollow">Single-Instance Apps</a></p>
<p>Here's the relevant parts from the article:</p>
<p>1) Add a reference to Microsoft.VisualBasic.dll
2) Add the following class to your project.</p>
<pre><code>public class SingleInstanceApplication : WindowsFormsApplicationBase
{
private SingleInstanceApplication()
{
base.IsSingleInstance = true;
}
public static void Run(Form f, StartupNextInstanceEventHandler startupHandler)
{
SingleInstanceApplication app = new SingleInstanceApplication();
app.MainForm = f;
app.StartupNextInstance += startupHandler;
app.Run(Environment.GetCommandLineArgs());
}
}
</code></pre>
<p>Open Program.cs and add the following using statement:</p>
<pre><code>using Microsoft.VisualBasic.ApplicationServices;
</code></pre>
<p>Change the class to the following:</p>
<pre><code>static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
SingleInstanceApplication.Run(new Form1(), StartupNextInstanceEventHandler);
}
public static void StartupNextInstanceEventHandler(object sender, StartupNextInstanceEventArgs e)
{
MessageBox.Show("New instance");
}
}
</code></pre>
http://stackoverflow.com/questions/905447/how-to-prevent-listbox-selectedindexchanged-event/905664#9056641Answer by Kim Major for How to prevent ListBox.SelectedIndexChanged event?Kim Major2009-05-25T07:03:33Z2009-05-25T07:03:33Z<p>You can populate the listbox using lb.Items.AddRange() instead of setting the datasource. In addition to not triggering the SelectedIndexChanged, this also won't pre-select the first item.</p>
<pre><code> lb.Items.Clear();
lb.Items.AddRange(reportColumnList.ReportColumns.ToArray());
</code></pre>
http://stackoverflow.com/questions/517635/pgp-encryption-with-bouncycastle-c-causes-invalid-key-warning-on-signature-verif2PGP Encryption with BouncyCastle C# causes invalid key warning on signature verificationKim Major2009-02-05T19:54:08Z2009-02-16T19:27:45Z
<p>We need to PGP encrypt files and send them over FTP to a third party. The files are encrypted with the DH/DSS public key of the third party and signed with our private key.</p>
<p>The third party have our public key and their own private key. The encryption/decryption works, but the third party are getting warnings when they try to verify our signature.</p>
<p>When we try to decrypt and verify similarly encrypted files using PGP Desktop the files verify without warning.</p>
<p>The third party are using "McAfee E-Business Server"</p>
<p>The exact warning is:
WARNING: Bad signature, doesn't match file contents!
Bad signature from user "users name" useremail@domain.com</p>
<p>The code is a little involved, but <a href="http://blogs.microsoft.co.il/blogs/kim/archive/2009/01/23/pgp-zip-encrypted-files-with-c.aspx" rel="nofollow">I posted it on my blog</a>. I can post it here instead of a link if that is more appropriate.</p>
<p>Any insight as to how to solve this issue is appreciated.</p>
http://stackoverflow.com/questions/517635/pgp-encryption-with-bouncycastle-c-causes-invalid-key-warning-on-signature-verif/527343#5273431Answer by Kim Major for PGP Encryption with BouncyCastle C# causes invalid key warning on signature verificationKim Major2009-02-09T07:25:57Z2009-02-16T19:27:45Z<p>While I can't give a thorough explanation as to the details of the problem, here is a solution that works.
First of all it seems that the different PGP implementations are very sensitive to which program was used to genereate the keys in use.</p>
<p>The failing scenario:</p>
<ol>
<li>Create keys in PGP Desktop (RSA v4, 2048/2048)</li>
<li>Encrypt in BouncyCastle (DH/DSS, Elgamal)</li>
<li>Sign in BouncyCastle (With the RSA key)</li>
<li>Decryption and signature verification success in PGP Desktop.</li>
<li>Decryption success but signature verification fails in McAfee Business Server.</li>
</ol>
<p>In order to make McAfee Business Server succeed in verifying the keys either create the keys in BouncyCastle using the code from the BouncyCastle source code.(Org.BouncyCastle.Bcpg.OpenPgp.Examples.RsaKeyRingGenerator)
This code can be changed if you need specific key properties.</p>
<p>Another alternative is to use McAfee Business Server to generate the keys. For that you need access to the software. I did my tests with a trial version. (Which by the way was a pain in the neck to get up and running)</p>
<p>Update: I did all my tests on E-Business Server 8.5.3 (trial). I reached the point where I could encrypt and sign in Bounty and decrypt and verify in E-Business Server. Turns out the third party are using E-Business Server 7.0 which refused to verify the signature.
In order to get everything working we needed to create V3 signatures.</p>
<p>We changed from:</p>
<pre><code>PgpSignatureGenerator pgpSignatureGenerator = new PgpSignatureGenerator(m_encryptionKeys.SecretKey.PublicKey.Algorithm, HashAlgorithmTag.Sha1);
</code></pre>
<p>to</p>
<pre><code>PgpV3SignatureGenerator pgpV3SignatureGenerator = new PgpV3SignatureGenerator(m_encryptionKeys.SecretKey.PublicKey.Algorithm, HashAlgorithmTag.Sha1);
</code></pre>
http://stackoverflow.com/questions/527327/how-do-you-migrate-sql-server-database-diagrams-to-another-database/527366#5273662Answer by Kim Major for How do you migrate SQL Server Database Diagrams to another Database?Kim Major2009-02-09T07:46:53Z2009-02-09T07:46:53Z<p>Assuming you have access to both databases within a SQL Server instance.</p>
<p><strong>Enable Diagrams in the new database:</strong></p>
<p>In the new database click on the "Database Diagrams" folder. Sql Server Management Studio will prompt you to enble diagrams. If you Ok this step, you will have a sysdiagrams table in the database.</p>
<p><strong>Then execute the following:</strong></p>
<p>insert into newdb.dbo.sysdiagrams
select
name, principal_id,[version], [definition]
from olddb.dbo.sysdiagrams</p>
http://stackoverflow.com/questions/518609/how-can-i-become-a-better-c-programmer/518692#5186925Answer by Kim Major for How can I become a better C# programmer?Kim Major2009-02-06T00:54:46Z2009-02-06T00:54:46Z<p>I agree with most of the answers so far, but I think that if you want to improve as a developer you can benefit greatly by not running solo. Try to find someone who can coach you. Over the years I've made my greatest leeps in depth of understanding by teaming up with programmers who were smarter and more experienced than I was. (They still are :-) )</p>
http://stackoverflow.com/questions/515028/setter-property-injection-in-unity-without-attributes/515048#5150480Answer by Kim Major for Setter / property injection in Unity without attributesKim Major2009-02-05T08:37:44Z2009-02-05T08:37:44Z<p>The following walkthrough shows one way of doing it through configuration. You can of course wire it through code as well.
<a href="http://aardvarkblogs.wordpress.com/unity-container-tutorials/10-setter-injection/" rel="nofollow">http://aardvarkblogs.wordpress.com/unity-container-tutorials/10-setter-injection/</a></p>
http://stackoverflow.com/questions/458674/passing-a-windows-service-parameters-for-it-to-act-on/458798#4587980Answer by Kim Major for Passing a Windows Service Parameters for it to act onKim Major2009-01-19T19:19:54Z2009-01-19T19:19:54Z<p>You can instantiate your service and pass command line arguments using the ServiceController class.</p>
<pre><code>using (ServiceController serviceController = new ServiceController(serviceName))
{
string[] args = new string[1];
args[0] = "arg1";
serviceController.Start(args);
}
</code></pre>
<p>"arg1" will then be available as regular command line arguments in main() when Windows starts up the service.</p>
http://stackoverflow.com/questions/384078/entity-framework-how-do-i-use-the-entity-associations/384104#3841043Answer by Kim Major for Entity Framework - how do I use the entity associations?Kim Major2008-12-21T04:43:05Z2008-12-21T04:43:05Z<p>Entity Framework does not load related entities unless you tell it to. In order to access related entities you need to either Load() them explicitly or use Include(). Here's a short sample.</p>
<p><a href="http://blogs.msdn.com/bethmassi/archive/2008/12/10/master-details-with-entity-framework-explicit-load.aspx" rel="nofollow">http://blogs.msdn.com/bethmassi/archive/2008/12/10/master-details-with-entity-framework-explicit-load.aspx</a></p>
http://stackoverflow.com/questions/373988/best-practices-design-before-coding/374254#3742548Answer by Kim Major for Best Practices - Design before coding.Kim Major2008-12-17T11:16:42Z2008-12-20T20:01:00Z<p>I usually do enough analysis of the problem domain on paper/white board to get a good enough understanding of the problem domain to start writing code. I rarely draw implementation or class diagrams on paper. A key technique I've found to achieve better design is to not get too attached to the code you write. If I don't like it, I delete, rename, move and shuffle it around until it expresses a good enough solution to what I'm trying to solve. Sounds easy? Not at all! But with good "coding" tools, actually writing the code is not the major effort. Write some, refactor, delete, write again...</p>
<p>Good design almost never start out good. <strong>It evolves to good.</strong> Accepting this makes it easier to work in small steps without getting frustrated why the design isn't "perfect". In order for this process to work you have to posses good design skills though. The point being, even excellent designers don't get it right the first time.</p>
<p>Many times, I thought I understood the problem domain when I started, but I didn't. I then go back to the white board, talk to someone or read up on the problem domain if I realize I don't understand it well enough. I then go back to the code.</p>
<p>It is a very iterative processes.</p>
<p>An interesting question to ask when dealing with how programmers think, is how they developed their way of thinking. Personally, my way of thinking has evolved over the years, but a few events have had profound influence on the way I develop software. The most important among them have been to design software with people who are expert designers. Nothing has influenced me more than spending iterations with great designers. Another event that has, and still do, affect the way I think is going back and look at software I wrote some time back.</p>
http://stackoverflow.com/questions/307774/how-to-list-the-contents-of-a-zip-folder-in-c/307913#3079132Answer by Kim Major for How to list the contents of a .zip folder in c#?Kim Major2008-11-21T04:58:11Z2008-11-21T04:58:11Z<p>I'm relatively new here so maybe I'm not understanding what's going on. :-)
There are currently 4 answers on this thread where the two best answers have been voted down. (Pearcewg's and cxfx's) The article pointed to by pearcewg is important because it clarifies some licensing issues with SharpZipLib.
We recently evaluated several .Net compression libraries, and found that DotNetZip is currently the best aleternative.</p>
<p><strong>Very short summary:</strong></p>
<ul>
<li><p>System.IO.Packaging is significantly slower than DotNetZip.</p></li>
<li><p>SharpZipLib is GPL - see article.</p></li>
</ul>
<p>So for starters, I voted those two answers up.</p>
<p>Kim.</p>
http://stackoverflow.com/questions/291344/repository-pattern-vs-dal/293013#29301317Answer by Kim Major for Repository Pattern vs DALKim Major2008-11-15T20:26:11Z2008-11-15T20:26:11Z<p>You're definitely not the one who confuses things. :-)</p>
<p>I think the answer to the question depends on how much of a purist you want to be. </p>
<p>If you want a strict DDD point of view, that will take you down one path. If you look at the repository as a pattern that has helped us standardize the interface of the layer that separates between the services and the database it will take you down another.</p>
<p>The repository from my perspective is just a clearly specified layer of access to data.Or in other words a standardized way to implement your Data Access Layer. There are some differences between different repository implementations, but the concept is the same.</p>
<p>Some people will put more DDD constraints on the repository while others will use the repository as a convenient mediator between the database and the service layer. A repository like a DAL isolates the service layer from data access specifics.</p>
<p>One implementation issue that seems to make them different, is that a repository is often created with methods that take a specification. The repository will return data that satisfies that specification. Most traditional DALs that I have seen, will have a larger set of methods where the method will take any number of parameters. While this may sound like a small difference, it is a big issue when you enter the realms of Linq and Expressions.
Our default repository interface looks like this:</p>
<pre><code>public interface IRepository : IDisposable
{
T[] GetAll<T>();
T[] GetAll<T>(Expression<Func<T, bool>> filter);
T GetSingle<T>(Expression<Func<T, bool>> filter);
T GetSingle<T>(Expression<Func<T, bool>> filter, List<Expression<Func<T, object>>> subSelectors);
void Delete<T>(T entity);
void Add<T>(T entity);
int SaveChanges();
DbTransaction BeginTransaction();
}
</code></pre>
<p>Is this a DAL or a repository? In this case I guess its both.</p>
<p>Kim</p>
http://stackoverflow.com/questions/286876/asp-net-how-to-best-create-a-test-db-when-doing-tdd/289449#2894490Answer by Kim Major for ASP.NET How to best create a test DB when doing TDD?Kim Major2008-11-14T07:46:36Z2008-11-14T07:46:36Z<p>Although I'm not using Asp.Net or the MVC framework I do have the need to test services without hitting the database. Your question triggered the writing up of a short (ok, maybe not so short) summary of how I do it. Not claiming it's the best or anything, but it works for us. We access data through a repository and when required we plug in an in-memory repository as explained in the post.</p>
<p><a href="http://blogs.microsoft.co.il/blogs/kim/archive/2008/11/14/testable-data-access-with-the-repository-pattern.aspx" rel="nofollow">http://blogs.microsoft.co.il/blogs/kim/archive/2008/11/14/testable-data-access-with-the-repository-pattern.aspx</a></p>
http://stackoverflow.com/questions/281652/sql-command-add-database-diagramming/281776#2817761Answer by Kim Major for SQL Command Add Database DiagrammingKim Major2008-11-11T18:35:09Z2008-11-11T18:35:09Z<p>The script is a little too long to add here, but here's what you can do.
1) Create a new database.
2) Start sql server profiler
3) Click the "Database Diagrams" folder in management studio.
4) Clear the profiler.
5) Confirm the message box with a prompt to enable diagramming.
6) Profiler now contains the script that enabled diagramming.
7) Select the script in profiler and copy the output from the bottom pane.</p>
<p>Kim</p>
http://stackoverflow.com/questions/257950/net-training-suggestion-for-an-average-developer/257979#2579791Answer by Kim Major for .NET training suggestion for an average developerKim Major2008-11-03T05:18:35Z2008-11-03T05:18:35Z<p>I would suggest a mix of a good course to get the devs up to speed and ongoing coaching for some time. (No I'm not a trainer :-)) Try to get a budget that covers a 5 days course and a consultant that can come in for a few hours a week for a couple of months to do some code reviews and answer questions. Sure questions can be addressed by going online, but during the transition phase there are issues that need to be addressed that go a little deeper than how do I color a TextBox font etc.</p>
http://stackoverflow.com/questions/1655360/having-troubles-loading-related-entities-eager-load-with-objectcontext-createqu/1655473#1655473Comment by Kim Major on Having troubles loading related entities (Eager Load) with ObjectContext.CreateQuery (Entity Framework and Repositories)Kim Major2009-11-02T15:06:00Z2009-11-02T15:06:00ZI stand corrected by Craig. Include takes a property name.http://stackoverflow.com/questions/1655360/having-troubles-loading-related-entities-eager-load-with-objectcontext-createqu/1655473#1655473Comment by Kim Major on Having troubles loading related entities (Eager Load) with ObjectContext.CreateQuery (Entity Framework and Repositories)Kim Major2009-10-31T20:32:37Z2009-10-31T20:32:37ZIf you expand the "Results View" of the query in the debug visualizer, you have a Users property. When you expand that, do you get a Count of Users?http://stackoverflow.com/questions/1645215/how-do-i-add-a-column-to-large-sql-server-table/1645248#1645248Comment by Kim Major on How do I add a column to large sql server tableKim Major2009-10-29T18:09:30Z2009-10-29T18:09:30ZMaybe this is nitpicking, but I believe the that "b/c then the engine needs to create a new table and copy the data to the new table" is not entirely accurate. AFAIK, the database engine does not allow "inserting" columns, only adding of columns to the end of the table definition. The client tools are responsible for creating a temp table, copying etc.http://stackoverflow.com/questions/1540179/is-this-thread-safe-shared-data-without-mutex-semaphore/1540264#1540264Comment by Kim Major on Is this thread safe? (shared data without mutex/semaphore)Kim Major2009-10-08T20:45:49Z2009-10-08T20:45:49ZOk. I edited the answer to make that clear.http://stackoverflow.com/questions/1540179/is-this-thread-safe-shared-data-without-mutex-semaphore/1540264#1540264Comment by Kim Major on Is this thread safe? (shared data without mutex/semaphore)Kim Major2009-10-08T20:39:24Z2009-10-08T20:39:24ZCouldn't it be the case that the compiler re-order code which could cause an issue on a single core machine as well?http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/1441655#1441655Comment by Kim Major on How to add words to an already loaded grammar using System.Speech and SAPI 5.3Kim Major2009-09-20T22:09:10Z2009-09-20T22:09:10ZThank you. I'll have a look and see if I have access to AddTextSubset(). Maybe through reflection.http://stackoverflow.com/questions/1053560/how-to-get-max-string-length-in-every-column-of-a-datatable/1053654#1053654Comment by Kim Major on How to get Max String Length in every Column of a DatatableKim Major2009-06-27T21:35:55Z2009-06-27T21:35:55ZAgreed. It gets the max allowed string length for each column.http://stackoverflow.com/questions/906100/run-one-instance-from-the-application/906488#906488Comment by Kim Major on Run one instance from the application Kim Major2009-05-26T18:33:28Z2009-05-26T18:33:28ZThanks for pointing this out, I wasn't aware of that. I could only see one pitfall in the linked post and that was that this solution won't work when windows is running in safe mode.
Many applications have functionality that requires running in normal mode anyhow, and then this might not be much of a drawback. Anyhow, it's good to know that there is an issue.http://stackoverflow.com/questions/906100/run-one-instance-from-the-application/906115#906115Comment by Kim Major on Run one instance from the application Kim Major2009-05-25T16:28:40Z2009-05-25T16:28:40ZSee my suggestion (in my answer) on how to use the VB solution in C#. It's a little more than checking a check box, but not by much.http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/652591#652591Comment by Kim Major on How to add words to an already loaded grammar using System.Speech and SAPI 5.3Kim Major2009-03-17T07:18:13Z2009-03-17T07:18:13ZThe dictation grammar won't work since I need more context. The sample I gave in a previous comment about typing phrases in word is oversimplified. The grammar is pretty complex. Anyhow, thanks for you input.http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/651246#651246Comment by Kim Major on How to add words to an already loaded grammar using System.Speech and SAPI 5.3Kim Major2009-03-16T21:13:38Z2009-03-16T21:13:38ZConor, maybe I can try something like this. Create a main grammar with references to n empty grammars. (where n is some sufficiently large number) Let's say that 5000 phrases makes the reload of a referenced grammar noticeable. I could then move to the next reference for each 5000th phrase.http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/651246#651246Comment by Kim Major on How to add words to an already loaded grammar using System.Speech and SAPI 5.3Kim Major2009-03-16T21:09:21Z2009-03-16T21:09:21ZI'll try to give an example. Open word and start to type. Each phrase you add/delete/change should be added/deleted/changed(=delete then add) to the grammar. I need to support large files. (where I define large as making the the reload noticeable)
http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/651246#651246Comment by Kim Major on How to add words to an already loaded grammar using System.Speech and SAPI 5.3Kim Major2009-03-16T17:31:37Z2009-03-16T17:31:37ZI'm not sure I follow. Let's say I add a reference to an external grammar as described in AppendRuleReference. After this referenced grammar has been loaded, the content of it changes. How do I now update the speech engine to use the amended grammar? (without reloading it of course)http://stackoverflow.com/questions/517634/vmware-6-x-on-vista-64-runs-as-32-taskComment by Kim Major on VMWare 6.x on Vista 64 runs as *32 taskKim Major2009-02-05T19:59:35Z2009-02-05T19:59:35ZFWIW, I'm running 6.5.1 on Windows 2008 64bit and it is also running as *32.http://stackoverflow.com/questions/515028/setter-property-injection-in-unity-without-attributes/515048#515048Comment by Kim Major on Setter / property injection in Unity without attributesKim Major2009-02-05T09:06:24Z2009-02-05T09:06:24ZI haven't tried the following so I'm not sure. I think you should be able to register all your classes. Then reflect over the registered classes and add the setter injection registration if the type has an ILogger Setter.