User Brian MacKay - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:43:11Zhttp://stackoverflow.com/feeds/user/16082http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848261/gift-card-debit-card-activation2Gift Card/Debit Card ActivationBrian MacKay2009-12-04T16:52:27Z2009-12-05T01:28:47Z
<p><strong>General Problem</strong></p>
<p>How do retail establishments constrain activation for gift cards, or those pre-paid phone/debit cards? </p>
<p>They must have some sort of system in place that only keeps you from calling in to activate cards that haven't scanned through the register, right? </p>
<p>I assume there must be a standard solution built into the retail ERP/accounting systems, and it probably involves something like EDI... Maybe they send purchase details back to the debit card vendor every hour.</p>
<p><strong>Specific Problem</strong></p>
<p>I ask all this because one of my clients wants me to develop a product that you get into by purchasing a $30 card at a retail store. The card has a unique number on it. Once you've purchased a card and activated it via a web site, coupons for restaurants and so on are emailed to you periodically.</p>
<p>However, if someone were to steal a bunch of cards or figure out the numbering sequence, we don't want the cards to work. </p>
<p>Presumably, this is a solved problem because retailers are doing this with the products above (pre-paid phone cards, etc).</p>
<p>So, I want to provide the "normal" solution that the retailers will expect.</p>
http://stackoverflow.com/questions/1848261/gift-card-debit-card-activation/1849403#18494030Answer by Brian MacKay for Gift Card/Debit Card ActivationBrian MacKay2009-12-04T20:18:06Z2009-12-04T21:20:20Z<p>I found out through other sources that there are about eight card processing services that integrate with the various retail locations.</p>
<p>Each retail location uses one. When a card scans through the register, the retailer notifies the card processing service (unlocking the PIN so that it can be activated), and then presumably the card processing service notifies us via an API call.</p>
<p>Then, when the customer goes to activate their card, we can tell which ones have scanned through the register (because they are unlocked). In this way, we get around problems surrounding stolen cards or guessed pin numbers.</p>
<p>The names of a few of these networks are:</p>
<ul>
<li>Blackhawk Networks</li>
<li>InCom</li>
<li>Coin Star</li>
</ul>
http://stackoverflow.com/questions/1421764/one-massive-instance-of-an-app-or-many-medium-sized-ones4One massive instance of an app, or many medium-sized ones?Brian MacKay2009-09-14T14:04:10Z2009-12-04T17:04:58Z
<p>A web application we wrote intended for one customer is going to be product-ized and sold to dozens of companies, and we will be doing the hosting.</p>
<p>I could use some guidance about the pros and cons of rolling out a seperate instance for each customer versus going with a single (or very small number of) multi-tenant instances. </p>
<p>At first, as we ramp up, I will <em>have</em> to roll out a seperate instance of the application for each new customer (they will come online one at a time) because it's the only immediate option. I imagine this won't scale very well as far as maintenance goes - rolling out changes will become very tedious and possibly error-prone once there are more than 4 or 5 instances out there. Unless we automate that somehow.</p>
<p>Also, the single-instance philosophy seems like it might lead to a bunch of forks if people need customizations. And it would be nice to avoid that.</p>
<p>So what has your experience been with this?</p>
<p><strong>Bonus question #1:</strong> What's the performance difference between 10 SQL Servers with 2m records each versus one huge one with 20m? Let's say they are all in one table and we're mainly doing inserts and selects on single records. Sometimes the selects are on an indexed varchar(12) or date field.</p>
<p><strong>Bonus Question #2:</strong> I imagine that to avoid forking, we would have to make the customizations configurable, or build a plug-in architecture. However, that might increase the cost of doing customizations, and I don't want to be one of those shops that takes a week to resize a textbox, <em>and</em> I don't want to over-invest in infrastructure. Any thoughts on that?</p>
<p><strong>Scale Details</strong></p>
<p>Each customer will have a decent amount of data -- up to a few million records.</p>
<p>There will be a very small number of concurrent users, only a few per customer, plus a handful of internal reps on our end. </p>
<p>It's unclear whether each customer will require customizations, but I would say some of them probably will, and maybe some of those changes will be things that other customers will not want to see. </p>
http://stackoverflow.com/questions/1421764/one-massive-instance-of-an-app-or-many-medium-sized-ones/1848338#18483380Answer by Brian MacKay for One massive instance of an app, or many medium-sized ones?Brian MacKay2009-12-04T17:04:58Z2009-12-04T17:04:58Z<p>Based on some of the advice received here, we did end up implementing a monolithic multi-tenant version of our application.</p>
<p>I'm glad we did. By the time it was done, we had 3 or 4 forks of the code base (mainly custom skins and things we didn't have n-level support for, but also some actual features), and it was only getting crazier. </p>
<p>We got the multi-tenant version up and successfully folded everything in. There ended up being a lot to think about and a lot to keep track of, but our customers never even knew they had been moved to a new system. </p>
<p>I will say that the actual customer migration was a bit of a bear. I thought at first that we would be able to do it by hand in the backend, but I ended up having to write some fairly involved scripts to get the job done. There were just too many identity columns, and it's not like you can just turn off constraints temporarily when you're importing into a live production system.</p>
http://stackoverflow.com/questions/1792359/are-some-people-incapable-of-programming/1792416#17924161Answer by Brian MacKay for Are some people incapable of programming?Brian MacKay2009-11-24T19:35:17Z2009-11-24T19:35:17Z<p>I was just reading in Flow that some people will never achieve complex learning because they can't deal with being alone. The author says that this is actually a difficult and important skill. </p>
<p>He further goes on to say that although we think of ourselves as either introverts or extroverts, healthy humans are capable of both modes and are not confined to either extreme.</p>
<p>So, I would say that although there are certainly normal, healthy people who are not suited for programming (perhaps because they are too much the extrovert?), it's certainly something that anyone can learn given enough perserverance. </p>
<p>But it helps a lot if you love it.</p>
http://stackoverflow.com/questions/1770992/making-a-generic-movablegameentity-class-for-my-2d-game/1771134#17711342Answer by Brian MacKay for Making a generic MovableGameEntity Class for my 2D game?Brian MacKay2009-11-20T15:17:54Z2009-11-20T15:23:07Z<p>So it sounds like you want to have a single GameEntity class that can represent many different Entities -- bullets, enemies, etc. </p>
<p>But, wisely, you don't want to end up with EnemyGameEntity and BulletGameEntity, because as it turns out that's hard to work with.</p>
<p>I've used the Strategy Pattern here in the past.</p>
<p>In other words, rather than using inheritance, I would probably make a single GameEntity class that holds a reference to an IEntityStrategy (or IEntityType, or whatever you want to call it). The GameEntity then passes most of its method calls off to the private EntityStrategy object (which encapsulates the unique behavior of a given Entity), and you get very dynamic behavior.</p>
<p>So for instance, let's say it's time for the GameEntity to move. You call GameEntity.move, and then the move method calls .move on its internal IEntityStrategy. In this way, a single GameEntity class can handle all your actors, and while an enemy might always move directly towards the hero, a bullet will always continue on a direct path -- the EntityStrategy controls that.</p>
<p>You might also end up creating a Factory class to configure your GameEntities. </p>
<p>In an RPG, maybe you wwould end up making calls like this:</p>
<pre><code>ThisEntity = EntityFactory.Generate(EntityTypes.Orc, 5)
</code></pre>
<p>Where 5 is, for instance, the creature's level. The factory could level the Orc up, generate a name for him using the orc naming scheme, and do whatever else you want. Using our example above, it could configure the orc to use the movement scheme of Movement.AggressiveAttacker, and so on.</p>
<p>You mentioned being data driven. The EntityFactory could tie into a database to configure the Entities, or an xml file, etc.</p>
http://stackoverflow.com/questions/1742940/why-not-catch-general-exceptions/1743018#17430184Answer by Brian MacKay for Why not catch general ExceptionsBrian MacKay2009-11-16T15:46:43Z2009-11-16T17:19:22Z<p>Swallowing exceptions is a dangerous practice because:</p>
<ul>
<li>It can cause the user to think something succeeded when it actually failed. </li>
<li>It can put your application into states that you didn't plan for. </li>
<li>It complicates debugging, since it's much harder to find out where the failure happened when you're dealing with bizarre/broken behavior instead of a stack trace.</li>
</ul>
<p>As you can probably imagine, some of these outcomes can be <em>extremely catastrophic</em>, so doing this right is an important habbit.</p>
<p><strong>Best Practice</strong></p>
<p>First off, code defensively so that exceptions don't occur any more than necessary. They're computationally expensive.</p>
<p>Handle the expected exceptions at a granular level (for example: FileNotFoundException) when possible.</p>
<p>For unexpected exceptions, you can do one of two things:</p>
<ul>
<li>Let them bubble up normally and cause a crash</li>
<li>Catch them and fail gracefully</li>
</ul>
<p><strong>Fail Gracefully?</strong></p>
<p>Let's say you're working in ASP.Net and you don't want to show the yellow screen of deathto your users, but you also don't want problems to be hidden from the dev team.</p>
<p>In our applications here at Inntec, we usually catch unhandled exceptions in global.asax and then do logging and send out notification emails. We also show a more friendly error page, which can be configured in web.config using the customErrors tag.</p>
<p>That's our last line of defense, and if we end up getting an email we jump on it right away. </p>
<p>That type of pattern is <em>not</em> the same as just swallowing exceptions, where you have an empty Catch block that only exists to "pretend" that the exception did not occur. </p>
<p><strong>Other Notes</strong></p>
<p>In VS2010, there's something called intellitrace coming that will allow you to actually email the application state back home and step through code, examine variable values at the time of the exception, and so on. That's going to be extremely useful.</p>
http://stackoverflow.com/questions/1730298/users-asking-for-denormalized-database/1730924#17309242Answer by Brian MacKay for Users asking for denormalized databaseBrian MacKay2009-11-13T18:03:18Z2009-11-13T18:10:54Z<p>As everyone more or less mentioned, that way lies madness, and you can always build a view.</p>
<p>If you just can't get them to come around on this point, consider showing them this thread and the number of pros who weighed in saying that the users are meddling with things that they don't fully understand, and the impact will be an undermined foundation. </p>
<p>A big part of the developer's craft is the feel for what won't work out long term, and the rules of normalization are almost canonical in that respect. There are situations where you need to denormalize (data warehouses, etc) but this doesn't sound like one of them!</p>
<p>It also sounds as though you may have a particularly troubling brand of user on your hand -- the amatuer developer who thinks they could do your job better themselves if only they had the time. This may or may not help, but I've found that those types respond well to presentation -- a few times now I've found that if I dress sharp and show a little bit of force in my personality, it helps them feel like I'm an expert and prevents a bunch of problems before they start.</p>
http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643747#16437475Answer by Brian MacKay for Why no love for SQL?Brian MacKay2009-10-29T13:30:15Z2009-10-29T14:13:38Z<p>I'm a huge ORM advocate and I still believe that SQL is very useful, although it's certainly possible to do terrible things with it (just like anything else). .</p>
<p>I look at SQL as a super-efficient language that does not have code re-use or maintainability/refactoring as priorities. </p>
<p>So lightning fast processing is the priority. And that's acceptable. You just have to be aware of the trade-offs, which to me are considerable.</p>
<p>From an aesthetic point of view, as a language I feel that it is lacking some things since it doesn't have OO concepts and so on -- it feels like very old school procedural code to me. But it's far and away the fastest way to do certain things, and that's a powerful niche!</p>
http://stackoverflow.com/questions/372865/path-combine-for-urls10Path.Combine for Urls?Brian MacKay2008-12-16T21:42:26Z2009-10-06T19:37:12Z
<p>Path.Combine is handy, is there a similiar function in the framework for Urls? </p>
<p>I'm looking for syntax like this:</p>
<p>Url.Combine("Http://MyUrl.com/", "/Images/Image.jpg")</p>
<p>...Which would return: "Http://MyUrl.com/Images/Image.jpg"</p>
<p>...Of course string concatenation would be fine here since the '//' would be handled intelligently by the browser. But it feels a little less elegant.</p>
http://stackoverflow.com/questions/1506953/updatepanels-prevent-multiple-concurrent-requests-by-same-user0Updatepanels: Prevent multiple concurrent requests by same user?Brian MacKay2009-10-01T23:06:05Z2009-10-02T16:59:49Z
<p>On a rather complicated screen with a big updatepanel, I'm running into the following problem:</p>
<p>If a user clicks on a certain button 6 or 7 times really fast, it seems to eventually process the last request out of turn and problems occur. Specifically, there's an xml document in session state, and it gets out of sync. </p>
<p>What I really want to do is block clicks to this button until the postback completes. I know I could probably find an easy way to do this with Javascript, but it seems like it might be built-in.</p>
<p>Any thoughts? </p>
<p><b>Note:</b> The answers below are helpful, but they haven't solved the problem. After disabling the linkbutton with onClientClick and then allowing it to come back after the postback enabled again, the problem persists. It's almost as if the updatepanel isn't quite done with everything even though it has drawn the fresh, enabled linkbutton on the screen.</p>
<p><b>More notes (solved!):</b> I solved this one by using BlockUI (jQuery plugin). See my answer below.</p>
http://stackoverflow.com/questions/1506953/updatepanels-prevent-multiple-concurrent-requests-by-same-user/1510696#15106960Answer by Brian MacKay for Updatepanels: Prevent multiple concurrent requests by same user?Brian MacKay2009-10-02T16:50:41Z2009-10-02T16:59:49Z<p>The link below solved my problem in about half an hour. Just going with a javascript disable (and I tried several different ways...) did not do the trick due to the timing of the updatepanel. </p>
<p>Disabling UpdatePanels While an Asynchronous Postback is in Progress</p>
http://stackoverflow.com/questions/115369/do-you-source-control-your-databases160Do you source control your databases?Brian MacKay2008-09-22T15:07:33Z2009-09-20T11:37:11Z
<p>I feel that my shop has a hole because we don't have a solid process in place for versioning our database schema changes. We do a lot of backups so we're more or less covered, but it's bad practice to rely on your last line of defense in this way. </p>
<p>Surprisingly, this seems to be a common thread. Many shops I have spoken to ignore this issue because their databases don't change often, and they basically just try to be meticulous.</p>
<p>However, I know how that story goes. It's only a matter of time before things line up just wrong and something goes missing. </p>
<p>Are there any best practices for this? What are some strategies that have worked for you? </p>
http://stackoverflow.com/questions/1445492/how-much-can-you-infer-about-the-programmers-at-a-company-based-on-the-test-inter/1445565#14455652Answer by Brian MacKay for How much can you infer about the programmers at a company based on the test/interview?Brian MacKay2009-09-18T16:18:31Z2009-09-18T19:47:31Z<p>It smells like they didn't quite have their reasoning straight since those are definitely not basic everyday problems. </p>
<p>The question in your example might have been a valid one though... Maybe they were looking for <strong>cross-page posting</strong>.</p>
<p>It goes a little something like this:</p>
<pre><code><asp:Button ID="Button1"
PostBackUrl="~/TargetPage.aspx"
runat="server"
Text="Submit" />
</code></pre>
<p>Note the <strong>PostBackUrl</strong>, which causes the postback to occur on a different page, in this case TargetPage.aspx</p>
<p>More details: <a href="http://msdn.microsoft.com/en-us/library/ms178139.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178139.aspx</a></p>
<p>...You could also do something like this by modifying the action attribute of the form tag.</p>
<p>Some people like the philosophy of presenting dev tests that are extremely esoteric and difficult, with the idea that everyone will fail to varying degrees. I do have to wonder if some of the other questions were more impractical than invalid.</p>
<p>My feeling is that folks shouldn't expect programmers to have this kind of knowledge in RAM at all times. I myself knew that cross-page posting existed, but I've never used it so it took a little googling to find the proper name. </p>
<p>I would have missed the question on the test.</p>
http://stackoverflow.com/questions/1438787/what-is-the-best-length-of-a-coding-session-before-taking-a-break/1439223#14392231Answer by Brian MacKay for What is the best length of a coding session before taking a break?Brian MacKay2009-09-17T14:23:40Z2009-09-17T14:23:40Z<p>You might find this interesting: <a href="http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/92528#92528">http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/92528#92528</a></p>
<p>It's a pretty long write-up about how I finally found a sustainable, sane, productive state. And, more broadly, lifestyle.</p>
http://stackoverflow.com/questions/1433242/implement-data-rollback-in-existing-crud-app/1433308#14333081Answer by Brian MacKay for Implement data rollback in existing CRUD appBrian MacKay2009-09-16T14:25:47Z2009-09-16T15:07:58Z<p>What you're talking about falls under the topic of auditing. Unfortunately, this is one of the more involved implementations.</p>
<p><strong>Here's a Best Practice:</strong></p>
<p>Create new "revision tables" that mirror the tables being audited, but also include some extra metadata (revision #, timestamp, user who made the change, type of CRUD operation). </p>
<p>The idea is to be able to easily get a complete snapshot of the record at any point in time, and then use that to do a perfect rollback. You have complete confidence that the data is right and it just works. </p>
<p>Most folks use triggers to populate those revision records.</p>
<p>There are other solutions as well. Obviously doing it this way is going to be time consuming and disk space-intensive (but hey, you can safely purge old records without breaking the system). The advantage is that you end up with a ton of flexibility. </p>
<p>So that's the way most people do it.</p>
<p><strong>Here's another way:</strong></p>
<p>I have also implemented a simpler auditing pattern that just keeps track of the name of the table that changed, the field that changed, the old value and the new value, along with the usual metadata.</p>
<p>With that, I wrote a plugin for my ORM tool that pretty much handles the saving of auditing data automatically. Otherwise this would have been very tedious.</p>
<p>You might be tempted to go this route. And it's true, you probably can get rollbacks out of it. But it would be more difficult. For instance, if you wanted to restore to any given date and time, you would have to analyze all those individual field-level change records in order to re-create the complete snapshot. And woe unto you if you ever change the name of a field!</p>
<p>So this method of auditing is fine for generating and displaying an audit trail, but if you want to do rollbacks, it has a lot more moving parts, and a lot more things that can go wrong. Heed my words: <em>stay away from this if you need rollbacks, it's going to be more work than just creating those revision tables!</em></p>
<p><strong>Links</strong></p>
<p>Here's a link on stackoverflow where they talk about implementing auditing in SQL Server, some people mention Change Data Capture which is new in SQL 2008 Enterprise... It doesn't do rollbacks automatically, but it does store audit data: </p>
<p><a href="http://stackoverflow.com/questions/3823/suggestions-for-implementing-audit-tables-in-sql-server">http://stackoverflow.com/questions/3823/suggestions-for-implementing-audit-tables-in-sql-server</a></p>
http://stackoverflow.com/questions/1427764/management-studio-2005-will-cancelling-a-statement-trigger-a-rollback0Management Studio 2005: Will Cancelling a Statement trigger a Rollback?Brian MacKay2009-09-15T15:06:42Z2009-09-16T14:19:39Z
<p>A few minutes ago, while working out a new sproc, I executed the wrong delete statement. Something like this:</p>
<pre><code>Delete From SomeTable Where SomeStatusID=1
</code></pre>
<p>10 seconds into it, I realized that I typed in the wrong status and hit cancel. It said that the statement was cancelled.</p>
<p>I did a restore to a seperate database to get back the table that I just presumably nuked, thinking that since this was not in a transaction some records were probably deleted. </p>
<p>Oddly, the records were all intact. Just curious as to why this was -- did it treat the individual delete statement as a transaction in this case, even though there was not an explicit transaction defined?</p>
http://stackoverflow.com/questions/1428639/should-i-really-be-expected-to-work-more-than-40-hours-a-week-just-because-i-am/1428654#14286542Answer by Brian MacKay for Should I really be expected to work more than 40 hours a week just because I am 'salaried developer'?Brian MacKay2009-09-15T17:47:50Z2009-09-15T17:56:17Z<p>That's how it works.</p>
<p>If you're hourly, you get paid by the hour, and if you work overtime you make more money.</p>
<p>If you're salary, you get a fixed amount of money to do your job even if it requires overtime. However, salaries often take into consideration that you might be working more than 40 hours a week.</p>
<p>I'm on a salary, and there are weeks when I work 50 hours and weeks when I work 37. This is unusual though -- in some corporate cultures, if you aren't seen working into the wee hours you are thought of as not being a team player. </p>
<p>Fortunately, at Inntec it has more to do with getting your work done on time and making the customers happy.</p>
<p>If you're working for somebody who abuses you, you can always quit and go work somewhere else!</p>
http://stackoverflow.com/questions/1418221/best-practices-in-building-asp-net-application/1418248#14182485Answer by Brian MacKay for Best practices in building ASP.NET applicationBrian MacKay2009-09-13T17:09:35Z2009-09-13T17:14:49Z<p>This isn't what you want to hear, but your best bet might be to bring on a senior asp.net guy who has a lot of experience and put him in charge of this.</p>
<p>But that's an extremely broad question, Venkat. Maybe if you could narrow it down a bit more we could provide a more useful answer.</p>
<p>I would perhaps recommend one book called Framework Design Guidelines, which is published by Microsoft Press. It goes into a lot of best practices on writing code, naming conventions, how to design classes, etc. And there are dialogues in there between Microsoft's top language guys. Sometimes they disagree, and that's always interesting.</p>
<p>But that's just one piece of the puzzle. I could talk for hours about methodologies, architectural patterns, object oriented theory, seperation of concerns, etc. As stated, your question covers all that ground.</p>
http://stackoverflow.com/questions/1413481/which-concept-from-mathematics-has-helped-you-the-most-in-development/1413513#14135131Answer by Brian MacKay for Which concept from mathematics has helped you the most in development?Brian MacKay2009-09-11T22:06:53Z2009-09-11T22:06:53Z<p>It's mostly just logic for me. Very little math is involved in the line-of-busines stuff that I do.</p>
<p>However, I wish I had paid attention in calculus, since most of the AI stuff out there requires it.</p>
<p>Actually, it doesn't require it. But most of the texts are very pretentious and academic, so without calculus it's a lot harder to understand what they're getting at.</p>
http://stackoverflow.com/questions/1406806/export-gridview-data/1406905#14069051Answer by Brian MacKay for export gridview dataBrian MacKay2009-09-10T18:23:19Z2009-09-10T18:23:19Z<p>There's probably something out there for this, but if you want to do it yourself you could just write some code that walks the GridView.Rows collection, and then the GridViewRow.Cells collection inside of that.</p>
<p>It should be pretty easy to build a CSV file from there, and Excel could read it no problem.</p>
<p>CSV files are just text files with values inside of quotes, seperated by commas. Like this:</p>
<pre><code>"value", "value", "value"
"value", "value", "value"
</code></pre>
<p>You can just pop Notepad open and build one by hand to try it out.</p>
http://stackoverflow.com/questions/1401325/where-is-session-stored-if-cookie-is-disabled-on-clients-machine-what-is-actual/1401341#14013415Answer by Brian MacKay for Where is session stored if cookie is disabled on client’s machine? What is actually stored in session?Brian MacKay2009-09-09T18:39:52Z2009-09-09T19:22:36Z<p>The session cookie is a special non-persistant cookie. It's only stored in memory, so in most cases even when cookies are disabled it still works fine.</p>
<p>It's also possible to enable something called cookieless sesssions where the sessionID is embedded in the URL, like this:</p>
<p><a href="http://yourserver/folder/" rel="nofollow">http://yourserver/folder/</a> (encrypted session ID here) /default.aspx</p>
<p>Here's a link to an MSDN article with more details: <a href="http://msdn.microsoft.com/en-us/library/aa479314.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa479314.aspx</a></p>
<p><strong>NOTE:</strong> It <em>is</em> possible to completely block the session cookie. For instance, in IE8, I just went into Tools > Internet Options > Privacy. When I cranked the slider up to 'High' or greater, my sites never got past the login screen because the session cookie was blocked - in fact, Josh Stodola said below that in this case the session would never even be created on the server.</p>
<p>However, understand that this type of behavior effectively breaks the Internet. So unless you're building a site targeted at conspiracy theorists, in my opinion (and the opinion of most of the largest sites in the world) there's no need to cater to the tiny percentage of users who don't play by the normal rules.</p>
<p>For them, the Internet just isn't going to work the way it's supposed to. </p>
http://stackoverflow.com/questions/693889/whats-the-hello-world-of-genetic-algorithms-good-for/1395584#13955841Answer by Brian MacKay for What's the "Hello World!" of genetic algorithms good for?Brian MacKay2009-09-08T18:36:25Z2009-09-09T19:00:09Z<p>You could write an EA that writes code in a dynamic language like IronPython with the goal of creating code that a) executes without crashing and b) analyzes the stock market and intelligently buys and sells stock.</p>
<p>That's a very simplistic take on what would be necessary, but it's possible. You would need a host that provides a lot of methods for the IronPython code (technical indicators, etc) and a database of ticks.</p>
<p>It would also be smart to not just generate any old random code, lest you format your own hard-drive. You need a sandbox, and you need to limit the namespaces that are accessable, and you would need to provide a time limit to avoid infinite loops. You could also provide symantic guidelines that allow it to choose appropriate approved keywords instead of just stringing random letters together -- this would greatly speed up evolution.</p>
<p>So, I was involved with a project that did everything but the EA. We had a satellite dish that got real-time stock ticks from the NASDAQ, a service for trading that had an API, and a primitive decision making "brain" that made decisions as the ticks came in. </p>
<p>Sadly, one of the partners flipped out, quit his job, forked the project (got his own dish, etc), and started trading with logic that wasn't ready. He lost a bunch of money. It turns out that for some people this type of project is only a step away from common gambling. But anyway, the project kind of fizzled out after that. Evolving the logic part is the missing link though. And I know there are people out there doing this type of thing.</p>
http://stackoverflow.com/questions/1394017/what-are-some-impressive-algorithms-or-software-in-the-world-of-ai/1395453#13954536Answer by Brian MacKay for What are some impressive algorithms or software in the world of AI? Brian MacKay2009-09-08T18:13:59Z2009-09-08T18:29:00Z<p>I built an evolutionary algorithm for retail inventory replenishment in a product targeted at huge plant nurseries (and there are some really big, smart ones -- $200m companies).</p>
<p>It was probably the coolest thing I've ever worked on. Using three years of historical data, it crunched and evolved for a week straight while I was on vacation. </p>
<p>The end results were both positive and bizarre. Actually, I was pretty sure it was broken at first.</p>
<p>The algorithm was ignoring sales from the previous few weeks, giving them a weight of 0 for all indicators (which is at odds with how these guys currently work -- right now they consider the same week in the previous year and also factor in recent trends).</p>
<p>Eventually I realized what was going on. With the indicators the organism had to work with, over time it was more efficient to look at the same part of the previous month and ignore recent trends. </p>
<p>So instead of looking at the last several days, it looked at the same week in the previous month because there were some subtle but steady trends that repeat every 30 days. And they were more reliable than the more volatile day-to-day trends.</p>
<p>And the result was a significant and reproducable improvement in efficiency.</p>
<p>Unfortunately, I was so excited by this that I told the customer about it and they cancelled the project. That first run was extremely promising, but it was hard to sell as proof even though you could crunch almost any data from the last three years and see that the algorithm magically improved efficiency. EA's are not hard, but people find them convoluted at first, and the idea of doing something so arcane was just a little bit too much to swallow.</p>
<p>The big takeaway for me was that if I ever create something that appears a bit too magical, I should hold off on talking about it until I can put together a good presentation. :)</p>
http://stackoverflow.com/questions/1364561/has-agile-really-worked-for-you-as-a-developer/1364693#13646932Answer by Brian MacKay for Has Agile really worked for you as a Developer?Brian MacKay2009-09-01T21:13:30Z2009-09-01T21:19:46Z<p>I'm a developer and a manager at the same time, so I either have special insight or my opinion is totally invalid. ;)</p>
<p>I will say that Agile means a lot of things. It's actually a whole family of methodologies and guidelines at this point. </p>
<p>Exposing yourself to all these interesting ideas is really the thing. As a manager, it's very hard for me to decree that a whole team suddenly adopt a whole methodology, but if they see me constantly trying to improve every aspect of my game, I think they appreciate that. And hopefully, if they like what they see, they follow my example.</p>
<p>I've managed to slowly implement a bunch of things from Scrum without (hopefully) coming off as a tool. Burn down reports, stand-up meetings, and story cards on the whiteboard have really made us better at shipping software. For instance, on any project tasks are constantly being done ahead of schedule or late. In a really big project, it can become very difficult to tell what that's doing to your ship date. With burn down reports, I can tell what a slip does to our ship date, and if we need to just start cutting features in order to meet a deadline.</p>
<p>That's more of a management thing, but the other devs here care about it because it might mean they get to keep their jobs or avoid a death march. :) </p>
<p>But it's not just management stuff. There's tons in Agile about best practices for source control, unit testing, etc. Just good solid best practices. As an industry, we are pretty terrible about mentoring, so it's good that this information is out there.</p>
http://stackoverflow.com/questions/1362771/can-i-use-to-set-a-control-property-in-asp-net/1362818#13628183Answer by Brian MacKay for Can I use <%= ... %> to set a control property in ASP.NET?Brian MacKay2009-09-01T14:31:43Z2009-09-01T14:37:13Z<p>As Ropstah said, it isn't going to work with the <%= expression %> syntax. </p>
<p>But you could probably use databinding, which just requires that you use the <%# expression %> syntax and then call MyTextBox.Databind in CodeBehind. </p>
<p>Of course, at that point it might be more clear to just do the whole operation in CodeBehind.</p>
<p>Another alternative: if you really want this to be declarative, you could get away from the Label and embed your expression in a span tag.That way you still get to apply CSS, etc and I think the <%= expression %> syntax would work.</p>
http://stackoverflow.com/questions/1358804/how-to-handle-images-during-software-development/1358822#13588225Answer by Brian MacKay for How to handle images during software developmentBrian MacKay2009-08-31T18:43:19Z2009-08-31T19:02:32Z<p>You could just put your images under source control.</p>
<p>That would handle the revision history and notes. If you really need to keep all the transitional versions of the image around and don't want that in your project folder, most source control trees have a 'tools' area for that type of thing.</p>
<p><strong>EDIT:</strong>
If what you're after is keeping track of the various sizes (thumbnails, etc), I would go with convention over configuration and implement a uniform file (or directory) naming system.</p>
<p>For instance, I would probably have seperate folders for the 100px and 500px versions of the same image. Or maybe I would put them in the same folder with a special naming convention: logo-100.jpg, and logo-500.jpg ...Either way is probably fine, just make a decision and be sure to stay consistent throughout the project.</p>
<p>One last thought: some folks like to include a ton of metadata in the file name. To me it depends on the scope of your operation and your individual needs. I would personally default to a less is more approach -- if you're thinking about investing in maintaining something like that (or creating a tool to do it for you), make sure it's actually a net gain of time and not just something for your OCD to filddle with!</p>
<p>As developers, we do tend to make glaring mistakes in this area. I know I've been guilty a bunch of times.</p>
http://stackoverflow.com/questions/1348928/pros-and-cons-of-vb-vba/1348999#13489992Answer by Brian MacKay for Pros and Cons of VB & VBA?Brian MacKay2009-08-28T19:51:10Z2009-08-28T19:51:10Z<p>Meh, these are just religious bigots. </p>
<p>There is no one true language, and most experienced folks not only know that, but instantly recognize these statements as a glaring sign of inexperience.</p>
http://stackoverflow.com/questions/1348832/asp-net-deny-access-on-certain-pages-to-users/1348849#13488492Answer by Brian MacKay for Asp.Net deny access on certain pages to usersBrian MacKay2009-08-28T19:18:44Z2009-08-28T19:25:40Z<p>You can use location tags to control this type of thing. </p>
<p>In this example, I give Customers and Admins access to the CustomersFolder directory:</p>
<pre><code><location path="CustomersFolder">
<system.web>
<authorization>
<allow roles="Customers, Admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
</code></pre>
<p>And with this second block, I then limit access to a certain file under that folder to just Admins:</p>
<pre><code><location path="CustomersFolder/SecureFile.aspx">
<system.web>
<authorization>
<allow roles="Admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
</code></pre>
<p>Hopefully something like that will work for you.</p>
http://stackoverflow.com/questions/1347293/sliverlight-c-web-application-send-pdf-to-clients-printer-without-opening/1347319#13473193Answer by Brian MacKay for Sliverlight/C# web application - send PDF to client's printer without openingBrian MacKay2009-08-28T14:24:10Z2009-08-28T14:36:33Z<p>No -- Silverlight does not support printing natively.</p>
<p>You can usually get some things done in the browser using Javascript, but that won't let you directly send a PDF the way you're discribing. </p>
<p>It's possible to write a seperate app that lives on the client machine and then integrate with that... For an internal line-of-business app that could be a good solution, but the obvious drawback is that you're stepping outside of Silverlight's multi-platform bubble. </p>
<p>Here's an article that might be worth looking at: <a href="http://jonas.follesoe.no/PrintingInSilverlight2UsingCSSAndASPNETAJAX4.aspx" rel="nofollow">http://jonas.follesoe.no/PrintingInSilverlight2UsingCSSAndASPNETAJAX4.aspx</a> (the comments are also interesting, and some of them talk about working with PDFs)</p>
http://stackoverflow.com/questions/1848261/gift-card-debit-card-activation/1848468#1848468Comment by Brian MacKay on Gift Card/Debit Card ActivationBrian MacKay2009-12-04T19:40:42Z2009-12-04T19:40:42ZThanks Tom, but my question isn't about a loyalty program. :) I will update the question to make it more clear.http://stackoverflow.com/questions/306169/alternatives-to-using-web-config-to-store-settings-for-complex-solutions/306298#306298Comment by Brian MacKay on Alternatives to using web.config to store settings (for complex solutions)Brian MacKay2009-11-30T16:25:36Z2009-11-30T16:25:36ZI've been doing it this way for awhile now and it's great. In Web.Config, I just store a connectionstring and a variable called 'enviroment' that contains a value like Production, Staging, Development. And then there's a table called Settings in the database that contains all the settings for all the different environments. And I use RedGate's SQL Data Compare to keep the all in sync. http://stackoverflow.com/questions/500404/what-programming-language-would-be-best-for-creating-a-roguelike-game/501594#501594Comment by Brian MacKay on What programming language would be best for creating a roguelike game?Brian MacKay2009-11-23T21:08:34Z2009-11-23T21:08:34ZDo you have any links that might have more information??http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/803818#803818Comment by Brian MacKay on Worst UI You've Ever UsedBrian MacKay2009-11-23T19:19:29Z2009-11-23T19:19:29ZIt's hard even for experienced developers to buy a freaking domain name. Fail. http://stackoverflow.com/questions/1770992/making-a-generic-movablegameentity-class-for-my-2d-game/1771134#1771134Comment by Brian MacKay on Making a generic MovableGameEntity Class for my 2D game?Brian MacKay2009-11-20T15:45:51Z2009-11-20T15:45:51ZAh, gotcha. :) For me, I would probably try to put the object that has Strength, Dexterity, etc out there as a seperate subclass of MovableGameEntity just to be clean (assuming a bullet doesn't need Strength, etc).
And from there everything else applies. ;)http://stackoverflow.com/questions/1742940/why-not-catch-general-exceptions/1743018#1743018Comment by Brian MacKay on Why not catch general ExceptionsBrian MacKay2009-11-16T16:19:51Z2009-11-16T16:19:51ZSounds like you're all over it then! :) http://stackoverflow.com/questions/1742940/why-not-catch-general-exceptions/1743018#1743018Comment by Brian MacKay on Why not catch general ExceptionsBrian MacKay2009-11-16T15:58:26Z2009-11-16T15:58:26ZGotcha. Well, it's still a similiar situation -- you could display a friendly message to the user, do some logging/reporting, and exit gracefully (or restart/return to a safe state).http://stackoverflow.com/questions/36511/vb-net-get-underlying-system-type-from-nullable-type/752620#752620Comment by Brian MacKay on VB.NET Get underlying system.type from nullable typeBrian MacKay2009-11-09T17:16:44Z2009-11-09T17:16:44ZAwesome, glad to help. :) http://stackoverflow.com/questions/1682740/best-solution-for-integrated-bug-tracking-wiki-and-version-control/1682789#1682789Comment by Brian MacKay on Best solution for integrated bug tracking, wiki and version controlBrian MacKay2009-11-05T19:03:40Z2009-11-05T19:03:40Z+1: we use it here at Inntec. The wiki had some irritating little problems, at least in the previous version, but for the most part we're all very happy.http://stackoverflow.com/questions/855149/create-a-pdf-envelope/855153#855153Comment by Brian MacKay on Create a PDF EnvelopeBrian MacKay2009-10-29T16:04:19Z2009-10-29T16:04:19Z+1: This saved me some time, thanks!http://stackoverflow.com/questions/372865/path-combine-for-urls/372888#372888Comment by Brian MacKay on Path.Combine for Urls?Brian MacKay2009-10-29T14:24:49Z2009-10-29T14:24:49Z+1: This is good, although I have an irrational problem with the output parameter. ;)http://stackoverflow.com/questions/372865/path-combine-for-urls/1476563#1476563Comment by Brian MacKay on Path.Combine for Urls?Brian MacKay2009-10-28T15:59:03Z2009-10-28T15:59:03Z+1: This is actually my favorite. Much more elegant than my, and it's probably fastest. May want to tweak it to also trim '\' just in case.http://stackoverflow.com/questions/1601162/how-to-get-server-domain-name/1601239#1601239Comment by Brian MacKay on How to get server domain nameBrian MacKay2009-10-21T14:42:32Z2009-10-21T14:42:32Z+1: this is the cleanest way. It just returns the domain name, filtering out ports, http/https, path, querystring, etc. http://stackoverflow.com/questions/365489/questions-every-good-net-developer-should-be-able-to-answer/365500#365500Comment by Brian MacKay on Questions every good .NET developer should be able to answer?Brian MacKay2009-10-21T14:36:21Z2009-10-21T14:36:21ZYes, we all have to know tons of "narrow technologies". But for every one we know, there are a bunch that we don't know (usually because we haven't needed them). I'm saying you don't want to miss out on a great developer for not knowing SharePoint, becuase very shortly he might be your best SharePoint guy.http://stackoverflow.com/questions/47089/best-way-in-asp-net-to-force-https-for-an-entire-site/47095#47095Comment by Brian MacKay on Best way in asp.net to force https for an entire site?Brian MacKay2009-10-16T15:27:43Z2009-10-16T15:27:43Z+1: I just used implemented this, it works great!