User Gerard - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:42:48Z http://stackoverflow.com/feeds/user/34411 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1794803#1794803 2 Answer by Gerard for Capture screenshot of website on the client (Javascript or flash) Gerard 2009-11-25T05:15:17Z 2009-11-25T05:15:17Z <p>You'll go to all that work only to find that a simple app like Snagit will do the job. <a href="http://www.west-wind.com/Weblog/posts/30318.aspx" rel="nofollow">Building a SnagIt Screen Capture Plugin</a></p> http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1794285#1794285 0 Answer by Gerard for Fluid Form Layout in Delphi Gerard 2009-11-25T02:26:33Z 2009-11-25T02:26:33Z <p><a href="http://www.raize.com" rel="nofollow">Raize Components</a> have a TRzFlowPanel UI component. Does exactly what you're after.</p> <blockquote> <p>Use TRzFlowPanel to put an empty flow panel on a form. The major difference between a traditional panel and a flow panel is the way in which controls are placed. With a traditional panel, you place a control (such as a button) in a specific location. You can freely move that control to any location within the panel using the mouse. In a flow panel, each control is placed in a specific location, regardless of where you place it with the mouse. The automatic location is controlled by the FlowStyle property. For example, using the default FlowStyle property of LeftRightTopBottom, the first control you add to the flow panel snaps to the top left corner. The second control that you add snaps next to the first control, and so on.</p> </blockquote> http://stackoverflow.com/questions/1657105/delphi-html-decode/1658541#1658541 6 Answer by Gerard for delphi html decode Gerard 2009-11-01T22:09:54Z 2009-11-01T22:09:54Z <p>Look at the <strong>HTTPApp</strong> unit. HTTPDecode and HTMLDecode (as well as the Encode functions). You should find this in your Source/Win32/Internet folder.</p> http://stackoverflow.com/questions/439912/intelligent-character-recognition-where-to-start/1557807#1557807 0 Answer by Gerard for intelligent character recognition: where to start? Gerard 2009-10-13T01:25:15Z 2009-10-13T01:25:15Z <p><a href="http://www.livescribe.com" rel="nofollow">LiveScribe</a>. They've just released their SDK. We're doing the same thing. The device is simply awesome and the SDK is quite easy to get into.</p> http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1557130#1557130 2 Answer by Gerard for Delphi - most successful applications developed Gerard 2009-10-12T21:49:10Z 2009-10-12T21:49:10Z <p>A significant number of television networks around the globe run on Delphi and staff use this software every day. </p> <p>Most of these products are developed by Harris.com and include H-Class Vision (Program Planning), Landmark (Airtime Sales), ADC (Broadcast Automation), Reports (BI). Plus, MTV down-under runs almost exclusively (fully automated) using Delphi software for device control and on-screen graphics generation and automation.</p> <p>There is a really good chance that no matter what country you live in, you'll be watching TV brought to you by a Delphi application. Why? Well it makes great software that runs in real-time, can control a wide range of devices and can maintain reliable up-time.</p> http://stackoverflow.com/questions/1551894/tips-and-tricks-in-dreamweaver/1551945#1551945 2 Answer by Gerard for Tips and Tricks in Dreamweaver Gerard 2009-10-11T22:21:43Z 2009-10-11T22:21:43Z <p>I have used Dreamweaver since 1.0. Whilst it used to be a great web development tool it seems to have declined and become almost irrelevant, see <a href="http://www.pcpro.co.uk/blogs/2009/03/05/dreamweaver-is-dying/" rel="nofollow">Dreamweaver is dying</a>.</p> <blockquote> <p>The real problem for Dreamweaver and for its users is that the nature of the web is changing dramatically. Dynamically-generated web applications, from Amazon right down to the humble blog, all offer much more – in-built commenting, voting, RSS feeds, etc – than the best sites built on static HTML can ever hope to provide.</p> </blockquote> <p>I actually find that Dreamweaver now makes web development harder.</p> http://stackoverflow.com/questions/1469221/tools-for-merging-multiple-xsd-files/1469289#1469289 0 Answer by Gerard for Tools for merging multiple xsd files Gerard 2009-09-24T00:48:35Z 2009-09-24T00:48:35Z <p>We use <a href="http://www.oxygenxml.com/" rel="nofollow">oXygen</a>. Excellent XSD authoring tool (amongst other things).</p> http://stackoverflow.com/questions/1257014/ttabsheet-hints-in-delphi/1257745#1257745 3 Answer by Gerard for TTabSheet hints in Delphi Gerard 2009-08-10T23:15:42Z 2009-08-28T14:00:50Z <p>Just hook the Page Control's Mouse Move event and use the TabAtPos property to determine which tab the mouse is hovering over. Then assign that tab's Hint to the Page Control's hint property.</p> <pre><code>procedure TForm.PageControlMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); var tabindex: Integer; begin tabindex := PageControl.IndexOfTabAt( X, Y ); if tabindex &gt;= 0 then PageControl.Hint:=PageControl.Pages[tabindex].Hint end; </code></pre> http://stackoverflow.com/questions/1303763/how-to-deal-with-unfit-team-leaders/1303789#1303789 5 Answer by Gerard for How to deal with unfit team leaders? Gerard 2009-08-20T03:27:20Z 2009-08-20T03:27:20Z <p>Read "How to win friends and influence people" by Dale Carnegie.</p> http://stackoverflow.com/questions/1303505/how-does-one-protect-a-web-application-sold-on-a-per-license-basis-from-piracy/1303511#1303511 1 Answer by Gerard for How does one protect a web application sold on a per license basis from piracy? Gerard 2009-08-20T01:31:20Z 2009-08-20T01:31:20Z <p>Try <a href="http://www.zend.com/en/products/guard/" rel="nofollow">Zend Guard</a> </p> http://stackoverflow.com/questions/1285979/delphi-function-to-display-number-of-bytes-as-windows-does/1285991#1285991 5 Answer by Gerard for Delphi Function to Display Number of Bytes as Windows Does Gerard 2009-08-17T03:01:33Z 2009-08-17T03:01:33Z <p>Not exactly what you're after but I have a function in my library that may give you an idea how to tackle this one:</p> <pre><code>function FormatByteSize(const bytes: Longword): string; var B: byte; KB: word; MB: Longword; GB: Longword; TB: UInt64; begin B := 1; //byte KB := 1024 * B; //kilobyte MB := 1000 * KB; //megabyte GB := 1000 * MB; //gigabyte TB := 1000 * GB; //teraabyte if bytes &gt; TB then result := FormatFloat('#.## TB', bytes / TB) else if bytes &gt; GB then result := FormatFloat('#.## GB', bytes / GB) else if bytes &gt; MB then result := FormatFloat('#.## MB', bytes / MB) else if bytes &gt; KB then result := FormatFloat('#.## KB', bytes / KB) else result := FormatFloat('#.## bytes', bytes) ; end; </code></pre> http://stackoverflow.com/questions/1284745/communication-among-clients-in-delphi-2009/1285543#1285543 2 Answer by Gerard for Communication among clients in Delphi 2009 Gerard 2009-08-16T22:50:06Z 2009-08-16T22:50:06Z <p>My answer depends on your network architecture but I tend to use IP for this type of thing. Something like Multicast is an ideal way to notify all clients on the Network of an event. Simply multi-casting or broadcasting (UDP) the ID of the updated record may be all that is required. If another client is interested in the record, it can then refresh it from the Database.</p> <p>The Indy Multicast Client/Server components will provide a simply way to implement this in your app.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1225112#1225112 4 Answer by Gerard for What's your most controversial programming opinion? Gerard 2009-08-03T23:30:00Z 2009-08-16T22:43:15Z <p><strong>Developing on .NET is not programming. Its just stitching together other people's code.</strong></p> <p>Having come from a coding background where you were required to know the hardware, and where this is still a vital requirements in my industry, I view high level languages as simply assembling someone else's work. Nothing essentially wrong with this, but is it 'programming'?</p> <p>MS has made a mint from doing the hard work and presenting 'developers' with symbolic instruction syntax. I seem to now know more and more developers who appear constrained by the existence or non-existence of a class to perform a job.</p> <p>My opinion comes from the notion that to be a programmer you should be able to programme at the lowest level your platform allows. So if you're programming .NET then you need to be able to stick your head under the hood and work out the solution, rather than rely on someone else creating a class for you. That's simply lazy and does not qualify as 'development' in my book.</p> http://stackoverflow.com/questions/1266146/is-programming-always-interesting/1269195#1269195 2 Answer by Gerard for Is Programming always interesting? Gerard 2009-08-12T23:01:43Z 2009-08-12T23:01:43Z <p>I've been programming for around 30 years and I can tell you that whilst programming remains interesting on the whole if I keep up with technologies, it can certainly become very uninteresting.</p> <p>There is a spiral that can develop when writing code. For some developers I have worked with, they are well down this spiral. Stuck on a particular technology and not getting anything really stimulating to accomplish. Maybe they're content in that position - "programming is just my job", but I doubt if it could really be called "interesting".</p> <p>I have encountered some jobs that simply don't interest me and I find it incredibly difficult motivating myself to get a single line written. So I'm always on the quest to keep creative, interesting work coming my way. </p> <p>One of the most useful approaches to keeping my programming work interesting is to present new ideas to stake holders. I take some time, even from my own person time, to seek out new technologies and look for ways to apply them to my work. Then I look to present my ideas to the right people. I love to present, so that helps a lot. </p> <p>So my advise for a programming career is - keep your creative side alive and kicking. Get your ideas out there, and be brave when exploring new territories.</p> http://stackoverflow.com/questions/1254698/exchange-data-between-two-apps-across-pc-on-lan/1257690#1257690 0 Answer by Gerard for Exchange Data between two apps across PC on LAN Gerard 2009-08-10T22:58:53Z 2009-08-10T22:58:53Z <p>I've used the <a href="http://www.projectindy.org/index.en.aspx" rel="nofollow">Indy</a> library's Multicast components (IdIPMCastClient/Server) for this type of thing many times. The apps just send XML to each other. Quick and easy with minimal connection requirements.</p> http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1220506#1220506 5 Answer by Gerard for What are things that make a programmer's life miserable? Gerard 2009-08-03T02:52:05Z 2009-08-03T02:52:05Z <p>Anyone who starts a conversation with "So how hard would it be to..."</p> http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1203553#1203553 0 Answer by Gerard for Delphi 2010 Beta: What's on your wishlist? Gerard 2009-07-29T22:56:31Z 2009-07-29T22:56:31Z <p><strong>Fix the Object Inspector</strong> - Please! It's been broken for so long now. When you elect to Arrange by Name it is very buggy!</p> <p>It s a small thing but honestly, why has it remained broken for so long. I always opt for Arrange by Name and it is just a pain when scrolling. Seems like a refresh problem.</p> http://stackoverflow.com/questions/412256/can-the-iphone-determine-if-youre-facing-north-south-east-or-west/1197230#1197230 0 Answer by Gerard for Can the iPhone determine if you're facing north, south, east or west? Gerard 2009-07-28T23:11:03Z 2009-07-28T23:11:03Z <p>No iPhone can determine which direction I am facing. It can however (3GS) determine the approximate direction of North, South, etc. </p> http://stackoverflow.com/questions/1196405/how-to-keep-yourself-from-perfectionism-when-coding/1197211#1197211 0 Answer by Gerard for how to keep yourself from perfectionism when coding Gerard 2009-07-28T23:03:48Z 2009-07-28T23:03:48Z <p>Sell it. You'll find that once you've been paid for your efforts you're less inspired to keep dressing it up... that, and you'll then be in support mode.</p> http://stackoverflow.com/questions/1133265/why-arent-more-applications-written-in-multiple-languages/1197201#1197201 0 Answer by Gerard for Why aren't more applications written in multiple languages? Gerard 2009-07-28T22:58:10Z 2009-07-28T22:58:10Z <p>We write in multiple languages frequently. It depends on the task at hand. In a recent web application I coded the web framework in PHP, the client scrips in JavaScript, the back-end engine and PHP plug-ins in Delphi and the database in MS-SQL. </p> <p>Currently I work in an environment where we perform rapid prototyping in Delphi and then send to production for coding in MS C#. The company also has a variety of other languages employed.</p> <p>A few years ago I worked on a project that employed 8 different languages. It was a right mess, but it is still supported on a large scale.</p> <p>So I really can't agree with the proposition by Kelly French that we are not using multiple languages. You only have to extend you application into a database or web service to find yourself mixing it up. There is not 1 language that will do it all. If there was, I'd be using it and attending it's church on Sundays.</p> http://stackoverflow.com/questions/912850/c-intellectual-property-protection-anti-reversing/1169052#1169052 0 Answer by Gerard for C++ Intellectual Property Protection/Anti-Reversing Gerard 2009-07-23T00:54:55Z 2009-07-23T00:54:55Z <p>You need to set a limit of how far you will go to protect your code. Look at the market and what your are charging for your solution. You will never secure your product 100% so you should evaluate what method will give you the best protection. In most cases, a simple license key and no obfuscation will suffice.</p> <p>Delaying reverse engineering will only 'delay' the inevitable. What you need to focus on is deterring the initial attempt to breach copyright/IP. A good legal Terms and Conditions notice on the About page, or a bold copyright notice warning that any attempts to reverse engineer the code will result in a pick-axe through the spinal column...</p> <p>Most people will back off attempting to rip something off if there is a chance they will be served some legal action.</p> <p>We use SafeNet and our clients see it as 'official' protection. That in itself is a good deterrent.</p> http://stackoverflow.com/questions/1159008/with-delphi-are-you-more-likely-to-re-use-temporary-variables-than-with-other-lan/1162146#1162146 1 Answer by Gerard for With Delphi are you more likely to re-use temporary variables than with other languages? Gerard 2009-07-21T22:46:49Z 2009-07-21T22:46:49Z <p>Well Curly did have a good point. I'm a sinner in that respect occasionally. Usually just a temp string variable for convenience more than anything.</p> <p>To be honest I've never really thought about it... until now. I have no issue with the VAR section being where it is as that's been a habit formed since Delphi 1.0.</p> <p>To answer the question, I only re-use a temp variable, usually a string, and usually only to gain some slight performance improvements. Don't have an issue with that.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1134981#1134981 2 Answer by Gerard for Why Do You Use Delphi? Gerard 2009-07-16T01:23:35Z 2009-07-16T01:23:35Z <p>Back when Delphi 1 was new I was attending a MS VB4 launch and they kept referring to the UI speed of Delphi. The presenter even went on to say that he "didn't know how they made it work so fast". I'd not heard of Delphi so I though I would try it out - Thanks MS!</p> <p>To be honest it comes down to 3 major things for me:</p> <ul> <li>The UI always works and looks slick. We always get comments on that. It sells product.</li> <li>Its pure RAD. We get things prototyped faster than talking about it.</li> <li>It works with almost any API or platform. We interface to a lot of weird non-MS software and angry hardware. It works. There's always a way to get Delphi to talk to something and maintain consistent up-time.</li> </ul> <p>Creating stand-alone apps is another distinct bonus. Native code rocks! Simple.</p> <p>With Delphi you feel in control of what your app is doing.</p> http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/1117188#1117188 1 Answer by Gerard for What programming religious argument bothers you the most? Gerard 2009-07-12T23:23:37Z 2009-07-12T23:23:37Z <p>Native vs. Managed Code</p> http://stackoverflow.com/questions/1107827/favorite-programming-brainstorming-activity/1108056#1108056 0 Answer by Gerard for Favorite programming brainstorming activity? Gerard 2009-07-10T06:49:20Z 2009-07-10T06:49:20Z <p>Usually I will work in Photoshop for a while. Get creative and try to come up with a new design that's not constrained by any code. Maybe even find something inspiring on the web for some new design ideas... then try to implement the design in code. That's the fun and challenging bit.</p> http://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi/1077164#1077164 0 Answer by Gerard for Adding or inserting an item to a TListView always adds it to the end when GroupView is Active Gerard 2009-07-02T23:19:19Z 2009-07-02T23:19:19Z <p>You may need to assign the new ListItem to a GroupIndex, assuming that you have added at least 1 Group first and given it an ID.</p> <pre><code>var item: TListItem; begin item:= ListView.Items.Add; item.GroupID=0; end; </code></pre> <p>Or you can create the TListItem object first, give it the GroupID and use ListView.Items.AddItem(item, index) to add it to the ListView. </p> http://stackoverflow.com/questions/1071762/what-are-software-practices-in-mission-critical-industries-e-g-nuclear-power-pl/1072037#1072037 37 Answer by Gerard for What are software practices in mission-critical industries (e.g. nuclear power plant)? Gerard 2009-07-02T00:57:01Z 2009-07-02T00:57:01Z <p>Over a VPN. As far away as possible</p> http://stackoverflow.com/questions/984900/are-specific-programming-language-skills-and-experience-important-in-a-job-candid/985322#985322 1 Answer by Gerard for Are specific programming language skills and experience important in a job candidate? Gerard 2009-06-12T06:53:54Z 2009-06-12T06:53:54Z <p>I would love to say 'go with the Generalist' but I have this lurking issue in this decision. Excuse me for going against the general grain of this thread...</p> <p>A mastery over the language is the most valuable asset in any form of communication. It is the means of communicating ideas clearly to the audience/user. I would not employ a Generalist as a dedicated coder just as I would not employ a great thinker as a speech writer. I would employ the Generalist as my ideas/prototype person but I would look for someone who can communicate ideas through exceptional code as my end-product asset. Language is the art of communication after all.</p> <p>Faced with this decision I would ask - is the Specialist someone who can take an idea and realise it in exceptional code. What use is a Generalist if they can't communicate their ideas in the 'common' language? If they struggle to communicate their ideas in the language of choice, value is lost. Just as in the spoken language, a good word-smith is the person who is responsible for communicating the message. </p> http://stackoverflow.com/questions/979222/why-isnt-everything-we-do-in-unicode/979247#979247 14 Answer by Gerard for Why isn't everything we do in Unicode? Gerard 2009-06-11T03:54:53Z 2009-06-11T03:54:53Z <ul> <li>Many product developers don't consider their apps being used in Asia or other regions where Unicode is a requirement. </li> <li>Converting existing apps to Unicode is expensive and usually driven by sales opportunities. </li> <li>Many companies have products maintained on legacy systems and migrating to Unicode means a totally new development platform.</li> <li>You'd be surprised how many developers don't understand the full implications of Unicode in a multi-language environment. It's not just a case of using wide strings.</li> </ul> <p>Bottom line - cost.</p> http://stackoverflow.com/questions/973763/the-rounded-corners-ajax-effect-is-useful-for/973783#973783 0 Answer by Gerard for The rounded corners Ajax effect is useful for??? Gerard 2009-06-10T05:21:02Z 2009-06-10T05:21:02Z <p>To engage your users... Or you could save some real coding time and just go with plain old text.</p> http://stackoverflow.com/questions/1878205/when-ajax-should-be-used-and-when-it-should-not/1878219#1878219 Comment by Gerard on When Ajax should be used and when it should not? Gerard 2009-12-10T03:23:20Z 2009-12-10T03:23:20Z This is not an answer. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1225112#1225112 Comment by Gerard on What's your most controversial programming opinion? Gerard 2009-12-07T00:02:32Z 2009-12-07T00:02:32Z Case and Point - Microsoft's top developers prefer old-school coding methods - <a href="http://shar.es/aE0Qj" rel="nofollow">shar.es/aE0Qj</a> http://stackoverflow.com/questions/1835161/looking-for-a-local-database-for-d2009/1835667#1835667 Comment by Gerard on Looking for a local database for D2009+ Gerard 2009-12-02T21:50:24Z 2009-12-02T21:50:24Z Used both SQLite and Firebird. Found SQLite the better option http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1801644#1801644 Comment by Gerard on Should I start my new shareware project in C# or Delphi? Gerard 2009-11-26T05:54:02Z 2009-11-26T05:54:02Z Good answer. +1 for the Delphi dependency note. Makes a huge difference to the ease of distribution. http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi Comment by Gerard on Should I start my new shareware project in C# or Delphi? Gerard 2009-11-26T05:51:42Z 2009-11-26T05:51:42Z What do you mean by &quot;secure&quot;? To prevent reverse engineering or something else? http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1801604#1801604 Comment by Gerard on Should I start my new shareware project in C# or Delphi? Gerard 2009-11-26T05:50:01Z 2009-11-26T05:50:01Z Subjective points. Provide some evidence. http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1794803#1794803 Comment by Gerard on Capture screenshot of website on the client (Javascript or flash) Gerard 2009-11-25T22:00:55Z 2009-11-25T22:00:55Z I doubt if you'll ever get an embedded object to be able to access the browser's canvas and make it cross-browser, cross-OS compatible. You need something that is running with sufficient OS access to grab the canvas. You say that you've tried cutepdf. Well that isn't embedded either. http://stackoverflow.com/questions/1597754/convert-utc-string-to-tdatetime-in-delphi Comment by Gerard on Convert UTC string to TDatetime in Delphi Gerard 2009-10-20T23:18:53Z 2009-10-20T23:18:53Z The 'standard' being ISO 8601 http://stackoverflow.com/questions/1597754/convert-utc-string-to-tdatetime-in-delphi Comment by Gerard on Convert UTC string to TDatetime in Delphi Gerard 2009-10-20T23:16:04Z 2009-10-20T23:16:04Z Ended up writing my own class to deal with this, and to fully comply with the standard it was quite a complex one. Would be interested in any quicker solutions for this question. http://stackoverflow.com/questions/1583990/complete-xml-schema-validation/1590627#1590627 Comment by Gerard on Complete XML Schema Validation Gerard 2009-10-20T01:04:11Z 2009-10-20T01:04:11Z oXygen is a great tool. Don't know how we did XSD without it. Plus it generates quality schema documentation. http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1557130#1557130 Comment by Gerard on Delphi - most successful applications developed Gerard 2009-10-18T23:45:16Z 2009-10-18T23:45:16Z Perhaps there are a gazillion other development tools but Delphi would appear to be the one of choice for the industry. Actually there is very little choice for this type of development when you consider the operational requirements. http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/1397555#1397555 Comment by Gerard on What do you use to keep notes as a developer? Gerard 2009-10-13T01:22:16Z 2009-10-13T01:22:16Z Ditto on that one! http://stackoverflow.com/questions/1551894/tips-and-tricks-in-dreamweaver/1551945#1551945 Comment by Gerard on Tips and Tricks in Dreamweaver Gerard 2009-10-12T00:52:12Z 2009-10-12T00:52:12Z Well I still use Dreamweaver so cannot offer any good alternatives. Yes, the visual editor is very good. This has always been a strength of the product. It just seems that it's not the all-round authoring tool it used to be. I've had to adopt products like oXygen to do the heavy XML lifting. http://stackoverflow.com/questions/1257014/ttabsheet-hints-in-delphi/1257745#1257745 Comment by Gerard on TTabSheet hints in Delphi Gerard 2009-08-30T23:13:16Z 2009-08-30T23:13:16Z Apologies; I was using TRzTabSheet (Raize Components) which has a TabAtPos property and works well. You could just programmatically show the hint on a change of tabindex using the THintWindow class. Set the Page Control's Show Hint property to false and create your own. http://stackoverflow.com/questions/1325358/does-your-wife-girlfriend-feel-ignored-when-you-are-programming Comment by Gerard on Does your Wife/Girlfriend Feel Ignored when you are programming? Gerard 2009-08-25T00:17:30Z 2009-08-25T00:17:30Z Priorities man. Get them sorted.