User Echostorm - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T03:15:44Zhttp://stackoverflow.com/feeds/user/12862http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs157Dealbreakers for new programming jobs?Echostorm2008-10-28T11:47:17Z2009-11-20T18:46:20Z
<p>What can come up in an interview or job posting that should set off the alarm bells for a coder?</p>
<p>I'm still only a few years in the industry but I already know to look out for excessive red tape and bureaucracy. Cubes and a noisy office also tell me that I'll be both miserable and unproductive and that management does not appreciate what coders need to work well. </p>
<p>Edit: The way things are going I'm taking extra time to look at the company's stability. If they depend on a single vendor for their livelihood and could be out of business if the vendor decides they don't really need the service or can do it in-house.</p>
<p>What are your dealbreakers?</p>
http://stackoverflow.com/questions/233596/best-practice-for-forcing-garbage-collection-in-c6Best Practice for Forcing Garbage Collection in C#Echostorm2008-10-24T13:49:43Z2009-09-24T15:49:04Z
<p>In my experience it seems that most people will tell you that it is unwise to force a garbage collection but in some cases where you are working with large objects that don't always get collected in the 0 generation but where memory is an issue, is it ok to force the collect? Is there a best practice out there for doing so?</p>
http://stackoverflow.com/questions/566767/how-to-deal-with-management-that-wants-you-to-do-everything/1040222#10402220Answer by Echostorm for How to deal with management that wants you to do everything?Echostorm2009-06-24T18:51:52Z2009-06-24T18:51:52Z<p>If your company can only see you as an IT guy who deals with IT stuff then unless you're willing to stay there for the rest of your career, I'd bail now. </p>
http://stackoverflow.com/questions/773658/best-os-for-bioinformatics/793288#7932880Answer by Echostorm for Best OS for bioinformatics?Echostorm2009-04-27T12:33:27Z2009-04-27T12:33:27Z<p>Windows is a good choice, there are a ton of pretty standard apps you'd probably want like, AnnHyb, MeltSim, Base Pad, and Winblast.</p>
http://stackoverflow.com/questions/197388/generate-user-specific-1-time-coupon-code4Generate User Specific 1 Time Coupon CodeEchostorm2008-10-13T12:24:04Z2009-04-20T18:37:57Z
<p>So I need to generate a code that can be tied to a specific user/prospect with a dollar amount built into it. It needs to be reversible so that client application can confirm the validity of the code and apply the discount a manager intends.</p>
<p>I'd like to make the code as short as possible but it needs to be well obfuscated so that the salesmen cannot start messing with it on their own.</p>
<p>I can come up with something myself bouncing numbers around, dividing by pi and converting to hex and whatnot but I'd be really interested in ideas or best practices from the community. </p>
<p>I'm doing this in C# but I expect that methods from any language can be translated.</p>
<p>edit:
to clarify. I can't store this stuff ahead of time, the codes have to be built on the fly and carry all the information with them.</p>
<p>eg. Salesman 14 calls in about client 773 and wants to give them $500 off their order. 14, 773 and 500 must be in the coupon code and able to be extracted in the client app after the salesman keys in the code.</p>
http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem/643401#64340118Answer by Echostorm for What's your "ceremony" after finishing your project or solving a hard problem?Echostorm2009-03-13T16:01:04Z2009-03-13T16:37:10Z<p>We Riverdance.</p>
<p><img src="http://i41.tinypic.com/2434494.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/619634/is-test-driven-development-a-normal-approach-in-game-development/619663#6196630Answer by Echostorm for Is test driven development a normal approach in game development?Echostorm2009-03-06T17:17:24Z2009-03-06T17:17:24Z<p>TDD isn't really a 'normal' approach anywhere yet as it's still relatively new and not universally understood or accepted yet. That isn't to say that some shops don't work that way now but I'm still surprised to hear anyone using it at all at this point.</p>
http://stackoverflow.com/questions/556265/opinions-on-using-xml-as-a-stored-proc-parameter-and-return-type2Opinions on using XML as a Stored Proc Parameter and Return Type.Echostorm2009-02-17T10:42:25Z2009-02-27T17:57:39Z
<p>This is new to me. I have a new boss at work who is insisting that every query we do from now on be a sproc with XML serialized parameters and return types. </p>
<p>I've not run any tests yet but this strikes me as overkill and possibly a performance killer in many ways. What is your experience?</p>
http://stackoverflow.com/questions/439086/get-entity-from-table-using-reflection-from-abstract-type1Get Entity From Table Using Reflection From Abstract TypeEchostorm2009-01-13T14:17:31Z2009-02-27T12:52:23Z
<p>Ok, so I have an abstract class called Product. I have 3 tables called Items, Kits, and Packages that implement Product. Product has a public property that exposes the object's primary key.</p>
<p>That said I have a form where I pass a product. I would would like to pull that product out of a fresh datacontext without having to write a big switch reflecting it's type to get its proper table.</p>
<p>I wanted to do something like this but the cast bit won't accept foo.</p>
<pre><code>public BuilderInclusionsForm(Product p) : this()
{
Type foo = p.GetType();
product = db2.GetTable(p.GetType()).Cast<foo>().SingleOrDefault(a =>
a.ProductID == p.ProductID);
</code></pre>
<p>or this:</p>
<pre><code>public BuilderInclusionsForm(Product p) : this()
{
Type foo = p.GetType();
product = db2.GetTable(p.GetType()).OfType<foo>().SingleOrDefault(a =>
a.ProductID == p.ProductID);
</code></pre>
http://stackoverflow.com/questions/439086/get-entity-from-table-using-reflection-from-abstract-type/594627#5946271Answer by Echostorm for Get Entity From Table Using Reflection From Abstract TypeEchostorm2009-02-27T12:52:23Z2009-02-27T12:52:23Z<p>With thanks to Mr. Skeet a bright member of my team pointed out the following solution.</p>
<pre><code> public BuilderInclusionsForm(Product p) : this()
{
IEnumerable<Product> ps = db2.GetTable(p.GetType()).Cast<Product>();
product = ps.SingleOrDefault(a => a.ProductID == p.ProductID);
}
</code></pre>
<p>Sorry to waste your time. Please don't garbage collect my sorry ass John. =oD</p>
http://stackoverflow.com/questions/586102/how-do-you-stay-on-top-of-microsofts-public-information/586181#5861811Answer by Echostorm for How do you stay on top of Microsoft's public information?Echostorm2009-02-25T14:29:27Z2009-02-25T14:29:27Z<p><a href="http://channel9.msdn.com/" rel="nofollow">Channel 9</a> is usually buzzing about nearly everything they're up to. They're starting to do more podcasts, screencasts and interviews.</p>
<p><a href="http://on10.net/" rel="nofollow">Channel 10</a> is more blurbs and videos but I find it suppliments Channel 9 nicely.</p>
http://stackoverflow.com/questions/231485/whats-your-favourite-part-of-c/581918#5819180Answer by Echostorm for What's your favourite part of C#?Echostorm2009-02-24T14:25:12Z2009-02-24T14:25:12Z<p>I love LINQ. I'm forgetting how to write SQL joins and I'm a happier person for it.</p>
http://stackoverflow.com/questions/553248/help-on-a-ui-for-time-tracking/553345#5533451Answer by Echostorm for Help on a UI for time trackingEchostorm2009-02-16T13:46:41Z2009-02-16T13:46:41Z<p>How about a pie chart where the total size represents the minimum goal and add pie slices for each day with actual days that met the minimum one color, days with extra time another and then fill the remaining days as gray slices with the number of hours the employee would have to work divided evenly among them?</p>
http://stackoverflow.com/questions/547476/how-do-i-build-a-great-game-development-team/547563#5475631Answer by Echostorm for How do I build a great game development team?Echostorm2009-02-13T20:33:06Z2009-02-13T20:33:06Z<p>I've been on large game teams before and in addition to Jim Blizard's excellent suggestions I can tell you to have at least one, community representative to be your public face in the forums, organize things like developer interviews, sneak peaks and condense the feedback from beta testers.</p>
<p>Before we had a volunteer for that it all fell on the coders and nearly halted development. We spent more time answering questions, justifying features and defusings fights in the forums than we did coding. Our rep came in and dealt with everything and told us what we needed to know.</p>
http://stackoverflow.com/questions/195285/what-stupid-policies-affecting-developers-has-your-company-introduced/541382#5413821Answer by Echostorm for What stupid policies affecting developers has your company introduced?Echostorm2009-02-12T14:10:06Z2009-02-12T14:10:06Z<p>The usual timekeeping complaint. I have to track my hours and leave detailed notes on what I'm doing. Then leave detailed notes in check-in notes. Then leave detailed notes in a weekly wrap-up spreadsheet. </p>
<p>We used to have an office that the coders shared, it was warm and we could close the door and block most of the noise. Now they want all of IT in the same area so we're in cubes next to marketing and sales. The noise from the people and printers can be incredibly distracting.</p>
<p>SCRUM.</p>
<p>Quarterly meetings are two hours before working hours and in the middle of nowhere so that we can get back to work a full day.</p>
<p>The process for getting an application up to production or even a patch can be complex and time consuming than writing the actual app.</p>
<p>At the main office everyone has to take lunch exactly at noon and finish exactly at 12:30.</p>
<p>Heavily filtered internet access.</p>
http://stackoverflow.com/questions/537274/please-recommend-a-good-debug-logging-framework-for-asp-net-with-a-good-viewer/537345#5373450Answer by Echostorm for Please recommend a good debug logging framework for ASP.NET with a good viewer.Echostorm2009-02-11T15:33:50Z2009-02-11T15:46:46Z<p>Visual Studio Test Edition comes with a lot of what you're talking about.
You could also look into using ANTS from RedGate to profile for performance bottlenecks.</p>
<p>If price is a barrier you'll probably want to go with <a href="http://logging.apache.org/log4net/" rel="nofollow">log4net</a>.</p>
<p>There are a couple <a href="http://log4net-dashboard.faktnet-as.qarchive.org/" rel="nofollow">parsers</a> for log4net out there.</p>
http://stackoverflow.com/questions/469445/last-words-of-a-programmer/469698#4696981Answer by Echostorm for Last words of a ??? programmerEchostorm2009-01-22T15:56:27Z2009-01-22T15:56:27Z<p>C#</p>
<pre><code>using(LifeSupport ls = new LifeSupport())
{
Patient p = new Patient(me);
}
ls.Breathe(p);
</code></pre>
http://stackoverflow.com/questions/234312/what-have-you-done-to-customize-your-ide3What have you done to customize your IDE?Echostorm2008-10-24T16:41:16Z2009-01-22T08:27:12Z
<p>What tweaks / addins / themes do you have rigged up to make your IDE awesome? For example, in Visual Studio I <a href="http://www.hanselman.com/blog/VisualStudioProgrammerThemesGallery.aspx" rel="nofollow">color themes</a>, <a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/" rel="nofollow">CodeRush</a> draws lines between braces, I always install and use the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=22e69ae4-7e40-4807-8a86-b3d36fab68d3&displaylang=en" rel="nofollow">Consolas</a> font and I have it setup to <a href="http://blogs.msdn.com/saraford/archive/2008/06/30/did-you-know-you-can-use-team-settings-to-keep-visual-studio-settings-on-different-machines-in-sync-248.aspx" rel="nofollow">sync my settings across computers</a> for when I change hotkeys and whatnot with the help of <a href="https://www.foldershare.com/welcome.aspx" rel="nofollow">FolderShare</a>.</p>
<p>Also, this isn't Visual Studio specific, please feel free to mention what you do with Emacs or Eclipse or whatnot as many of us use a few.</p>
http://stackoverflow.com/questions/465560/most-important-non-technical-skill-youve-acquired/465701#4657010Answer by Echostorm for Most important non-technical skill you've acquiredEchostorm2009-01-21T15:15:50Z2009-01-21T15:15:50Z<p>Taking yes for an answer.</p>
<p>Humor option:
Rap freestyling.</p>
http://stackoverflow.com/questions/465267/which-programming-tools-do-you-pay-for/465400#4654001Answer by Echostorm for Which programming tools do you pay for?Echostorm2009-01-21T13:55:35Z2009-01-21T13:55:35Z<p><a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/" rel="nofollow">CodeRush / Refactor Pro</a> is worth every penny.</p>
http://stackoverflow.com/questions/464667/do-you-program-for-profit/465185#4651850Answer by Echostorm for Do you program for profit?Echostorm2009-01-21T12:56:10Z2009-01-21T12:56:10Z<p>You have to like the language you're working with or you'll be miserable. I love working with C# and find smaller languages like PHP or Python interesting but when I have to work with another big language with nuances that can take decades to master I feel like I'm wasting my time because I'm not prepared to make a commitment to mastering them.</p>
http://stackoverflow.com/questions/464948/how-can-i-have-response-redirect-work-from-masterpage/465091#4650910Answer by Echostorm for How can i have Response.Redirect() work from MasterPage?Echostorm2009-01-21T12:30:41Z2009-01-21T12:30:41Z<p>I don't know if its the root of your problem but I'd change 2 things. I'd change your code to:</p>
<pre><code>Response.Redirect("~/chooseRecipients.aspx", false);
</code></pre>
<p>and move the logic to PageLoad</p>
http://stackoverflow.com/questions/446687/sql-to-l2s-translation-help1SQL to L2S Translation HelpEchostorm2009-01-15T13:21:47Z2009-01-15T13:34:55Z
<p>So here is the original query</p>
<p>SELECT SUM(PickQty), SUM(ReqQty), AssignmentID, StopID
FROM PickRequest
GROUP BY AssignmentID, StopID</p>
<p>in LINQ</p>
<pre><code>from a in dbReqs
group a by new { a.AssignmentID, a.StopID }
into pr
select new
{
Assignment = pr.Key,
StopID = pr.Select(s=> s.StopID),
PickQty = pr.Sum(p=> p.PickedQty),
Count = pr.Sum(c => c.ReqQty)
}
</code></pre>
<p>I must be doing something wrong because the LINQ version takes ages and the results seem a bit off. Ideas?</p>
http://stackoverflow.com/questions/139097/how-do-you-waste-work-time-ie-procrastinate/440046#4400460Answer by Echostorm for How do you waste work time ie procrastinate?Echostorm2009-01-13T17:55:27Z2009-01-13T18:03:14Z<p>Devising increasingly elaborate and <em>terrible</em> punishments for breaking the build.</p>
<p><img src="http://i41.tinypic.com/2060cxz.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/350383/coderush-tricks-of-the-trade/420911#4209114Answer by Echostorm for CodeRush Tricks of the TradeEchostorm2009-01-07T16:10:09Z2009-01-07T16:10:09Z<p>I use these alot.</p>
<p>/ will comment or uncomment highlighted blocks of code. </p>
<p>b will wrap a highlighted selection in braces. </p>
<p>ctl-3 will wrap a selection into a region </p>
<p>tc will generate a try/catch block </p>
<p>mbs will write a MessageBox.Show(""); and drop the cursor in the quotes. </p>
<p>cws will do the same but with Console.Writeline </p>
<p>m will create a method block (ms would do a method block that returns type string) </p>
<p>. will make a comment block</p>
http://stackoverflow.com/questions/420572/how-do-you-keep-your-windows-development-machine-from-slowing-down/420601#42060116Answer by Echostorm for How do you keep your Windows development machine from slowing down?Echostorm2009-01-07T14:56:59Z2009-01-07T16:05:37Z<p>I run <a href="http://kessels.nl/JkDefrag/index.html" rel="nofollow">JKDefrag</a> as my screensaver. The homepage looks ghetto but its the best.</p>
<p>I also use <a href="http://www.ccleaner.com/" rel="nofollow">CCleaner</a> to cleanup the registry and old temp files.</p>
<p><a href="http://www.iobit.com/" rel="nofollow">Advanced System Care</a> has some great free features for optimizing.</p>
<p><a href="http://www.nkprods.com/ncleaner/" rel="nofollow">nCleaner</a> is nice too.</p>
<p><a href="http://www.malwarebytes.org/" rel="nofollow">MalwareBytes</a> is good to run now and then in conjunction with <a href="http://www.safer-networking.org/" rel="nofollow">SpyBot</a>.</p>
<p>I also use <a href="http://www.foxitsoftware.com/pdf/rd_intro.php" rel="nofollow">FoxIt</a> instead of Adobe Reader to cut down on bloat.</p>
http://stackoverflow.com/questions/417898/why-do-i-need-stored-procedures-when-i-have-linq-to-sql/417948#4179480Answer by Echostorm for Why do I need Stored Procedures when I have LINQ to SQLEchostorm2009-01-06T20:17:52Z2009-01-06T20:17:52Z<p>Lots of people have been getting by just fine without them for some time now. If you can do your work securely and efficiently without them, don't feel guilty about going with pure L2S. We're glad to be rid of them @ my shop.</p>
http://stackoverflow.com/questions/111790/how-often-does-your-company-pay-for-your-training-courses/403074#4030740Answer by Echostorm for How often does your company pay for your training courses?Echostorm2008-12-31T14:29:02Z2008-12-31T14:29:02Z<p>We get 2500 a year and 5 days set aside for travel. We have to get the 'go ahead' from our boss but its usually cool. We can also opt to spend the money on books or online courses.</p>
http://stackoverflow.com/questions/402978/visual-studio-upgrade-advice-2008-2010/403063#4030631Answer by Echostorm for Visual Studio Upgrade Advice 2008 / 2010Echostorm2008-12-31T14:25:25Z2008-12-31T14:25:25Z<p>I'd make the jump now if I was in your shoes. It'll minimize the impact of the 2010 jump down the line by getting you used to the many new features you'll already have to get used to. Additionally you'll get to enjoy many months of better performance and features before 2010 is available.</p>
http://stackoverflow.com/questions/400616/why-doesnt-my-form-post-when-i-disable-the-submit-button-to-prevent-double-click/400716#4007163Answer by Echostorm for Why doesn't my form post when I disable the submit button to prevent double clicking?Echostorm2008-12-30T16:19:03Z2008-12-30T16:19:03Z<p>I think you're just missing this tag:</p>
<pre><code>UseSubmitBehavior=”false”
</code></pre>
<p>Try it like this:</p>
<pre><code><asp:Button ID=”btnUpdate” runat=”server” UseSubmitBehavior=”false” OnClientClick=”if(Page_ClientValidate()) { this.disabled = true; } else {return false;}” Text = “Update” CssClass=”button” OnClick=”btnUpdate_Click” ValidationGroup=”vgNew”/>
</code></pre>
<p><a href="http://rumandcode.wordpress.com/2008/06/20/single-click-aspnet-button/" rel="nofollow">Explaination</a></p>
http://stackoverflow.com/questions/773658/best-os-for-bioinformatics/793288#793288Comment by Echostorm on Best OS for bioinformatics?Echostorm2009-07-31T13:43:28Z2009-07-31T13:43:28ZThank you, this answer needed some fanboism.http://stackoverflow.com/questions/398332/what-backup-strategy-do-you-use-for-your-code/398435#398435Comment by Echostorm on What backup strategy do you use for your code?Echostorm2009-04-23T13:48:14Z2009-04-23T13:48:14ZTrue thats why I encrypt everything before it leaves. Mozy does Blowfish on the client side and Syncback has a similar option.http://stackoverflow.com/questions/506538/what-are-some-good-posters-youd-find-in-a-programmers-room/523667#523667Comment by Echostorm on What are some good posters you'd find in a programmer's room?Echostorm2009-04-08T15:03:04Z2009-04-08T15:03:04ZTheres an error screen?http://stackoverflow.com/questions/690531/how-can-i-teach-a-beginner-to-write-asp-net-web-applications-quicklyComment by Echostorm on How can I teach a beginner to write ASP.NET web applications quickly?Echostorm2009-03-27T17:43:17Z2009-03-27T17:43:17ZDeliver a few fatal beatings whenever they make a mistake.http://stackoverflow.com/questions/325046/should-i-choose-to-learn-java-or-net/686191#686191Comment by Echostorm on Should I choose to learn Java or .NET?Echostorm2009-03-27T11:54:12Z2009-03-27T11:54:12ZAgain with the lack of simple research. <a href="http://www.mono-project.com/Companies_Using_Mono" rel="nofollow">mono-project.com/Companies_Using_Mono</a>
Additionally, bringing the price of Windows into this is irrelevant. Computers cost money so the price of developing anything is not free. http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/477812#477812Comment by Echostorm on Dealbreakers for new programming jobs?Echostorm2009-03-27T11:50:13Z2009-03-27T11:50:13ZI think the strong creative aspect of coding makes a stogy atmosphere difficult to develop in and our zeal moves us to push for the most favorable environment we can barter for ourselves. That and many of us here are prima donnas and can get away with it. =oD http://stackoverflow.com/questions/325046/should-i-choose-to-learn-java-or-net/686191#686191Comment by Echostorm on Should I choose to learn Java or .NET?Echostorm2009-03-26T15:22:42Z2009-03-26T15:22:42ZGet your facts straight before you answer.http://stackoverflow.com/questions/662427/flex-or-silverlightComment by Echostorm on Flex or SilverlightEchostorm2009-03-19T14:50:39Z2009-03-19T14:50:39ZYep, MS is evil for creating platforms for their developers. How dare they?http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problemComment by Echostorm on What's your "ceremony" after finishing your project or solving a hard problem?Echostorm2009-03-16T11:53:16Z2009-03-16T11:53:16ZI think it might be a stretch to call this a dupe.http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem/643401#643401Comment by Echostorm on What's your "ceremony" after finishing your project or solving a hard problem?Echostorm2009-03-13T18:50:17Z2009-03-13T18:50:17ZYeah, we try to limit our performances to pre-lunch time.http://stackoverflow.com/questions/625169/is-it-ok-to-write-new-apps-for-net-yetComment by Echostorm on Is it OK to write new apps for .NET yet ?Echostorm2009-03-09T12:14:46Z2009-03-09T12:14:46Z3.5 is going to be pushed out over windows update pretty soon from what I hear.http://stackoverflow.com/questions/619634/is-test-driven-development-a-normal-approach-in-game-development/622097#622097Comment by Echostorm on Is test driven development a normal approach in game development?Echostorm2009-03-09T12:12:39Z2009-03-09T12:12:39ZAgreed Rune, though I think we all have a lot to learn from UB's SOLID principles I am often turned off by the inflexible way that he and his followers deliver their sermons. http://stackoverflow.com/questions/619634/is-test-driven-development-a-normal-approach-in-game-development/619663#619663Comment by Echostorm on Is test driven development a normal approach in game development?Echostorm2009-03-09T12:01:50Z2009-03-09T12:01:50Zm4bwav - People talk about lots of things, that doesn't mean they actually understand or implement them. Kena sorta proves my point.
Kena- Regression tests and code coverage != TDD.http://stackoverflow.com/questions/586102/how-do-you-stay-on-top-of-microsofts-public-information/586141#586141Comment by Echostorm on How do you stay on top of Microsoft's public information?Echostorm2009-02-26T12:35:29Z2009-02-26T12:35:29ZNow now, thats not the sort of apathy that Aunt Pol would approve of.http://stackoverflow.com/questions/582493/c-on-linux-anyone-got-an-opinion-based-on-experience-using-mono/582540#582540Comment by Echostorm on C# on Linux - Anyone got an opinion based on experience using mono?Echostorm2009-02-24T17:08:06Z2009-02-24T17:08:06ZPlentyofFish too and they do it all on one or two servers.