User bruceatk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T19:16:33Zhttp://stackoverflow.com/feeds/user/791http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/972611/old-developers-any-future/1656142#16561420Answer by bruceatk for Old Developers - any future ?bruceatk2009-11-01T01:51:11Z2009-11-01T02:11:11Z<p>56 in a month and a half. I have no plans to stop.</p>
http://stackoverflow.com/questions/8722/how-do-you-use-powershell/8918#89187Answer by bruceatk for How do you use PowerShell?bruceatk2008-08-12T14:51:53Z2009-08-27T05:47:45Z<p>It's definitely worth learning. Do you ever convert text? Do you ever manipulate XML? Do you ever automate anything? Simple example. Someone gives you a comma delimited file and you need to pull some fields out of it to import into some other tool/database or to create some list for your program.</p>
<p>If the csv has the field names in the first line of the file, you can do the following in Powershell:</p>
<pre><code>$Data = import-csv "something.csv"
</code></pre>
<p>You can then refer to your data using the field names. If you had a field called SSN then you could say $Data[n].SSN. You could also just pipe the import-csv command to something that processed the data including exporting it as XML/html or anything you want with just a few commands. Powershell is full of stuff like this.</p>
<p>It's a tool that gives you tremendous access to a ton of stuff on your workstation and servers, including the complete .NET library. It's a tool that isn't targeted at a type of person. Maybe it's just that the Admin types have been quick to realize how useful it is. I use it every day.</p>
<p>To actually answer the question asked, I use it to automate things I do everyday. I am trying to make it my single scripting language, replacing the things I did in perl, python, vbscript, .bat/.cmd, and one off little utility/conversion programs that I would create.</p>
http://stackoverflow.com/questions/7779/i-would-like-a-recommendation-for-a-book-on-eclipses-rich-client-platform-rcp2I would like a recommendation for a book on Eclipse's Rich Client Platform (RCP).bruceatk2008-08-11T13:30:21Z2009-06-22T13:34:56Z
<p>I have read through several reviews on Amazon and some books seem outdated. I am currently using MyEclipse 6.5 which is using Eclipse 3.3. I'm interested in hearing from people that have experience learning RCP and what reference material they used to get started. Thanks in advance. Bruce</p>
http://stackoverflow.com/questions/354386/is-there-a-way-to-capture-the-send-key-on-windows-mobile-and-have-it-dial-a-speci1Is there a way to capture the send key on Windows Mobile and have it dial a specific number?bruceatk2008-12-09T21:57:33Z2009-04-21T06:48:38Z
<p>I have a Windows Mobile application using the compact framework (NETCF) that I would like to respond to someone pressing the send key and have the phone dial the number selected in my application. Is there a way using the compact framework to trap the send key? I have looked at several articles on capturing keys, but I have not found one that includes the "Send" key.</p>
<p><strong>Update</strong>:</p>
<p>I found an article describing SetWindowsHookEx as an undocumented API on Windows Mobile. If this is the case then I really don't want to use it.</p>
<p><a href="http://blogs.msdn.com/raffael/archive/2008/05/12/setwindowshookex-on-windows-mobile.aspx" rel="nofollow">SetWindowsHookEx on Windows Mobile</a></p>
<p>After doing more searching I found out that the "Send" key is called the "Talk" key in Windows Mobile lingo. I then found a blog post about using the SHCMBM_OVERRIDEKEY message to signal the OS to send my app a WM_HOTKEY message when the user presses the Talk key.</p>
<p><a href="http://blogs.msdn.com/windowsmobile/archive/2005/09/02/460327.aspx" rel="nofollow">Jason Fuller Blog post about using the Talk button</a></p>
<p>The blog post and the documentation it points to seem like exactly what I'm looking for. I'm unable to find a working example, and I find a lot of people unable to make it work. It also looks like VK_TTALK is not supported in SmartPhones. I would love to hear from someone that actually has this working on both Smartphones and PocketPC phones.</p>
http://stackoverflow.com/questions/645237/as-a-programmer-what-single-discovery-has-given-you-the-greatest-boost-in-product/645972#6459724Answer by bruceatk for As a programmer what single discovery has given you the greatest boost in productivity?bruceatk2009-03-14T14:10:40Z2009-03-14T14:10:40Z<p>I've been around a while so I have several single things over the years and they vary wildly. I really haven't had any productivity discoveries in a while, except for small special purpose tools.</p>
<p>Probably my biggest single discovery is to prototype quickly and get the user/customer looking and touching as fast as possible before wasting time on features that they don't want or will change as soon as they discover that they really don't want it that way. I first realized this the first time I used Visual Basic to prototype the interface of an application I was creating in C++ (late 1992/early 1993).</p>
<p>A bunch of people can sit around a table and discuss for months what they do and do not want, but until they can actually touch it and experience it they really do not know.</p>
http://stackoverflow.com/questions/640700/what-coding-style-for-error-checking-is-better-and-why/641556#6415560Answer by bruceatk for What coding style for error checking is better and why?bruceatk2009-03-13T05:17:37Z2009-03-13T05:17:37Z<p>I would go with the second but flip the logic and change the name.</p>
<p>if (resultOfSystemCall == OK)</p>
http://stackoverflow.com/questions/639348/how-to-understand-the-why-reason-behind-programming/639681#6396811Answer by bruceatk for How to understand the why/reason behind programming?bruceatk2009-03-12T17:36:41Z2009-03-12T17:53:32Z<p>I believe it's good to make your comments describe your assumptions and intents. Unfortunately that isn't the way most of them are. </p>
<p>The best thing is to talk to those you can about why they do something. If you have friends/acquaintances that are experienced, ask to read some of their good and bad code and then talk to them about why they did things a certain way.</p>
<p>For the long haul I believe it's best to expose yourself to as much as you can, experiment, ask questions, and come to your own conclusions.</p>
http://stackoverflow.com/questions/611233/am-i-obligated-to-fix-a-software-error-after-i-left-a-company/611537#6115371Answer by bruceatk for Am I obligated to fix a software error after I left a company?bruceatk2009-03-04T17:06:43Z2009-03-04T17:49:24Z<p>I would say that you are not responsible if your employer is the one that made the deal with the customer. You say "We made a deal". If you were part of the deal making, then you should have had an understanding of how fixes would be taken care of. </p>
<p>My own personal opinion is it really depends on your relationship with the customer. First do you both agree it's a bug (or is it a misunderstanding for what the software is supposed to do)? If it truly is a bug, you were the dominate person in the deal, you don't have any contract about how to handle maintenance, and you want to maintain good standing with the customer, then you should fix it. If it's a simple fix, do it for free. If it isn't then work out the terms of the fix. It sounds like the customer has had a while to identify this bug.</p>
<p>If you weren't part of the deal making and you don't have a relationship with the customer, then I would work out with your former employer a rate to fix the bug. If he isn't agreeable to that then your former employer needs to find someone else to fix it.</p>
http://stackoverflow.com/questions/51798/what-is-the-best-ide-color-for-developers-in-c/610835#6108350Answer by bruceatk for What is the best IDE color for developers in C#bruceatk2009-03-04T14:33:55Z2009-03-04T14:33:55Z<p>This too much of a personal preference. Everyone has different levels of color perception and what is good for one person is unreadable by another. Your best option is to download and try different themes until you find one that words for you.</p>
http://stackoverflow.com/questions/607451/next-step-for-a-self-taught-developer/607710#6077100Answer by bruceatk for Next Step for a Self-Taught Developer?bruceatk2009-03-03T19:10:03Z2009-03-03T19:10:03Z<p>I would recommend that the best way for you to increase your knowledge and to put a polish on the skills that you have is to help someone with a project that they want to do. You must know someone that has an idea or a need for something that doesn't exist. Help them create it or create it for them. </p>
<p>The best place to look for these kinds of projects is among your own network of friends and family. Some people in need are usually small businesses or teachers. </p>
<p>I recently had fun creating an application to create seating charts for concerts. A music teacher expressed the need and I had fun providing a solution.</p>
<p>You won't get rich doing those kinds of things, but you will have fun and learn something at the same time.</p>
http://stackoverflow.com/questions/602138/is-a-debugger-the-mother-of-all-evil/602536#60253613Answer by bruceatk for Is a debugger the mother of all evil?bruceatk2009-03-02T14:33:55Z2009-03-02T15:13:06Z<p>I would say your friend doesn't understand debugging and debuggers. Debuggers are tools to help you focus and get clarity on what is going on in the actual environment that the code is running in. You can sit back and <a href="http://www.thefreedictionary.com/philosophize" rel="nofollow">philosophize</a> all you want, but it is meaningless without the knowledge of what is actually going on. Why guess? To me it is more of a hack and a waste of time to throw tons of logging statements in your code printing out what you think might be wrong.</p>
<p>I want people working with me using a debugger when needed, rather than guessing.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103318#10331810Answer by bruceatk for What was your first home computer?bruceatk2008-09-19T16:10:08Z2009-02-24T17:55:16Z<p>Atari 800. $747 - 24k - cassette. Upgraded to 90k floppy $444.00. $250.00 to upgrade RAM to 48k. $200 for 16k RAM module and $50.00 to solder 16k onto the existing 8k board. (<a href="http://stackoverflow.com/users/791/bruceatk">bruceatk</a>)</p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Atari800.jpg/180px-Atari800.jpg" alt="Atari 800" /><br />
<img src="http://www.backntime.net/Atari%20Computers/8bit/400%5F800/410%5Fa.gif" alt="Atari 410 Tape Drive" /></p>
http://stackoverflow.com/questions/573115/what-is-your-favourite-anti-debugging-trick/573323#5733231Answer by bruceatk for What is your favourite anti-debugging trick?bruceatk2009-02-21T16:32:11Z2009-02-21T20:49:52Z<p>I would prefer that people write software that is solid, reliable and does what it is advertised to do. That they also sell it for a reasonable price with a reasonable license. </p>
<p>I know that I have wasted way too much time dealing with vendors that have complicated licensing schemes that only cause problems for the customers and the vendors. It is always my recommendation to avoid those vendors. Working at a nuclear power plant we are forced to use certain vendors products and thus are forced to have to deal with their licensing schemes. I wish there was a way to get back the time that I have personally wasted dealing with their failed attempts to give us a working licensed product. It seems like a small thing to ask, but yet it seems to be a difficult thing for people that get too tricky for their own good.</p>
http://stackoverflow.com/questions/568804/coding-standards/569484#5694842Answer by bruceatk for Coding Standardsbruceatk2009-02-20T12:58:24Z2009-02-20T12:58:24Z<p>Adam Cogan has a great set of rules on his web site. There are coding guidelines, but there is much more there also.</p>
<p><a href="http://www.ssw.com.au/ssw/Standards/Default.aspx" rel="nofollow">Adam Cogan's Rules to Better...</a></p>
http://stackoverflow.com/questions/553523/what-is-the-most-frustrating-restriction-your-it-department-has-ever-put-on-you-o/554384#5543843Answer by bruceatk for What is the most frustrating restriction your IT department has ever put on you or your machine?bruceatk2009-02-16T20:01:01Z2009-02-16T20:01:01Z<p>The randomness of sites blocked. Way back when I tried to download an FAQ on writing VXD's and the site was blocked for sexual content. Recently I wanted to get an update for a Hex editor and was blocked for hacking.</p>
<p>The rules that are applied to e-mail. I had to research why some e-mail wasn't received at our site and I found out that a research article on how radiation affects the human body (I work at a nuclear power plant) was blocked because it contained the word "breast" too many times.</p>
<p>I have to use VPN to work from offsite but they don't allow printing to a local network printer, so I can't print when I'm connected (split tunneling would allow that to work).</p>
http://stackoverflow.com/questions/545088/programming-under-pressure-how-to-dissipate-the-heat/546935#5469350Answer by bruceatk for Programming under pressure - How to dissipate the heatbruceatk2009-02-13T17:45:45Z2009-02-13T17:45:45Z<p>I think the most important thing is to realize that you can't work miracles. No matter what you are being asked to do you need to prioritize tasks and work on them as you have time to work on them. When you get piled up with multiple #1 priorities, you need to bring it up with your supervisor/manager and ask them to decide what your real #1 priority is. You can only support one at a time.</p>
<p>If you are comfortable in your abilities then you just need to be honest with management. Don't burden yourself with impossible expectations. You need to be realistic and communicate it to the others that you work with.</p>
<p>If your entire team is being burdened with too many priorities then you need to perform triage and prioritize them. Throwing people and time at the problem is counter productive unless you have come up with a prioritized plan for attacking them. </p>
<p>You don't want to spin your wheels. Working long hours and spending sleepless nights is usually a waste of time. Working a well thought out plan (even if you have had to come up with that plan under tremendous pressure) is better than just churning in reaction mode.</p>
<p>It has been my experience that if you can show that you have a cool head while others are freaking out then you have a good chance of helping to shape the response to the emergency. </p>
<p>I don't mind working long hours or weekends, but only when I find it a reasonable response to the problem. I will always try to come up with the best solution and rarely is that to have people work long hours and weekend.</p>
http://stackoverflow.com/questions/544430/how-to-psyche-yourself-to-just-program-the-damn-thing/544556#5445561Answer by bruceatk for How to psyche yourself to just program the damn thingbruceatk2009-02-13T02:52:25Z2009-02-13T02:52:25Z<p>When I find that I need to do something difficult or I'm not happy with my planned solution for the problem I will divide and conquer. If there is stuff that I can trim away that I know I will use no matter what my ultimate solution ends up being, I will start working on that. While I'm working on that stuff I will try to break down the difficult part and work on some of that if I can. Again I will try to work on things that I know I can end up using. </p>
<p>When I go to sleep at night I will think about the things that I'm having a difficult time with, because I come up with some of my best ideas after sleeping on it.</p>
<p>If it gets close to when I actually need to work on something that I've been putting off and I still don't have a solution I'm happy with, I will talk to others about my ideas and get their feedback.</p>
<p>Almost every time that this has happened to me I have ended up with a simpler and better solution to the problem by waiting then I would have if I had charged in and tried to force a solution out of myself.</p>
<p>Sometimes when under a tight deadline you have to implement the poor solution and put in a better one at a later time. </p>
http://stackoverflow.com/questions/541559/shellexecute-returns-error-code-5-when-trying-to-open-mdb-file-10mb/541621#5416212Answer by bruceatk for ShellExecute() returns error code 5 when trying to open mdb file >10MBbruceatk2009-02-12T14:57:58Z2009-02-12T14:57:58Z<p>To me it seems unlikely (but nothing is impossible) that it's the 10MB file size. Are the files in the same place? The Errorcode=5 means access denied. As part of starting Access an ldb file has to be created or updated. Is it possible that your files are in a different location and the person does not have write access to the folder that contains the >10MB file? Is C:\ the location of the mdb file? Some companies have policies that restrict write access to the root of the C: drive.</p>
http://stackoverflow.com/questions/541146/calling-net-class-library-dll-from-vb/541199#5411990Answer by bruceatk for Calling .Net Class Library (dll) from VBbruceatk2009-02-12T13:24:55Z2009-02-12T13:24:55Z<p>It sounds like you don't have all the items that your application requires installed or working on the server. Some things to look at are:</p>
<ol>
<li>Is the .NET Framework installed?</li>
<li>Make sure COM is working. Some fundamental things to try are:<br />
<ul>
<li>Inserting an object in a WordPad document.</li>
<li>If you can run WSCript, run a simple vbscript that creates an object.</li>
<li>Run <a href="http://www.dependencywalker.com/" rel="nofollow">Dependency Walker</a> on your EXE and make sure you have everything you need.</li>
</ul></li>
<li>If the above doesn't get you going you can use <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Sysinternals ProcMon</a> to watch what files and registry entries your application is accessing (and maybe not finding). This should give you clues as to what is going on.</li>
</ol>
http://stackoverflow.com/questions/533662/developing-on-a-computer-by-remote-desktoping-into-it-experiences/534070#5340701Answer by bruceatk for developing on a computer by remote desktoping into it, experiences?bruceatk2009-02-10T20:33:55Z2009-02-10T21:26:58Z<p>If your connection speed is good it is quite do able. You do have to watch out for slight delays in menus and stuff like that. I work from home two to three days a week which is great since I have a 70 mile commute.</p>
<p>Most of the time I don't have much latency. I'm VPN'ing from NH to Florida and back to NH. Since my desktop is Vista and my work desktop is XP I thought I wouldn't be able to live without my dual monitors, but I have been using <a href="http://www.code4ward.net/main/RoyalTS/Overview.aspx" rel="nofollow">RoyalTS</a>. RoyalTS not only lets me manage all the servers and desktops that I need to connect to, but when I hook up to my XP desktop I can spread Royal TS across both of my monitors and get a nice wide terminal window. I lose the ability to maximize to a monitor but I can adapt.</p>
<p>It's working quite well for me. Probably 2 to 3 hours a month the latency will get bad and drive me nuts.</p>
http://stackoverflow.com/questions/527700/which-language-to-learn-c-c-or-c/530190#5301901Answer by bruceatk for Which language to learn: C, C# or C++?bruceatk2009-02-09T21:58:28Z2009-02-09T21:58:28Z<p>C# is a good place to start. You can get it for free and you can do some fun graphics using XNA studio (also free). </p>
<p>I would only learn C++ if you have a specific reason to. </p>
<p>If you are doing Windows programming I would recommend that you do the first few chapters of one of <a href="http://www.charlespetzold.com/pw5/" rel="nofollow">Petzold's Programming Windows</a> books. It will give you a basic understanding of C and of how Windows works at the bare metal level. You don't really need to learn C. Charles Petzold holds your hand and gets you up and running in a basic C Windows program.</p>
http://stackoverflow.com/questions/525425/what-would-your-own-programming-language-look-like/525891#5258914Answer by bruceatk for What would your own programming language look like?bruceatk2009-02-08T15:18:33Z2009-02-08T15:18:33Z<p>My perfect language would allow me to ratchet up the functionality as I need it. If I need to write a small straight forward utility program without classes I could. If I needed to use classes I could do that also, and if I wanted to write a completely object oriented solution I would be able to do that too. The linker would be smart enough to let me create small fast command line utilities (with no runtime dependencies) or the largest bloated OOP GUI app I could imagine.</p>
<p>The problem is that what I like has opposing goals and thus I've always been forced into using completely different languages. I currently use in no particular order PowerShell, VBScript, PowerBasic, Java, and C# (and sometimes VB .NET, VB 6, C++, Python, and Perl).</p>
<p>Now if I could do it all with one C# like language that had global functions with no runtime dependencies when creating those small apps, but let me make full use of the power of the .NET Framework and Java SDK when I needed to, I'd be happy.</p>
http://stackoverflow.com/questions/522422/when-should-you-build-a-web-application-vs-a-thick-client/522603#5226031Answer by bruceatk for When should you build a web application vs. a thick client?bruceatk2009-02-06T23:01:03Z2009-02-06T23:01:03Z<p>I believe we are still at the point where unless there is a reason for it to be a Web app it should be a local application (thick). It is obvious when it should be a web app. A pet peeve of mine is the thought that it should be a web app unless it's obvious it should be local. I don't believe we are at the point where enterprises are willing to have their employees dependent on web applications outside of their control. When it comes to apps internal to a company I believe movement of data, security, and deployment/upgrades are the key factors in deciding.</p>
<p>A couple of key reasons for an app to be on the web.</p>
<ol>
<li>The application and data need to follow you around no matter what computer you are on.</li>
<li>The data needs to be centralized and the amount of data that needs to be transferred to the client is reasonable.</li>
</ol>
<p>A few reasons to use thick apps:</p>
<ol>
<li>Utilities that work on local resources.</li>
<li>Apps that do lots of one time processing of data.</li>
<li>Apps where data needs to be accessed when disconnected from the network.</li>
</ol>
http://stackoverflow.com/questions/521305/why-should-i-learn-c/522514#5225140Answer by bruceatk for Why should I learn C#?bruceatk2009-02-06T22:33:15Z2009-02-06T22:33:15Z<p>To me the choice is as simple as I need to use .NET libraries, so I'll use C# or I need to use Java libraries so I'll use Java. If I'm working on something on a Windows client I'll use C#, if I'm working on something that needs to run against the P6 Integration API I'll use Java. </p>
<p>You shouldn't feel like you you are missing something or should use one or the other. Look at what you have to do and pick the best tool for doing that.</p>
<p>It's tough to list on a post here all the features of the .NET Framework, just like it would be tough to list all the features contained in the Java SDK Libraries.</p>
http://stackoverflow.com/questions/172365/is-it-possible-to-print-just-the-canvas-element2Is it possible to print just the canvas element?bruceatk2008-10-05T18:04:24Z2009-02-06T13:34:05Z
<p>I've created a web page that lets you input some information and then draws an image in a canvas element based on that info. I have it pretty much working the way I want except for the printing.</p>
<p>Is there a way to print out the canvas element or is creating a new window to draw in, the only way to do it?</p>
<p>Update:</p>
<p>The answer was so simple. I was thinking of a lot more complicated solution. </p>
<p>I wish I could pick more than 1 answer. I wasn't able to get the canvas to print when I used * to disable display. The simplest solution was to just turn off the form that I was using for input, using form {display:none;} in the CSS inside an @media print{}. Thanks for the quick response.</p>
<pre><code>
@media print {
form {
display:none;
}
}
</code></pre>
http://stackoverflow.com/questions/474641/why-should-i-use-an-mvc-framework-for-php/474708#4747084Answer by bruceatk for Why should I use an MVC framework for PHP?bruceatk2009-01-23T21:44:13Z2009-02-06T12:48:40Z<p>You don't have to. I have worked with PHP for years and have never used a framework with it. This is because everything that I have done with PHP has been very straightforward and using a framework would have been overkill. The more functionality that you have the better off you'll be using a framework.</p>
<p>The benefits of a framework are that you inherit a lot of functionality already written for you and it provides a structured way to extend that functionality. The cost of using a framework is that it may be more complicated to do some of the things that you are used to doing. You have to weigh that against the benefits you get from using it. </p>
<p>I find that each of the PHP MVC frameworks usually have a page about their benefits. <a href="http://book.cakephp.org/view/12/Benefits" rel="nofollow">CakePHP has nice brief one</a>. </p>
<p>I would recommend that you check out a few of the MVC frameworks for PHP and look at what they provide. If they sound like something you could use then pick one and learn it. </p>
<p>You might be interested in something like this "<a href="http://toys.lerdorf.com/archives/38-The-no-framework-PHP-MVC-framework.html" rel="nofollow">The no-framework PHP MVC framework</a>".</p>
<p>You shouldn't feel pressure to use MVC or a framework. Only use it if you find that it works for you. You'll go much further in this business if you do some research, experiment, and then use the things that work for you.</p>
http://stackoverflow.com/questions/366588/what-does-a-good-programmers-code-look-like/366606#3666067Answer by bruceatk for What does a good programmer's code look like?bruceatk2008-12-14T14:49:17Z2009-02-06T12:45:41Z<p>I've been programming for 28 years and I find this a tough question to answer. To me good code is a complete package. The code is cleanly written, with meaningful variable and method names. It has well placed comments that comment the intent of the code and doesn't just regurgitate the code you can already read. The code does what it is supposed to in an efficient manner, without wasting resources. It also has to be written with an eye towards maintainability. </p>
<p>The bottom line though is that it means different things to different people. What I might label as good code someone else might hate. Good code will have some common traits which I think I've identified above.</p>
<p>The best thing you can do is expose yourself to code. Look at other people's code. Open Source projects are a good source for that. You will find good code and bad code. The more you look at it, the better you will recognize what you determine to be good code and bad code.</p>
<p>Ultimately you will be your own judge. When you find styles and techniques you like adopt them, over time you will come up with your own style and that will change over time. There is no person on here that can wave a wand and say what is good and that anything else is bad.</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/383989#3839896Answer by bruceatk for Viewing more than 10,000 files on a FTP file server?bruceatk2008-12-21T01:42:16Z2009-02-05T17:06:15Z<p>Please provide more information like specific OS and version. Also please list the names and versions of the ftp clients that you are using when you experience the problem.</p>
<p>A lot of files in a single directory can cause many programs to have problems. I would recommend reducing the number of files in a folder, by putting them in several folders. </p>
<p>The FTP client that you are using probably has an option to look at the raw log and you should be able to use that to determine if it's a problem with the server or your client. The clients could be using a slightly different method to retrieve the list of files. </p>
<p>The story is in the logs. </p>
http://stackoverflow.com/questions/506396/how-relevant-is-win32-programming-to-modern-professionals/506959#5069596Answer by bruceatk for How relevant is Win32 programming to modern professionals? bruceatk2009-02-03T12:50:12Z2009-02-04T02:46:45Z<p>I think it's important to learn the basics. If you learned just enough to display a window with some fields, some buttons, and a menu. Maybe draw something in a separate window. It would help you learn the fundamentals of how Windows is really working. I believe understanding the message loop and the realization that almost everything you see is a window are fundamental things that everyone should know. My eyes were really opened the first time I realized that a button was it's own window. It then helps you understand that features of things can be turned on and off by sending these windows messages. <a href="http://dotnet.sys-con.com/node/39039" rel="nofollow">Subclassing</a> windows let's you get access to features not exposed to you in things like .NET or VB Classic and let's you enhance the window's functionality.</p>
http://stackoverflow.com/questions/504153/best-way-to-back-out-a-bad-fix/504390#5043901Answer by bruceatk for Best way to back out a bad fix?bruceatk2009-02-02T18:49:19Z2009-02-02T18:54:21Z<p>For every project I have, I keep a to do list. It basically is a list of things that need to be done the next time the project is worked on. Sometimes with problems like this the correct/best solution isn't obvious so you may need some time for you to decide on the best solution. As I think about things and come up with ideas I'll add them to my to do list. By the time I actually have to work on it, I'll have several ideas on how to approach it and hopefully I'll have decided on the best method to fix the problem. </p>
<p>The more things you have in production that you have to maintain the less time you have to work on stuff just because you don't like your solution. My compromise is to have a method to remember what I want to do and a way to document my thoughts on how to approach it. When I finally get to work on it I'm better prepared to do it. </p>
<p>I find that going in for that quick fix can actually cause you more problems and take more time then letting it sit for a while before going in for a more thought out solution. </p>
<p>In your specific example I would probably want to backout both patches and apply a new single solution to your original problem that handles the special case client.</p>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112526#112526Comment by bruceatk on Did you ever switch from one programming language to another?bruceatk2009-12-08T19:47:31Z2009-12-08T19:47:31ZI really learned them both at the same time. I would do something in C# and then do the same thing in VB .Net. I then decided I preferred C#. I later on looked at VB .Net again to take advantage of XML Literals, other than that I stick with C#.http://stackoverflow.com/questions/9355/programatically-select-multiple-files-in-windows-explorer/9497#9497Comment by bruceatk on Programatically select multiple files in windows explorerbruceatk2009-12-08T19:42:54Z2009-12-08T19:42:54ZThat is why I said "depending" and "may be able to". There are many options within autohotkey including automating a search, I just gave one example. http://stackoverflow.com/questions/14155/windows-based-text-editors/14160#14160Comment by bruceatk on Windows-based Text Editorsbruceatk2009-11-01T02:01:03Z2009-11-01T02:01:03ZYou can't beat Textpad. I can even begin to estimate how much time I save using some of it's features like, "Find in Files", Block Select, Cut/copy bookmarked lines, Paste HTML, Scratch Macros, Clipboard, History, Clip Library, incremental find, and on and on.http://stackoverflow.com/questions/425185/is-realbasic-worth-50/426280#426280Comment by bruceatk on Is REALBasic worth $50?bruceatk2009-11-01T01:56:59Z2009-11-01T01:56:59ZIt also lets you tryout the professional features and if you decide you need them it's easy to turn them on when you upgrade. You can't go wrong.http://stackoverflow.com/questions/972611/old-developers-any-futureComment by bruceatk on Old Developers - any future ?bruceatk2009-11-01T01:50:11Z2009-11-01T01:50:11ZI'm 56. The only thing I would worry about is doing what you enjoy. If you enjoy programming keep going. I don't plan to stop, even after I retire.http://stackoverflow.com/questions/671895/easier-than-visual-basic-6/671949#671949Comment by bruceatk on Easier than Visual Basic 6?bruceatk2009-11-01T01:44:22Z2009-11-01T01:44:22ZPowerbasic in combo with FireFly (<a href="http://planetsquires.com" rel="nofollow">planetsquires.com</a>) is pretty much unbeatable.http://stackoverflow.com/questions/933129/whats-a-good-lightweight-programming-language-that-compiles-to-native-windows-co/933222#933222Comment by bruceatk on What's a good lightweight programming language that compiles to native windows code?bruceatk2009-11-01T01:40:24Z2009-11-01T01:40:24ZTo me the combo of FireFly and PowerBasic is unbeatable for getting small fast fully featured apps with the only run time requirement being windows.http://stackoverflow.com/questions/520340/ie8-shows-internet-explorer-cannot-display-the-webpageComment by bruceatk on IE8 shows "Internet Explorer cannot display the webpage"bruceatk2009-09-24T12:07:01Z2009-09-24T12:07:01ZOne more thing. This is the question that comes up as the top stackoverflow answer for this problem in google.http://stackoverflow.com/questions/520340/ie8-shows-internet-explorer-cannot-display-the-webpageComment by bruceatk on IE8 shows "Internet Explorer cannot display the webpage"bruceatk2009-09-24T12:05:28Z2009-09-24T12:05:28Z I just figured that I would add that this is a real problem that programmers have to face and the fact that something like this is closed is a good example of why Stackoverflow has become of limited use to me. http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/19924#19924Comment by bruceatk on Suggested gaming platform to learn - Direct X (C++), Open GL or XNA bruceatk2009-04-13T02:31:05Z2009-04-13T02:31:05Z@Alvaro, so what, it's still probably the best place to start. It will help you get started and actually see results. If after that you want to move to a more difficult tool set that lets you develop for more platform, you can.http://stackoverflow.com/questions/704883/osx-windows-development-for-newbies/705031#705031Comment by bruceatk on osx & windows development -- for newbiesbruceatk2009-04-02T14:40:51Z2009-04-02T14:40:51Z@Michael and Phillip. I even looked at Eclipse's Rich Client Platform (RCP). Just not as good an experience as using REALbasic, but it is what I would recommend if you want to use Javahttp://stackoverflow.com/questions/704883/osx-windows-development-for-newbies/705031#705031Comment by bruceatk on osx & windows development -- for newbiesbruceatk2009-04-02T14:37:49Z2009-04-02T14:37:49Z@Michael and Phillip. I am actually doing most of my programming for my day job in Java at the moment. For cross platform desktop apps I do not recommend it. While you can certainly do it with Java and C++, there is no comparison to using REALbasic. I prefer the painless way.http://stackoverflow.com/questions/704883/osx-windows-development-for-newbies/705031#705031Comment by bruceatk on osx & windows development -- for newbiesbruceatk2009-04-01T15:15:04Z2009-04-01T15:15:04ZI have the Windows version and use a MAC mini dual booting Ubuntu and OSX for testing.http://stackoverflow.com/questions/704883/osx-windows-development-for-newbies/705031#705031Comment by bruceatk on osx & windows development -- for newbiesbruceatk2009-04-01T15:12:38Z2009-04-01T15:12:38ZTo me REALbasic is the only viable solution for cross platform development. It's not perfect, but nothing else comes close. They are actively maintaining it with frequent updates and it is quite easy to create an application on Windows and have it work on a MAC or Linux.http://stackoverflow.com/questions/704883/osx-windows-development-for-newbies/705031#705031Comment by bruceatk on osx & windows development -- for newbiesbruceatk2009-04-01T15:10:02Z2009-04-01T15:10:02ZThe down voting for no apparent reason except "I don't like this" bugs me about SO. I think it should be required to leave a comment. I do not believe it should be anonymous.