User Galwegian - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:40:57Z http://stackoverflow.com/feeds/user/3201 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1804029/compare-inner-join-and-outer-join-sql-statements/1804054#1804054 0 Answer by Galwegian for Compare inner join and outer join SQL statements Galwegian 2009-11-26T14:41:02Z 2009-11-26T14:41:02Z <p><a href="http://en.wikipedia.org/wiki/Join%5F%28SQL%29#Inner%5Fjoin" rel="nofollow"><code>INNER JOIN</code></a> returns rows that exist in both tables </p> <p><a href="http://en.wikipedia.org/wiki/Join%5F%28SQL%29#Full%5Fouter%5Fjoin" rel="nofollow"><code>OUTER JOIN</code></a> returns all rows that exist in either table</p> http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771582#1771582 5 Answer by Galwegian for What are some bad programming habits to look out for and avoid? Galwegian 2009-11-20T16:18:46Z 2009-11-20T16:18:46Z <p>I actually listen to what the user says he wants. I later realise <strong>he hadn't a clue</strong>.</p> http://stackoverflow.com/questions/1747798/sql-simple-query/1747814#1747814 0 Answer by Galwegian for sql simple query Galwegian 2009-11-17T10:07:07Z 2009-11-17T10:07:07Z <p>1=1 equates to true and returns all rows in the query </p> http://stackoverflow.com/questions/1730298/users-asking-for-denormalized-database/1730316#1730316 11 Answer by Galwegian for Users asking for denormalized database Galwegian 2009-11-13T16:29:30Z 2009-11-13T16:29:30Z <p>They are effectively asking for a report.</p> <p>You could <strong>give them access to a view</strong> containing all the fields they require... that way you don't mess up your data model.</p> http://stackoverflow.com/questions/1728286/how-to-get-set-the-position-of-the-mouse-relative-from-the-application-window/1728290#1728290 1 Answer by Galwegian for How to get/set the position of the mouse relative from the application window? Galwegian 2009-11-13T10:03:49Z 2009-11-13T10:03:49Z <p>Check out the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.cursor.position.aspx" rel="nofollow">Cursor.Position</a> property</p> http://stackoverflow.com/questions/1723523/database-change-management-using-hand-generated-scripts/1723556#1723556 3 Answer by Galwegian for Database Change Management using hand generated scripts Galwegian 2009-11-12T16:34:06Z 2009-11-12T16:34:06Z <p>Have you looked at <a href="http://www.codeplex.com/OpenDBiff" rel="nofollow">Open DBDiff</a> yet? It may be a good place to start.</p> <p>if you change your mind about open source, <a href="http://www.red-gate.com/products/SQL%5FCompare/index.htm" rel="nofollow">Red Gate's SQL Compare</a> is the way to go IMO.</p> http://stackoverflow.com/questions/1707046/single-css-for-different-browsers/1707064#1707064 3 Answer by Galwegian for single css for different browsers Galwegian 2009-11-10T10:48:46Z 2009-11-10T10:48:46Z <p><a href="http://www.quirksmode.org/css/contents.html" rel="nofollow">CSS contents and browser compatibility</a> may be of use to you. Also see <a href="http://www.w3schools.com/css/" rel="nofollow">http://www.w3schools.com/css/</a></p> http://stackoverflow.com/questions/1667599/how-do-you-know-when-an-sql-database-needs-more-normalization/1667640#1667640 0 Answer by Galwegian for How do you know when an SQL database needs more normalization? Galwegian 2009-11-03T14:25:58Z 2009-11-03T14:25:58Z <p>See <a href="http://support.microsoft.com/kb/283878" rel="nofollow">Description of the database normalization basics</a></p> http://stackoverflow.com/questions/1614356/is-it-safe-to-delete-the-inetpub-folder/1614378#1614378 1 Answer by Galwegian for Is it safe to delete the "InetPub" folder? Galwegian 2009-10-23T15:54:21Z 2009-10-23T15:54:21Z <p>IIS will create it again AFAIK.</p> http://stackoverflow.com/questions/1607125/what-do-you-use-to-make-programming-flowcharts-diagrams-etc/1607137#1607137 2 Answer by Galwegian for What do you use to make programming flowcharts, diagrams, etc? Galwegian 2009-10-22T13:20:06Z 2009-10-22T13:20:06Z <p><a href="http://www.SmartDraw.com" rel="nofollow">SmartDraw</a> is great. Visio is good too, but not as feature-rich.</p> <p>Google Docs has also <a href="http://googledocs.blogspot.com/2009/09/new-flowchart-shapes-and-multi-line.html" rel="nofollow">recently added flowchart support too</a>.</p> http://stackoverflow.com/questions/1601151/how-do-i-check-in-sqlite-whether-a-table-exists/1601175#1601175 2 Answer by Galwegian for How do I check in SQLite whether a table exists? Galwegian 2009-10-21T14:25:51Z 2009-10-21T14:25:51Z <p>You could try:</p> <pre><code>SELECT name FROM sqlite_master WHERE name='table_name' </code></pre> http://stackoverflow.com/questions/1600822/tool-for-webpage-ui-design/1600843#1600843 0 Answer by Galwegian for Tool for Webpage UI design Galwegian 2009-10-21T13:27:18Z 2009-10-21T13:27:18Z <p>I use Notepad2, Visual Studio Express and Firefox + <a href="http://getfirebug.com/" rel="nofollow">Firebug</a></p> http://stackoverflow.com/questions/1577262/tool-compare-the-tables-in-two-different-databeses/1577306#1577306 1 Answer by Galwegian for Tool Compare the tables in two different databeses Galwegian 2009-10-16T10:27:11Z 2009-10-16T10:27:11Z <p>Take a look at <a href="http://www.red-gate.com/products/SQL%5FCompare/index.htm" rel="nofollow">SQL Compare</a> and <a href="http://www.red-gate.com/products/sql%5Fdata%5Fcompare/index.htm" rel="nofollow">SQL Data Compare</a></p> http://stackoverflow.com/questions/1577259/programming-a-demo-of-a-web-app-in-jquery/1577273#1577273 0 Answer by Galwegian for Programming a demo of a web app in jquery Galwegian 2009-10-16T10:19:32Z 2009-10-16T10:19:32Z <p>I prefer to do mockups using something like <a href="http://www.balsamiq.com/" rel="nofollow">balsamiq</a> - that way the customer doesn't think it's further along than it actually is.</p> http://stackoverflow.com/questions/1566649/how-to-make-a-circle-to-move-in-c/1566673#1566673 4 Answer by Galwegian for How to make a circle to move in C#? Galwegian 2009-10-14T14:31:11Z 2009-10-14T14:31:11Z <p>The simplest way would be to move your circle a small bit with every tick of a timer control.</p> http://stackoverflow.com/questions/1565231/is-it-possible-to-run-a-vba-function-whenever-outlook-starts-up/1565250#1565250 0 Answer by Galwegian for Is it possible to run a VBA function whenever Outlook starts up? Galwegian 2009-10-14T09:40:37Z 2009-10-14T09:40:37Z <p>Have you looked at the <a href="http://msdn.microsoft.com/en-us/library/aa155701%28office.10%29.aspx#odc%5Fch11olevents%5Ftopic2" rel="nofollow">Application_Startup()</a> event?</p> http://stackoverflow.com/questions/1563280/programmer-not-a-blogger/1565156#1565156 1 Answer by Galwegian for Programmer, not a blogger Galwegian 2009-10-14T09:17:46Z 2009-10-14T09:17:46Z <p>You know it's often the case that <strong>the most worthwhile things you've done in your life</strong> are the things that have been outside your comfort zone.</p> <p><strong>There can be no success without challenge</strong>.</p> http://stackoverflow.com/questions/1555471/what-tools-are-available-to-test-sql-statement-performance/1555475#1555475 3 Answer by Galwegian for What tools are available to test SQL statement performance? Galwegian 2009-10-12T16:15:09Z 2009-10-12T16:15:09Z <p>I mostly just use Profiler and the execution plan viewer</p> http://stackoverflow.com/questions/1544721/reading-csv-files-in-c/1544734#1544734 11 Answer by Galwegian for Reading CSV files in C# Galwegian 2009-10-09T16:13:25Z 2009-10-09T16:13:25Z <p>Take a look at <a href="http://www.codeproject.com/KB/database/CsvReader.aspx" rel="nofollow">A Fast CSV Reader</a> on CodeProject.</p> http://stackoverflow.com/questions/1536967/check-whether-user-is-logged-in-or-not/1536981#1536981 1 Answer by Galwegian for Check whether user is logged in or not Galwegian 2009-10-08T10:34:44Z 2009-10-08T10:34:44Z <p>Your question is very vague - maybe start with <a href="http://www.google.ie/search?q=user+authentication+in+php" rel="nofollow">Authentication in PHP</a></p> http://stackoverflow.com/questions/1531463/hiring-a-student-for-a-coding-project-looking-for-the-right-attitude/1531521#1531521 0 Answer by Galwegian for Hiring a student for a coding project: Looking for the right attitude Galwegian 2009-10-07T13:05:19Z 2009-10-07T13:05:19Z <p>Look for someone who:</p> <ol> <li>gets good grades (in CS/programming)</li> <li>has worked on projects outside college</li> <li>is enthusiastic about programming</li> </ol> http://stackoverflow.com/questions/1524525/htaccess-vs-htprotect-for-redirect 0 .htaccess vs .htprotect for redirect..? Galwegian 2009-10-06T09:26:47Z 2009-10-06T12:20:30Z <p>What's the difference between <code>.htaccess</code> and <code>.htprotect</code>, and will <code>mod_rewrite</code> 301 redirects work if placed in <code>.htprotect</code>?</p> <p>Thanks for any help.</p> http://stackoverflow.com/questions/1524198/is-it-possible-to-test-a-wap-site-without-using-a-mobile-phone/1524219#1524219 2 Answer by Galwegian for Is it possible to test a WAP site without using a mobile phone? Galwegian 2009-10-06T08:08:36Z 2009-10-06T08:08:36Z <p>You could try one of the WAP emulators out there: <a href="http://mtld.mobi/emulator.php" rel="nofollow">dotMobi</a> or <a href="http://www.wapsilon.com/" rel="nofollow">wapsilon</a> for example.</p> <p><strong>I wouldn't let it out the door without testing it in real conditions though</strong>.</p> http://stackoverflow.com/questions/1519206/get-the-table-row-cell-value/1519216#1519216 0 Answer by Galwegian for get the table row cell value Galwegian 2009-10-05T10:10:38Z 2009-10-05T10:10:38Z <p>See <a href="http://stackoverflow.com/questions/376081/how-to-get-a-table-cell-value-using-jquery">How to get a table cell value using jquery?</a></p> http://stackoverflow.com/questions/1510225/how-do-document-diff-algorithms-work/1510236#1510236 6 Answer by Galwegian for How do document diff algorithms work? Galwegian 2009-10-02T15:24:58Z 2009-10-02T15:24:58Z <p>See <a href="http://www.mathertel.de/Diff/" rel="nofollow">An O(ND) Difference Algorithm for C#</a>.</p> http://stackoverflow.com/questions/1508415/can-should-i-run-my-web-site-against-a-sqlite-database/1508439#1508439 1 Answer by Galwegian for Can/should I run my web site against a SQLite database? Galwegian 2009-10-02T09:00:05Z 2009-10-02T09:00:05Z <p>SQLite can handle this easily - go for it.</p> http://stackoverflow.com/questions/1504644/which-tool-to-use-for-drawing-large-scatterplots/1504662#1504662 2 Answer by Galwegian for Which tool to use for drawing large scatterplots Galwegian 2009-10-01T15:31:52Z 2009-10-01T15:31:52Z <p>With a bit of a learning curve, you could use <a href="http://www.r-project.org/" rel="nofollow">R</a> - it's free and excellent.</p> http://stackoverflow.com/questions/1498054/too-much-coding-at-a-job-interview/1498070#1498070 10 Answer by Galwegian for Too much coding at a job interview Galwegian 2009-09-30T13:19:46Z 2009-09-30T13:19:46Z <p>Personally I think that's too much to ask for - it sounds like they want some work done for free. Is the company a good one? </p> http://stackoverflow.com/questions/1497242/programming-vs-coding-are-they-similar-different/1497284#1497284 0 Answer by Galwegian for Programming Vs Coding : Are they similar/different? Galwegian 2009-09-30T10:34:17Z 2009-09-30T10:34:17Z <p>Programming and coding are the same. Development is different.</p> http://stackoverflow.com/questions/1477352/how-to-support-your-software-and-customers-in-a-one-man-shop/1477392#1477392 1 Answer by Galwegian for How to support your software and customers in a one man shop? Galwegian 2009-09-25T13:49:02Z 2009-09-25T13:49:02Z <p>For a start, you can ensure your website is clear, and has useful sections like <strong>FAQs</strong> and <strong>How-Tos</strong>.</p> <p>Make sure your customers <strong>can get in touch with you easily</strong>, and that you <strong>respond to them in a reasonable amount of time</strong>.</p> http://stackoverflow.com/questions/1728283/database-design-question Comment by Galwegian on Database design question Galwegian 2009-11-13T10:10:36Z 2009-11-13T10:10:36Z There's just no way you can make this reliable, unless you are 100% confident that one of your search parameters is unique within your dataset. http://stackoverflow.com/questions/1723523/database-change-management-using-hand-generated-scripts/1723552#1723552 Comment by Galwegian on Database Change Management using hand generated scripts Galwegian 2009-11-12T17:24:50Z 2009-11-12T17:24:50Z @Randolph: In human terms, it's still swimming down the tube ;-) http://stackoverflow.com/questions/1595166/why-is-it-so-bad-to-mock-classes Comment by Galwegian on Why is it so bad to mock classes? Galwegian 2009-10-20T15:17:33Z 2009-10-20T15:17:33Z The students will get offended. http://stackoverflow.com/questions/1553937/compare-operators Comment by Galwegian on compare operators Galwegian 2009-10-12T11:03:10Z 2009-10-12T11:03:10Z You forgot the homework tag. http://stackoverflow.com/questions/1525987/mysql-large-volume-of-queries Comment by Galwegian on Mysql Large Volume of Queries Galwegian 2009-10-06T14:38:00Z 2009-10-06T14:38:00Z Sounds like a pretty dodgy design to me - but you haven't really given enough information. http://stackoverflow.com/questions/1525954/what-are-the-best-programming-picture-jokes/1525977#1525977 Comment by Galwegian on What are the best Programming Picture Jokes Galwegian 2009-10-06T14:34:24Z 2009-10-06T14:34:24Z Isn't this a project management picture joke? http://stackoverflow.com/questions/1498054/too-much-coding-at-a-job-interview/1498070#1498070 Comment by Galwegian on Too much coding at a job interview Galwegian 2009-09-30T14:37:51Z 2009-09-30T14:37:51Z @Mike - agreed, very little - but as I say, we don't know enough about the company to ascertain whether they're genuine or a bunch of chancers. http://stackoverflow.com/questions/1498054/too-much-coding-at-a-job-interview/1498070#1498070 Comment by Galwegian on Too much coding at a job interview Galwegian 2009-09-30T13:53:51Z 2009-09-30T13:53:51Z @Mike - I don't know the first thing about this company. Neither do you as far as I know. There are some pretty dodgy 'companies' out there. http://stackoverflow.com/questions/1458730/tools-for-graphicaly-representing-database-structure/1458775#1458775 Comment by Galwegian on Tools for graphicaly representing database structure. Galwegian 2009-09-22T08:53:20Z 2009-09-22T08:53:20Z +1 for Power Designer... very full-featured if you can afford it. http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1205479#1205479 Comment by Galwegian on What are things that make a programmer's life miserable? Galwegian 2009-07-30T10:31:44Z 2009-07-30T10:31:44Z @Markus - unfortunately I don't get to decide the feature-set of the apps I develop. I understand what you mean though. http://stackoverflow.com/questions/1193255/position-fixed-and-internet-explorer/1193263#1193263 Comment by Galwegian on Position fixed and Internet Explorer Galwegian 2009-07-28T10:37:42Z 2009-07-28T10:37:42Z He's not using CreateInner as a HTML element http://stackoverflow.com/questions/1159090/how-to-delete-multiple-records-in-linq-with-multiple-conditions Comment by Galwegian on How to delete multiple records in linq with multiple conditions? Galwegian 2009-07-21T13:18:12Z 2009-07-21T13:18:12Z @Don of Qua - I have deleted them. What would you like me to do next? http://stackoverflow.com/questions/1125350/what-is-necessary-to-become-a-professional-web-designer Comment by Galwegian on What is necessary to become a professional web designer? Galwegian 2009-07-14T13:26:42Z 2009-07-14T13:26:42Z Are you asking about a web developer or a web designer? You mention both. http://stackoverflow.com/questions/1087394/whats-ui-framework-using-by-google-to-build-gtalk/1087404#1087404 Comment by Galwegian on What's UI framework using by Google to build Gtalk? Galwegian 2009-07-06T14:53:25Z 2009-07-06T14:53:25Z Oh, apologies. Haven't seen it. http://stackoverflow.com/questions/1086469/charts-in-asp-net-3-5-whats-the-best-option/1086491#1086491 Comment by Galwegian on Charts in ASP.NET 3.5: Whats the best option ? Galwegian 2009-07-06T11:28:07Z 2009-07-06T11:28:07Z @Colin +1 - I didn't know about this - thanks for the link!