User Simon Johnson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T02:26:15Zhttp://stackoverflow.com/feeds/user/854http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/499889/ssd-and-programming6SSD and programmingSimon Johnson2009-02-01T00:32:20Z2009-11-02T10:26:27Z
<p>I'm trying to put together a business case for getting every developer in our company an Intel SSD drive.</p>
<p>The main codebase contains roughly 400,000 lines of code. My theory is that since the code is scattered about in maybe 1500 files, an SSD drive would be substantially faster for compiles. The logic being that many small reads really punishes the seak-time bottle-neck of a traditional hard-drive.</p>
<p>Am I right? Is SSD worth the money in productivity gains by reducing the edit/compile cycle time? </p>
http://stackoverflow.com/questions/21301/lightweight-outlook-search4Lightweight outlook search [closed]Simon Johnson2008-08-21T22:01:58Z2009-09-15T20:01:11Z
<p>Does anybody know of a plugin for Outlook 2003 that makes the search fast and accurate?</p>
<p>I tried using Microsoft Search and Google Desktop Search but I find that these product slow down my development machine too much.</p>
<p>I heard of Lookout but it appears that Microsoft has pulled it.</p>
http://stackoverflow.com/questions/100789/sql-server-locks-explained3SQL Server locks explainedSimon Johnson2008-09-19T09:43:11Z2009-07-03T19:38:10Z
<p>Below is a list of locks that SQL Server 2000 is meant to support. I am a bit confused as to what the "intent" locks actually mean. I've looked around on the Web and the answers seem to be a bit cryptic. </p>
<p>Further to getting an answer to my specific question, I am hoping to use this question as a Wiki for what each lock means and under what circumstances that type of lock will be acquired. </p>
<ul>
<li>Shared (S)
<ul>
<li>Update (U)</li>
<li>Exclusive (X)</li>
<li>Intent
<ul>
<li>intent shared (IS)</li>
<li>intent exclusive (IX)</li>
<li>shared with intent exclusive (SIX)</li>
<li>intent update (IU)</li>
<li>update intent exclusive (UIX)</li>
<li>shared intent update (SIU)</li>
</ul></li>
<li>Schema
<ul>
<li>schema modification (Sch-M)</li>
<li>schema stability (Sch-S)</li>
</ul></li>
<li>Bulk Update (BU)</li>
<li>Key-Range
<ul>
<li>Shared Key-Range and Shared Resource lock (RangeS_S)</li>
<li>Shared Key-Range and Update Resource lock (RangeS_U)</li>
<li>Insert Key-Range and Null Resource lock (RangeI_N)</li>
<li>Exclusive Key-Range and Exclusive Resource lock (RangeX_X)</li>
<li>Conversion Locks (RangeI_S, RangeI_U, RangeI_X, RangeX_S, RangeX_U)</li>
</ul></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/951702/unique-eventid-generation1Unique EventId generationSimon Johnson2009-06-04T16:40:22Z2009-06-09T20:31:11Z
<p>I'm using the Windows Event Log to record some events. Events within the Windows Event Log can be assigned a handful of properties. One of which, is an EventID. </p>
<p>Now I want to use the EventId to try and group related errors. I could just pick a number for each call to the logging method I do, but that seems a little tedious.</p>
<p>I want the system to do this automatically. It would choose an eventId that is "unique" to the position in the code where the logging event occurred. Now, there's only 65536 unique event IDs, so there are likely to be collisions but they should be rare enough to make the EventId a useful way to group errors.</p>
<p>One strategy would be to take the hashcode of the stacktrace but that would mean that the first and second calls in the following code would have generate the same event ID.</p>
<pre><code>public void TestLog()
{
LogSomething("Moo");
// Do some stuff and then a 100 lines later..
LogSomething("Moo");
}
</code></pre>
<p>I thought of walking up the call stack using the StackFrame class which has a GetFileLineNumber method. The problem with this strategy is that it will only work when built with debug symbols on. I need it to work in production code too.</p>
<p>Does anyone have any ideas?</p>
http://stackoverflow.com/questions/951702/unique-eventid-generation/972337#9723370Answer by Simon Johnson for Unique EventId generationSimon Johnson2009-06-09T20:31:11Z2009-06-09T20:31:11Z<p>Here is some code you can use to generate an EventID with the properties I describe in my question:</p>
<pre><code> public static int GenerateEventId()
{
StackTrace trace = new StackTrace();
StringBuilder builder = new StringBuilder();
builder.Append(Environment.StackTrace);
foreach (StackFrame frame in trace.GetFrames())
{
builder.Append(frame.GetILOffset());
builder.Append(",");
}
return builder.ToString().GetHashCode() & 0xFFFF;
}
</code></pre>
<p>The frame.GetILOffset() method call gives the position within that particular frame at the time of execution. </p>
<p>I concatenate these offsets with the entire stacktrace to give a unique string for the current position within the program.</p>
<p>Finally, since there are only 65536 unique event IDs I logical AND the hashcode against 0xFFFF to extract least significant 16-bits. This value then becomes the EventId.</p>
http://stackoverflow.com/questions/860057/can-asking-a-developer-whether-he-prefers-webforms-or-mvc-be-a-good-indicator-of/860092#8600929Answer by Simon Johnson for Can asking a developer whether he prefers WebForms or MVC be a good indicator of his proficiency?Simon Johnson2009-05-13T19:58:40Z2009-05-13T19:58:40Z<p>I don't know. There are advantages to using web-forms in some scenarios and there are advantages to using MVC in other scenarios.</p>
<p>If you're writing a simple CRUD web-application, then the WebForms model will get the job done and it'll get it done quickly. There are a number of handy features in there like the validation controls, forms authentication etc that make developing these sorts of apps very easy. I'd wager that 85% of the apps written in ASP.NET are the CRUD style apps that Webforms excels at.</p>
<p>If you're writing an application like Stackoverflow, then it's complete madness to use Webforms. For a sophisticated application you're going to need to very precise control over the markup, the Javascript and the whole experience in general.</p>
<p>So it's horses for courses really. It depends on the goal of the project. Of course, it's probably a good sign if they understand the why you might pick one set of technologies over an another. However, to go as far as saying ASP.NET MVC is a superior in every way to WebForms is probably a step too far.</p>
http://stackoverflow.com/questions/851541/design-patterns-for-web-services/851622#8516221Answer by Simon Johnson for Design patterns for web services?Simon Johnson2009-05-12T07:46:26Z2009-05-12T07:46:26Z<p>A few links:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms954638.aspx" rel="nofollow">Principles of Service Design: Service Patterns and Anti-Patterns </a></li>
<li><a href="http://www.devx.com/enterprise/Article/10397" rel="nofollow">Applying Design Issues and Patterns in Web Services</a></li>
</ul>
http://stackoverflow.com/questions/848788/how-to-ensure-access-to-my-web-service-from-my-code-only/848830#8488307Answer by Simon Johnson for How to ensure access to my web service from my code only?Simon Johnson2009-05-11T16:09:11Z2009-05-11T16:16:06Z<p>You can't really do this. Your application can be disassembled and whatever secret is in the binary can be replicated in a malicious application.</p>
<p>Another attack you should be aware of is people settings the hosts file to a location they control and then installing a root certificate that allows them to provide a signature for that domain. Your application would do the post with the secret, and they'd just be able to read out the secret. They could extract the password from any complicated encryption system within the binary in this way.</p>
<p>Most of the ideas in this thread are vulnerable to this attack.</p>
<p>That said, the likelihood of somebody caring enough to disassemble your application is probably fairly remote. </p>
<p>I'd just keep it simple. Have a password that's hardcoded in to your application. To prevent someone just looking at the resources and trying every string, make it the XOR of two strings or the result of an AES decrypt of a particular fixed string.</p>
<p>Obviously, you should do the request over SSL otherwise an attacker can just sniff the traffic.</p>
<p>Yes, a determined attacker will circumvent the scheme but like any DRM scheme, that's always been the case. The trick is to make it too much effort to be worth it.</p>
http://stackoverflow.com/questions/734242/initiatesystemshutdown-call-not-working0InitiateSystemShutdown call not workingSimon Johnson2009-04-09T13:33:07Z2009-04-10T02:21:52Z
<p>I'm writing an application that will need to reboot the Windows machine the code is running on.</p>
<p>There didn't appear to be an API within .NET to do this, so I looked up the the Win32 API for this and it is called InitiateSystemShutdown. The extern declaration is given below:</p>
<pre><code>[DllImport("advapi32.dll")]
public static extern bool InitiateSystemShutdown(string Machinename, string
Message, long Timeout, int ForceAppsClosed, int RebootAfterShutdown);
</code></pre>
<p>I then try to call this operating system routine with the following arguments:</p>
<pre><code>InitiateSystemShutdown(null, null, 30, 1, 1);
</code></pre>
<p>However, this always returns false. So I call the Marshal.GetLastWin32Error method and it returns an error code of 1008. This error code's message is: </p>
<p>"An attempt was made to reference a token that does not exist."</p>
<p>The code is running inside a Windows Service and is running under the Administrator account. I've tried running it as Local System and that had not effect.</p>
http://stackoverflow.com/questions/6812/mapping-my-custom-keys-in-debian2Mapping my custom keys in DebianSimon Johnson2008-08-09T15:23:13Z2009-03-27T06:01:10Z
<p>Hi Folks,</p>
<p>I have a Microsoft keyboard with a series of non-standard buttons such as "Mail", "Search" , "Web/Home" etc.</p>
<p>It would be nice to be able to bind these keys so they execute arbitrary programs.</p>
<p>Does anybody know how to do this in Debian Etch?</p>
<p>Thanks in advance,</p>
<p>Simon</p>
http://stackoverflow.com/questions/655012/what-are-some-best-practices-for-managing-background-threads-in-iis/655245#6552451Answer by Simon Johnson for What are some best practices for managing background threads in IIS?Simon Johnson2009-03-17T17:27:06Z2009-03-17T17:27:06Z<p>When Jeff made Stackoverflow, he had a similiar issue. </p>
<p>His solution was to use the cache expiration. You'd put something in the cache and then when it expires an event is fired in a non-user facing thread. In the event handler for the expiration, you stick some code in to re-add the item to the cache and do whatever housekeeping work needs to be done for your application</p>
<p>Using this technique, your subquestions are easily answered:</p>
<ol>
<li>You check the item is still in
cache.</li>
<li>If the item is not in
cache, re-add it.</li>
<li>Remove the
cache item from the cache.</li>
<li>Add
the item back to the cache.</li>
</ol>
<p>You could make a small management page to configure these options. </p>
<p>This gives you a nice way to roughly time housekeeping processes in your web-application. It doesn't require a seperate Windows Service, which is a big win. </p>
http://stackoverflow.com/questions/655042/is-it-possible-to-have-a-personalized-asp-net-web-app-with-only-some-ssl-pages/655129#6551290Answer by Simon Johnson for Is it possible to have a personalized ASP.NET web app with only some SSL pages?Simon Johnson2009-03-17T16:59:35Z2009-03-17T16:59:35Z<p>Since there are no comments, I thought I'd offer an inelegent but practical solution. </p>
<p>Leave the RequireHTTPS off in your forms authentication configuration block.</p>
<p>Next, you create a custom class that implements IHttpModule. This interface has an Init method that takes a HTTPApplication instance as an argument. You can then attach to the "AuthenticateRequest" event on this instance.</p>
<p>From here, you can 302-redirect any requests that come in without SSL when they should do. You'd probably want to drive which pages require SSL from a custom configuration section in your web.config.</p>
<p>To use this class for your requests, you have to add a line to the HttpModules section of the web.config. </p>
http://stackoverflow.com/questions/519872/turn-off-request-validation-programmatically0Turn off request validation programmaticallySimon Johnson2009-02-06T10:56:48Z2009-02-06T11:24:42Z
<p>I have a control that I'm writing where I want to turn off .NET's inbuilt request validation that prevents XSS attacks and similiar sort of nasties.</p>
<p>The control allows the owner of a web-site to adjust the content on that page. They can potentially enter markup if they want to. Since it's their site to edit, they must be able to stick whatever they want on there.</p>
<p>I'm wondering if it is possible to disable this validation programmatically? </p>
<p>The only way I can find to do it is either by shutting off request validation completely in the web.config or by using a page directive. For various reasons, I can't have this control in another page - so that option is out.</p>
http://stackoverflow.com/questions/519872/turn-off-request-validation-programmatically/519956#5199561Answer by Simon Johnson for Turn off request validation programmaticallySimon Johnson2009-02-06T11:24:42Z2009-02-06T11:24:42Z<p>@Chris led me in the right direction.</p>
<p>What I did was to turn off the setting in the web.config and used a HTTP module to do the request validation for all requests where the user is not in EditMode.</p>
<p>In .NET 2.0, there is a method on the Request class called: ValidateInput. This will do the validation even when it is turned off in the web.config.</p>
http://stackoverflow.com/questions/507643/could-you-imagine-any-other-way-to-have-oo-implemented-than-the-classic-class-bas/507714#5077142Answer by Simon Johnson for Could you imagine any other way to have OO implemented than the classic class-based approach?Simon Johnson2009-02-03T15:59:27Z2009-02-03T16:08:16Z<p>Now that my flame retardent suit is safely secured, I can say it: I dislike OOP.</p>
<p>The central problem I have with it is that it tries to come up with a single taxonomy in which every unit of functionality truly belongs.</p>
<p>There are a couple of problems with this. First, producing a good taxonmy is <em>hard</em>. People suck at creating them. Secondly, I am not convinced that you can actually structure a sensible, maintainable, hierarchy that will withstand change in a project containing a lot of entities; the whole practice of refactoring is basically acknowledging the difficulty of creating large, all incompassing taxanomies. </p>
<p>Actually, I think that OOP is over-engineered. Everything you can do with OOP can be done with higher-order functions (HOFs). HOFs are much more elegant, much more flexible solution to the same problems that OOP tries to address.</p>
<p>So if you're asking of another way to do OOP style stuff, HOFs are probably the closest alternative technology that has a similiar level of flexibility.</p>
http://stackoverflow.com/questions/499889/ssd-and-programming/499959#4999595Answer by Simon Johnson for SSD and programmingSimon Johnson2009-02-01T01:07:23Z2009-02-01T01:12:30Z<p>@Bill Karwin</p>
<p>Thanks for your elaboration. In a way, the problem is not the compile time itself, it is the fact that a long compile time leads to distraction which breaks your "flow."</p>
<p>If a compile takes longer than a minute, then you start to read your e-mail, browser Reddit, read Slashdot, write another paragraph in the specification you need to finish for Monday.</p>
<p>Three minutes later (the compile actually took a minute and thirty seconds, but because you got distracted the time until you actually <em>notice</em> this is much later) you realise the compile is done.</p>
<p>Now your flow is broken and there is a visible mental cost of getting back in to the flow.</p>
<p>That is the incidental productivity problem I'm trying to solve.</p>
http://stackoverflow.com/questions/484143/is-it-ok-to-add-the-axd-extension-for-iis-http-compression/487711#4877111Answer by Simon Johnson for Is it OK to add the axd extension for IIS' HTTP compression?Simon Johnson2009-01-28T14:02:40Z2009-01-28T14:02:40Z<p>This <a href="http://www.rosshawkins.net/archive/2006/10/08/webresource.axd.aspx" rel="nofollow">article</a> says there a potential problems using compression with the web resources axd extension. The author recommends <em>excluding</em> this extension from any compression.</p>
http://stackoverflow.com/questions/478359/python-and-os-chroot1Python and os.chrootSimon Johnson2009-01-25T21:39:22Z2009-01-27T19:47:57Z
<p>I'm writing a web-server in Python as a hobby project. The code is targeted at *NIX machines. I'm new to developing on Linux and even newer to Python itself.</p>
<p>I am worried about people breaking out of the folder that I'm using to serve up the web-site. The most obvious way to do this is to filter requests for documents like /../../etc/passwd. However, I'm worried that there might be clever ways to go up the directory tree that I'm not aware of and consequentially my filter won't catch. </p>
<p>I'm considering adding using the os.chroot so that the root directory is the web-site itself. Is this is a safe way of protecting against these jail breaking attacks? Are there any potential pitfalls to doing this that will hurt me down the road?</p>
http://stackoverflow.com/questions/476907/best-way-to-avoid-getting-a-beer-belly-from-programming/477623#4776236Answer by Simon Johnson for Best way to avoid getting a beer belly from programmingSimon Johnson2009-01-25T12:14:26Z2009-01-25T12:14:26Z<p>I cycle to work to get keep the pounds off. Cycling is the ultimate fitness regime for a geek.</p>
<p>It's a fast mode of transportation. In cities, it is often much faster than a car.</p>
<p>It's energy efficient. Humanity has yet to build a machine as efficient as the bicycle.</p>
<p>It's cheap. The running cost of fixing my bike is probably less than a hundred pounds a year.</p>
<p>You don't get hot. Sure, you do sweat but the airflow over your body evaporates it quickly. Compared to the kind of sweat you build up running, cycling is much less stinkier.</p>
<p>I also find that regular exercise in the morning makes my brain ready for the day. I can think more clearly in the morning and the ride home at the end of the day resets my brain for my personal projects in the evening.</p>
<p>All, in all, Cycling is as excellent a hobby as it is a fitness regime.</p>
http://stackoverflow.com/questions/409456/how-to-find-out-all-files-that-my-browser-loads-while-accessing-a-webpage/409463#4094631Answer by Simon Johnson for How to find out all files that my browser loads while accessing a webpage?Simon Johnson2009-01-03T17:50:33Z2009-01-03T17:50:33Z<p>I use this:</p>
<p><a href="http://www.httpwatch.com/" rel="nofollow">http://www.httpwatch.com/</a></p>
http://stackoverflow.com/questions/387339/database-design-best-practices/387708#3877082Answer by Simon Johnson for Database Design Best PracticesSimon Johnson2008-12-22T23:08:14Z2008-12-22T23:08:14Z<p>The relational database is an extremely powerful abstraction; it's a collection of facts and a predicate calculus. Not only that, SQL enforces command query separation by having one clause for examining rows and another for changing rows. </p>
<p>When you think of a database as a truth reasoning engine, it makes sense to have a set-up that does not allow contradictions to flow from the data you're modelling. Therefore, to use a relational database effectively you need to get your database design right. Unlike the design of object orientated programs, there is a consensus view on how a relational database should be designed. The proper approach to database design is <a href="http://www.datamodel.org/NormalizationRules.htm" rel="nofollow">normalise</a> as far as it is sensible. Most people normalise up to third normal form but you can in fact go up to fifth normal form.</p>
<p>If possible, you want to expunge null column values from your database. If you agree with my view of the database as a truth reasoning engine, then nulls are a real problem. When you have nulls in a database the law of excluded middle does <em>not</em> hold. This makes "proof by contradiction" of any given property of the database more difficult that it would be without the nulls. Nulls unnecessarily complicate the semantics of the database.</p>
<p>Sometimes it will be necessary to break the rules of normalisation for performance reasons. However, don't do this before you have <em>data</em> on what is queries in particular are slow. Often you can simply speed up the query by carefully altering indexes rather than denormalising.</p>
<p>Finally, a word on stored procedures rather than direct queries. On a decent database, you can set security permissions on stored procedures independently of the underlying tables. This, by itself, is reason enough to consider using stored procedures extensively. With stored procedures, you build a tighter security model than is possible with direct SQL access. </p>
http://stackoverflow.com/questions/345629/what-to-do-when-your-company-thinks-in-hours-rather-than-months5What to do when your company thinks in hours rather than months?Simon Johnson2008-12-06T00:37:31Z2008-12-06T02:26:02Z
<p>I have about seven years of commercial experience. I work for a company which can only be described as a <em>post</em> start-up. It's been going eight years but has a staff size less than ten.</p>
<p>We have some cool projects with some really big companies in the UK and I do actually enjoy about 20% of the work. But ultimately I'm a maintenance programmer and I hate it.</p>
<p>We seem to sell a service but we try to sell it as a product. Yet it's a product that we end up with customising for <em>every</em> client. It seems like we do <em>a lot</em> of work without making that much money.</p>
<p>I can't help but think that the company's business model is somehow broken. Am I just being arrogant or am I right?</p>
<p>The quality of our code base is fairly poor; it's a fairly big gloopy ball of mud. This isn't because we <em>want</em> to do a shit job, it's just that we simply can't afford to do any better. We think in <em>days</em> of development rather than weeks or months. With such short time spans for projects, how can you do any better?</p>
<p>I'm sick of working on a giant snowball of mud. The problem I have is that I believe that nearly <em>every</em> company in the north-west of the UK suffers these problems. Interviews I've been on seem to confirm my suspicion.</p>
<p>Am I just being an arse or do I have a genuine complaint? Is it worth looking to move and , if so, what would your next move be?</p>
http://stackoverflow.com/questions/345737/your-most-common-programming-mistakes/345757#3457572Answer by Simon Johnson for Your most common programming mistakes?Simon Johnson2008-12-06T02:05:57Z2008-12-06T02:05:57Z<p>Not checking for null would be the most common mistake I see.</p>
<p>The first person who manages to write a static analysis tool to eliminate this type of defect entirely will quickly find themselves in Cyril Sneer territory.</p>
http://stackoverflow.com/questions/345698/what-are-the-tell-tale-signs-of-bad-object-oriented-design/345714#3457141Answer by Simon Johnson for What are the tell-tale signs of bad object oriented design?Simon Johnson2008-12-06T01:35:29Z2008-12-06T01:35:29Z<p>In my view, all OOP code degenerates to procedural code over a sufficiently long time span.</p>
<p>Granted, if you read my most recent question, you might understand why I am a little jaded. </p>
<p>The key problem with OOP is that it doesn't make it obvious that your object construction graph should be independent of your call graph. </p>
<p>Once you fix that problem, OOP actually starts to make sense. The problem is that very few teams are aware of this design pattern.</p>
http://stackoverflow.com/questions/322653/how-to-cook-turkey-programatically/323224#3232243Answer by Simon Johnson for How to cook turkey programatically?Simon Johnson2008-11-27T08:35:03Z2008-11-27T08:35:03Z<p>Well, it depends if Jon Skeet is the programmer or not.</p>
<p>He only needs to look at the turkey and it cooks.</p>
<p>The rest of us, not so much.</p>
http://stackoverflow.com/questions/311706/performance-optimization-for-highly-interactive-websites/311745#3117452Answer by Simon Johnson for Performance Optimization For Highly Interactive WebsitesSimon Johnson2008-11-22T20:32:22Z2008-11-22T20:32:22Z<p>The vast majority of sites have many more reads than writes. It's not uncommon to have thousands or even millions of reads to every write. </p>
<p>Therefore, any scaling solution depends on separating the scaling of the reads from the scaling of the writes. Typically scaling reads is really cheap and easy, scaling the writes is complicated and costly.</p>
<p>The most straightforward way to scale reads is to cache entire pages at a time and expire them after a certain number of seconds. If you look at the popular web-site, Slashdot. you can see that this is the way they scale their site. Unfortunately, this caching strategy can result in counter-intuitive behaviour for the end user. </p>
<p>I'm assuming from your question that you don't want this primitive sort of caching. Like you mention, you'll need to update the cache in place. </p>
<p>This is not as scary as it sounds. The key thing to realise is that from the <em>server's</em> point of view. Stackoverflow does not update all the time. It updates fairly rarely. Maybe once or twice per second. To a computer a second is nearly an eternity. </p>
<p>Moreover, updates tend to occur to items in the cache that do not depend on each other. Consider Stack Overflow as example. I imagine that each question page is cached separately. Most questions probably have an update per minute on average for the first fifteen minutes and then probably once an hour after that. </p>
<p>Thus, in most applications you barely need to scale your writes. They're so few and far between that you can have one server doing the writes; Updating the cache in place is actually a perfectly viable solution. Unless you have extremely high traffic, you're going to get very few concurrent updates to the same cached item at the same time.</p>
<p>So how do you set this up? My preferred solution is to cache each page individually to disk and then have many web-heads delivering these static pages from some mutually accessible space.</p>
<p>When a write needs to be done it is done from exactly one server and this updates that particular cached html page. Each server owns it's own subset of the cache so there isn't a single point of failure. The update process is carefully crafted so that a transaction ensures that no two requests are not writing to the file at exactly the same time.</p>
<p>I've found this design has met all the scaling requirements we have so far required. But it will depend on the nature of the site and the nature of the load as to whether this is the right thing to do for your project.</p>
http://stackoverflow.com/questions/311627/how-to-print-date-in-a-regular-format-in-python/311635#3116351Answer by Simon Johnson for How to print date in a regular format in Python ?Simon Johnson2008-11-22T18:45:00Z2008-11-22T18:45:00Z<p>You need to convert the date time object to a string.</p>
<p>The following code worked for me:</p>
<pre><code>import datetime
collection = []
dateTimeString = str(datetime.date.today())
collection.append(dateTimeString)
print collection
</code></pre>
<p>Let me know if you need any more help.</p>
http://stackoverflow.com/questions/299990/hosted-subversion-recommendations-or-suggestions/300003#3000031Answer by Simon Johnson for Hosted subversion recommendations or suggestionsSimon Johnson2008-11-18T20:21:34Z2008-11-18T20:21:34Z<p>If your project is open-source, you might want consider Google Code.</p>
<p>I've found it to be excellent!</p>
http://stackoverflow.com/questions/299769/is-there-a-prevailing-unit-testing-framework-for-the-net-compact-framework/299909#2999091Answer by Simon Johnson for Is there a prevailing unit testing framework for the .NET Compact Framework?Simon Johnson2008-11-18T19:51:06Z2008-11-18T20:14:56Z<p>What's wrong with just using NUnit?</p>
<p>The unit tests don't need to run on the target device so I see no reason why you can't go with a normal unit testing framework.</p>
<p><em>Edit:</em> Apparently this won't work, so ignore this solution. Please do not upmod.</p>
http://stackoverflow.com/questions/299450/how-to-best-implement-swear-words-handler-net-preferred/299527#2995276Answer by Simon Johnson for How to best implement swear words handler (.NET preferred)?Simon Johnson2008-11-18T17:42:31Z2008-11-18T17:42:31Z<p>The only way to win is not to play.</p>
<p>Consider the following sentence:</p>
<p>"Edward II was one of only a handful monarchs to give birth to a recorded bastard."</p>
<p>Bastard is a border line swear-word but in this context it is a completely sensible term.</p>
<p>Consider also:</p>
<ul>
<li>"The molten slag fell out of the
cruciable."</li>
<li>"The bitch sniffed the other dog's backside."</li>
</ul>
<p>You are never going to be able to build a parser that is capable of working out whether the usage is correct. Even if you decided to go ahead anyway and just star out those words, they're easily subverted anyway.</p>
<p>Ask yourself, Is "Tw*t" really that much less offensive than "twat"? Everyone knows what word you're pointing to and everyone understands what it means.</p>
<p>Ultimately, the solution to this problem is not technological. Really, you want to use a human moderator of some sort to get rid of the people who swear. A human moderate has a facility that algorithms never will: it can exercise judgement. Using this judgement is far more useful than throwing computer-science at the problem.</p>
<p>This is discussed at length in other answer to this question.</p>
http://stackoverflow.com/questions/951702/unique-eventid-generation/971182#971182Comment by Simon Johnson on Unique EventId generationSimon Johnson2009-06-09T20:23:41Z2009-06-09T20:23:41ZI don't know how I missed this, but cheers. That's exactly what I was looking for. http://stackoverflow.com/questions/951702/unique-eventid-generationComment by Simon Johnson on Unique EventId generationSimon Johnson2009-06-09T14:14:56Z2009-06-09T14:14:56Z@Michael Yes, they should have different EventIds because the logging calls occur on different lines. My question is whether it is possible to do this? http://stackoverflow.com/questions/951702/unique-eventid-generation/951781#951781Comment by Simon Johnson on Unique EventId generationSimon Johnson2009-06-04T16:56:17Z2009-06-04T16:56:17ZTwo problems with this. First, even if I used log4net that wouldn't solve my grouping problem. Secondly, I want the EventId to be used <i>because</i> I want to use the filters. This is a very poor answer, which is why I've voted it down.http://stackoverflow.com/questions/836276/not-all-code-paths-return-but-compiler-treats-it-as-if-all-paths-return/836307#836307Comment by Simon Johnson on Not all code paths return, but compiler treats it as if all paths returnSimon Johnson2009-05-07T19:47:11Z2009-05-07T19:47:11ZJon, of course, is completely right. There are non-checked exceptions in Java that would exhibit exactly the same behavior.http://stackoverflow.com/questions/499889/ssd-and-programming/499965#499965Comment by Simon Johnson on SSD and programmingSimon Johnson2009-02-01T01:17:29Z2009-02-01T01:17:29ZGood question that has a good answer. The ram-disk is unstable. You can lose data very easily. http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/195808#195808Comment by Simon Johnson on What's the strangest corner case you've seen in C# or .NET?Simon Johnson2009-02-01T00:56:37Z2009-02-01T00:56:37ZThis is interesting because it means, mathematically speaking, that no statement in C# is provable. Ooops.http://stackoverflow.com/questions/499889/ssd-and-programming/499903#499903Comment by Simon Johnson on SSD and programmingSimon Johnson2009-02-01T00:41:30Z2009-02-01T00:41:30ZIt takes about 40 seconds do a full recompile from a RAM disk. About 2-3 minutes on a hard-disk. I want to be able to get a hard-disk compile time of around 1 minute, if I can get it.http://stackoverflow.com/questions/499889/ssd-and-programming/499896#499896Comment by Simon Johnson on SSD and programmingSimon Johnson2009-02-01T00:40:12Z2009-02-01T00:40:12ZA full recompile from a ramdisk takes about 40 seconds. It takes about 2-3 minutes from a hard-disk.http://stackoverflow.com/questions/499889/ssd-and-programming/499900#499900Comment by Simon Johnson on SSD and programmingSimon Johnson2009-02-01T00:38:24Z2009-02-01T00:38:24ZI actually do this. I have Superspeed software's RAM disk that does exactly this. The problem is that it is unstable. You have to be ultra-disciplined with your commits or you'll lose data.http://stackoverflow.com/questions/499889/ssd-and-programming/499896#499896Comment by Simon Johnson on SSD and programmingSimon Johnson2009-02-01T00:37:08Z2009-02-01T00:37:08ZCan you elaborate on this? If I have a series of files scattered randomly across the disk, surely this would have an affect?http://stackoverflow.com/questions/345698/what-are-the-tell-tale-signs-of-bad-object-oriented-design/345739#345739Comment by Simon Johnson on What are the tell-tale signs of bad object oriented design?Simon Johnson2008-12-06T01:58:10Z2008-12-06T01:58:10ZBingo! See my comment. The worst part is that at least 90% of the code you'll ever see is impossible to unit test properly.http://stackoverflow.com/questions/345629/what-to-do-when-your-company-thinks-in-hours-rather-than-months/345644#345644Comment by Simon Johnson on What to do when your company thinks in hours rather than months?Simon Johnson2008-12-06T01:07:35Z2008-12-06T01:07:35ZDid you ever encounter my position? What, specifically, did you do about it?http://stackoverflow.com/questions/345629/what-to-do-when-your-company-thinks-in-hours-rather-than-months/345655#345655Comment by Simon Johnson on What to do when your company thinks in hours rather than months?Simon Johnson2008-12-06T01:06:11Z2008-12-06T01:06:11ZI actually went away and looked at your answer to that question. The fact you quoted Machiavelli got you my upvote. Good play, sir. http://stackoverflow.com/questions/345629/what-to-do-when-your-company-thinks-in-hours-rather-than-months/345655#345655Comment by Simon Johnson on What to do when your company thinks in hours rather than months?Simon Johnson2008-12-06T01:01:01Z2008-12-06T01:01:01ZI appreciate your sentiment, but it's not really the same. The problem here is the business model. I am <i>certain</i> if the developer were in the right environment they'd contribute good quality code.http://stackoverflow.com/questions/345629/what-to-do-when-your-company-thinks-in-hours-rather-than-months/345647#345647Comment by Simon Johnson on What to do when your company thinks in hours rather than months?Simon Johnson2008-12-06T00:53:59Z2008-12-06T00:53:59ZThere are two things that keep me tied to my position. The first is the possibility of a buy out, the second is the thought that we could boot strap the company - Joel style - in to a product based organisation. Thoughts on how to pitch this would be appreciated.