User Jay - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:56:21Zhttp://stackoverflow.com/feeds/user/118962http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1754379/hardware-recommendation-for-a-hackintosh0Hardware recommendation for a Hackintosh [closed]Jay2009-11-18T08:13:43Z2009-11-18T08:13:43Z
<p>What are some successful hardware configurations people have used to build a Hackintosh?</p>
http://stackoverflow.com/questions/1710600/is-26-too-young-to-become-a-technical-manager/1712682#17126820Answer by Jay for Is 26 too young to become a technical manager?Jay2009-11-11T02:45:55Z2009-11-11T02:45:55Z<p>There will always be someone who might question your age, but really the only one that should concern you is YOU. Have confidence in yourself and you should do fine, especially since you are already taking rational steps to prepare yourself for management. Only 5 months experience? That is more than most Individual Contributors! Langkg's comment is spot on, make sure you want to do it. Whether or not you can continue coding as part of a technical lead really depends on the culture of your organization, I've been in orgs where it wasn't possible to be both management and technical, and those where it was natural to do both.</p>
<p>People your age have commanded warships and aircraft, led all sorts of companies big and small--don't limit yourself.</p>
http://stackoverflow.com/questions/1598632/how-can-i-specify-an-alternate-config-file-for-a-wcf-client0How can I specify an alternate config file for a WCF client?Jay2009-10-21T03:46:56Z2009-10-21T04:52:48Z
<p>I am working on a large system, for which I have to use WCF to access a web service. My test code works fine, now I need to integrate my WCF client code into the larger system. I cannot add to the existing 'app.config' file, and would like specify a separate .config file for use by my client code.</p>
<p>How best can I accomplish this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1501649/entity-framework-4-blog-or-information-page/1502070#15020700Answer by Jay for Entity framework 4 blog or information pageJay2009-10-01T05:36:58Z2009-10-01T05:36:58Z<p>Danny Simmons is the EF dev manager for Microsoft, his blog is: <a href="http://blogs.msdn.com/dsimmons/" rel="nofollow">system.data.objects dev guy</a></p>
http://stackoverflow.com/questions/1308101/suggestions-for-wpf-wcf-projects/1308524#13085240Answer by Jay for Suggestions for WPF & WCF projectsJay2009-08-20T20:11:01Z2009-08-20T20:11:01Z<p>A project I was thinking about was to help regulate my teenage son's internet usage. </p>
<p>Windows has a UI-based tool to control logon times. A WPF front-end would be nice to duplicate or improve on that tool, but use it to set network usage times. This way, kids could do school work (not prohibited from logging on their computer) but not be distracted by facebook.</p>
<p>The WCF portion would be a WCF service on your computer and WCF client on the kids' computers. The kids' computers would periodically check for restriction updates. If network access is current OFF, then the client (on the kids' computer) would turn off the network adapters (both ethernet and Wifi), turn them on every few minutes to check for updates, then turn them off again.</p>
<p>Just define a data contract for whatever structure/class you want to represent usage, and the service would have an operation contract with a single call, like:</p>
<pre><code>[ServiceContract]
interface INetworkControl
{
[OperationContract]
NetworkRestriction GetNetworkRestriction();
}
</code></pre>
<p>Maybe it would need more; that would be up to you (i.e., pass the computer name as a parameter, or perhaps logged on user if you wanted to control by user, who knows).</p>
http://stackoverflow.com/questions/1283374/how-to-add-a-service-reference-to-a-wcf-client-for-a-web-service-requiring-client0How to add a service reference to a WCF client for a web service requiring client authentication certificateJay2009-08-16T03:08:42Z2009-08-16T11:17:42Z
<p><strong><em>Caution, WCF noobie alert</em></strong></p>
<p>I need to create a WCF client to query a non-WCF web service.
The web service is not a WCF service. Additionally, the web service requires a client authentication certificate. Now, I have the certificate, and can create a non-WCF client that works perfectly; I was able to 'Add Web Reference' and a certificate dialog box opened up to allow me to select the appropriate certificate, then went on to create the web reference. Trying to create a WCF client via 'Add Service Reference' is another story, it just fails with a 403 Access Denied error.</p>
<p>I have the WSDL for the service, and have run svcutil.exe on it, but am not sure how to proceed from there.</p>
<p>Thanks for any help!</p>
http://stackoverflow.com/questions/1250067/is-wcf-useful-to-build-a-client-that-uses-a-non-wcf-web-service2is WCF useful to build a client that uses a non-WCF web service?Jay2009-08-08T22:42:03Z2009-08-08T22:56:02Z
<p>I am brand new to WCF, and have limited experience coding against web services. </p>
<p>At work it has been dictated to use WCF for everything network service oriented. The work I need to do involves querying a non-WCF web service, apparently built in Java, with a Netscape certificate server and related infrastructure (the service is not under our control). I have the WSDL for the web service.</p>
<ol>
<li><p>Does WCF add any value to this job?</p></li>
<li><p>Is it reasonable, normal, or a best practice to build a WCF client against a non-WCF service?</p></li>
<li><p>Can anyone offer any advice in doing this?</p></li>
</ol>
<p>Thanks!!!</p>
http://stackoverflow.com/questions/5507/does-it-still-make-sense-to-learn-low-level-winapi-programming/1141647#11416470Answer by Jay for Does it still make sense to learn low level WinAPI programming?Jay2009-07-17T06:17:04Z2009-07-17T06:17:04Z<p>Yes, for a few reasons:</p>
<p>1) .net wraps Win32 code. .net is usually a superior system to code against, but having some knowledge of the underlying Win32 layer (oops, WinAPI now that there is 64-bit code too) bolsters your knowledge of what is really happening.</p>
<p>2) in this economy, it is better to have some advantages over the other guy when you are looking for a job. Some WinAPI experience may provide this for you.</p>
<p>3) some system aspects are not available through the .net framework yet, and if you want to access those features you will need to use p/invoke (see <a href="http://www.pinvoke.net" rel="nofollow">http://www.pinvoke.net</a> for some help there). Having at least a smattering of WinAPI experience will make your p/invoke development effort a lot more efficient.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/1135494#11354941Answer by Jay for What do you use to keep notes as a developer?Jay2009-07-16T05:14:14Z2009-07-16T05:14:14Z<p>I have used several things that were not quite satisfactory, most recently Notepad++. I like how it opens lots of files left open. OneNote is captivating, and I have tried it, but it did not quite work. </p>
<p>I am looking forward to the released version of Win7 with its nice screen clip grabber and using that in conjunction with OneNote--that might just be the right thing for me.</p>
http://stackoverflow.com/questions/1075060/how-to-reduce-redundant-log-messages-for-a-web-app/1075075#10750752Answer by Jay for How to reduce redundant log messages for a web-app?Jay2009-07-02T15:29:14Z2009-07-02T15:29:14Z<p>You could create a logging system that logs to a DB, and have a flag set to determine whether to log individual entries, or just tally a counter for a base log entry. By tallying, you see the gross number of errors, but don't have an exploding log file.</p>
http://stackoverflow.com/questions/1059069/how-do-i-invoke-the-ie-onblur-event-from-vba-code-in-excel0How do I invoke the IE 'onblur' event from VBA code in Excel?Jay2009-06-29T15:54:37Z2009-06-29T18:20:20Z
<p>Situation: I am working to populate text entry boxes in a webpage with data from Excel. When the data is entered manually and the focus is moved to another text box, the 'onblur' event is fired to do input validation. </p>
<p>Desire: I want to be able to cause the 'onblur' event to be fired when I populate the same text boxes from VBA code in Excel.</p>
<p>Question: How do I cause the 'onblur' event to be executed? </p>
<p></p>
http://stackoverflow.com/questions/1056419/when-to-drop-an-it-job/1056468#10564681Answer by Jay for When to drop an IT jobJay2009-06-29T03:38:25Z2009-06-29T03:38:25Z<p>It really depends on several factors.
1) the economy--this is not the easiest time to change jobs, what are your prospects?
2) how bad is it really--merely frustrating, or truly impossible? If as bad as you make it sound, then you probably want to change while you are in control vs. being fired.
3) are you honest with yourself about your own capabilities--could it be that you need to gain more training, learn to be more flexible and communicative with your coworkers/superiors, etc. Is there anything you can do to upgrade yourself to make the job work better?</p>
http://stackoverflow.com/questions/1016367/what-is-the-best-application-technology-that-has-come-out-of-microsoft-to-date/1016386#10163861Answer by Jay for What is the best application / technology that has come out of Microsoft to date?Jay2009-06-19T04:53:48Z2009-06-19T05:05:51Z<p>Number 1 is C#, followed by lots of things from DevDiv. I love their programming tools (and I work in Windows).</p>
<p>As far as technology I will say Intellisense.</p>
http://stackoverflow.com/questions/1010886/stylistic-question-use-of-white-space/1010951#10109511Answer by Jay for Stylistic Question: Use of White SpaceJay2009-06-18T05:43:07Z2009-06-18T05:43:07Z<p>My preferred style is probably anathema to most developers, but I will add occasional blank lines to separate what seem like appropriate 'paragraphs' of code. It works for me, nobody has complained during code reviews (yet!), but I can imagine that it might seem arbitrary to others. If other people don't like it I'll probably stop.</p>
http://stackoverflow.com/questions/1005569/how-does-db-clustering-work/1005644#10056441Answer by Jay for How does DB clustering work?Jay2009-06-17T07:46:17Z2009-06-17T07:46:17Z<p>In Windows server clustering (to be distinguished from High Performance Clustering), there is a shared external storage array. The active node takes ownership/control of the storage, and when that node fails, the storage 'fails over' to the previously passive node (which is now the active node). There are also different schemes that allow for independent storage at each node, vs. shared storage. However, these require the application to have enough intelligence to know that it is clustered, and keep the two storage sets in sync.</p>
http://stackoverflow.com/questions/973292/is-it-bad-practice-to-return-exceptions-from-your-methods/973322#9733220Answer by Jay for Is it bad practice to return Exceptions from your methodsJay2009-06-10T01:30:04Z2009-06-10T01:30:04Z<p>Exceptions can be nice in some settings, but keep in mind that they can incur a big, big performance hit.</p>
http://stackoverflow.com/questions/724174/where-are-all-these-entry-level-jobs-in-computer-science-that-i-keep-hearing-abou/973255#9732550Answer by Jay for Where are all these entry-level jobs in Computer Science that I keep hearing about?Jay2009-06-10T01:04:39Z2009-06-10T01:04:39Z<p>Check into various user groups and programming groups. Here in Seattle we have the <a href="http://www.nwcpp.org" rel="nofollow">Northwest C++ Users Group</a>, these are good places to meet other tech folk and ask around about opportunities.</p>
http://stackoverflow.com/questions/973156/newbie-need-advice-on-job-search/973239#9732391Answer by Jay for Newbie..Need advice on job searchJay2009-06-10T00:58:23Z2009-06-10T00:58:23Z<p>The most important, but not only, aspect is that you have to want to do it. Let me explain: although there are lots of technical skills you should master, and work habits to develop, you need to ask yourself if this is the kind of work that you really, truly, want to do. Not that you want to be paid for, but want to do. If you truly want to do IT work or software development, then an intelligent quest will eventually help you develop the necessary skills. If you only want to 'be in IT', but don't like IT, you will not do well at it. Find your passion and follow it.</p>
<p>Another way to say the same thing is to ask "Will I enjoy doing IT work for free for charity?" If you don't want to do that, then you don't want to do the work, and IT is not for you.</p>
http://stackoverflow.com/questions/972611/old-developers-any-future/973042#9730423Answer by Jay for Old Developers - any future ?Jay2009-06-09T23:39:05Z2009-06-09T23:39:05Z<p>I just turned 47. Currently working at a large software company, which was a big goal of mine 10 years ago, but am looking forward to layoffs hitting my division soon. Meanwhile, the company is, in the middle of layoffs, still continuing with their college hires from overseas. This bodes of a desire by the company to get rid of older folks, in my opinion. I have recently become convinced that my future as a software developer will probably require me to either a) start my own company (not sure I have the business expertise to make a go of that), or b) gain some more arcane, specialized knowledge and skill. I believe the body of experienced device driver writers to be much smaller than other areas, like .Net framework coding, so that might be an example of a way to distinguish myself. I am sure there are other areas as well, that is just an example.</p>
<p>To answer your question: first, keep the passion, that is vital; next, find a way to either make yourself stand out, take control of your destiny in some way. You can definitely do it, but the road ahead will different from what you have already traveled.</p>
http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/964457#9644573Answer by Jay for What is the worst programming language you ever worked with?Jay2009-06-08T11:29:57Z2009-06-08T11:29:57Z<p>FOCUS, touted as a '4GL' (fourth generation language). Some systems could use FOCUS like SQL, doing db queries, the results of which were wrapped in BASIC or some other procedural language, but the system I worked on at Boeing in the 80s didn't have that. Kind of like a very poor excel to run a business enterprise. That was the only programming job I hated.</p>
http://stackoverflow.com/questions/1283374/how-to-add-a-service-reference-to-a-wcf-client-for-a-web-service-requiring-client/1283627#1283627Comment by Jay on How to add a service reference to a WCF client for a web service requiring client authentication certificateJay2009-08-20T03:46:18Z2009-08-20T03:46:18ZThat did the trick, thanks for the article reference.http://stackoverflow.com/questions/1283355/how-many-possible-bugs-are-there/1283381#1283381Comment by Jay on How many possible bugs are there?Jay2009-08-16T05:10:05Z2009-08-16T05:10:05ZReally? Since ordering doesn't matter, does any operation with a bug require any context? Or is the questioner saying that (for example) operation 10 by itself is okay, and operations 1 and 2 together are okay, but the bug only appears when all 3 are put together?http://stackoverflow.com/questions/1283374/how-to-add-a-service-reference-to-a-wcf-client-for-a-web-service-requiring-client/1283387#1283387Comment by Jay on How to add a service reference to a WCF client for a web service requiring client authentication certificateJay2009-08-16T05:02:56Z2009-08-16T05:02:56ZIt doesn't really help, in that the article also relies on using the 'Add Service Reference' in VS, where I fail with a 403 (described in the original question). Also, it shows how to configure a client to a WCF service, and this is for a non-WCF web service.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1225112#1225112Comment by Jay on What's your most controversial programming opinion?Jay2009-08-15T06:51:12Z2009-08-15T06:51:12ZStated, but not reasoned. -1http://stackoverflow.com/questions/1250067/is-wcf-useful-to-build-a-client-that-uses-a-non-wcf-web-service/1250075#1250075Comment by Jay on is WCF useful to build a client that uses a non-WCF web service?Jay2009-08-09T04:34:19Z2009-08-09T04:34:19Z1: nice penguin
2: no shame in a shameless plug :-)
3: thanks very much for the help, that looks like the direction I need to gohttp://stackoverflow.com/questions/308554/install-certificates-in-to-the-windows-local-user-certificate-store-in-c/1221560#1221560Comment by Jay on Install certificates in to the Windows Local user certificate store in C#Jay2009-08-03T17:29:38Z2009-08-03T17:29:38ZYou should create your own question; that is really, really not an answer to the original question.http://stackoverflow.com/questions/1036829/how-to-return-list-of-strings-in-c/1036837#1036837Comment by Jay on How to return List of Strings in c#Jay2009-07-28T15:07:03Z2009-07-28T15:07:03ZI got a downvote for not commenting, when I didn't have authorization to comment. Nice.http://stackoverflow.com/questions/1036829/how-to-return-list-of-strings-in-c/1036837#1036837Comment by Jay on How to return List of Strings in c#Jay2009-07-28T15:06:00Z2009-07-28T15:06:00ZNot everyone can leave comments thoughhttp://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/1135494#1135494Comment by Jay on What do you use to keep notes as a developer?Jay2009-07-16T05:15:05Z2009-07-16T05:15:05ZForgot to mention: a nice feature of OneNote is that you never need to save, it just does it for you.http://stackoverflow.com/questions/1078003/c-how-would-you-make-a-unique-filename-by-adding-a-number/1078020#1078020Comment by Jay on C#: How would you make a unique filename by adding a number?Jay2009-07-03T06:47:13Z2009-07-03T06:47:13ZI have used this technique successfully. If you are creating files too fast, you run the risk of name collision, but if you know that you are not creating multiple files within milliseconds of each other it works great.http://stackoverflow.com/questions/1059069/how-do-i-invoke-the-ie-onblur-event-from-vba-code-in-excel/1059111#1059111Comment by Jay on How do I invoke the IE 'onblur' event from VBA code in Excel?Jay2009-06-29T17:03:45Z2009-06-29T17:03:45ZCan you elaborate?http://stackoverflow.com/questions/973292/is-it-bad-practice-to-return-exceptions-from-your-methods/973322#973322Comment by Jay on Is it bad practice to return Exceptions from your methodsJay2009-06-17T07:48:26Z2009-06-17T07:48:26ZI didn't read closely enough. I was thinking throw exceptions vs. return exceptions.
As far as performance, Eddie is right, they aren't that bad unless you are throwing (not returning) a lot of them. You can do almost anything a little bit.