User Lazlow - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T12:02:11Z http://stackoverflow.com/feeds/user/63100 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1342916/whats-a-good-topic-for-some-real-life-application/1343462#1343462 0 Answer by Lazlow for What's a good topic for some real-life application? Lazlow 2009-08-27T20:00:41Z 2009-08-27T20:00:41Z <p>What about a simple project management application? Or issue tracking system, where a client can report issues and the developers fix them? Think Sharepoint/Redmine/Trac/Basecamp etc.</p> http://stackoverflow.com/questions/1013107/when-trying-to-integrate-one-website-with-another-what-is-the-way-to-go-iframe-o/1084950#1084950 0 Answer by Lazlow for When trying to integrate one website with another what is the way to go? Iframe or pulling content? Lazlow 2009-07-05T22:22:20Z 2009-07-05T22:22:20Z <p>I would recommend iFrames. Whilst not the most glamorous of elements, many payment service providers use iFrames for the Verified by Visa/Mastercard Secure Code integration.</p> http://stackoverflow.com/questions/1084928/what-is-a-good-textbook-for-a-game-development-course/1084942#1084942 0 Answer by Lazlow for What is a good textbook for a Game Development course? Lazlow 2009-07-05T22:19:30Z 2009-07-05T22:19:30Z <p><a href="http://rads.stackoverflow.com/amzn/click/0735713634" rel="nofollow">Game Architecture and Design</a> was one of my course books for a degree in Games Computing (Software Development). I also had a few on OpenGL and Software Engineering (as the same principals apply).</p> http://stackoverflow.com/questions/1003259/end-of-the-road-for-captchas/1003693#1003693 3 Answer by Lazlow for End of the road for Captchas? Lazlow 2009-06-16T20:09:23Z 2009-06-16T20:09:23Z <p>A bit off topic - but we had a phone call from a customer recently, who said that they couldn't get the letters at an angle, as they were in the captcha image. They had tried tilting the keyboard to no avail.</p> <p>Personally, I find them to be awkward at times and just a temporary fix to the long-term problem of spam.</p> http://stackoverflow.com/questions/941152/professional-responsibility-for-projects-at-your-old-job/941935#941935 0 Answer by Lazlow for Professional responsibility for projects at your old job Lazlow 2009-06-02T21:08:08Z 2009-06-02T21:08:08Z <p>I left my previous job to a friend from Uni. He had a few questions in the following weeks/months and I even went back on a Saturday with him to help out with the network.</p> <p>So either everything should be handed over prior to leaving the job, or there should be a period of time following the leave, during which the new person can contact you for information. My predecessor left me a notepad full of information which proved to be vital.</p> http://stackoverflow.com/questions/908103/using-css-only-is-it-possible-to-create-a-div-that-covers-the-whole-document-con/908230#908230 4 Answer by Lazlow for using CSS only, is it possible to create a div that covers the whole document content area exactly? Lazlow 2009-05-25T22:14:27Z 2009-05-25T22:14:27Z <p>If the &lt;body&gt; margin is set, then couldn't you use negative margins on the &lt;div&gt; to override the &lt;body&gt; margins? I understand &lt;body&gt; margins can vary between browsers. If the &lt;body&gt; has a margin of 10px, then style your div like so:</p> <pre><code>div#mydiv { margin: -10px; } </code></pre> <p>You'd use the same principle to override padding (if applicable).</p> http://stackoverflow.com/questions/143486/unobtrusive-javascript-script-at-the-top-or-the-bottom-of-the-html-code/816596#816596 0 Answer by Lazlow for Unobtrusive javascript : <script> at the top or the bottom of the html code ? Lazlow 2009-05-03T08:36:22Z 2009-05-03T08:36:22Z <p>As others have said, place it before the closing <em>body</em> <em>html</em> tags.</p> <p>The other day we had numerous calls from clients complaining their sites were extremely slow. We visited them locally and found they took 20-30 seconds to load a single page. Thinking it was the servers performing badly, we logged on - but both web and sql servers were ~0% activity.</p> <p>After a few minutes, we realised an external site was down, which we were linking to for Javascript tracking tags. This meant browsers were hitting the <em>script</em> tag in the <em>head</em> section of the site and waiting to download the script file.</p> <p>So, for 3rd party/external scripts at least, I'd recommend putting them as the last thing on the page. Then if they were unavailable, the browser would at least load the page up until that point - and the user would be oblivious to it.</p> http://stackoverflow.com/questions/718934/markup-suggestions-for-a-layout-and-some-more-general-questions/719257#719257 2 Answer by Lazlow for Markup suggestions for a layout and some more general questions Lazlow 2009-04-05T16:32:23Z 2009-04-05T16:32:23Z <p>For number 1, I suggest fixing it at 960px wide - see <a href="http://960.gs/" rel="nofollow">the 960 Grid System</a> for examples and benefits. The number divides into a grid very nicely and should work in all major browsers (+ scrollbars) easily at 1024 x 768 (or 600-ish in netbooks) resolutions.</p> http://stackoverflow.com/questions/694439/managing-header-templates/694455#694455 1 Answer by Lazlow for Managing header templates? Lazlow 2009-03-29T10:53:38Z 2009-03-29T10:53:38Z <p>Take a look at <a href="http://en.wikipedia.org/wiki/Server%5FSide%5FIncludes" rel="nofollow">Server Side Includes</a></p> <p>They'll allow you to edit your header in the one file, which will appear instantly on all pages that include the header file.</p> http://stackoverflow.com/questions/562819/where-can-i-find-a-server-to-host-webapps-that-i-would-like-to-test-online/562910#562910 2 Answer by Lazlow for Where can I find a server to host webapps that I would like to test online? Lazlow 2009-02-18T21:26:55Z 2009-02-18T21:26:55Z <p>I'd also look into building/hosting your own server. If you're on a dynamic IP, there are plenty of free services to provide a hostname - and others allow you to use your own domain for a fee. Not only would you gain experience in building your web app, but you'd also have skills in setup and hosting.</p> http://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-story/562897#562897 1 Answer by Lazlow for What's your best and/or funniest data loss story? Lazlow 2009-02-18T21:22:59Z 2009-02-18T21:22:59Z <p>I was getting to grips with an ecommerce site's admin interface. After looking through the orders I spotted a button with the text 'clear payment details'. I clicked on it expecting a message box to ask me if I was sure, or explaining what it did. Instead the page refreshed and all of the un-processed orders lost their payment information immediately. Luckily it was put down to human error.</p> <p>At my previous job, I gave the backup tapes to my boss to file away in the safe. On a business trip her handbag was stolen, along with her main keys to the safe. Unfortunately, she kept the spare keys... in the safe.</p> http://stackoverflow.com/questions/551052/how-do-i-convince-my-stingy-enterprise-to-invest-in-tools-for-developers/551093#551093 0 Answer by Lazlow for How do I convince my stingy enterprise to invest in tools for developers? Lazlow 2009-02-15T15:57:12Z 2009-02-15T15:57:12Z <p>We grouped together and asked our directors for dual monitors, with reasons why they'd make us more productive. Now every developer has them. Draw up advantages for each tool, both for yourself and the enterprise as a whole. The worst they can do is turn them all down.</p> http://stackoverflow.com/questions/550984/performance-hit-using-where-id-in-table-with-only-1-row-in-table/551002#551002 0 Answer by Lazlow for Performance hit using ' where id IN [table] ' with only 1 row in [table]? Lazlow 2009-02-15T15:09:24Z 2009-02-15T15:09:24Z <p>As rde6173 says, perform a COUNT on the temporary table to determine which SELECT query to use.</p> http://stackoverflow.com/questions/542382/recommended-os-for-visual-studio-2008/542485#542485 1 Answer by Lazlow for Recommended OS for Visual Studio 2008 Lazlow 2009-02-12T17:40:22Z 2009-02-12T17:40:22Z <p>I run Visual Studio 2008 on a 2GHz/2GB RAM laptop with Vista Ultimate, all work PCs are 2GB RAM desktops with VS2008/Vista Business - with no issues.</p> http://stackoverflow.com/questions/1289995/what-is-the-best-way-to-move-20-databases-to-a-new-database-server-sql-2005/1290054#1290054 Comment by Lazlow on What is the best way to move 20+ databases to a new database server? SQL 2005 Lazlow 2009-08-17T21:11:05Z 2009-08-17T21:11:05Z +1 for moving manually. I would do one at a time, which would result in just the one application being offline whilst you move the DB. Once verified it works on the new server, move onto the next. http://stackoverflow.com/questions/1051109/help-with-sql-query/1051143#1051143 Comment by Lazlow on Help with SQL query Lazlow 2009-06-26T20:49:41Z 2009-06-26T20:49:41Z +1 for giving the Count(*) an alias http://stackoverflow.com/questions/843541/whats-a-good-online-resource-for-sql-server-and-t-sql/843556#843556 Comment by Lazlow on What's a good online resource for SQL server and T-SQL? Lazlow 2009-05-16T07:12:09Z 2009-05-16T07:12:09Z Thanks for a great resource Ronnie. Lots of succinct information there. Only one point I'd make - many businesses have their own naming conventions to follow, though yours is a good basis. http://stackoverflow.com/questions/818937/how-can-i-get-addicted-to-programming/819016#819016 Comment by Lazlow on How can I get addicted to programming? Lazlow 2009-05-04T08:49:12Z 2009-05-04T08:49:12Z Can I just say that you have balls. To dramatically change your career like that - but it sounds like it has paid off! http://stackoverflow.com/questions/746873/css-javascript-where-to-start/746882#746882 Comment by Lazlow on css, javascript -- where to start ? Lazlow 2009-04-24T22:21:02Z 2009-04-24T22:21:02Z I wouldn't just class W3 Schools as beginner/novice - I and all my colleagues, find myself double checking code snippets and syntax from there. It's a great resource. http://stackoverflow.com/questions/694439/managing-header-templates/694455#694455 Comment by Lazlow on Managing header templates? Lazlow 2009-03-29T12:44:46Z 2009-03-29T12:44:46Z On XP Pro - ensure Server Side Includes was installed alongside IIS (Add/Remove Windows Components &gt; Application Server &gt; IIS &gt; Server Side Includes). If it is, the virtual include should work - does it error, or just not include it (i.e. visible when viewing source)? http://stackoverflow.com/questions/542382/recommended-os-for-visual-studio-2008/542485#542485 Comment by Lazlow on Recommended OS for Visual Studio 2008 Lazlow 2009-02-14T17:26:33Z 2009-02-14T17:26:33Z Nope. Granted, Visual Studio 2008 is slow switching between files within a project, but I've found that to be an issue on all setups.