User Galwegian - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:40:57Zhttp://stackoverflow.com/feeds/user/3201http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804029/compare-inner-join-and-outer-join-sql-statements/1804054#18040540Answer by Galwegian for Compare inner join and outer join SQL statementsGalwegian2009-11-26T14:41:02Z2009-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#17715825Answer by Galwegian for What are some bad programming habits to look out for and avoid?Galwegian2009-11-20T16:18:46Z2009-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#17478140Answer by Galwegian for sql simple queryGalwegian2009-11-17T10:07:07Z2009-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#173031611Answer by Galwegian for Users asking for denormalized databaseGalwegian2009-11-13T16:29:30Z2009-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#17282901Answer by Galwegian for How to get/set the position of the mouse relative from the application window?Galwegian2009-11-13T10:03:49Z2009-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#17235563Answer by Galwegian for Database Change Management using hand generated scriptsGalwegian2009-11-12T16:34:06Z2009-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#17070643Answer by Galwegian for single css for different browsersGalwegian2009-11-10T10:48:46Z2009-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#16676400Answer by Galwegian for How do you know when an SQL database needs more normalization?Galwegian2009-11-03T14:25:58Z2009-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#16143781Answer by Galwegian for Is it safe to delete the "InetPub" folder?Galwegian2009-10-23T15:54:21Z2009-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#16071372Answer by Galwegian for What do you use to make programming flowcharts, diagrams, etc?Galwegian2009-10-22T13:20:06Z2009-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#16011752Answer by Galwegian for How do I check in SQLite whether a table exists?Galwegian2009-10-21T14:25:51Z2009-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#16008430Answer by Galwegian for Tool for Webpage UI designGalwegian2009-10-21T13:27:18Z2009-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#15773061Answer by Galwegian for Tool Compare the tables in two different databesesGalwegian2009-10-16T10:27:11Z2009-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#15772730Answer by Galwegian for Programming a demo of a web app in jqueryGalwegian2009-10-16T10:19:32Z2009-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#15666734Answer by Galwegian for How to make a circle to move in C#?Galwegian2009-10-14T14:31:11Z2009-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#15652500Answer by Galwegian for Is it possible to run a VBA function whenever Outlook starts up?Galwegian2009-10-14T09:40:37Z2009-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#15651561Answer by Galwegian for Programmer, not a bloggerGalwegian2009-10-14T09:17:46Z2009-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#15554753Answer by Galwegian for What tools are available to test SQL statement performance?Galwegian2009-10-12T16:15:09Z2009-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#154473411Answer by Galwegian for Reading CSV files in C#Galwegian2009-10-09T16:13:25Z2009-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#15369811Answer by Galwegian for Check whether user is logged in or notGalwegian2009-10-08T10:34:44Z2009-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#15315210Answer by Galwegian for Hiring a student for a coding project: Looking for the right attitudeGalwegian2009-10-07T13:05:19Z2009-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-redirect0.htaccess vs .htprotect for redirect..?Galwegian2009-10-06T09:26:47Z2009-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#15242192Answer by Galwegian for Is it possible to test a WAP site without using a mobile phone?Galwegian2009-10-06T08:08:36Z2009-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#15192160Answer by Galwegian for get the table row cell valueGalwegian2009-10-05T10:10:38Z2009-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#15102366Answer by Galwegian for How do document diff algorithms work?Galwegian2009-10-02T15:24:58Z2009-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#15084391Answer by Galwegian for Can/should I run my web site against a SQLite database?Galwegian2009-10-02T09:00:05Z2009-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#15046622Answer by Galwegian for Which tool to use for drawing large scatterplotsGalwegian2009-10-01T15:31:52Z2009-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#149807010Answer by Galwegian for Too much coding at a job interviewGalwegian2009-09-30T13:19:46Z2009-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#14972840Answer by Galwegian for Programming Vs Coding : Are they similar/different? Galwegian2009-09-30T10:34:17Z2009-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#14773921Answer by Galwegian for How to support your software and customers in a one man shop?Galwegian2009-09-25T13:49:02Z2009-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-questionComment by Galwegian on Database design questionGalwegian2009-11-13T10:10:36Z2009-11-13T10:10:36ZThere'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#1723552Comment by Galwegian on Database Change Management using hand generated scriptsGalwegian2009-11-12T17:24:50Z2009-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-classesComment by Galwegian on Why is it so bad to mock classes?Galwegian2009-10-20T15:17:33Z2009-10-20T15:17:33ZThe students will get offended.http://stackoverflow.com/questions/1553937/compare-operatorsComment by Galwegian on compare operatorsGalwegian2009-10-12T11:03:10Z2009-10-12T11:03:10ZYou forgot the homework tag.http://stackoverflow.com/questions/1525987/mysql-large-volume-of-queriesComment by Galwegian on Mysql Large Volume of QueriesGalwegian2009-10-06T14:38:00Z2009-10-06T14:38:00ZSounds 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#1525977Comment by Galwegian on What are the best Programming Picture JokesGalwegian2009-10-06T14:34:24Z2009-10-06T14:34:24ZIsn't this a project management picture joke?http://stackoverflow.com/questions/1498054/too-much-coding-at-a-job-interview/1498070#1498070Comment by Galwegian on Too much coding at a job interviewGalwegian2009-09-30T14:37:51Z2009-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#1498070Comment by Galwegian on Too much coding at a job interviewGalwegian2009-09-30T13:53:51Z2009-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#1458775Comment by Galwegian on Tools for graphicaly representing database structure.Galwegian2009-09-22T08:53:20Z2009-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#1205479Comment by Galwegian on What are things that make a programmer's life miserable?Galwegian2009-07-30T10:31:44Z2009-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#1193263Comment by Galwegian on Position fixed and Internet ExplorerGalwegian2009-07-28T10:37:42Z2009-07-28T10:37:42ZHe's not using CreateInner as a HTML elementhttp://stackoverflow.com/questions/1159090/how-to-delete-multiple-records-in-linq-with-multiple-conditionsComment by Galwegian on How to delete multiple records in linq with multiple conditions?Galwegian2009-07-21T13:18:12Z2009-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-designerComment by Galwegian on What is necessary to become a professional web designer?Galwegian2009-07-14T13:26:42Z2009-07-14T13:26:42ZAre 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#1087404Comment by Galwegian on What's UI framework using by Google to build Gtalk?Galwegian2009-07-06T14:53:25Z2009-07-06T14:53:25ZOh, apologies. Haven't seen it.http://stackoverflow.com/questions/1086469/charts-in-asp-net-3-5-whats-the-best-option/1086491#1086491Comment by Galwegian on Charts in ASP.NET 3.5: Whats the best option ?Galwegian2009-07-06T11:28:07Z2009-07-06T11:28:07Z@Colin +1 - I didn't know about this - thanks for the link!