User Leon Bambrick - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T03:57:40Zhttp://stackoverflow.com/feeds/user/49http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1671607/er-diagram-drawing/1671863#16718635Answer by Leon Bambrick for ER Diagram (Drawing)Leon Bambrick2009-11-04T05:40:52Z2009-11-04T05:40:52Z<p>(I'm not doing your homework, but I'd like to help all the same)</p>
<p>Start by listing out what all the 'entities' are.
e.g. </p>
<ul>
<li>Instructors </li>
<li>Courses </li>
<li>etc.</li>
</ul>
<p>Then think about the relationship between each pair:</p>
<p>e.g. "How do instructors relate to courses? and vice-versa"</p>
<ul>
<li>Does an instructor have one course or many? </li>
<li>Does a course have one instructor or many?</li>
</ul>
<p>Draw each relationship as a line, with the relevant symbol on each end to show the type of relationship. </p>
<p>Tip: If two entities have a many-many relationship between them, then think about whether there is actually some kind of intermediate thing that sits between them. </p>
<p>Then, draw it up neatly, with all extraneous entities and relationships removed, sticking with the exact symbology dictated by your course. (E.g. there are different standards for how ER's are drawn -- your course will have already settled on one of them).</p>
http://stackoverflow.com/questions/1667310/combined-area-of-overlapping-circles/1667510#16675107Answer by Leon Bambrick for Combined area of overlapping circlesLeon Bambrick2009-11-03T14:05:42Z2009-11-03T14:05:42Z<p>I love the approach to the case of 2 intersecting circles -- here's how i'd use a slight variation of the same approach for the more complex example. </p>
<p>It might give better insight into generalising the algorithm for larger numbers of semi-overlapping circles. </p>
<p>The difference here is that i start by linking the centres (so there's a vertice between the centre of the circles, rather than between the places where the circles intersect) I think this lets it generalise better.</p>
<p>(in practice, maybe the monte-carlo method is worthwhile)</p>
<p><img src="http://secretGeek.net/image/triangles%5F1667310.png" alt="alt text" /></p>
http://stackoverflow.com/questions/698/is-there-an-ide-that-provides-code-completion-for-python/700#70021Answer by Leon Bambrick for Is there an IDE that provides code completion for PythonLeon Bambrick2008-08-03T14:30:02Z2009-09-15T01:06:57Z<p>The free <a href="http://www.activestate.com/komodo%5Fedit/" rel="nofollow"><strong>Komodo Edit</strong></a> app from ActiveState includes code completion.</p>
<p>It's provided via XML files that detail the API(s) you are using.</p>
<p>It is cross platform and thus works on Windows, Linux and Mac.</p>
http://stackoverflow.com/questions/523879/need-help-getting-ngen-back-into-working-condition3Need help getting NGen back into working condition.Leon Bambrick2009-02-07T14:56:12Z2009-09-02T13:43:33Z
<p>NGen is unhappy on my computer, and i can't find a way to get a deep understanding of what is going wrong.</p>
<p>After every startup, ngen logs this message:</p>
<blockquote>
<p>.NET Runtime Optimization Service
(clr_optimization_v2.0.50727_32) -
Service reached limit of transient
errors. Will shut down. Last error
returned from Service Manager:
0x8000ffff.</p>
</blockquote>
<p>And when i try to start the optimization service at the commandline i get that same error logged again.</p>
<p>I managed to start the ngen service and immediately pause the queue (by writing a two line batch file, like this:</p>
<blockquote>
<p>net start
clr_optimization_v2.0.50727_32</p>
<p>ngen queue pause</p>
</blockquote>
<p>so now i tried clearing out the queue, by executing items at different status levels, like this:</p>
<blockquote>
<p>ngen executequeueditems 3 /nologo
/verbose</p>
</blockquote>
<p>but the result is always:</p>
<blockquote>
<p>Catastrophic failure (Exception from
HRESULT: 0x8000FFFF (E_UNEXPECTED))</p>
</blockquote>
<p>...along the way i've uninstalled/re-installed visual studio 2008.
And i've uninstalled SQL server 2005, and i've run the 'system file checker':
sfc /scannow</p>
<p>Running short of ideas, and would love help from an ngen expert.</p>
<p>How do i get info such as
"What's causing these catastrophic failures?"
(note that the /verbose option doesn't increase the amount of info I find out.
"What files are in the queue to be generated?" -- Can I remove some of those files, or pin the blame on a particular file...</p>
<p>Uninstalling and reinstalling the .net framework 2.0 isn't easy, as this is vista and it's a protected part of the operating system. </p>
<p>Update:
i've also tried the advice offered <a href="http://social.msdn.microsoft.com/Forums/en-US/netfxsetup/thread/f56cc6e4-c2bf-490c-b87b-3e22b1e6b935/" rel="nofollow">here</a> (and mentioned in the first reply) -- but i just get the same catastrophic failure message. </p>
<blockquote>
<p>C:\Windows\Microsoft.NET\Framework\v2.0.50727>ngen
executequeueditems /nologo
Catastrophic failure (Exception from
HRESULT: 0x8000FFFF (E_UNEXPECTED))</p>
</blockquote>
http://stackoverflow.com/questions/1344519/how-do-i-add-a-powershell-cmdlet-or-function-to-my-machine-so-that-it-is-always-a4How do I add a PowerShell cmdlet or function to my machine so that it is always available?Leon Bambrick2009-08-28T01:03:03Z2009-08-28T16:50:14Z
<p>If I find (or create) a new PowerShell cmdlet (or function), how do I add it to my machine?</p>
<p>Do I copy it to a particular folder?
Do I put its content in a particular file?
Do I need to authorize it, or sign it, or give it permission in some way?</p>
<p>I don't want to use it in just one session, I want it to be available whenever I use Powershell on this machine.</p>
http://stackoverflow.com/questions/1338542/if-its-bad-to-use-inline-sql-how-does-using-linq-to-perform-queries-differ-in-pr/1338556#13385560Answer by Leon Bambrick for If its bad to use inline SQL, how does using LINQ to perform queries differ in practice?Leon Bambrick2009-08-27T02:27:42Z2009-08-27T02:37:28Z<p>Two advantages of <strong>"Linq To Sql"</strong> <em>versus</em> (the common worst-case of) <strong>"inline SQL"</strong>.</p>
<p>Parameters are treated as parameters, not just as concatenated text -- this overcomes SQL injection problems.</p>
<p>The separate model layer allows for compile time checking that the generated sql will match the schema. (In a worst case of inline sql, you'd have no way to know at compile time if you were referencing a column that had been deleted, for example)</p>
http://stackoverflow.com/questions/1326310/firebird-net-interoperation/1326321#13263212Answer by Leon Bambrick for Firebird .NET interoperationLeon Bambrick2009-08-25T06:04:53Z2009-08-25T06:12:03Z<p>I've used firebird in a commercial desktop application. </p>
<p>Its performance is fine, until you deal with queries that return large result sets. In those cases we found that the .net provider for firebird was performing in an inefficient way. You may find that this isn't a problem for you -- if queries are specific enough they don't return large result sets. </p>
<p>For us, the performance remained passable. </p>
<p>It was certainly feature complete, in the sense that it could do everything we wanted it do. The tooling is also sufficient to help with troubleshooting, table design etc.</p>
<p>As a sql-server dev i found firebird's sql syntax close enough that we handled problems through general googling and without needing to ask for help from stackoverflow.</p>
http://stackoverflow.com/questions/1326264/creative-terminology/1326281#13262812Answer by Leon Bambrick for Creative TerminologyLeon Bambrick2009-08-25T05:46:31Z2009-08-25T05:46:31Z<p>Using 'metaphors' is a common theme in agile (and pattern) literature.</p>
<p>'Children' (in your question) is an example of a metaphor that is extensively used and for good reasons.</p>
<p>So, I'd encourage the use of metaphors, provided they are applicable and not a stretch of the imagination.</p>
<p>Metaphors are everywhere in computing. From files to bugs to pointers to streams... you can't avoid them.</p>
http://stackoverflow.com/questions/1312275/what-do-you-do-with-atrocious-code/1312303#13123033Answer by Leon Bambrick for What do you do with atrocious code?Leon Bambrick2009-08-21T14:30:29Z2009-08-22T03:16:23Z<p>You try to refactor it, in the strict sense on the word, where you're not changing the behaviour.</p>
<p>The first target is usually to break up giant methods.</p>
http://stackoverflow.com/questions/1311816/what-are-you-doing-against-a-working-programming-writing-blockade/1312287#13122873Answer by Leon Bambrick for What are you doing against a working/programming/writing blockade?Leon Bambrick2009-08-21T14:27:10Z2009-08-21T14:27:10Z<p>The 'boot loader' provided by Ries is great, but it's strange that 'Social interaction' is missing.</p>
<p>Solitary confinement is used in prisons as a terrible form of torture. And often freelancers inflict this torture on themselves voluntarily.</p>
<p>The human animal needs a lot of social interaction. Working by yourself is very likely to take its toll on your mental wellbeing after a few months.</p>
http://stackoverflow.com/questions/1310479/how-do-you-make-people-accept-code-review/1312207#13122070Answer by Leon Bambrick for How do you make people accept code review?Leon Bambrick2009-08-21T14:13:05Z2009-08-21T14:13:05Z<p>You need to accept that you can't "make" people accept code review.</p>
<p>You can make a <em>compiler</em> do what you want, but with humans, the best you can aim for is:</p>
<blockquote>
<p>"How can I be more influential when
reviewing another person's code?"</p>
</blockquote>
<p>...and that's another question entirely.</p>
http://stackoverflow.com/questions/362488/should-i-prepare-my-code-for-future-changes/362523#3625237Answer by Leon Bambrick for Should I prepare my code for future changes?Leon Bambrick2008-12-12T11:37:09Z2009-07-08T08:35:53Z<p>yagni. </p>
<p><a href="http://en.wikipedia.org/wiki/YAGNI" rel="nofollow">http://en.wikipedia.org/wiki/YAGNI</a> (*inserted by friendly editor :-) *)</p>
<p>fix the bugs in that horrenous code you're writing today.</p>
<p>refactor when the time comes.</p>
http://stackoverflow.com/questions/102702/are-people-with-certain-myers-briggs-personality-types-drawn-to-careers-in-progra/549233#5492334Answer by Leon Bambrick for Are people with certain Myers Briggs personality types drawn to careers in programming/development?Leon Bambrick2009-02-14T15:26:51Z2009-02-14T15:26:51Z<p>INFP</p>
<p>but i find the myers-briggs personality test quite ridiculous. it's worse than astrology. and trying to extend outward from one of these results is just dangerous.</p>
http://stackoverflow.com/questions/523879/need-help-getting-ngen-back-into-working-condition/541227#5412272Answer by Leon Bambrick for Need help getting NGen back into working condition.Leon Bambrick2009-02-12T13:31:57Z2009-02-12T13:31:57Z<p>In answer to this part of the question:</p>
<blockquote>
<p>"What's causing these catastrophic
failures?"</p>
</blockquote>
<p>There's two log files that can help answer this:</p>
<pre><code>C:\Windows\Microsoft.NET\Framework\v2.0.50727\ngen.log
C:\Windows\Microsoft.NET\Framework\v2.0.50727\ngen_service.log
</code></pre>
<p>(As well as the usual application log, though it is less helpful)</p>
<p>In answer to:</p>
<blockquote>
<p>"What files are in the queue to be
generated?"</p>
</blockquote>
<p>The usual answer is that this can be seen by running:</p>
<pre><code>ngen.exe display
</code></pre>
<p>(Though in my case it only returns </p>
<pre><code>NGEN Roots:
Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
</code></pre>
<p>)</p>
http://stackoverflow.com/questions/523875/where-to-put-try-catch/523886#5238862Answer by Leon Bambrick for Where to put try catchLeon Bambrick2009-02-07T14:58:02Z2009-02-07T14:58:02Z<p>definitely put a try catch closest to the user -- because in that location you can translate it into something meaningful for your user.</p>
<p>Deeper try catches could only be needed if you intend to do something with them -- for example, handle the exception, or perhaps log and rethrow the exception.</p>
http://stackoverflow.com/questions/41375/compromising-my-integrity/293786#29378610Answer by Leon Bambrick for Compromising my integrity ?Leon Bambrick2008-11-16T11:12:40Z2008-12-16T11:33:13Z<p>We (at TimeSnapper) get requests for that feature all the time (we had one just today in fact). </p>
<p>We don't give in to it. It's a matter of principle. I fully agree with your opinion on this and I'm really pleased to see the responses people have given here, which basically support that stance.</p>
<p>Best of luck with your competing work ;-)</p>
http://stackoverflow.com/questions/349150/how-long-before-asp-net-mvc-becomes-widely-used-in-industry/349246#3492460Answer by Leon Bambrick for How long before ASP.NET MVC becomes widely used in industry?Leon Bambrick2008-12-08T11:26:46Z2008-12-08T11:26:46Z<p>i also know some regular companies that are already developing in it, and some that are considering using it. I think it's already at a stage where a regular asp.net programmer would be wise to tinker with it.</p>
http://stackoverflow.com/questions/371/how-do-you-make-sure-email-you-send-programmatically-is-not-automatically-marked69How do you make sure email you send programmatically is not automatically marked as spam?Leon Bambrick2008-08-02T08:19:18Z2008-11-21T15:25:56Z
<p>This is a tricky one - and I've always relied on techniques such as permission-based emails (i.e. only sending to people you have permission to send to) and not using blatantly spamish terminology.</p>
<p>Of late, some of the emails I send out programmatically have started being shuffled into people's spam folder automatically - and I'm wondering what i can do about it.</p>
<p>This is despite the fact that these particular emails are not ones that humans would mark as spam (specifically, they are emails that contain license keys that people have paid good money for, so I don't think they're going to consider them spam)</p>
<p>I figure this is a big topic in which I am essentially an ignorant simpleton.</p>
http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/170201#1702012Answer by Leon Bambrick for Do you have a hobby development project?Leon Bambrick2008-10-04T11:55:44Z2008-10-04T11:55:44Z<p>Currently writing a very simple reporting framework, just for fun.</p>
<blockquote>
<p>What kind of project is it?</p>
</blockquote>
<p>C#, windows form, some web/jquery integration</p>
<blockquote>
<p>Did it help you professionally? How?</p>
</blockquote>
<p>Sort of thing i would've used in some other jobs i've had. Other hobby projects i've had have been very helpful professionally. </p>
<blockquote>
<p>Is it open-source? Do other people use
it?</p>
</blockquote>
<p>i intend to release it as a freeware edition and a commercial edition, but not open source.</p>
http://stackoverflow.com/questions/88763/what-is-asp-net-mvc/88789#887899Answer by Leon Bambrick for What Is ASP.Net MVC?Leon Bambrick2008-09-17T23:56:12Z2008-09-17T23:56:12Z<p>.aspx doesn't fulfill the MVC pattern because the aspx page (the 'view') is called before the code behind (the 'controller').</p>
<p>This means that the controller has a 'hard dependency' on the view, which is very much against MVC principles.</p>
<p>One of the core benefits of MVC is that it allows you to test your controller (which contains a lot of logic) without instantiating a real view. You simply can't do this in the .aspx world. </p>
<p>Testing the controller all by itself is much faster than having to instantiate an entire asp.net pipeline (application, request, response, view state, session state etc).</p>
http://stackoverflow.com/questions/80291/granting-access-to-hundreds-of-sps/80340#803404Answer by Leon Bambrick for Granting access to hundreds of SPs??Leon Bambrick2008-09-17T05:42:36Z2008-09-17T05:42:36Z<ul>
<li>Create a role in sql server.</li>
<li>Write a
script that grants that role
permission to use those sprocs.</li>
<li>Add those NT user groups to that role.</li>
</ul>
http://stackoverflow.com/questions/79356/what-is-best-for-desktop-widgets-small-footprint-and-pretty-graphics/79859#798591Answer by Leon Bambrick for What is best for desktop widgets (small footprint and pretty graphics)?Leon Bambrick2008-09-17T04:03:56Z2008-09-17T04:03:56Z<p>re:</p>
<blockquote>
<p>Update: Clarification The above sizes,
are the memory being used as the
process is ran, not the executable.</p>
</blockquote>
<p>Okay, when you run a tiny C# Win Forms app, the smallest amount of RAM that is reserved for it is around 2 meg, maybe 4 meg. This is just a working set that it creates. It's not actively using all of this memory, or anything like it. It just reserves that much space up front so it doesn't have to do long/slow/expensive requests for more memory later as needed.</p>
<p>Reserving a smaller size upfront is likely to be a false optimization.</p>
<p>(You can reduce the working set with a pinvoke call if it really matters. see <a href="http://www.pinvoke.net/default.aspx/kernel32.SetProcessWorkingSetSize" rel="nofollow">pinvoke for 'set process working set size'</a> )</p>
http://stackoverflow.com/questions/79356/what-is-best-for-desktop-widgets-small-footprint-and-pretty-graphics/79729#797290Answer by Leon Bambrick for What is best for desktop widgets (small footprint and pretty graphics)?Leon Bambrick2008-09-17T03:41:50Z2008-09-17T03:41:50Z<p>If you "already have a C# dll" you're intending to use then there must be .net already installed on the target machine.</p>
<p>In that case, a C# win forms app need not be anywhere near 20 meg. The smallest hello world type win form would be 7 kilobytes.</p>
http://stackoverflow.com/questions/79669/how-best-to-copy-entire-databases-in-ms-sql-server/79691#796916Answer by Leon Bambrick for How best to copy entire databases in MS SQL Server?Leon Bambrick2008-09-17T03:34:50Z2008-09-17T03:34:50Z<p>Given that you're performing this on multiple databases -- you want a simple scripted solution, not a point and click solution.</p>
<p>This is a backup script that i keep around.
Get it working for one file and then modify it for many.</p>
<pre><code>(on source server...)
BACKUP DATABASE Northwind
TO DISK = 'c:\Northwind.bak'
(target server...)
RESTORE FILELISTONLY
FROM DISK = 'c:\Northwind.bak'
(look at the device names... and determine where you want the mdf and
ldf files to go on this target server)
RESTORE DATABASE TestDB
FROM DISK = 'c:\Northwind.bak'
WITH MOVE 'Northwind' TO 'c:\test\testdb.mdf',
MOVE 'Northwind_log' TO 'c:\test\testdb.ldf'
GO
</code></pre>
http://stackoverflow.com/questions/39492/where-can-f-actually-save-time-and-money/48277#482771Answer by Leon Bambrick for Where can F# actually save time and money?Leon Bambrick2008-09-07T09:47:56Z2008-09-07T09:57:00Z<p>re @<a href="#39538" rel="nofollow">Jonathan Holland</a>: </p>
<blockquote>
<p>"its especially difficult to use
functional programming in a heavy IO
application."</p>
</blockquote>
<p>and Chris Conway:</p>
<blockquote>
<p>@<a href="#39538" rel="nofollow">Jonathan Holland</a>: F# is in no way
"stateless." Like all languages in the
ML family, it has mutable references.
I think you have it mixed up with
Haskell.</p>
</blockquote>
<p>Just backing up what Chris has said. Jonathan misunderstands F# and does it an ignorant disservice here. </p>
<p>His comments probably reflect an opinion about a 'pure' functional programming language (such as Haskell) but they're completely out of place with regards to F#.</p>
http://stackoverflow.com/questions/47315/f-real-world-apps/48272#482721Answer by Leon Bambrick for F# "real world" apps?Leon Bambrick2008-09-07T09:36:11Z2008-09-07T09:54:43Z<p>When you install F# there's a bunch of samples that come with it. For Windows forms examples look in the subfolder "SimpleForm" or the subfolder "WinForms".</p>
<p>I think Tomas Petricek's "<a href="http://tomasp.net/articles/aspnet-in-fsharp.aspx" rel="nofollow">F# web tool kit</a>" is an interesting example of using F# for asp.net development.</p>
<p>(Tomas was responsible for the Phalanger compiler, which compiled php into .net msil) </p>
http://stackoverflow.com/questions/34262/query-tfs-for-updated-files/34297#342970Answer by Leon Bambrick for Query TFS for updated filesLeon Bambrick2008-08-29T09:58:37Z2008-08-29T09:58:37Z<p>if they checked them in as part of a single changeset then you can find them that way. </p>
<p>(right click file in solution explorer, view history, double-click on the relevant changeset and you'll see all the related files for that checkin)</p>
<p>Is your question about finding this info via the TFS API via the website, or via the visual studio interface? </p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/27617#276179Answer by Leon Bambrick for Diagnosing Deadlocks in SQL Server 2005Leon Bambrick2008-08-26T09:20:03Z2008-08-26T09:20:03Z<p>I'm pretty uncomfortable about this question and the attendant answers. There's a lot of "try this magic dust! No that magic dust!"</p>
<p>I can't see anywhere that you've anaylzed the locks that are taken, and determined what exact type of locks are deadlocked.</p>
<p>All you've indicated is that some locks occur -- not what is deadlocking.</p>
<p>In SQL 2005 you can get more info about what locks are being taken out by using:</p>
<p>DBCC TRACEON (1222, -1)</p>
<p>so that when the deadlock occurs you'll have better diagnostics.</p>
http://stackoverflow.com/questions/25833/how-to-open-vs-2008-solution-in-vs-2005/25838#258385Answer by Leon Bambrick for How to open VS 2008 solution in VS 2005?Leon Bambrick2008-08-25T10:16:49Z2008-08-25T10:16:49Z<p>Here's a <a href="http://mises.org/Community/blogs/misestech/archive/2008/02/28/visual-studio-2008-to-2005-downgrade-utility.aspx" rel="nofollow">visual studio 2008 to 2005 downgrade tool</a>
And <a href="http://home.hot.rr.com/graye/Articles/ProjectConverter.htm" rel="nofollow">another one</a>.</p>
<p>I haven't tried either of these, so please report back if they are successful for you ;-)</p>
http://stackoverflow.com/questions/24821/buffer-output/25034#250341Answer by Leon Bambrick for Buffer OutputLeon Bambrick2008-08-24T13:30:02Z2008-08-24T13:30:02Z<p>I've done some fruitless research on this one, but i'll share my line of thinking in the dim hope that it helps.</p>
<p>IIS is one of the things sitting between client and server in this case, so it might be useful to know what version of IIS is involved in each case -- and to investigate if there's some way that IIS can perform its own buffering on an open connection.</p>
<p>Though it's not quite on the money, this article about <a href="http://support.microsoft.com/?id=840875" rel="nofollow">IIS6 v IIS 5</a> is the kind of thing I'm thinking of.</p>
http://stackoverflow.com/questions/1661584/compiling-an-aspx-page-into-a-standalone-program/1674017#1674017Comment by Leon Bambrick on Compiling an ASPX page into a standalone programLeon Bambrick2009-11-06T00:10:50Z2009-11-06T00:10:50ZThanks SLaks, both comments were helpful.
Do I need to add a Global.asax somewhere?
I've now got a NullRef exception at BuildManager.CreateInstanceFromVirtualPath -- the inner exception leads me to: System.Web.Compilation.ApplicationBuildProvider.GetGlobalAsaxBuildResult(Boolean isPrecompiledApp), which is why i think i have to stop it worrying about a global.asax.http://stackoverflow.com/questions/1661584/compiling-an-aspx-page-into-a-standalone-program/1674017#1674017Comment by Leon Bambrick on Compiling an ASPX page into a standalone programLeon Bambrick2009-11-05T07:28:00Z2009-11-05T07:28:00ZThis is a great idea... i'm trying to get the same working here. When I call "var page = PageBuilder.CreatePage<MyPageName>(someVirtualPath);" I don't know what value to use for 'someVirtualPath'. I figure it will be related to the name of my aspx file, but I can't get a value that works.http://stackoverflow.com/questions/523879/need-help-getting-ngen-back-into-working-condition/1367776#1367776Comment by Leon Bambrick on Need help getting NGen back into working condition.Leon Bambrick2009-09-03T04:51:41Z2009-09-03T04:51:41ZGood work kliszaq! Please report back if "ngen /delete *" leads to any other issues for you.http://stackoverflow.com/questions/1315878/can-someone-convert-these-2-functions-to-c-from-cComment by Leon Bambrick on Can someone convert these 2 functions to C# (from C++)?Leon Bambrick2009-08-22T12:37:55Z2009-08-22T12:37:55ZHi Alon. Just fyi, i suspect that people have voted you down because the question looks a bit like a 'please do my homework' request.
If that's not the case, then you ought to edit your question to demonstrate some of the existing work you've put into this. http://stackoverflow.com/questions/1312033/i-need-help-with-refining-my-string-formatter/1312086#1312086Comment by Leon Bambrick on I need help with refining my string formatterLeon Bambrick2009-08-21T14:19:47Z2009-08-21T14:19:47ZYou were just dying to sprinkle a little linq in there, right? ;-)http://stackoverflow.com/questions/1310479/how-do-you-make-people-accept-code-reviewComment by Leon Bambrick on How do you make people accept code review?Leon Bambrick2009-08-21T14:16:13Z2009-08-21T14:16:13ZYou have to "force them to become better programmers" ?
Maybe... you want to be a good role model, and a steward who guides them to become a better programmer. Attempting to "force" people can often lead to the wrong result entirely.http://stackoverflow.com/questions/523879/need-help-getting-ngen-back-into-working-condition/541227#541227Comment by Leon Bambrick on Need help getting NGen back into working condition.Leon Bambrick2009-03-15T11:18:09Z2009-03-15T11:18:09ZFair call Harry -- I've marked it.http://stackoverflow.com/questions/523879/need-help-getting-ngen-back-into-working-conditionComment by Leon Bambrick on Need help getting NGen back into working condition.Leon Bambrick2009-03-15T11:17:37Z2009-03-15T11:17:37ZHi Harry -- Phil Haack's description here might be helpful.
<a href="http://haacked.com/archive/2009/03/05/troubleshooting-installers.aspx" rel="nofollow">haacked.com/archive/2009/…</a>
I eventually used Orca.exe to remove the ngen step from the MVC installer.http://stackoverflow.com/questions/506358/excelapp-createdispatch-returns-a-zero-value-failure/506508#506508Comment by Leon Bambrick on excelApp.CreateDispatch() returns a zero value : failureLeon Bambrick2009-02-22T13:38:50Z2009-02-22T13:38:50ZGood work for writing in the answer when you found it.http://stackoverflow.com/questions/574911/difference-between-windows-and-console-application/574918#574918Comment by Leon Bambrick on Difference between Windows and Console application Leon Bambrick2009-02-22T13:36:16Z2009-02-22T13:36:16Zthat's the number of "Up votes" -- 4 people (5 now) have voted in favor of this answer.http://stackoverflow.com/questions/545937/what-technology-to-use-in-creating-dsl-for-rules-engine/555056#555056Comment by Leon Bambrick on What technology to use in creating DSL for rules engine?Leon Bambrick2009-02-22T13:30:52Z2009-02-22T13:30:52Zi've been tinkering with Oslo -- and it's very eye opening.http://stackoverflow.com/questions/498823/is-there-a-publicly-available-list-of-the-us-states-in-machine-readable-form/498832#498832Comment by Leon Bambrick on Is there a publicly available list of the US States in machine readable form?Leon Bambrick2009-02-10T21:32:28Z2009-02-10T21:32:28ZHuh? Canada is missing from the list?
(couldn't resist)http://stackoverflow.com/questions/523879/need-help-getting-ngen-back-into-working-condition/524363#524363Comment by Leon Bambrick on Need help getting NGen back into working condition.Leon Bambrick2009-02-07T23:18:55Z2009-02-07T23:18:55Zhi bobby. i updated the question to mention what happened when i tried this. (it failed, but took over 256 chars to explain that ;-) )http://stackoverflow.com/questions/523875/where-to-put-try-catch/523898#523898Comment by Leon Bambrick on Where to put try catchLeon Bambrick2009-02-07T15:12:31Z2009-02-07T15:12:31Zi'm with Ramesh on that one. Catching for just the sake of logging is tempting... but it's just a lot of busy work you don't need and cnan safely be avoided. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406812#406812Comment by Leon Bambrick on What's your most controversial programming opinion?Leon Bambrick2009-01-31T03:55:37Z2009-01-31T03:55:37Zusing the word 'pernicious' is sufficient cause for an upvote. (being right is another sufficient cause)