User BBetances - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T19:25:02Zhttp://stackoverflow.com/feeds/user/53599http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/523220/awesome-visual-studio-macros5Awesome Visual Studio MacrosBBetances2009-02-07T05:41:33Z2009-10-27T20:48:08Z
<p>For a small community discussion, what are some essential Visual Studio macros you guys use? I just started learning about them, and want to hear what some of you guys can't live without.</p>
http://stackoverflow.com/questions/1204732/having-an-issue-understanding-why-nerddinner-mvc-is-returning-an-error2Having an issue understanding why NerdDinner MVC is returning an errorBBetances2009-07-30T06:10:46Z2009-08-01T02:32:01Z
<p>So I am following ScottGu's NerdDinner tutorials, and am having some trouble wrapping my head around this error. I am trying to implement CRUD, so at first, while editing data, I started with this code:</p>
<pre><code> public ActionResult Edit(int id)
{
Dinner dinner = dinnerRepository.GetDinner(id);
return View(dinner);
}
</code></pre>
<p>which displays the Edit View properly, and gives me fields to edit my data. Now, when I continue on and my Edit action turns into this:</p>
<pre><code> [AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, FormCollection formValues)
{
Dinner dinner = dinnerRepository.GetDinner(id);
UpdateModel(dinner);
dinnerRepository.Save();
return RedirectToAction("Details", new { id = dinner.DinnerID });
}
</code></pre>
<p>I return a 404 error. Apparently the Edit view cannot be found. I am having an extremely hard time understanding why this is happening. I even tried to copy the exact syntax (which I don't like to do.) but no luck. Am I missing something that obvious?</p>
<p>EDIT: I happens as soon as I add this line:</p>
<p>[AcceptVerbs(HttpVerbs.Post)]</p>
<p>maybe that will help?</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1192756#11927565Answer by BBetances for What non-programming books should programmers read?BBetances2009-07-28T08:45:02Z2009-07-29T20:27:33Z<h2><a href="http://en.wikipedia.org/wiki/The%5FSingularity%5FIs%5FNear" rel="nofollow">The Singularity Is Near</a></h2>
<p>by Ray Kurzweil</p>
<p><img src="http://geopolicraticus.files.wordpress.com/2009/02/the_singularity_is_near.jpg" width="200"></p>
<p>Surprised there hasn't been as many readers of this book as I initially thought. This book is about the Singularity, how AI will play into our future, and what we can do to be one with it. It challenges religion (please don't start any wars over it) and how ultra-intelligence will integrate with our race. Truly an amazing piece of literature, and so far I'm only about 100 pages in. great read if you want to think more "exponentially" and less "linearly".</p>
http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/1190141#11901410Answer by BBetances for Common programming mistakes for .NET developers to avoid?BBetances2009-07-27T19:30:57Z2009-07-27T19:30:57Z<p>not catching any errors at all, or handling them wrong. I know some guys who will write whole programs and not catch any errors, then wonder why the s*** crashes. Maybe the bigger mistake is not knowing your development language thoroughly enough.</p>
http://stackoverflow.com/questions/523163/stairstepping-piecharts-with-aspchart-control0Stairstepping piecharts with asp:chart controlBBetances2009-02-07T04:57:12Z2009-06-08T16:00:03Z
<p>I was perusing the asp.net chart control's sample website, and came across something in the pie chart gallery. There was 3 pie charts, "stair stepped" on top of each other. I starting using this control for a financial services application, and would like to replicate this effect. It looks like this:</p>
<p><img src="http://www.freeimagehosting.net/uploads/87a5caabca.png" alt="3d Stair stepped Pie Chart" /></p>
<p>I'd post some code on what I've accomplished so far, but I have no idea where to start with this. I'm guessing maybe I'd have to create the 3 charts, and offset their axes, am I off base here? Any help would be appreciated. </p>
http://stackoverflow.com/questions/526679/as-a-programmer-how-do-you-deal-with-carpal-tunnel0As a programmer, how do you deal with Carpal Tunnel? [closed]BBetances2009-02-08T23:44:15Z2009-03-15T01:48:17Z
<h3>Duplicate of: <a href="http://stackoverflow.com/questions/203303/how-do-you-beat-rsi">How do you beat RSI?</a></h3>
<p><hr /></p>
<p>As a programmer, the prospect of having, or getting carpal tunnel syndrome is very high. My doctor recently diagnosed me with this. I'm 22 years old. It seems like a young age to develop such a disease, but I can honestly say (with pride, I might add) that I've spent atleast 1/4 of my life typing on a keyboard. </p>
<p>There are thousands of users on this site, and we all have on thing in common: banging away at the keys. So I'm sure there are at least a few hundred people here with this problem. I'm wondering; How do you, as a programmer, deal with such an issue? I use a Microsoft Natural keyboard, and it's OK for the hourly work I do. When the day is done though, I often get numbness in my left hand and a pain in the back of my upper arm. I've been perscribed some drugs, and the effects of it are not known, yet. </p>
<p>Do you have any suggestions on how I can alter my way of working or things I can do to help ease the progression of this problem? Any help would be greatly appreciated.</p>
<p>PS: I wouldn't close this thread. The effects of programming on the body are definitely part of our careers and lives. Any information for others on how to prevent this issue would also be appreciated.</p>
http://stackoverflow.com/questions/593549/php-mysql-simple-connection-wont-work1PHP/MySQL simple connection won't work.BBetances2009-02-27T04:44:50Z2009-02-27T04:56:48Z
<p>I'm hosting a website on Zymic (free host) that utilizes MySQL. I opened an account, and wrote the SIMPLEST function to connect to the DB. It looks like this:</p>
<pre><code><?php
$conn = mysql_connect("uuuq.com","paulasplace_sudo","mypassword");
if(!$con)
{
die("Could not connect: " . mysql_error());
}
else
{
echo("mysql connected successfully!");
}
?>
</code></pre>
<p>but it throws this error:</p>
<p>Warning: mysql_connect() [function.mysql-connect]: Lost connection to MySQL server at 'reading initial communication packet', system error: 111 in /www/uuuq.com/p/a/u/paulasplace/htdocs/index.php on line 9
Could not connect: Lost connection to MySQL server at 'reading initial communication packet', system error: 111</p>
<p>Any ideas what might be wrong?</p>
http://stackoverflow.com/questions/499955/maskededitvalidator-displaymoney-doesnt-show-up-in-composite-control0MaskedEditValidator DisplayMoney doesn't show up in Composite ControlBBetances2009-02-01T01:05:59Z2009-02-26T18:15:14Z
<p>I'm creating a simple composite control that has AJAX functionality. When trying to implement a MaskedEditValidator, the DisplayMoney property doesn't work. The MaskedEdit renders, without the dollar sign attached. Any ideas? Here's my code:</p>
<pre><code>protected override void OnInit(EventArgs e)
{
base.OnInit(e);
priceTextbox.ID = this.ID + "_price";
quantityTextbox.ID = this.ID + "_quantity";
timeTextbox.ID = this.ID + "_time";
submitButton.ID = this.ID + "_submit";
submitButton.Text = "Submit";
priceMask.TargetControlID = priceTextbox.ClientID.ToString();
priceMask.ID = priceMask.TargetControlID.ToString() + "_extender";
priceMask.BehaviorID = "priceMaskExtender";
priceMask.Mask = "99.99";
priceMask.DisplayMoney = MaskedEditShowSymbol.Left;
}
</code></pre>
http://stackoverflow.com/questions/400382/how-does-a-good-developer-keep-from-creating-code-with-a-high-bus-hit-factor/574829#5748290Answer by BBetances for How does a good developer keep from creating code with a high bus hit factor?BBetances2009-02-22T12:21:48Z2009-02-22T12:21:48Z<p>I think this should be rephrased. A good SINGLE developer shouldn't care about a bus factor. If his project dies, oh well. A good TEAM on the other hand, should have a very low bus factor.</p>
http://stackoverflow.com/questions/568428/how-to-come-out-of-a-bad-interview/568440#5684402Answer by BBetances for How to come out of a bad interview? BBetances2009-02-20T05:51:01Z2009-02-20T05:51:01Z<p>One thing I wouldnt do is find the interviewer on FaceBook, and add him as a friend. I lost a GOOD interview like that. I also would not hesitate to email him and ask him/her if they are interested, and if not, move right on.</p>
<p>EDIT: Also, don't be afraid to ask what you did wrong at the interview. Alot of interviews will be willing to say, "I cant hire you because ___".</p>
http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/561008#5610081Answer by BBetances for Best IT/Programming/Technology related AcronymBBetances2009-02-18T13:16:21Z2009-02-18T13:16:21Z<p>WWJD?</p>
<p>JWRTFM!</p>
<p>never gets old.</p>
http://stackoverflow.com/questions/3337/what-programming-language-do-you-wish-would-catch-on/554490#5544900Answer by BBetances for What programming language do you wish would catch on?BBetances2009-02-16T20:43:53Z2009-02-16T20:43:53Z<p>I'd like to see Delphi/Pascal catch on a bit more in academia.</p>
http://stackoverflow.com/questions/550371/plotting-with-c/550387#5503871Answer by BBetances for Plotting with C#BBetances2009-02-15T05:46:58Z2009-02-15T05:46:58Z<p>I starting using the new ASP.NET Chart control a few days ago, and it's absolutely amazing in its capabilities.</p>
<p>Here is the link.</p>
<p>EDIT: This is obviously only if you using ASP.NET. Not sure about WinForms.</p>
http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/550385#5503850Answer by BBetances for Practical non-image based CAPTCHA approaches?BBetances2009-02-15T05:44:16Z2009-02-15T05:44:16Z<p>How about just using ASP.NET AJAX NoBot? Seems to work DECENTLY for me. Not awesomely great, but decently.</p>
http://stackoverflow.com/questions/548793/a-good-tutorial-on-creating-a-php-forum-from-scratch/548796#5487962Answer by BBetances for a good tutorial on creating a php forum from scratchBBetances2009-02-14T09:03:13Z2009-02-14T09:03:13Z<p>I wouldn't. I would just rip apart PHPbb, or use that for what you want to do. As Jeff Atwood said; Don't reinvent the wheel unless you want to know more about it.</p>
http://stackoverflow.com/questions/548661/software-engineer-developer-programmer-just-a-name/548679#5486791Answer by BBetances for Software Engineer, Developer, Programmer - Just a name?BBetances2009-02-14T07:17:53Z2009-02-14T07:17:53Z<p>I've always been partial to "Software Architect"</p>
<p>Everyone sees it differently though. As long as your good at what you do, who cares about a job title? I used to know a guy who was a janitor, but preferred to call himself a "Sanitation Technician".</p>
http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/538187#5381871Answer by BBetances for Are there any famous one-man-army programmers?BBetances2009-02-11T18:41:21Z2009-02-11T18:41:21Z<p>Didier Dambrin: Original creator of FruityLoops. Written in Delphi.</p>
http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/534758#5347580Answer by BBetances for Why is good UI design so hard for some Developers?BBetances2009-02-10T23:28:10Z2009-02-10T23:28:10Z<p>I think the reason we can't design UIs is because we are perfectionists and just cant decide when good enough is good enough. I know I personally can't stand designing UI because I am always doubting myself and saying, "no, that's not good enough."</p>
http://stackoverflow.com/questions/534675/can-i-have-the-code-editor-for-c-in-visual-studio-2008-show-a-line-separating-me/534740#5347401Answer by BBetances for Can I have the Code Editor for C# in Visual Studio 2008 show a line separating methods?BBetances2009-02-10T23:22:37Z2009-02-10T23:22:37Z<p>Or use #region to separate any regions of code. For example, I separate overrides, methods, properties, events and objects, but you could wrap your methods in #region to clearly separate each one (and collapse them when not in use.)</p>
<p>This isn't what you asked for, but it is a great alternative. </p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/525201#52520142Answer by BBetances for What is your best programmer joke?BBetances2009-02-08T05:27:22Z2009-02-08T05:27:22Z<p>A programmer is walking along a beach and finds a lamp. He rubs the lamp, and a genie appears. “I am the most powerful genie in the world. I can grant you any wish, but only one wish.” </p>
<p>The programmer pulls out a map, points to it and says, “I’d want peace in the Middle East.” </p>
<p>The genie responds, “Gee, I don’t know. Those people have been fighting for millenia. I can do just about anything, but this is likely beyond my limits.” </p>
<p>The programmer then says, “Well, I am a programmer, and my programs have lots of users. Please make all my users satisfied with my software and let them ask for sensible changes.”</p>
<p>At which point the genie responds, “Um, let me see that map again.” </p>
http://stackoverflow.com/questions/524837/32-bit-build-server-and-64-bit-production-server-for-net-web-apps/524858#524858-2Answer by BBetances for 32-bit Build Server and 64-bit Production Server for .NET Web AppsBBetances2009-02-08T00:32:31Z2009-02-08T00:32:31Z<p>In my experience, compiling an application with a 32-bit machine and deploying it to a 64-bit will cause the app to run slow. Might be different for web apps, though.</p>
http://stackoverflow.com/questions/383975/what-payment-structure-do-you-use-for-small-projects/524601#5246010Answer by BBetances for What payment structure do you use for small projects?BBetances2009-02-07T21:13:05Z2009-02-07T21:13:05Z<p>Half up front, half later. Easier that way.</p>
http://stackoverflow.com/questions/523172/what-is-the-best-cheapest-php-mysql-domain-hosting/523180#5231801Answer by BBetances for What is the best/cheapest PHP/MySQL domain hosting?BBetances2009-02-07T05:04:42Z2009-02-07T05:04:42Z<p>Well, for .NET, I have discountasp.net, and they aren't bad. I pay $70/3 months, with a SQL server. It's decent, shared, and pretty fast. Good for a website not getting much traffic, like a small business website or online portfolio (which is what I use it for).</p>
http://stackoverflow.com/questions/520613/well-respected-developer-blogs-written-by-non-famous-people/521283#5212830Answer by BBetances for Well-respected developer blogs written by non-famous peopleBBetances2009-02-06T17:34:57Z2009-02-06T17:34:57Z<p>Scott Hanselman is on here somewhere:</p>
<p><a href="http://www.hanselman.com/blog/" rel="nofollow">http://www.hanselman.com/blog/</a></p>
http://stackoverflow.com/questions/519462/is-it-posible-to-run-ws-iis-on-unix/519532#5195321Answer by BBetances for is it posible to run WS IIS on UNIX ?BBetances2009-02-06T08:18:44Z2009-02-06T08:18:44Z<p>I must add that some proprietary classes may not be available. Only .NET classes that are defined by ECMA, and whatever the Mono project implemented are available.</p>
http://stackoverflow.com/questions/517480/code-reusability-appcode-or-bin-or-usercontrols/517684#5176841Answer by BBetances for Code reusability - App_Code or BIN or UserControls?BBetances2009-02-05T20:08:00Z2009-02-05T20:08:00Z<p>Every base has been covered already, but I really hate bad practices like this. If the guy can't simply change to a state server to fix the problem that he has, then he doesn't really deserve the help. What would happen if he put his class in the root folder of the project and compiled it independently? Either way, I would think this guy is a bad developer for not thinking about scalability, and not planning for downtime. What I'm guessing is he doesn't have a development environment available. Tsk tsk tsk. </p>
<p>As an answer to your question, as stated by everyone else, put the code in a user control, and document well.</p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/510458#5104580Answer by BBetances for Keyboard for programmersBBetances2009-02-04T08:02:05Z2009-02-04T08:02:05Z<p>Wireless 3000 for me; feels good, nice and quite. I hear the 4000 is pretty sweet though...</p>
http://stackoverflow.com/questions/509810/how-can-i-implement-live-chat-on-website/509856#5098561Answer by BBetances for How can I implement live chat on website?BBetances2009-02-04T02:20:32Z2009-02-04T02:20:32Z<p>This is very easily accomplished with AJAX. I hate to just hand out code, but this is from a book I read last year, that did just what you want.</p>
<pre><code>using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Collections.Generic;
public partial class GroupChat : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ManageUI();
RefreshConversation();
}
void ManageUI()
{
if (GetUserID() == null)
{
// if this is the first request, then get the user's ID
TextBoxMessage.Enabled = false;
TextBoxConversation.Enabled = false;
ButtonAddYourMessage.Enabled = false;
ButtonSubmitID.Enabled = true;
TextBoxUserID.Enabled = true;
}
else
{
// if this is the first request, then get the user's ID
TextBoxMessage.Enabled = true;
TextBoxConversation.Enabled = true;
ButtonAddYourMessage.Enabled = true;
ButtonSubmitID.Enabled = false;
TextBoxUserID.Enabled = false;
}
}
void RefreshConversation()
{
List<string> messages = (List<string>)Cache["Messages"];
if (messages != null)
{
string strConversation = "";
int nMessages = messages.Count;
for (int i = nMessages - 1; i >= 0; i--)
{
string s;
s = messages[i];
strConversation += s;
strConversation += "\r\n";
}
TextBoxConversation.Text =
strConversation;
}
}
protected void ButtonAddYourMessage_Click(object sender, EventArgs e)
{
// Add the message to the conversation...
if (this.TextBoxMessage.Text.Length > 0)
{
List<string> messages = (List<string>)Cache["Messages"];
if (messages != null)
{
this.TextBoxConversation.Text = "";
string strUserID = GetUserID();
if (strUserID != null)
{
messages.Add(strUserID +
": " +
TextBoxMessage.Text);
RefreshConversation();
TextBoxMessage.Text = "";
}
}
}
}
protected void ButtonSubmitID_Click(object sender, EventArgs e)
{
Session["UserID"] =
TextBoxUserID.Text;
ManageUI();
}
protected string GetUserID()
{
string strUserID =
(string)this.Session["UserID"];
return strUserID;
}
}
</code></pre>
<p>Rudimentary, but it works. There are 2 textboxes, 2 buttons, and a updatepanel. The messages are held in a List created in Global.asax, and stored in state.</p>
http://stackoverflow.com/questions/502311/how-do-i-make-a-custom-display-for-a-jquery-datepicker/502324#5023241Answer by BBetances for How do I make a custom display for a jQuery datepicker?BBetances2009-02-02T06:02:57Z2009-02-02T06:02:57Z<p>here is a plugin for you</p>
<p><a href="http://marcgrabanski.com/pages/code/jquery-ui-datepicker" rel="nofollow">http://marcgrabanski.com/pages/code/jquery-ui-datepicker</a></p>
http://stackoverflow.com/questions/500058/writing-blackberry-applications/500112#5001121Answer by BBetances for Writing Blackberry ApplicationsBBetances2009-02-01T03:23:47Z2009-02-01T03:28:07Z<p>They have their own SDK too. Search for it at blackberry.com. The language is Java. I don't know much about it. I have a BlackBerry so it's sad, as a C# developer, that I don't develop apps for the CrackBerry. Should be very straight forward, though.</p>
http://stackoverflow.com/questions/1204732/having-an-issue-understanding-why-nerddinner-mvc-is-returning-an-error/1204791#1204791Comment by BBetances on Having an issue understanding why NerdDinner MVC is returning an errorBBetances2009-07-30T06:38:49Z2009-07-30T06:38:49Zthat's exactly what I did. I should have read the tutorial a bit closer when he said to overload the action. Thanks everyone for the help.http://stackoverflow.com/questions/1204732/having-an-issue-understanding-why-nerddinner-mvc-is-returning-an-error/1204784#1204784Comment by BBetances on Having an issue understanding why NerdDinner MVC is returning an errorBBetances2009-07-30T06:33:18Z2009-07-30T06:33:18Zworked. Thanks a bunch. Can't believe I didn't catch that in the documentation.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/38443#38443Comment by BBetances on What non-programming books should programmers read?BBetances2009-07-28T08:36:44Z2009-07-28T08:36:44Zvery good choicehttp://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/382767#382767Comment by BBetances on Common programming mistakes for .NET developers to avoid?BBetances2009-07-27T19:33:01Z2009-07-27T19:33:01ZI personally hate the whole underscore thing. Hungarian notation I can live with for asp.net controls like Bob said. http://stackoverflow.com/questions/593549/php-mysql-simple-connection-wont-work/593562#593562Comment by BBetances on PHP/MySQL simple connection won't work.BBetances2009-02-27T05:00:30Z2009-02-27T05:00:30ZI cant believe i missed that. So stupid.http://stackoverflow.com/questions/593549/php-mysql-simple-connection-wont-work/593561#593561Comment by BBetances on PHP/MySQL simple connection won't work.BBetances2009-02-27T04:52:52Z2009-02-27T04:52:52Zi just tried that, and i get no error. Just "Could not connect: "
http://stackoverflow.com/questions/591281/which-language-would-you-recommend-for-me-to-build-a-webportal/591301#591301Comment by BBetances on Which language would you recommend for me to build a webportal?BBetances2009-02-26T16:27:09Z2009-02-26T16:27:09ZFacebook is in PHP too. I would suggest C#, if you already program with it. Not too hard to learn ASP.NET.http://stackoverflow.com/questions/250037/gridview-sorting-sortdirection-always-ascending/415759#415759Comment by BBetances on Gridview sorting: SortDirection always AscendingBBetances2009-02-26T14:13:22Z2009-02-26T14:13:22Zyou can use a switch statement instead, too.http://stackoverflow.com/questions/262657/the-coolest-server-names/505579#505579Comment by BBetances on The Coolest Server NamesBBetances2009-02-22T06:35:16Z2009-02-22T06:35:16Z+1 for the N-Gage being a disaster. That made me LOLhttp://stackoverflow.com/questions/550371/plotting-with-c/550387#550387Comment by BBetances on Plotting with C#BBetances2009-02-22T02:58:35Z2009-02-22T02:58:35Zsorry i think i edited it out. thanks C.http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/165639#165639Comment by BBetances on Best IT/Programming/Technology related AcronymBBetances2009-02-18T13:17:23Z2009-02-18T13:17:23ZI got a biker friend that has that tattooed on his arm.http://stackoverflow.com/questions/554243/how-are-the-facebook-chat-windows-implemented/554283#554283Comment by BBetances on How are the facebook chat windows implemented?BBetances2009-02-16T20:33:29Z2009-02-16T20:33:29Zsince its the same picture, im guessing he go the question from that site...http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/49124#49124Comment by BBetances on Practical non-image based CAPTCHA approaches?BBetances2009-02-15T05:43:37Z2009-02-15T05:43:37Zhow can a blind person answer those?http://stackoverflow.com/questions/548661/software-engineer-developer-programmer-just-a-name/548679#548679Comment by BBetances on Software Engineer, Developer, Programmer - Just a name?BBetances2009-02-14T08:22:20Z2009-02-14T08:22:20ZI think it depends on the level of depth you impart on your customers. I work for myself. I design software from the ground up, starting with user requirements, including UI. therefore, I am a Software Architect.http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/538207#538207Comment by BBetances on Are there any famous one-man-army programmers?BBetances2009-02-13T18:12:16Z2009-02-13T18:12:16Z+1: Civ IV was and still is the best video game i've ever played. Do you know it a V is coming out?