User Danimal - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T20:13:24Z http://stackoverflow.com/feeds/user/2757 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/51964/how-do-i-remove-items-from-the-query-string-for-redirection 1 How do I remove items from the query string for redirection? Danimal 2008-09-09T14:03:13Z 2009-10-27T20:34:10Z <p>In my base page I need to remove an item from the query string and redirect. I can't use<br/></p> <pre><code>Request.QueryString.Remove("foo") </code></pre> <p>because the collection is read-only. Is there any way to get the query string (except for that one item) without iterating through the collection and re-building it?</p> http://stackoverflow.com/questions/48669/are-there-any-tools-out-there-to-compare-the-structure-of-2-web-pages 1 Are there any tools out there to compare the structure of 2 web pages? Danimal 2008-09-07T18:36:12Z 2009-10-20T09:00:53Z <p>I receive HTML pages from our creative team, and then use those to build aspx pages. One challenge I frequently face is getting the HTML I spit out to match theirs exactly. I almost always end up screwing up the nesting of &lt;div&gt;s between my page and the master pages.</p> <p>Does anyone know of a tool that will help in this situation -- something that will compare 2 pages and output the structural differences? I can't use a standard diff tool, because IDs change from what I receive from creative, text replaces <i>lorem ipsum</i>, etc.. </p> http://stackoverflow.com/questions/86905/suggestions-on-how-build-an-html-diff-tool 3 Suggestions on how build an HTML Diff tool? Danimal 2008-09-17T19:48:19Z 2009-09-12T09:01:47Z <p>In <a href="http://stackoverflow.com/questions/48669/are-there-any-tools-out-there-to-compare-the-structure-of-2-web-pages">this post</a> I asked if there were any tools that compare the structure (not actual content) of 2 HTML pages. I ask because I receive HTML templates from our designers, and frequently miss minor formatting changes in my implementation. I then waste a few hours of designer time sifting through my pages to find my mistakes. </p> <p>The thread offered some good suggestions, but there was nothing that fit the bill. "Fine, then", thought I, "I'll just crank one out myself. I'm a halfway-decent developer, right?".</p> <p>Well, once I started to think about it, I couldn't quite figure out how to go about it. I can crank out a data-driven website easily enough, or do a CMS implementation, or throw documents in and out of BizTalk all day. Can't begin to figure out how to compare HTML docs.</p> <p>Well, sure, I have to read the DOM, and iterate through the nodes. I have to map the structure to some data structure (how??), and then compare them (how??). It's a development task like none I've ever attempted.</p> <p>So now that I've identified a weakness in my knowledge, I'm even more challenged to figure this out. Any suggestions on how to get started?</p> <p>clarification: the actual <i>content</i> isn't what I want to compare -- the creative guys fill their pages with <i>lorem ipsum</i>, and I use real content. Instead, I want to compare structure:</p> <pre> &lt;div class="foo"&gt;lorem ipsum&lt;div&gt;</pre> <p>is different that</p> <pre> <br/>&lt;div class="foo"&gt;<br/>&lt;p&gt;lorem ipsum&lt;p&gt;<br/>&lt;div&gt;</pre> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48783#48783 71 Answer by Danimal for Computer Language puns and jokes Danimal 2008-09-07T21:01:00Z 2009-03-05T12:50:17Z <p>This is by far my favorite: <img src="http://imgs.xkcd.com/comics/exploits_of_a_mom.png" title="Her daughter is named Help I'm trapped in a driver's license factory." /> Credit to the creator at <a href="http://xkcd.com/" rel="nofollow">XKCD</a></p> http://stackoverflow.com/questions/48805/how-do-you-access-browser-history -1 How do you access browser history? Danimal 2008-09-07T21:26:29Z 2009-01-12T16:56:03Z <p><a href="http://www.semanticator.com/" rel="nofollow">Semanticator</a> is an e-Marketing tool that claims to choose which web page to display based on where you were before. That is, if you've been browsing truck sites and then go to Ford.com, your first page would be of the Ford Explorer.</p> <p>I know you can get the immediate preceding page with HTTP_REFERRER, but how do you know where they were 6 sites ago? </p> http://stackoverflow.com/questions/45653/has-anyone-connected-biztalk-with-quickbooks 1 Has anyone connected BizTalk with QuickBooks? Danimal 2008-09-05T12:29:03Z 2008-12-03T13:11:31Z <p>We use QuickBooks for financial management, and feed it from a variety of sources. I now need to hook it up to BizTalk, and I'd hate to reinvent the wheel. I've done searches, and as far as I can tell there's no QuickBooks adapter for BizTalk. Does anyone know of anything that'll do the job, preferably something that doesn't suck? </p> http://stackoverflow.com/questions/153033/sql-server-management-studio-2005-remember-password-doesnt-work 1 SQL Server Management Studio 2005 "Remember Password" doesn't work Danimal 2008-09-30T13:33:13Z 2008-10-29T13:53:22Z <p>Folks,</p> <p>I connect to a large number of SQL Server 2005 databases through SQL Server Management Studio 2005. I frequently check off "Remember password", yet the next time I try to connect it doesn't actually remember it. Have you had this experience? Any workarounds?</p> http://stackoverflow.com/questions/74662/has-anyone-hooked-up-biztalk-and-fogbugz 2 Has anyone hooked up BizTalk and Fogbugz? Danimal 2008-09-16T17:12:55Z 2008-10-21T11:00:49Z <p>We have an intranet system that schedules routine tasks. We also have Fogbugz for bug tracking. When an urgent bug comes in, we track that task in the bugtracker. However, I need to write back to both the Intranet and our CMS. I'm thinking Biztalk as the middle piece, but am not sure the best way to go about it. Database adapter? Web services?</p> <p>I know I can use the CMS adapter for Microsoft CMS. I'd love to hear your experiences with Fogbugz.</p> http://stackoverflow.com/questions/213374/how-do-i-debug-resharper-4-0-add-ins 0 How do I debug Resharper 4.0 add-ins? Danimal 2008-10-17T18:48:02Z 2008-10-18T07:50:28Z <p>Ok, I love Resharper and its addins, but even the best of fanbois have to admit that its API documentation is suboptimal. I'd like to build an addin myself (based on the <a href="http://code.google.com/p/agentjohnsonplugin/" rel="nofollow">Agent Johnson</a> plugin). Thankfully that plugin works in 4.0, so I can use it as a starting point for my own work.</p> <p>My question: how do I run and debug the app? The resharper plugins are in the \v4.1\Bin\Plugins\ directory -- do I set my output directory to that folder, run it, then start another instance of Visual Studio? Or is there some other hack/workaround I should try?</p> http://stackoverflow.com/questions/212039/what-should-students-be-taught-first-when-first-learning-sorting-algorithms/212076#212076 0 Answer by Danimal for What should students be taught first when first learning sorting algorithms? Danimal 2008-10-17T13:19:03Z 2008-10-17T13:19:03Z <p>Bubble sort is the easiest one for beginners to grok, and it also serves as an excellent example of why easy solutions can be expensive. Could be a good way to segue into asymptotic complexity and big-O notation?</p> http://stackoverflow.com/questions/211995/dummy-web-service/212007#212007 6 Answer by Danimal for Dummy web service Danimal 2008-10-17T12:57:26Z 2008-10-17T12:57:26Z <p>We just faced this same problem, and found <a href="http://www.soapui.org/" rel="nofollow">SoapUI</a> to be the perfect tool. Given a WSDL it'll create a service on your machine you can call, and it allows you to edit the response as you need.</p> http://stackoverflow.com/questions/211920/how-to-deal-with-an-undocumented-api-framework-under-net/211927#211927 2 Answer by Danimal for How to deal with an Undocumented API/Framework under .NET? Danimal 2008-10-17T12:24:30Z 2008-10-17T12:24:30Z <p>If I can't get code samples or talk to an original developer, I usually resort to <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> to look at the underlying code. It's slow and inefficient, but sometimes that's all you can do.</p> http://stackoverflow.com/questions/210250/how-do-i-attach-the-debugger-to-iis-instead-of-asp-net-development-server/210255#210255 0 Answer by Danimal for How do I attach the debugger to IIS instead of ASP.NET Development Server? Danimal 2008-10-16T20:51:06Z 2008-10-16T20:51:06Z <p>go to the properties of the web application. Select the "Start Options" section, and change from "USe default web server" to "use custom server". Enter "http://localhost" in the base url. </p> <p>(assumes VS 2008)</p> http://stackoverflow.com/questions/209211/best-xslt-editor-debugger/209323#209323 8 Answer by Danimal for Best XSLT Editor &| Debugger Danimal 2008-10-16T16:28:20Z 2008-10-16T16:28:20Z <p>I've had good results using <a href="http://www.oxygenxml.com/" rel="nofollow">Oxygen</a> for XSLT debugging, XPath building, and general XML stuff. </p> http://stackoverflow.com/questions/208923/html-reporting-solution/208957#208957 2 Answer by Danimal for HTML Reporting Solution Danimal 2008-10-16T15:09:31Z 2008-10-16T15:09:31Z <p>You can try <a href="http://www.datadynamics.com/Products/ProductOverview.aspx?Product=ARNET3" rel="nofollow">ActiveReports.net</a></p> http://stackoverflow.com/questions/205957/how-to-deal-with-an-inept-and-self-centered-programmer/206162#206162 4 Answer by Danimal for How to deal with an inept and self-centered programmer? Danimal 2008-10-15T19:52:59Z 2008-10-15T19:52:59Z <p>Well, you're essentially asking the question "How do I deal with a difficult person?" -- a subject that's covered in many, many business books and articles, and something we all face many times in our career. Looks like this guy is more of a pain than most, though!</p> <p>First of all, consider taking a personal inventory -- make sure that you're not the one being the jerk, and reacting poorly because you perceive him as a challenge. It's not very likely, but make sure your own house is clean first.</p> <p>The development community seems to grow its own species of jerks -- determining which breed he is is important to how you deal with the problem. </p> <p>Some are really, really good technicians, with no people skills. They can be valuable to a project -- incredibly valuable, sometimes -- but can also be poisonous. If his code is good -- especially if it's amazing -- then that might be the jerk you're looking at. They're a cost/benefit analysis waiting to happen -- if they're really good, then you might have to suck it up and keep them around.</p> <p>Some are really bad programmers, and hide their incompetence behind their veneer of jerkiness. Get rid of them quickly, as don't produce and still manage to damage the team.</p> <p>The last group is the most likely -- a moderate programmer who happens to be a jerk. It's hard to know what to do about them without feeling out your co-workers. I mean think about it -- if he's a real jerk to you, who works with him from time to time, imagine how much of a pain he is to his closer co-workers. They must be fed up with him already, right?</p> <p>Finally, it boils down to politics, about which I can give little advice. If you have an open environment, and you know his co-workers are tiring of his crap, then talk to his boss. If he's his boss's toady, then you can't do much more than get your boss to help a bit. </p> <p>After so many words, I find I've written little of value. Post here and let us know how it works out as time goes by.</p> http://stackoverflow.com/questions/205937/how-to-make-windows-form-ui-responsive/205955#205955 2 Answer by Danimal for How to make windows form UI responsive? Danimal 2008-10-15T18:54:09Z 2008-10-15T18:54:09Z <p>Well, the only real way to do 2 things at once (like do calculations, and still keep responsive) is to use threads. If you won't want to explicitly use threads, then check to see if there are any asynchronous calls you can use to do it in the background. Aside from that, do a lot of Application.DoEvents calls wherever you do lots of work.</p> http://stackoverflow.com/questions/205642/good-job-boards-for-developers/205669#205669 0 Answer by Danimal for Good job boards for developers? Danimal 2008-10-15T17:35:50Z 2008-10-15T17:35:50Z <p>I've gotten all of my jobs since 2000 via Monster. However, not one of those jobs was listed on their service. Instead, recruiters found my resume there before the job was listed and got in touch with me that way.</p> http://stackoverflow.com/questions/204670/best-way-for-retrieving-single-record-results-in-linq-to-sql/204678#204678 8 Answer by Danimal for Best way for retrieving single record results in LINQ to SQL Danimal 2008-10-15T13:22:58Z 2008-10-15T13:22:58Z <p>Why not something like</p> <pre><code>var user = dc.Users.SingleOrDefault(u=&gt; u.UserName==usn); </code></pre> http://stackoverflow.com/questions/201616/how-to-capture-console-output-from-a-service-c/201655#201655 2 Answer by Danimal for How to capture console output from a service C#? Danimal 2008-10-14T15:28:59Z 2008-10-14T15:28:59Z <p>use debug.writeline and use sysinternals debugview?</p> http://stackoverflow.com/questions/200986/c-sql-how-to-execute-a-batch-of-storedprocedure/200999#200999 0 Answer by Danimal for C#-SQL: How to execute a batch of StoredProcedure? Danimal 2008-10-14T12:45:38Z 2008-10-14T12:45:38Z <p>Have you considered passing an XML document to a stored procedure, then iterating through that to find the data to insert?</p> http://stackoverflow.com/questions/198612/any-free-html-image-slicer/198629#198629 2 Answer by Danimal for Any free HTML Image Slicer? Danimal 2008-10-13T18:53:15Z 2008-10-13T18:53:15Z <p>Have you considered <a href="http://www.getpaint.net/index.html" rel="nofollow">Paint.Net</a>? It's an excellent tool, and it's free</p> http://stackoverflow.com/questions/198561/how-hard-is-it-to-master-semantic-markup-and-good-css/198597#198597 1 Answer by Danimal for How hard is it to master semantic markup and good CSS? Danimal 2008-10-13T18:45:06Z 2008-10-13T18:45:06Z <p>It's easy to "master" HTML and CSS -- the semantics of each are simple. By that measure, it's even easier to master painting -- just rub some paint on canvas and call it done. Syntax is the easiest part of just about any computer task -- learning <em>how</em> do use it is much more difficult.<br/><br/> I've been a web developer since around 1996. I've known HTML from the beginning, and CSS and Javascript since they came to common use. When I design a page it still tends to look like crap -- syntactically-correct crap, but still not very pleasant. That's why I'm really pleased to work with talented designers who can handle the look &amp; feel parts of it for me.</p> http://stackoverflow.com/questions/198400/how-do-you-get-a-co-worker-to-use-3rd-party-code/198415#198415 8 Answer by Danimal for How do you get a co-worker to use 3rd party code? Danimal 2008-10-13T17:50:32Z 2008-10-13T17:50:32Z <p>Hit him with a stick, because he's obviously too thick to see reason?<br/><br/> It's always fun to re-create the wheel, because it's new to the developer, and not as boring as cranking out their 800th report/web page/DTS package. However, it takes hundreds or thousands of hours to create a truly flexible tool -- hours that your company certainly doesn't want to pay for. There's zero business value to recreating commodity controls, and a lot of project risk.<br/><br/> He may be able to make something more performant than the off-the-shelf solution. However, I'm guessing it won't be as flexible, reusable, cross-browser compliant, or (most importantly) bulletproof as an off-the-shelf component. And if your data is so wonky that other controls won't be able to bind to it, then he serve the mission better by wrapping that so you can reuse the logic.</p> http://stackoverflow.com/questions/194015/users-authentication-in-asp-net/194027#194027 3 Answer by Danimal for Users Authentication in ASP.NET Danimal 2008-10-11T12:28:04Z 2008-10-11T12:28:04Z <p>Seems silly to reinvent the wheel if you don't have a pressing business need to do so. I'd go with forms authentication with a custom provider (if necessary)</p> http://stackoverflow.com/questions/191084/linq-practice-exercises-or-puzzles 2 LINQ practice exercises or puzzles? Danimal 2008-10-10T12:47:44Z 2008-10-10T14:20:11Z <p>I'm still trying to learn LINQ, though it's going more smoothly now that I've started to use it daily at work. I still don't feel <em>good</em> at it, though. Does anyone have any challenging practice exercises or puzzles I can use as a code-kata to improve my skills?</p> <p>I'll leave this as community wiki, so maybe it can grow to a community list. </p> http://stackoverflow.com/questions/188569/login-aspx-always-wants-to-be-my-home-page/188578#188578 1 Answer by Danimal for Login.aspx always wants to be my home page! Danimal 2008-10-09T18:30:34Z 2008-10-09T18:30:34Z <p>You've set the login URL in web.config. You get sent to welcome.aspx, but that sees that you're not logged in -- so it bounces you back to login. If your login page has a "remember me" checkbox, try checking that off and logging in -- subsequent runs should let you right in to welcome.aspx</p> http://stackoverflow.com/questions/188537/is-a-support-position-a-career-dead-end/188566#188566 13 Answer by Danimal for Is a "support" position a career dead end? Danimal 2008-10-09T18:28:09Z 2008-10-09T18:28:09Z <p>Support can be just as challenging and rewarding as ongoing development -- as long as you're in the right company, maintaining the right system. It all depends on what you want to do with your career.</p> <p>Look at it this way: the economy is going to crap now, right? What do you think companies are going to cut? Ongoing maintenance on their core system they've been using for 20 years? Or that new, expensive project that has yet to show any ROI? I'm guessing the latter, so these days support may be a lot more stable in the meantime.</p> <p>However, if you want to stay on the cutting edge, play with new technologies, and stay current, then you might want to take the risk and try to get into the new development side. It's a tradeoff, like most things in life.</p> http://stackoverflow.com/questions/188476/comparing-two-strings-producing-a-numeric-delta/188483#188483 5 Answer by Danimal for Comparing Two Strings producing a numeric delta Danimal 2008-10-09T18:16:10Z 2008-10-09T18:16:10Z <p>Are you talking about the "Edit Distance"? Do a search on "Levenshtein Distance", on SO or Google. I use the version posted on <a href="http://blogs.msdn.com/toub/archive/2006/05/05/590814.aspx" rel="nofollow">Stephen Toub's blog</a></p> http://stackoverflow.com/questions/188408/what-is-the-best-control-to-use-to-display-items-from-a-database/188440#188440 1 Answer by Danimal for What is the best control to use to display items from a database? Danimal 2008-10-09T18:04:53Z 2008-10-09T18:04:53Z <p>@rslite and @Bryant both have good suggestions. My initial go of the problem would probably involve creating a "Thinkgeek-esque" user control, and plopping that into a repeater for display. However, the DDP would be a good call as well. Really depends on deeper level requirements than you mention.</p> http://stackoverflow.com/questions/212860/usability-hints-for-building-an-adult-web-site/212935#212935 Comment by Danimal on Usability hints for building an adult web site? Danimal 2008-10-18T16:03:43Z 2008-10-18T16:03:43Z What's a &quot;light table&quot;? http://stackoverflow.com/questions/212860/usability-hints-for-building-an-adult-web-site/212908#212908 Comment by Danimal on Usability hints for building an adult web site? Danimal 2008-10-18T16:02:59Z 2008-10-18T16:02:59Z why the hell did 2 people vote this offensive? What children! http://stackoverflow.com/questions/214233/how-scalable-is-linq/214284#214284 Comment by Danimal on How scalable is LINQ? Danimal 2008-10-18T03:19:35Z 2008-10-18T03:19:35Z Of course he's not saying that, Nathan -- he was making a point about linq vis a vis other ways of querying collections. http://stackoverflow.com/questions/213183/can-i-safely-download-and-install-net-framework-3-5-sp1-without-requiring-my-cus/213202#213202 Comment by Danimal on Can I safely download and install .Net framework 3.5 SP1 without requiring my customers to upgrade their .Net Framework distributable? (currently running 3.5) Danimal 2008-10-17T18:10:30Z 2008-10-17T18:10:30Z safe general-purpose answer -- wish I had thought of it! http://stackoverflow.com/questions/213183/can-i-safely-download-and-install-net-framework-3-5-sp1-without-requiring-my-cus Comment by Danimal on Can I safely download and install .Net framework 3.5 SP1 without requiring my customers to upgrade their .Net Framework distributable? (currently running 3.5) Danimal 2008-10-17T18:08:24Z 2008-10-17T18:08:24Z You need to flesh out your question a bit, Brian. I assume you're releasing builds from your machine. What framework? Winforms click once apps? Web apps? Give us mor einfo. http://stackoverflow.com/questions/212860/usability-hints-for-building-an-adult-web-site Comment by Danimal on Usability hints for building an adult web site? Danimal 2008-10-17T17:06:52Z 2008-10-17T17:06:52Z wow, chill out, jmein. There are indeed some design considerations for adult-focused sites. The question hardly stains the SO community. Sheesh! http://stackoverflow.com/questions/205957/how-to-deal-with-an-inept-and-self-centered-programmer Comment by Danimal on How to deal with an inept and self-centered programmer? Danimal 2008-10-15T18:56:19Z 2008-10-15T18:56:19Z Boss? Is that you? http://stackoverflow.com/questions/205911/any-tools-to-catch-silly-mistakes-in-c-code Comment by Danimal on Any Tools to Catch Silly Mistakes in C Code? Danimal 2008-10-15T18:46:00Z 2008-10-15T18:46:00Z We've had great success with using a baseball bat here. After we catch the first silly mistake, they tend not to make another! http://stackoverflow.com/questions/204670/best-way-for-retrieving-single-record-results-in-linq-to-sql/204681#204681 Comment by Danimal on Best way for retrieving single record results in LINQ to SQL Danimal 2008-10-15T13:28:32Z 2008-10-15T13:28:32Z the downvote doesn't make sense to be -- the code is perfectly cromulent. +1 to bring you back level http://stackoverflow.com/questions/200545/attempted-sql-injection-attack-what-are-they-trying-to-do/200548#200548 Comment by Danimal on Attempted SQL injection attack - what are they trying to do? Danimal 2008-10-14T12:43:29Z 2008-10-14T12:43:29Z there's a massive Chinese botnet that's striking all across the web, trying this on every form in every page it can find. We get probed with this several times a day -- a useful, though annoying, way to show that we're immune to such attacks. http://stackoverflow.com/questions/198462/get-versus-post-in-terms-of-security/198468#198468 Comment by Danimal on GET versus POST in terms of security? Danimal 2008-10-13T18:14:49Z 2008-10-13T18:14:49Z Yeah, not that much harder. Might slow the script kiddies down, but they're still out there. http://stackoverflow.com/questions/188861/what-language-would-you-choose-for-a-greenfield-project Comment by Danimal on What language would you choose for a greenfield project? Danimal 2008-10-09T19:43:35Z 2008-10-09T19:43:35Z for those who are curious: Greenfield: A brand new installation of equipment without the requirement of integrating existing systems. http://stackoverflow.com/questions/188476/comparing-two-strings-producing-a-numeric-delta/188483#188483 Comment by Danimal on Comparing Two Strings producing a numeric delta Danimal 2008-10-09T18:20:31Z 2008-10-09T18:20:31Z that's one of the great things about SO -- I saw an earlier post on the topic, and it was immediately useful for me. Glad I could return the favor! http://stackoverflow.com/questions/188422/asp-net-multi-language-website/188434#188434 Comment by Danimal on ASP.NET multi language website? Danimal 2008-10-09T18:07:23Z 2008-10-09T18:07:23Z Resource files are the canonical way to do it in .net, but aren't they a bear to fit retroactively? I'd love to see you flesh out your response a bit on that topic... http://stackoverflow.com/questions/188291/track-where-i-was-downvoted/188297#188297 Comment by Danimal on Track where I was downvoted Danimal 2008-10-09T17:58:01Z 2008-10-09T17:58:01Z More of a problem with quickly-growing sites like this. They don't have time to document all the changes, so you have to experiment. I learned about this listening to the last SO podcast.