User Joel Wietelmann - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:12:19Zhttp://stackoverflow.com/feeds/user/28340http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1348666/question-about-divs-in-html-web-page-building/1348735#1348735-1Answer by Joel Wietelmann for Question about divs in HTML web page building.Joel Wietelmann2009-08-28T18:53:22Z2009-08-28T18:53:22Z<p>I'll probably be downvoted into oblivion for this, but until IE6 is gone from the face of the earth, using a table for a multi-column layout is really the safest, easiest way to go. Sure, it's not the "right" way to do it, but in this case the reward for doing it the right way is so miniscule that you might as well just drop in a table and move on to more important things.</p>
<p>Don't get me wrong; I love CSS. I just think that the pragmatic choice for multi-column layouts is still the table. You'll spend less time fighting with browsers and have more time to focus on the things that will really benefit your website's consumers.</p>
http://stackoverflow.com/questions/1347492/what-is-the-best-screen-resolution-to-develop-web-pages/1347516#13475162Answer by Joel Wietelmann for what is the best screen resolution to develop web pages?Joel Wietelmann2009-08-28T14:53:23Z2009-08-28T14:59:51Z<p>In my opinion, if you're using a window resizer, you're already on top of the game. I try to aim for pages that work well on a 1024x768 screen, accounting for scrollbars and toolbars and whatnot. It may be worth resizing your screen to 1024x768 (or whatever the minimum is that you support) every once in a while just to fully understand that user experience, but in general the window resizer keeps you aware enough.</p>
http://stackoverflow.com/questions/1235043/what-latex-editor-do-you-suggest-for-linux/1235085#12350850Answer by Joel Wietelmann for what LaTex Editor do you suggest for Linux?Joel Wietelmann2009-08-05T18:54:40Z2009-08-05T18:54:40Z<p>There is a pretty good list at <a href="http://linuxappfinder.com/office/texlatexeditors" rel="nofollow">linuxappfinder.com</a>.</p>
<p>My personal preference for LaTeX on Linux has been the KDE-based editor <a href="http://kile.sourceforge.net/" rel="nofollow">Kile</a>.</p>
http://stackoverflow.com/questions/1164656/p2p-network-games-apps-good-choice-for-a-battle-net-like-matching-server/1228641#12286412Answer by Joel Wietelmann for P2P network games/apps: Good choice for a "battle.net"-like matching serverJoel Wietelmann2009-08-04T16:47:11Z2009-08-04T17:00:57Z<p>First, let me say that this is well out of my realm of expertise, but I found myself very interested, so I've been doing some searching and reading.</p>
<p>It seems that the most commonly prescribed solution for UDP NAT traversal is to use a <a href="http://en.wikipedia.org/wiki/STUN" rel="nofollow">STUN</a> server. I did some quick searches to see if there are any companies that will just straight-up provide you with a STUN hosting solution, but if there even were any, they were buried in piles of ads for simple web hosting.</p>
<p>Fortunately, it seems there are several STUN servers that are already up and running and free for public use. There is a list of public STUN servers at <a href="http://www.voip-info.org/wiki/view/STUN" rel="nofollow">voip-info.org</a>.</p>
<p>In addition, there is plenty more information to be had if you explore <a href="http://stackoverflow.com/questions/tagged/nat">SO questions tagged "nat"</a>.</p>
http://stackoverflow.com/questions/1133654/have-you-ever-had-a-client-express-concern-over-the-services-you-provide-simply-b/1133912#11339124Answer by Joel Wietelmann for Have you ever had a client express concern over the services you provide simply because you use PHP?Joel Wietelmann2009-07-15T20:43:08Z2009-07-15T20:43:08Z<p>What I have noticed is that if you are dealing with people who are not savvy, your choice of language makes no difference to them. However, a lot of companies seem to have one or two individuals who are just savvy enough to be dangerous.</p>
<p>These semi-savvy individuals malign PHP for a number of different reasons, but the one that is by far the most widespread and least-deserved is the belief that PHP just a giant security vulnerability masquerading as a programming language. In its not-too-distant history, PHP has had brainlessly bad default installation settings and an overabundance of under-qualified programmers (i.e., web designers). PHP's reputation has suffered dearly as a result.</p>
<p>As a programmer who works primarily in PHP and .NET, I would not hesitate to use PHP for an enterprise-level system. I've seen both terrible and fantastic things done in both languages and recognize that the difference is not in the tools but in how you use them. However, if someone in your potential client's organization has a grudge against PHP, it may be an uphill battle to convince them.</p>
<p>At the end of the day, I think it really depends on the client. Some will laugh at PHP. Some will bristle with rage at the mere mention of Microsoft. Some will not care the least bit. You have to determine the preference of the particular type of client you're trying to serve.</p>
<p>In my opinion, while you may at least get some insightful anecdotes here, I would recommend some quantitative market research as a next step.</p>
http://stackoverflow.com/questions/310282/explaining-race-conditions-to-a-non-technical-audience14Explaining race conditions to a non-technical audienceJoel Wietelmann2008-11-21T21:39:25Z2008-11-22T01:27:06Z
<p>Recently, I found myself having to write up some concerns I have about race conditions in an application that is in development (not by me). This will likely be brought to the attention of stakeholders who are non-technical and with whom I do not have a direct line of communication, so my explanation needs to be in written form.</p>
<p>I have already made an attempt at this write-up. I gloss over the technical specifics as best I can, give an example of how a race condition would occur in the application, and describe its impact. I feel I did pretty well, but it's far from perfect.</p>
<p>The problem is, as much as I try to shield the reader from computer science, I have still found it difficult to eliminate phrases like "threads of execution" and "mutual exclusion" without losing correctness and substance. The risk is that, with too much hand-waving, these concerns could be dismissed as a made-up boogeyman.</p>
<p>Anyway, my question to you is this: <strong>How would <em>you</em> explain race conditions to a non-technical audience?</strong> Would you dare to explain CPU scheduling? Would you invoke the <a href="http://en.wikipedia.org/wiki/Dining_philosophers_problem" rel="nofollow">dining philosophers</a>?</p>
<p><em>You don't have to work within the constraints of my situation (but it would be awesomely helpful if you did).</em></p>
http://stackoverflow.com/questions/254388/how-do-you-convert-an-image-to-black-and-white-in-php/254776#2547762Answer by Joel Wietelmann for How do you convert an image to black and white in PHPJoel Wietelmann2008-10-31T20:04:31Z2008-11-18T16:07:00Z<p>Using the php <a href="http://us2.php.net/manual/en/function.imagefilter.php" rel="nofollow">gd</a> library:</p>
<pre><code>imagefilter($im, IMG_FILTER_GRAYSCALE);
imagefilter($im, IMG_FILTER_CONTRAST, -100);
</code></pre>
<p>Check the user comments in the link above for more examples.</p>
http://stackoverflow.com/questions/296658/what-is-the-best-light-weight-json-ajax-script/296815#2968150Answer by Joel Wietelmann for What is the best, light-weight JSON/ajax script?Joel Wietelmann2008-11-17T20:34:55Z2008-11-17T20:46:11Z<p>I don't know what particular version of MooTools you're using, but it doesn't have to be large if you tailor it specifically to your needs. MooTools provides an <a href="http://mootools.net/core" rel="nofollow">advanced download page</a> that will allow you to create a custom-built, minified version of the library in a single file. Try it out and see if it suits your needs. If it does, you won't have to go and learn prototype/jquery/etc.</p>
<p><strong>Edit:</strong> I just tried downloading MooTools' Request.JSON package with all dependencies. With the YUI compression option, the file size came out to 33.8KB.</p>
http://stackoverflow.com/questions/254499/how-do-you-get-ankhsvn-to-work-with-visualsvn-server/254590#2545904Answer by Joel Wietelmann for How Do you get AnkhSVN to work with VisualSVN Server?Joel Wietelmann2008-10-31T19:11:15Z2008-10-31T19:11:15Z<p>To add a solution to SVN with Ankh, first setup the repo in VisualSVN. Then go to Visual Studio and open the solution. In the solution explorer, right click on the solution name and click "Add Solution to Subversion." You'll then be able to specifiy the repository to which it should be added, e.g., "https://1.2.3.4:8443/svn/myproject/".</p>
<p>If your solution is already in Subversion, Ankh should be able to pick up on it and provide you with status icons and right-click menu options in Visual Studio.</p>
<p>If want to browse your SVN repo in Visual Studio, go to View->Repository Explorer. Then you should be provided a nonintuitive-looking little icon that will say "Add Repository" when you hover it. Put in the address of your SVN repository, e.g., "https://1.2.3.4:8443/svn/myproject/". You can then browse the repo and open the solution file from there.</p>
http://stackoverflow.com/questions/244788/what-do-you-wear-to-an-interview-for-an-engineering-position/245016#2450169Answer by Joel Wietelmann for What do you wear to an interview (for an engineering position)?Joel Wietelmann2008-10-28T21:53:16Z2008-10-28T21:53:16Z<p>If you can, first find out what the typical work attire is there, then dress one level above that. If they wear ties, you wear a suit. If they wear polo shirts and khakis, you wear nice pants/shirt and tie. Etc., etc. You want to dress well, but you also don't want to walk into a t-shirt and jeans environment wearing a three-piece suit.</p>
http://stackoverflow.com/questions/205308/how-to-master-regular-expressions/205992#2059923Answer by Joel Wietelmann for How to master Regular Expressions?Joel Wietelmann2008-10-15T19:04:30Z2008-10-15T19:04:30Z<p>I'd like to add that even when you know what you're doing, having a printed-out <a href="http://www.google.com/search?rls=ig&hl=en&q=regular+expression+cheat+sheet&aq=1&oq=" rel="nofollow">cheat sheet</a> on hand is a huge time-saver.</p>
http://stackoverflow.com/questions/205689/class-with-single-method-best-approach/205973#2059730Answer by Joel Wietelmann for Class with single method -- best approach?Joel Wietelmann2008-10-15T18:58:44Z2008-10-15T18:58:44Z<p>If this method is stateless and you don't need to pass it around, then it makes the most sense to define it as static. If you DO need to pass the method around, you might consider using a <a href="http://msdn.microsoft.com/en-us/library/aa288459(VS.71).aspx" rel="nofollow">delegate</a> rather than one of your other proposed approaches.</p>
http://stackoverflow.com/questions/1348666/question-about-divs-in-html-web-page-building/1348735#1348735Comment by Joel Wietelmann on Question about divs in HTML web page building.Joel Wietelmann2009-08-28T19:02:56Z2009-08-28T19:02:56ZIt all depends on your goals. I guess I tend to write from the business perspective. I used to try to write perfectly CSS-based websites, and then I realized how much time I was wasting to get the same exact behavior of a 3-column table. Unless there's a good business reason for avoiding table, now I just use it and forgive myself.http://stackoverflow.com/questions/1347492/what-is-the-best-screen-resolution-to-develop-web-pages/1347507#1347507Comment by Joel Wietelmann on what is the best screen resolution to develop web pages?Joel Wietelmann2009-08-28T14:56:18Z2009-08-28T14:56:18ZMost complex websites do use a fixed width though. Not everyone has the CSS ninja skills required to make a design that expands and contracts with finesse. Admittedly, it is becoming easier now that IE6 is almost dead.http://stackoverflow.com/questions/1235457/how-can-i-automatically-ban-an-ip-requesting-the-same-file-too-oftenComment by Joel Wietelmann on How can I automatically ban an IP requesting the same file too often?Joel Wietelmann2009-08-05T20:10:00Z2009-08-05T20:10:00ZShould this go on serverfault?http://stackoverflow.com/questions/1235043/what-latex-editor-do-you-suggest-for-linux/1235089#1235089Comment by Joel Wietelmann on what LaTex Editor do you suggest for Linux?Joel Wietelmann2009-08-05T19:04:01Z2009-08-05T19:04:01ZAnyone have recent experiences with LyX? Back when I tried, it felt really awkward to the point that I'd rather work with the LaTeX source. I don't know if it was poorly implemented or I just have a fundamental aversion to WYSIWYG LaTeX.http://stackoverflow.com/questions/359732/why-is-it-considered-a-bad-practice-to-omit-curly-braces/359754#359754Comment by Joel Wietelmann on Why is it considered a bad practice to omit curly braces?Joel Wietelmann2008-12-11T17:28:25Z2008-12-11T17:28:25ZBest solution to this bug: Use Python. (Kidding, of course.)http://stackoverflow.com/questions/306708/must-haves-for-developers-office/306785#306785Comment by Joel Wietelmann on Must haves for developers officeJoel Wietelmann2008-11-21T15:40:16Z2008-11-21T15:40:16ZI actually prefer cubes to low level partitions. To me, low level partitions give you the downsides of a cube (significant barriers to communication) with none of the upsides (no visual distractions, slight noise reduction).http://stackoverflow.com/questions/290806/do-you-try-to-make-your-code-look-pretty/290812#290812Comment by Joel Wietelmann on Do you try to make your code look pretty?Joel Wietelmann2008-11-14T18:48:01Z2008-11-14T18:48:01ZEasy to read is easy to maintain. Personally I think the original question poster is being OCD without contributing to readability. Steve's tabbing, however, does increase the readability of the code. The diff is irrelevant; your tools are supposed to work for you, not the other way around.http://stackoverflow.com/questions/244788/what-do-you-wear-to-an-interview-for-an-engineering-position/245016#245016Comment by Joel Wietelmann on What do you wear to an interview (for an engineering position)?Joel Wietelmann2008-10-30T20:00:01Z2008-10-30T20:00:01ZAs a side note, I also think three-piece suits look awesome. It's a shame they're not as common these days.