User Danimal - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T20:13:24Zhttp://stackoverflow.com/feeds/user/2757http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/51964/how-do-i-remove-items-from-the-query-string-for-redirection1How do I remove items from the query string for redirection?Danimal2008-09-09T14:03:13Z2009-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-pages1Are there any tools out there to compare the structure of 2 web pages?Danimal2008-09-07T18:36:12Z2009-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 <div>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-tool3Suggestions on how build an HTML Diff tool?Danimal2008-09-17T19:48:19Z2009-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>
<div class="foo">lorem ipsum<div></pre>
<p>is different that</p>
<pre>
<br/><div class="foo"><br/><p>lorem ipsum<p><br/><div></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48783#4878371Answer by Danimal for Computer Language puns and jokesDanimal2008-09-07T21:01:00Z2009-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-1How do you access browser history?Danimal2008-09-07T21:26:29Z2009-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-quickbooks1Has anyone connected BizTalk with QuickBooks?Danimal2008-09-05T12:29:03Z2008-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-work1SQL Server Management Studio 2005 "Remember Password" doesn't workDanimal2008-09-30T13:33:13Z2008-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-fogbugz2Has anyone hooked up BizTalk and Fogbugz?Danimal2008-09-16T17:12:55Z2008-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-ins0How do I debug Resharper 4.0 add-ins?Danimal2008-10-17T18:48:02Z2008-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#2120760Answer by Danimal for What should students be taught first when first learning sorting algorithms?Danimal2008-10-17T13:19:03Z2008-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#2120076Answer by Danimal for Dummy web serviceDanimal2008-10-17T12:57:26Z2008-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#2119272Answer by Danimal for How to deal with an Undocumented API/Framework under .NET?Danimal2008-10-17T12:24:30Z2008-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#2102550Answer by Danimal for How do I attach the debugger to IIS instead of ASP.NET Development Server?Danimal2008-10-16T20:51:06Z2008-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#2093238Answer by Danimal for Best XSLT Editor &| DebuggerDanimal2008-10-16T16:28:20Z2008-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#2089572Answer by Danimal for HTML Reporting SolutionDanimal2008-10-16T15:09:31Z2008-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#2061624Answer by Danimal for How to deal with an inept and self-centered programmer?Danimal2008-10-15T19:52:59Z2008-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#2059552Answer by Danimal for How to make windows form UI responsive?Danimal2008-10-15T18:54:09Z2008-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#2056690Answer by Danimal for Good job boards for developers?Danimal2008-10-15T17:35:50Z2008-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#2046788Answer by Danimal for Best way for retrieving single record results in LINQ to SQLDanimal2008-10-15T13:22:58Z2008-10-15T13:22:58Z<p>Why not something like</p>
<pre><code>var user = dc.Users.SingleOrDefault(u=> u.UserName==usn);
</code></pre>
http://stackoverflow.com/questions/201616/how-to-capture-console-output-from-a-service-c/201655#2016552Answer by Danimal for How to capture console output from a service C#?Danimal2008-10-14T15:28:59Z2008-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#2009990Answer by Danimal for C#-SQL: How to execute a batch of StoredProcedure?Danimal2008-10-14T12:45:38Z2008-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#1986292Answer by Danimal for Any free HTML Image Slicer?Danimal2008-10-13T18:53:15Z2008-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#1985971Answer by Danimal for How hard is it to master semantic markup and good CSS?Danimal2008-10-13T18:45:06Z2008-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 & 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#1984158Answer by Danimal for How do you get a co-worker to use 3rd party code?Danimal2008-10-13T17:50:32Z2008-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#1940273Answer by Danimal for Users Authentication in ASP.NETDanimal2008-10-11T12:28:04Z2008-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-puzzles2LINQ practice exercises or puzzles?Danimal2008-10-10T12:47:44Z2008-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#1885781Answer by Danimal for Login.aspx always wants to be my home page!Danimal2008-10-09T18:30:34Z2008-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#18856613Answer by Danimal for Is a "support" position a career dead end?Danimal2008-10-09T18:28:09Z2008-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#1884835Answer by Danimal for Comparing Two Strings producing a numeric deltaDanimal2008-10-09T18:16:10Z2008-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#1884401Answer by Danimal for What is the best control to use to display items from a database?Danimal2008-10-09T18:04:53Z2008-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#212935Comment by Danimal on Usability hints for building an adult web site?Danimal2008-10-18T16:03:43Z2008-10-18T16:03:43ZWhat's a "light table"?http://stackoverflow.com/questions/212860/usability-hints-for-building-an-adult-web-site/212908#212908Comment by Danimal on Usability hints for building an adult web site?Danimal2008-10-18T16:02:59Z2008-10-18T16:02:59Zwhy the hell did 2 people vote this offensive? What children!http://stackoverflow.com/questions/214233/how-scalable-is-linq/214284#214284Comment by Danimal on How scalable is LINQ?Danimal2008-10-18T03:19:35Z2008-10-18T03:19:35ZOf 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#213202Comment 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)Danimal2008-10-17T18:10:30Z2008-10-17T18:10:30Zsafe 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-cusComment 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)Danimal2008-10-17T18:08:24Z2008-10-17T18:08:24ZYou 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-siteComment by Danimal on Usability hints for building an adult web site?Danimal2008-10-17T17:06:52Z2008-10-17T17:06:52Zwow, 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-programmerComment by Danimal on How to deal with an inept and self-centered programmer?Danimal2008-10-15T18:56:19Z2008-10-15T18:56:19ZBoss? Is that you?http://stackoverflow.com/questions/205911/any-tools-to-catch-silly-mistakes-in-c-codeComment by Danimal on Any Tools to Catch Silly Mistakes in C Code?Danimal2008-10-15T18:46:00Z2008-10-15T18:46:00ZWe'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#204681Comment by Danimal on Best way for retrieving single record results in LINQ to SQLDanimal2008-10-15T13:28:32Z2008-10-15T13:28:32Zthe downvote doesn't make sense to be -- the code is perfectly cromulent. +1 to bring you back levelhttp://stackoverflow.com/questions/200545/attempted-sql-injection-attack-what-are-they-trying-to-do/200548#200548Comment by Danimal on Attempted SQL injection attack - what are they trying to do?Danimal2008-10-14T12:43:29Z2008-10-14T12:43:29Zthere'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#198468Comment by Danimal on GET versus POST in terms of security?Danimal2008-10-13T18:14:49Z2008-10-13T18:14:49ZYeah, 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-projectComment by Danimal on What language would you choose for a greenfield project?Danimal2008-10-09T19:43:35Z2008-10-09T19:43:35Zfor 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#188483Comment by Danimal on Comparing Two Strings producing a numeric deltaDanimal2008-10-09T18:20:31Z2008-10-09T18:20:31Zthat'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#188434Comment by Danimal on ASP.NET multi language website?Danimal2008-10-09T18:07:23Z2008-10-09T18:07:23ZResource 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#188297Comment by Danimal on Track where I was downvotedDanimal2008-10-09T17:58:01Z2008-10-09T17:58:01ZMore 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.