User Kevin Sheffield - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T21:22:43Z http://stackoverflow.com/feeds/user/590 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/162276/jquery-facebox-plugin-get-it-inside-the-form-tag 2 JQuery Facebox Plugin : Get it inside the form tag Kevin Sheffield 2008-10-02T13:31:23Z 2009-11-16T02:49:52Z <p>I am wanting to use the Facebox plugin for JQuery but am having a few issues getting it running how I want. The div that houses the facebox content is created outside of the tag so even though I am loading up some web controls none of them are firing back to the server.</p> <p>Has anyone dealt with this that can give me some pointers?</p> http://stackoverflow.com/questions/5460/telligents-community-server 0 Telligent's Community Server Kevin Sheffield 2008-08-07T23:00:30Z 2009-10-23T09:03:23Z <p>The company I work for is wanting to add blog functionality to our website and they were looking to spend an awful amount of money to have some crap being built on top of a CMS they purchased (sitecore). I pointed them to Telligent's Community Server and we had a sales like meeting today to get the Marketing folks on board. My question is if anyone has had issues working with Community Server, skinning it and extending it?<br> I wanted to explain a bit why I am thinking Community Server, the company is wanting multiple blogs with multiple authors. I want to be out of the admin part of this as much as possible and didn't think there were too many engines that having multiple blogs didn't mean db work. I also like the other functionality that Community Server provides and think the company will find it useful, particularly the media section as right now we have some really shotty way of dealing with whitepapers and stuff.</p> <p>edit: We are actually using the Sitecore blog module for a single blog on our intranet (which is actually what the CMS is serving). Some reasoning for why I don't like it for our public site are they are on different servers, it doesn't support multiple authors, there is no built in syndication, it is a little flimsy feeling to me from looking at the source and I personally think the other features of Community Server make its price tag worth it.</p> <p>another edit: Need to stick to .net software that run on sql server in my company's case, but I don't mind seeing recommendations for others. ExpressionEngine looks promising, will try it out on my personal box.</p> http://stackoverflow.com/questions/79954/visual-studio-opens-default-browser-instead-of-ie 8 Visual Studio opens default browser instead of IE Kevin Sheffield 2008-09-17T04:23:35Z 2009-07-27T17:54:00Z <p>When I debug in Visual Studio, firefox opens and that is annoying because of the hookups that IE and VS have such as when you close the IE browser that starting debug opened, VS stops debugging. How can I get Visual Studio to open IE instead without having to set IE as my default browser?</p> http://stackoverflow.com/questions/162276/jquery-facebox-plugin-get-it-inside-the-form-tag/162317#162317 3 Answer by Kevin Sheffield for JQuery Facebox Plugin : Get it inside the form tag Kevin Sheffield 2008-10-02T13:39:58Z 2009-03-19T05:59:50Z <p>poking around the facebox.js I came across this line in the function init(settings)...</p> <pre><code>$('body').append($.facebox.settings.faceboxHtml) </code></pre> <p>I changed that to ...</p> <pre><code>$('#aspnetForm').append($.facebox.settings.faceboxHtml) </code></pre> <p>and it loads up in the form tag, not sure yet if there are any side effects</p> http://stackoverflow.com/questions/622604/best-approach-for-game-animation/622627#622627 0 Answer by Kevin Sheffield for Best approach for game animation? Kevin Sheffield 2009-03-07T22:31:12Z 2009-03-07T22:31:12Z <p>Use the second method. Did a game for my senior project and from experience, there is no guarantee that your logic will be done processing when the timer wants to fire.</p> http://stackoverflow.com/questions/4234/what-to-use-for-messaging-with-c 0 What to use for Messaging with C# Kevin Sheffield 2008-08-07T00:56:41Z 2008-10-14T14:23:37Z <p>So my company stores alot of data in a foxpro database and trying to get around the performance hit of touching it directly I was thinking of messaging anything that can be done asynchronously for a snappier user experience. I started looking at <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a> but don't know how well C# will hook with it. Wanting to hear what all of you guys think.</p> <p>edit : It is going to be a web application. Anything touching this foxpro is kinda slow (probably because the person who set it up 10 years ago messed it all to hell, some of the table files are incredibly large). We replicate the foxpro to sql nightly and most of our data reads are ok being a day old so we are focusing on the writes. plus the write affects a critical part of the user experience (purchasing), we store it in sql and then just message to have it put into foxpro when it can. I wish we could just get rid of the foxpro, unfortunately the company doesn't want to get rid of a very old piece of software they bought that depends on it.</p> http://stackoverflow.com/questions/148670/why-is-the-fact-that-microsoft-decided-to-support-jquery-such-a-big-deal/150182#150182 1 Answer by Kevin Sheffield for Why is the fact that Microsoft decided to support jQuery such a big deal ? Kevin Sheffield 2008-09-29T19:12:13Z 2008-09-29T19:12:13Z <p>If you work at a place that does not allow OSS because of lack of support this is huge since now it has that nice microsoft stamp of approval that helps win over business folk in a way that a developer at the company never could.</p> http://stackoverflow.com/questions/140815/are-you-a-code-neat-freak/140833#140833 6 Answer by Kevin Sheffield for Are you a code neat freak? Kevin Sheffield 2008-09-26T17:33:28Z 2008-09-26T17:33:28Z <p>I find that neat code takes less time to understand so for me I see it as laziness and lack of caring on the part of a programmer who does not keep his/her code clean. I do usually start cleaning up code if it is something that I have to work on.</p> http://stackoverflow.com/questions/115656/asp-net-framework-effects-of-moving-from-2-0-to-3-5/115673#115673 3 Answer by Kevin Sheffield for ASP.NET Framework effects of moving from 2.0 to 3.5? Kevin Sheffield 2008-09-22T15:48:23Z 2008-09-22T15:48:23Z <p>It updates your web.config to use a few newer dlls. I have yet to experience any breaking changes.</p> http://stackoverflow.com/questions/115493/how-do-i-convince-my-team-to-drop-sourcesafe-and-move-to-svn/115531#115531 1 Answer by Kevin Sheffield for How do I convince my team to drop sourcesafe and move to SVN? Kevin Sheffield 2008-09-22T15:29:59Z 2008-09-22T15:29:59Z <p>If you use VisualSVN the team won't miss VSS as much. 2 people being able to work on one file at the same time is a big selling point too.</p> http://stackoverflow.com/questions/114950/how-do-you-verify-the-work-and-experience-level-of-consultants/114972#114972 3 Answer by Kevin Sheffield for How do you verify the Work and Experience level of Consultants? Kevin Sheffield 2008-09-22T13:54:07Z 2008-09-22T13:54:07Z <p>Get references and contact them.</p> http://stackoverflow.com/questions/114807/should-i-learn-become-proficient-in-javascript/114841#114841 1 Answer by Kevin Sheffield for Should I learn/become proficient in Javascript? Kevin Sheffield 2008-09-22T13:24:05Z 2008-09-22T13:24:05Z <p>Javascript is one of those languages that spending a few hours learning will probably teach you 99% of what you will ever really use. I would imagine you are at the point in your learning of javascript that you know more than enough now and just learn one or more of the frameworks now.</p> http://stackoverflow.com/questions/109199/deploying-a-site-from-vss/112915#112915 0 Answer by Kevin Sheffield for Deploying a site from VSS Kevin Sheffield 2008-09-22T02:43:14Z 2008-09-22T02:49:47Z <p><a href="http://www.microsoft.com/technet/archive/itsolutions/intranet/plan/webvss.mspx" rel="nofollow">Managing Web Content Using MS Visual SourceSafe</a></p> <p>yes you can deploy via ftp or network share using the "web deploy" feature in the VSS explorer.</p> http://stackoverflow.com/questions/112625/vs-object-equalsobject-in-net/112630#112630 5 Answer by Kevin Sheffield for == vs. Object.Equals(object) in .NET Kevin Sheffield 2008-09-22T00:17:46Z 2008-09-22T00:17:46Z <p><a href="http://msdn.microsoft.com/en-us/library/ms173147.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms173147.aspx</a><br /> has some good info on the differences</p> http://stackoverflow.com/questions/110113/which-software-expert-do-you-have-as-a-role-model/110149#110149 0 Answer by Kevin Sheffield for Which software expert do you have as a role model? Kevin Sheffield 2008-09-21T03:17:33Z 2008-09-21T03:17:33Z <p>Sartaj Sahni, professor I had 2 times in school who took a lot of personal time with his students and demanded that we constantly use our heads in even the very small decisions we made in our code.</p> http://stackoverflow.com/questions/110052/good-desktop-sharing-apps 2 Good desktop sharing apps Kevin Sheffield 2008-09-21T02:28:37Z 2008-09-21T03:15:21Z <p>I am about to be moving and working remotely full time. Right now we use Yugma and Skype for developer conferencing and showing the desktop, but we do not pay for Yugma so there is no ability to grant control. Before I recommend anything that is not free, what are the best options for apps that allow you to share your desktop with multiple other people and also have the ability to grant control of your desktop.</p> <p>I personally only need to worry about the software working on XP/Vista but feel free to put any options here, did a search and nothing came up about this particular topic so hopefully it can be a good place for everyone to come to.</p> http://stackoverflow.com/questions/109810/database-choice-for-a-c-2008-front-end/109819#109819 0 Answer by Kevin Sheffield for Database Choice for a C# 2008 front end Kevin Sheffield 2008-09-20T23:55:17Z 2008-09-20T23:55:17Z <p>I know using mssql you can pick between different connection strings for all of your db calls, just do something like</p> <p>Command.Connection = GetMyConnectionWithWhateverLogicINeed();</p> http://stackoverflow.com/questions/109429/what-is-the-easiest-way-for-a-non-programmer-to-learn-the-basics-of-iphone-app-cr/109450#109450 2 Answer by Kevin Sheffield for What is the easiest way for a non-programmer to learn the basics of iPhone App creation? Kevin Sheffield 2008-09-20T21:19:16Z 2008-09-20T21:19:16Z <p><a href="http://developer.apple.com/iphone/" rel="nofollow">http://developer.apple.com/iphone/</a> </p> <p>They have some pretty basic apps and some good articles.</p> http://stackoverflow.com/questions/109409/what-are-the-key-strengths-of-asp-net-webforms/109433#109433 0 Answer by Kevin Sheffield for What are the key strengths of ASP.NET Webforms? Kevin Sheffield 2008-09-20T21:16:52Z 2008-09-20T21:16:52Z <p>Ease of use to get something simple done</p> http://stackoverflow.com/questions/107329/i-need-populate-a-repeater-with-pseudo-related-data/107338#107338 2 Answer by Kevin Sheffield for I need populate a repeater with pseudo-related data Kevin Sheffield 2008-09-20T06:05:22Z 2008-09-20T06:05:22Z <p>That is how I usually go about it, bind on the main object and deal with the details in the ItemDataBound.</p> http://stackoverflow.com/questions/107249/the-attention-deficit-programmer-tips-for-staying-on-task/107260#107260 3 Answer by Kevin Sheffield for The Attention Deficit Programmer - Tips for staying on task? Kevin Sheffield 2008-09-20T05:36:37Z 2008-09-20T05:58:25Z <p><a href="http://www.43folders.com/" rel="nofollow">http://www.43folders.com</a> Get tips from there.<br /> A few things I have done in my workday is close Outlook for 2 hour spans, close the door and/or put on headphones. Try to have a clear idea of what you want to do during that 2 hours, and just do it.</p> http://stackoverflow.com/questions/107264/how-often-to-commit-changes-to-source-control/107271#107271 9 Answer by Kevin Sheffield for How often to commit changes to source control ? Kevin Sheffield 2008-09-20T05:39:53Z 2008-09-20T05:52:08Z <p>I personally commit every logical group of code that is finished/stable/compiles and try not to leave the day without committing what I did that day.</p> http://stackoverflow.com/questions/102833/how-do-i-use-asp-net-with-visual-studio-2008/102875#102875 1 Answer by Kevin Sheffield for How do I use ASP.NET with Visual Studio 2008 Kevin Sheffield 2008-09-19T15:29:15Z 2008-09-19T15:29:15Z <p>I would develop your website locally and ftp it to your godaddy website after or use the publish website feature in VS</p> http://stackoverflow.com/questions/102697/we-cant-do-agile-because/102765#102765 0 Answer by Kevin Sheffield for We can't do agile because... Kevin Sheffield 2008-09-19T15:22:13Z 2008-09-19T15:22:13Z <p>Because it involves learning a billion new practices.</p> <p>Yes there are many facets to what is generally called "Agile Development" but your company can still get plenty of benefit just by implementing pieces of it. Just don't only implement the easy ones for laziness sake, implement the ones that help in the areas your company is having problems with.</p> http://stackoverflow.com/questions/102207/training-courses-for-web-development/102700#102700 0 Answer by Kevin Sheffield for Training courses for web development. Kevin Sheffield 2008-09-19T15:17:42Z 2008-09-19T15:17:42Z <p><a href="http://www.jpboodhoo.com/training.oo" rel="nofollow">http://www.jpboodhoo.com/training.oo</a></p> <p>JP's Nothing but Dot Net Boot Camp, but only if they are serious about learning.</p> http://stackoverflow.com/questions/92257/programmers-food/92358#92358 0 Answer by Kevin Sheffield for programmer's food Kevin Sheffield 2008-09-18T13:07:21Z 2008-09-18T13:07:21Z <p>I like to have a Killian's </p> http://stackoverflow.com/questions/92225/what-are-the-best-resources-for-design-patterns-and-their-uses/92346#92346 0 Answer by Kevin Sheffield for What are the best resources for design patterns and their uses? Kevin Sheffield 2008-09-18T13:06:13Z 2008-09-18T13:06:13Z <p>I would go with the Gang of Four's Design Patterns book myself</p> http://stackoverflow.com/questions/86562/what-is-missing-in-the-visual-studio-express-editions/86598#86598 0 Answer by Kevin Sheffield for What is "missing" in the Visual Studio Express Editions? Kevin Sheffield 2008-09-17T19:18:56Z 2008-09-17T19:18:56Z <p>I think in 2008 the express editions do not have the built in Testing features for one.</p> http://stackoverflow.com/questions/86103/books-and-tutorials-for-beginners-in-java-and-php/86140#86140 0 Answer by Kevin Sheffield for Books and tutorials for beginners in Java and PHP Kevin Sheffield 2008-09-17T18:25:55Z 2008-09-17T18:25:55Z <p>change your question subject to be your question. Like "Recommend some good beginning PHP and Java books". </p> http://stackoverflow.com/questions/86036/is-stack-overflow-a-good-place-for-finding-top-notch-developers/86086#86086 0 Answer by Kevin Sheffield for Is Stack Overflow a good place for finding top-notch developers? Kevin Sheffield 2008-09-17T18:19:31Z 2008-09-17T18:19:31Z <p>I really hope we don't start having recruiters and crap in here. If you are looking for developers, put something on a job board and learn to interview better if you are worried about getting bad developers. I would like to enjoy being apart of this community and not be annoyed by recruiters and such.</p> http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code Comment by Kevin Sheffield on Why do I need an IoC container as opposed to straightforward DI code? Kevin Sheffield 2009-10-07T17:24:04Z 2009-10-07T17:24:04Z @Vadim, good to hear. I guess by Joel's standard your team is full of geniuses and I envy you hah! http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code Comment by Kevin Sheffield on Why do I need an IoC container as opposed to straightforward DI code? Kevin Sheffield 2009-10-07T17:16:23Z 2009-10-07T17:16:23Z just adding a comment since it seems you are looking for reasons to use IoC mainly; but something else needs to be said about your issue. You cannot write your code to the level of the worse person on your team or for fear that they wont want to learn. You have a responsibility not just to being a professional but also to your future to grow and your team should not hold you back. http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420 Comment by Kevin Sheffield on Why do I need an IoC container as opposed to straightforward DI code? Kevin Sheffield 2009-10-07T16:03:56Z 2009-10-07T16:03:56Z I don't know why you guys are questioning Joel. He knows what is going on in our heads, the dude is like Santa Claus or something. He knows we can't understand IoC and more than we can put our pants on in the morning without help. Thank you Joel for reminding me how dumb I am, I was getting way too full of myself. http://stackoverflow.com/questions/154155/home-proxy-server Comment by Kevin Sheffield on Home proxy server Kevin Sheffield 2008-09-30T17:54:30Z 2008-09-30T17:54:30Z removed the offtopic and not-programming tags because they are silly, the current tags and subject do a fine job of representing the question http://stackoverflow.com/questions/114950/how-do-you-verify-the-work-and-experience-level-of-consultants Comment by Kevin Sheffield on How do you verify the Work and Experience level of Consultants? Kevin Sheffield 2008-09-22T13:56:35Z 2008-09-22T13:56:35Z @Florian: Then move on to the next question. http://stackoverflow.com/questions/110052/good-desktop-sharing-apps/110064#110064 Comment by Kevin Sheffield on Good desktop sharing apps Kevin Sheffield 2008-09-21T02:36:40Z 2008-09-21T02:36:40Z hah, I actually did see that post and that is what spurred me to ask for other's opinions too. lots of other good info in that post as well. http://stackoverflow.com/questions/107329/i-need-populate-a-repeater-with-pseudo-related-data/107365#107365 Comment by Kevin Sheffield on I need populate a repeater with pseudo-related data Kevin Sheffield 2008-09-20T06:45:19Z 2008-09-20T06:45:19Z sounds like a repeater inside a repeater? http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs Comment by Kevin Sheffield on What are the best programming and development related Blogs? Kevin Sheffield 2008-09-17T01:48:38Z 2008-09-17T01:48:38Z i dont think saying 1 per answer is a good idea, this list is going to get long and full of duplicates because people will be answering this thing 10 times each.