User Brian Warshaw - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T16:29:08Zhttp://stackoverflow.com/feeds/user/1344http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1761307/advice-needed-from-php-cake-php-expert/1763128#17631281Answer by Brian Warshaw for Advice needed from PHP/Cake PHP expertBrian Warshaw2009-11-19T13:00:16Z2009-11-19T13:00:16Z<p>Deceze gives good advice, though I disagree that REST is a core concept for learning PHP. You can author a perfectly successful web app that isn't using the concept at all, and I don't think that you'd be hurt by learning it along with a framework.</p>
<p>The rest of his advice is good, however, and, so that you aren't out there on your own just crawling the web, I heartily recommend PHP and MySQL for Dynamic Websites by Larry Ulman. It won't teach you (much) about OOP, but it will give you a very solid foundation in PHP and MySQL, as well as how the two play together. More importantly, you'll cover a lot of core programming concepts applied to practical examples in PHP. This book was fundamental in my development as a programmer, providing baby steps and advanced techniques that made it a lot easier for me to digest more complex topics later on.</p>
http://stackoverflow.com/questions/1499260/how-should-i-split-mvc-models-in-my-php-app/1499505#14995050Answer by Brian Warshaw for How should I split MVC models in my PHP app?Brian Warshaw2009-09-30T17:16:51Z2009-09-30T17:16:51Z<p>I would step back and look at your application apart from the database for a sec. If the database were never involved, what would your application look like? What would your classes be called? What sort of objects would you have? What would they do? Design your application and then decide how its data should be persisted.</p>
<p>What I'm driving towards, I think, is something more like the class-per-table design mentioned above, though I would turn it around and say it's table-per-class. Design your system, then figure out the best way to represent your data in the DB. Doctrine is a good system for doing this, but you can do it just fine with more manual database steps, as well.</p>
<p>And as for the overhead involved, it really depends on how many different classes you would be instantiating in each request. Yes, you could save overhead by using generic "fetcher" classes that don't really return objects at all (or that return objects that are hodge-podges of a bunch of should-be-separate-objects), but then the argument could be carried through to not using classes of any kind at all. There's definitely extra overhead whenever you use object-oriented programming of any kind, or function libraries, or anything else that you have to include. But the reason we don't have make single-file PHP sites is because the overhead incurred is bearable, and it's much more bearable than the developer overhead incurred by going the other way.</p>
http://stackoverflow.com/questions/1498201/quirky-winforms-font-behavior-on-mousehover0Quirky Winforms Font Behavior On MouseHoverBrian Warshaw2009-09-30T13:41:04Z2009-09-30T14:58:55Z
<p>So I'm working on a basic subclass of Label that supports editing. The editing part works fine--I insert a text box with no background color or border on click, commit changes on enter or loss of focus. </p>
<p>The little thing that's giving me trouble is related to some basic font styling. The label is to underline with the MouseHover event (like a hyperlink) and then lose the underline afterwards. Most of the time, it works, but occasionally, the MouseHover will cause the font to revert to the Winforms default--8pt sans-serif--instead of performing the operation.</p>
<p>Here's the event handler:</p>
<pre><code> void BWEditableLabel_MouseHover(object sender, EventArgs e)
{
_fontBeforeHover = Font;
Font hoverFont = new Font(
_fontBeforeHover.FontFamily.Name,
_fontBeforeHover.Size,
_fontBeforeHover.Style | FontStyle.Underline
);
Font = hoverFont;
}
</code></pre>
<p>Some of you may observe that the last line doesn't simply say:</p>
<p><code>Font = new Font(Font, Font.Style | FontStyle.Underline)</code></p>
<p>I tried that, and the problem came about. The current version before you was an attempt that I made to resolve the issue.</p>
http://stackoverflow.com/questions/1498201/quirky-winforms-font-behavior-on-mousehover/1498316#14983160Answer by Brian Warshaw for Quirky Winforms Font Behavior On MouseHoverBrian Warshaw2009-09-30T14:02:54Z2009-09-30T14:02:54Z<p>I think I solved it, though it feels like a bit of a patch instead of the cleanest solution. I did away with <code>_fontBeforeHover</code> and created <code>_originalFont</code>. I then overrode the <code>Font</code> property of the label and in the setter, set <code>_originalFont</code> to whatever the label is being set to. Then, in my <code>MouseHover</code> and <code>MouseLeave</code> events, I used a new method, <code>SetFont()</code> to change the font. Within <code>SetFont()</code>, I assign <code>base.Font</code> instead of using the overridden property. If I used the overridden property, I'd always be reassigning <code>_originalFont</code> to whatever I change the label's font to during the events.</p>
<p>Sure would be nice if I didn't need all that extra code, though :-)</p>
<p>I'm definitely open to more suggestions.</p>
http://stackoverflow.com/questions/1334302/nhibernate-sqlce-forever-lazy0NHibernate + SqlCE - Forever Lazy?Brian Warshaw2009-08-26T12:22:28Z2009-08-26T13:14:21Z
<p>I'm working on a Winforms app with NHibernate as my ORM layer. Everything is going well, but it doesn't seem that NHibernate is respecting my instructions to not use lazy loading.</p>
<p>Problem 1:</p>
<p>The app is a task list type of thing, and tasks can have child tasks. I'm representing these in a TreeView, so I need to first add nodes for top-level tasks, then check if those tasks have children, and move on. I can't see any way that I can check for children without making repeated hits to the database, even though I'm loading every task (regardless of parent or child status) with an initial call. At first I was looping through the Children property of each task, and I guess I can see why that would require a query for each; however, I attempted to optimize by looping through all tasks and checking for equality between a tasks parent and the task whose children I'm looking for, and that still hits the database each time around.</p>
<p>Problem 2 (perhaps the more easily solvable or answerable one):</p>
<p>The app supports attachments for tasks. When a project is selected and all of the tasks for that project are loaded, NHibernate is issuing a separate select query to get the attachment data, even though I have lazy set to false and fetch set to join.</p>
<p>So, am I misunderstanding how to set up my properties in my mapping files, or is this a limitation in SqlCe, or is it something else entirely?</p>
<p>Always grateful for the help,
Brian</p>
<p><strong>UPDATE</strong></p>
<p>I know that mapping definitions would be helpful, but I work for a large corporation and I don't want to post anything specific from the project.</p>
<p>I can abstractly tell you that there is a domain object for a Task, and that the ParentId field is the column used in the many-to-one element for the relationship between tasks. Additionally, the attachments relationship in the Task map is a set with a key column of TaskId and a one-to-many definition related to the class Attachment.</p>
<p>Hope that helps, sorry I can't post the maps.</p>
http://stackoverflow.com/questions/16501/what-is-a-lambda-function38What is a lambda (function)?Brian Warshaw2008-08-19T16:20:37Z2009-08-10T13:22:20Z
<p>Hey guys, I see this term being used a bit, and a Google search didn't quite yield the most clarity, so help me out: for a person without a comp-sci background, what is a lambda in the world of Computer Science?</p>
<p>UPDATE:</p>
<p>marxidad, thanks for the reply--it seems to be climbing up in everyone's favor, so I'll likely accept it soon. Do you have any "real-life" examples, possibly in a few languages (perhaps in one that doesn't use the lambda keyword, too)?</p>
http://stackoverflow.com/questions/22084/asp-net-aspxxx-controls-versus-standard-html4ASP.NET - asp:xxx Controls versus standard HTMLBrian Warshaw2008-08-22T11:18:07Z2009-07-24T20:22:58Z
<p>I'm getting into ASP.NET (C# - I know it doesn't matter for this particular question, but full disclosure and all that), and while I love that the <code>asp:</code>-style controls save me a lot of tedious HTML-crafting, I am often frustrated with certain behaviors. I encountered one last night when working with Master Pages: my <code><asp:BulletedList ID="nav"></code>, when converted into HTML, became <code><ul id="ct100_nav"></code>.</p>
<p>There are other issues--I noticed that when you auto-populate a DataGrid, it adds attributes to the resulting table that I don't necessarily want there.</p>
<p>I know that there is a certain amount of "convention over configuration" that you have to accept when you rely on a framework to take over some of your tedious duties, but the "conventions" in these cases aren't so much any established conventions, but rather unnecessary extras. I know <em>why</em> the ID adds the prefix, but I should be able to tweak and turn things like this off, especially since, as a bit of a web standards evangelist, I don't duplicated HTML id's in a single page anyway.</p>
<p>So the question here is for those ASP.NET devs more seasoned than I: in your experiences in developing and deploying apps, how do you leverage these controls? Do you find yourself resorting back to hard-coded HTML? Do you use a blend? I don't want to design my HTML around idiosyncratic quirks in these controls, but, if possible, I'd like to leverage them when possible. </p>
<p>What's a boy to do?</p>
http://stackoverflow.com/questions/1086713/in-net-can-i-detect-system-focus-events-c1In .NET, can I detect system focus events (C#)?Brian Warshaw2009-07-06T12:31:03Z2009-07-06T12:42:09Z
<p>Is it possible to determine when window focus changes at the system level? I'm writing a time-tracking application, and I'd like to be able to listen for application switching (so that I can begin logging time in a given application). I've poked around the Process class for a good hour here, and while I learned quite a few useful things, I didn't find what I was looking for. I suspect I'll need to use hooks, but it's difficult finding clear documentation on the process, let alone documentation specific to what I'm asking.</p>
http://stackoverflow.com/questions/1049855/c-access-getting-primary-keys-from-access-20030C# / Access Getting Primary Keys from Access 2003Brian Warshaw2009-06-26T15:44:29Z2009-06-27T13:16:13Z
<p>I'm using OleDb to interact with an Access database, and I'm trying to find out how to get the primary keys of each table, but in such a way that they are associated with the tables. In other words, I don't just want a flat list of the primary key column names--I want to be able to determine which table they belong to.</p>
<p>Any idea how to do this? I've used the <code>GetSchema()</code> method to get a table of tables, but that table's information does not appear to include primary keys (or any other indexes, for that matter).</p>
http://stackoverflow.com/questions/1049855/c-access-getting-primary-keys-from-access-2003/1049979#10499791Answer by Brian Warshaw for C# / Access Getting Primary Keys from Access 2003Brian Warshaw2009-06-26T16:13:13Z2009-06-26T16:13:13Z<p>Ok--did a little outputting of column names and got a better understanding of how the schema tables are related.</p>
<p>To do this, pass the string "Indexes" to the <code>GetSchema()</code> method. Each record in the index table contains both the table name and whether or not the index is the primary key.</p>
http://stackoverflow.com/questions/1044200/in-c-are-lamba-expressions-objects3In C#, are Lamba Expressions objects?Brian Warshaw2009-06-25T14:16:17Z2009-06-25T14:48:05Z
<p>In C#, are lambda expressions objects? If so, what sort of object are they?</p>
http://stackoverflow.com/questions/1044107/c-string-representation-of-method3C# String representation of methodBrian Warshaw2009-06-25T14:00:12Z2009-06-25T14:37:04Z
<p>Is there a way in .NET 3.0 (or earlier) to get a string representation of a method? I know that I can get an IL byte array from a MethodBody object, but I'm interested in getting a string that essentially represents the method body as it appears to my eyes in VS.</p>
<p>I've poked around in the CodeDom namespace to see if there was a way to convert methods to CodeMemberMethods at runtime, but I've come up dry so far.</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/21229/visual-web-developer-express-setting-document-root-for-dev-environment0Visual Web Developer (Express): Setting Document Root for Dev EnvironmentBrian Warshaw2008-08-21T21:28:20Z2009-04-08T21:28:08Z
<p>Hey--</p>
<p>I'm developing a site in Visual Web Dev Express, and when I run/debug, I'd like to be able to set my application's document root so that I can use safer paths, like "/css/style.css' instead of "css/style.css". How would I accomplish this?</p>
http://stackoverflow.com/questions/12656/php-mysqli-variable-parameter-result-binding-with-prepared-statements1PHP + MYSQLI: Variable parameter/result binding with prepared statements.Brian Warshaw2008-08-15T19:50:52Z2008-11-17T06:33:57Z
<p>In a project that I'm about to wrap up, I've written and implemented an object-relational mapping solution for PHP. Before the doubters and dreamers cry out "how on earth?", relax -- I haven't found a way to make late static binding work -- I'm just working around it in the best way that I possibly can.</p>
<p>Anyway, I'm not currently using prepared statements for querying, because I couldn't come up with a way to pass a variable number of arguments to the <code>bind_params()</code> or <code>bind_result()</code> methods. </p>
<p>Why do I need to support a variable number of arguments, you ask? Because the superclass of my models (think of my solution as a hacked-up PHP ActiveRecord wannabe) is where the querying is defined, and so the find() method, for example, doesn't know how many parameters it would need to bind.</p>
<p>Now, I've already thought of building an argument list and passing a string to eval(), but I don't like that solution very much -- I'd rather just implement my own security checks and pass on statements.</p>
<p>Does anyone have any suggestions (or success stories) about how to get this done? If you can help me solve this first problem, perhaps we can tackle binding the result set (something I suspect will be more difficult, or at least more resource-intensive if it involves an initial query to determine table structure).</p>
http://stackoverflow.com/questions/50303/persistent-db-connections-yea-or-nay5Persistent DB Connections - Yea or Nay?Brian Warshaw2008-09-08T18:01:11Z2008-11-10T19:09:27Z
<p>I'm using PHP's PDO layer for data access in a project, and I've been reading up on it and seeing that it has good innate support for persistant DB connections. I'm wondering when/if I should use them. Would I see performance benefits in a CRUD-heavy app? Are there downsides to consider, perhaps related to security?</p>
<p>If it matters to you, I'm using MySQL 5.x.</p>
http://stackoverflow.com/questions/11291/cocoa-best-way-to-capture-key-events-in-nstextview1Cocoa - best way to capture key events in NSTextView?Brian Warshaw2008-08-14T16:32:22Z2008-11-10T16:19:13Z
<p>Well? </p>
<p>I'm slowly learning Objective-C and Cocoa, and the only way I see so far to capture key events in Text Views is to use delegation, but I'm having trouble finding useful documentation and examples on how to implement such a solution. Can anyone point me in the right direction or supply some first-hand help? Thanks in advance!</p>
http://stackoverflow.com/questions/170697/php-get-problems-with-www-example-com-folder-fileid2-type-urls/170745#1707450Answer by Brian Warshaw for PHP $_GET problems with www.example.com/folder/file?id=2 type URLsBrian Warshaw2008-10-04T17:49:45Z2008-10-04T17:49:45Z<p>MrZebra's answer is the correct one. It will allow you to continue to use query string as you do at the end of a URL, and you don't have to anticipate its presence one way or the other.</p>
http://stackoverflow.com/questions/170730/best-way-to-use-sessions-with-mvc-and-oo-php/170742#1707421Answer by Brian Warshaw for Best way to use sessions with MVC and OO PHPBrian Warshaw2008-10-04T17:46:41Z2008-10-04T17:46:41Z<p>I've tried it a few ways, including using a static wrapper class to handle it, but I always come back to just using the superglobal array by itself. I still use a wrapper for authentication checks and other repetitive tasks, but, ultimately, it's just easier and less verbose for me to use the stock setup. </p>
http://stackoverflow.com/questions/13586/interpreted-languages-leveraging-the-compiled-language-behind-the-interpreter4Interpreted languages - leveraging the compiled language behind the interpreterBrian Warshaw2008-08-17T11:12:51Z2008-09-17T19:44:41Z
<p>If there are any language designers out there (or people simply in the know), I'm curious about the methodology behind creating standard libraries for interpreted languages. Specifically, what seems to be the best approach? Defining standard functions/methods in the interpreted language, or performing the processing of those calls in the compiled language in which the interpreter is written?</p>
<p>What got me to thinking about this was the SO question about a stripslashes()-like function in Python. My first thought was "why not define your own and just call it when you need it", but it raised the question: is it preferable, for such a function, to let the interpreted language handle that overhead, or would it be better to write an extension and leverage the compiled language behind the interpreter?</p>
http://stackoverflow.com/questions/49450/how-do-i-export-and-then-import-a-subversion-repo9How do I export (and then import) a Subversion repo?Brian Warshaw2008-09-08T10:50:39Z2008-09-15T18:36:31Z
<p>I'm just about wrapped up on a project where I was using a commercial SVN provider to store the source code. The web host the customer ultimately picked includes a repository as part of the hosting package, so, now that the project is over, I'd like to relocate the repository to their web host and discontinue the commercial account.</p>
<p>How would I go about doing this?</p>
http://stackoverflow.com/questions/38510/c-winforms-datagridview-sql-compact-negative-integer-in-primary-key-column1C# WinForms - DataGridView/SQL Compact - Negative integer in primary key columnBrian Warshaw2008-09-01T22:01:25Z2008-09-15T07:44:18Z
<p>I'm just getting dirty in WinForms, and I've discovered, through a lovely tutorial, the magic of dragging a database table onto the design view of my main form. So, all is lovely, I've got my DataGridView with all of the columns represented beautifully.</p>
<p>BUT...</p>
<p>When I run my application against this brand new, empty .sdf (empty save for the two tables I've created, which are themselves empty), I get a -1 in the column corresponding to my primary key/identity column whenever I try to create that first record.</p>
<p>Any idea why this might be happening? If it helps, the column is an <code>int</code>.</p>
http://stackoverflow.com/questions/58807/can-a-programmer-become-a-decent-graphic-designer/58850#588500Answer by Brian Warshaw for Can a Programmer Become a Decent Graphic Designer?Brian Warshaw2008-09-12T12:46:16Z2008-09-12T12:46:16Z<p>Most programmers may never have (and some would argue cannot acquire) the designer's eye for the aesthetic, but, at least when it comes to desktop (and a lot of web, too) development, you can align the aesthetic with a particular idiom (OS look, popular or admired web designs). The tricky part for programmers (and a lot of artistically talented people, too) is <em>interface design</em>, which has a lot less to do with being aesthetically pleasing than it does with being <em>easy to use</em>.</p>
<p>Think of the user first, not the cool features. That's the first step. Once you start down that path, it's all about observation and practice. See what works for you in applications that you use (web browsers and other tools that aren't necessarily programming tools), and try to figure out why it works so well. Just remember that the user interface is all your user will care about. Your user is language-agnostic, knows nothing of design patterns (I know I'm over-simplifying), and doesn't care about the breakthrough algorithm you've just written. If your application's merit doesn't shine through from the UI, it isn't going to shine much for your user. </p>
http://stackoverflow.com/questions/58482/ruby-get-a-variables-name/58830#588300Answer by Brian Warshaw for Ruby - Get a Variable's NameBrian Warshaw2008-09-12T12:35:59Z2008-09-12T12:35:59Z<p>OK, it DOES work in instance methods, too, and, based on your specific requirement (the one you put in the comment), you could do this:</p>
<pre><code>local_variables.each do |var|
puts var if (eval(var).class != Fixnum)
end
</code></pre>
<p>Just replace <code>Fixnum</code> with your specific type checking.</p>
http://stackoverflow.com/questions/58482/ruby-get-a-variables-name/58765#587650Answer by Brian Warshaw for Ruby - Get a Variable's NameBrian Warshaw2008-09-12T11:53:16Z2008-09-12T11:53:16Z<p>There's <code>Kernel::local_variables</code>, but I'm not sure that this will work for a method's local vars, and I don't know that you can manipulate it in such a way as to do what you wish to acheive.</p>
http://stackoverflow.com/questions/58463/preferred-operating-system-for-web-programmers-client-or-server/58619#586191Answer by Brian Warshaw for Preferred Operating System for web programmers - client or serverBrian Warshaw2008-09-12T10:24:19Z2008-09-12T10:24:19Z<p>It seems like the question is more about whether to use the server or client version <em>of the same OS</em>. So my answer is this: the client should be just fine. You can develop and test web applications of many flavors on client versions of Windows, OS X, and Linux. OS X and Linux obviously make Apache-based apps a little easier by coming with Apache pre-installed, but a download of XAMPP or WAMPP can quickly turn a Windows box into a solid development platform for LAMP applications, as well.</p>
<p>And if you're doing ASP.NET, your development tools (if you're using something in the Visual Studio line) have test server mechanisms built in.</p>
<p>So unless you have some other need for wanting the server version, I would stick with the client. It's less money, and you really don't need the server version.</p>
http://stackoverflow.com/questions/55414/asp-net-mvc-versus-the-zeitgeist/55648#556481Answer by Brian Warshaw for ASP.NET MVC versus the ZeitgeistBrian Warshaw2008-09-11T01:36:22Z2008-09-11T01:36:22Z<p>If you're already programming in the .NET idiom, it's pretty easy to pick up on a lot of what's going on in the MVC Framework. Rails, on the other hand, can be pretty easy to pick up (granted, at a basic level) if you've never set eyes on Ruby before you start.</p>
<p>It seems like you're talking about quality-as-MVC, though, and it looks to me like both frameworks (can't speak for Zend) do a very good job of separating the concerns. </p>
http://stackoverflow.com/questions/55060/php-function-argument-error-suppression-empty-isset-emulation/55133#551330Answer by Brian Warshaw for Php function argument error suppression, empty() isset() emulationBrian Warshaw2008-09-10T19:49:12Z2008-09-10T19:49:12Z<p>Sean, you could do:</p>
<pre><code>$result = ($func_result = doLargeIntenseFunction()) ? $func_result : 'no result';
</code></pre>
<p>EDIT:</p>
<blockquote>
<p>I'm sure there could be a great
discussion on ternary operators vrs
function calls. But the point of this
question was to see if we can create a
function that won't throw an error if
a non existent value is passed in
without using the '@'</p>
</blockquote>
<p>And I told you, check it with <code>isset()</code>. A ternary conditional's first part doesn't check null or not null, it checks <code>true</code> or <code>false</code>. If you try to check <code>true</code> or <code>false</code> on a null value in PHP, you get these warnings. <code>isset()</code> checks whether a variable or expression returns a null value or not, and it returns a boolean, which can be evaluated by the first part of your ternary without any errors.</p>
http://stackoverflow.com/questions/54815/selling-yourself19Selling YourselfBrian Warshaw2008-09-10T17:42:54Z2008-09-10T18:53:54Z
<p>I realize that this might be counted as subjective by some, and, as such, downvotes might ensue; I don't mind.</p>
<p>I would hope that some might actually provide links to references and detailed analysis. Anyway, on to the question.</p>
<p>I have an interview on Friday. I had one two weeks ago that went really well from a personal perspective, but I ultimately didn't get the job on experience. This approaching interview is more aligned with my experience and skill set, and yet I still worry that the experience monkey is firmly attached to my back. </p>
<p>I have a nice, mature set of codebases that I can show. I have examples in the wild that I can show, as well. But how do I sell my biggest asset—my ability to learn rapidly and effectively? Perhaps a better (more abstract) question is how do you convey the intangibles? How do I come across as anything other than an ambitious delusional when it comes to sharing what can't be represented (or proven) on paper?</p>
http://stackoverflow.com/questions/54864/how-well-does-net-scale/54869#5486911Answer by Brian Warshaw for How well does .NET scale?Brian Warshaw2008-09-10T18:01:43Z2008-09-10T18:01:43Z<p>Unfortunately, there are so many other issues that could cause a project to go down as it scales, that you have a lot to wade through before you can get down to a framework to blame. And unless you can see and thoroughly analyze the source code, it would be difficult to say what the root cause was. I'd be willing to bet it wasn't the framework.</p>
<p>And no, I don't work with .NET on a daily basis.</p>
http://stackoverflow.com/questions/54703/should-i-choose-scripting-or-compiled-code-for-small-tasks/54740#547402Answer by Brian Warshaw for Should I choose scripting or compiled code for small tasks?Brian Warshaw2008-09-10T17:13:15Z2008-09-10T17:13:15Z<p>If I have a small problem that I'd like to solve quickly, I tend to use a scripting language. The code tax is smaller, and, for me at least, the result comes faster.</p>
http://stackoverflow.com/questions/13569/mysqli-or-pdo-what-are-the-pros-and-cons/368758#368758Comment by Brian Warshaw on mysqli or PDO - what are the pros and cons?Brian Warshaw2009-11-10T16:55:12Z2009-11-10T16:55:12ZI think that the gains that PDO offers are worth understanding and working around the bugs. PHP itself is full of very aggravating bugs, some that we can't even work around efficiently, and yet it offers many benefits that cause us to use it instead of other options.http://stackoverflow.com/questions/1498201/quirky-winforms-font-behavior-on-mousehoverComment by Brian Warshaw on Quirky Winforms Font Behavior On MouseHoverBrian Warshaw2009-09-30T16:06:28Z2009-09-30T16:06:28ZDefinitely a good point--thanks for the tip.http://stackoverflow.com/questions/1498201/quirky-winforms-font-behavior-on-mousehover/1498229#1498229Comment by Brian Warshaw on Quirky Winforms Font Behavior On MouseHoverBrian Warshaw2009-09-30T14:05:38Z2009-09-30T14:05:38ZJust curious--is this suggestion just a "try and see" or does MouseEnter generally behave a bit differently in relation to these sorts of things?http://stackoverflow.com/questions/1498201/quirky-winforms-font-behavior-on-mousehoverComment by Brian Warshaw on Quirky Winforms Font Behavior On MouseHoverBrian Warshaw2009-09-30T14:04:43Z2009-09-30T14:04:43ZAre you guys saying I should avoid creating a new font every time the hover happens? Is that because it's an expensive run-time operation?http://stackoverflow.com/questions/1086713/in-net-can-i-detect-system-focus-events-c/1086744#1086744Comment by Brian Warshaw on In .NET, can I detect system focus events (C#)?Brian Warshaw2009-07-06T13:47:52Z2009-07-06T13:47:52Zthis is good, and very useful, but there are some holes in his article that I wish were filled--namely the implementation of the GetClassName() and GetWindowText() Win32 functions. If you can fill in some of those holes, I'd be grateful.http://stackoverflow.com/questions/1049855/c-access-getting-primary-keys-from-access-2003/1052811#1052811Comment by Brian Warshaw on C# / Access Getting Primary Keys from Access 2003Brian Warshaw2009-06-28T13:21:38Z2009-06-28T13:21:38ZI realize that the word "associated" can add confusion, but I'm indeed talking about primary keys in the tables in which they are actually primary keys. I wanted a listing of primary keys in a database, but not a "flat" listing where it's simply a list of those fields. I needed to know which table the primary key belonged to, as well--not just its name or other attributes. The "Indexes" schema table did the trick. Thanks for trying to answer, though.http://stackoverflow.com/questions/48605/why-do-most-java-system-architects-insist-on-first-coding-to-an-interface/48611#48611Comment by Brian Warshaw on Why do most Java system architects insist on first coding to an interface?Brian Warshaw2008-10-08T10:15:42Z2008-10-08T10:15:42ZIt's a virtual contract. Just like most employment contracts (and unfortunately, some others), you can choose to adhere to it or to treat it like a fire starter. http://stackoverflow.com/questions/52344/how-to-detect-using-aspx-if-javascript-is-enabled-on-browser/52372#52372Comment by Brian Warshaw on How to detect (using .ASPX) if Javascript is enabled on browserBrian Warshaw2008-10-08T10:13:20Z2008-10-08T10:13:20ZConsidering the whole shebang is about 7 lines on my screen, I don't think having the first three lines as a comment on something else in the post is problematic, particularly since it provides a reason for the rest of the answer.http://stackoverflow.com/questions/63399/mysql-statement-that-returns-a-sql-statement/63468#63468Comment by Brian Warshaw on MySQL statement that returns a SQL statement?Brian Warshaw2008-09-15T17:32:52Z2008-09-15T17:32:52ZIs it returning integers in single quotes or with accent graves (`)?http://stackoverflow.com/questions/60779/how-do-you-do-fuzzy-searches-using-bound-parameters-in-pdo/60782#60782Comment by Brian Warshaw on How do you do fuzzy searches using bound parameters in PDO?Brian Warshaw2008-09-14T12:45:34Z2008-09-14T12:45:34ZGlad you found it. I just found it the other day, too, looking for the same thing. Too bad you can't accept your own answer!http://stackoverflow.com/questions/54864/how-well-does-net-scale/54960#54960Comment by Brian Warshaw on How well does .NET scale?Brian Warshaw2008-09-10T20:32:55Z2008-09-10T20:32:55ZMySpace has people adding and reading rapidly all day long. It isn't just a "serve pages and scrabulous" application.http://stackoverflow.com/questions/55060/php-function-argument-error-suppression-empty-isset-emulationComment by Brian Warshaw on Php function argument error suppression, empty() isset() emulationBrian Warshaw2008-09-10T20:04:17Z2008-09-10T20:04:17ZHe just completely changed the question. He needs to close this and ask a new one if that's what he wants to do. He ripped out his entire example, as well.http://stackoverflow.com/questions/55139/what-is-your-favorite-ide-for-perl-development/55142#55142Comment by Brian Warshaw on What is your favorite IDE for Perl development?Brian Warshaw2008-09-10T20:02:31Z2008-09-10T20:02:31ZTextMate can be setup to be used as an IDE for a lot of stuff, but, out-of-the-box, it isn't. But, as Frank says, neither is VIM out-of-the-box. Unless you count the syntax highlighting.http://stackoverflow.com/questions/54815/selling-yourself/54825#54825Comment by Brian Warshaw on Selling YourselfBrian Warshaw2008-09-10T17:46:35Z2008-09-10T17:46:35ZI'm good at staying positive, particularly when in the interview. I'm just trying to find a good interface between what I know about myself and what I want them to know about me.http://stackoverflow.com/questions/54669/apache-download-make-sure-that-page-was-viewed-before-download/54724#54724Comment by Brian Warshaw on Apache Download: Make sure that page was viewed before downloadBrian Warshaw2008-09-10T17:15:46Z2008-09-10T17:15:46ZFair enough. Sorry I couldn't be a better help.