User Internet Friend - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:34:04Z http://stackoverflow.com/feeds/user/18037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/741619/splitting-a-swing-control-into-equal-parts/741701#741701 0 Answer by Internet Friend for Splitting a swing control into equal parts Internet Friend 2009-04-12T12:27:47Z 2009-04-12T12:27:47Z <p>The code you posted will not compile due to syntax errors, but I see no immediate problems with your approach. You said that the problem shows up intermittendly. This suggests the problem might lay with the way swing does refreshing, and how you handle that in your code. Try reading up on that.</p> http://stackoverflow.com/questions/741653/preventing-url-manipulation-attacks-with-mvc/741672#741672 0 Answer by Internet Friend for Preventing Url manipulation attacks with MVC? Internet Friend 2009-04-12T12:02:22Z 2009-04-12T12:02:22Z <p>The url used to access your site is data from the client, and when security is concerned, you should always consider client provided data hostile.</p> <p>Unfortunately there are no silver bullets to deal with this problem. You'll need to implement access restrictions throughout the application.</p> http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/741614#741614 3 Answer by Internet Friend for What are the worst working conditions you have written code in? Internet Friend 2009-04-12T11:10:31Z 2009-04-12T11:10:31Z <p>Well, I hope I won't offend too many peruvians, and I actually like the flute music a lot, but hearing a peruvian flute band playing the same songs over and over and over again behind the office window got me a bit miffed.</p> <p>The kind of miffed where you want to bite a keyboard in half and use your mouse as a morningstar.</p> http://stackoverflow.com/questions/322585/important-ui-features-that-are-often-left-out/322593#322593 16 Answer by Internet Friend for Important UI Features That Are Often Left Out Internet Friend 2008-11-27T00:18:31Z 2008-11-27T05:20:37Z <p>Undo is bitchy to code, but very useful to the end users.</p> <p>Save the location and size of all/any windows, so they are restored whenever the program is restarted.</p> <p>Read this article on Undo from a usability expert (Aza Raskin): <a href="http://www.alistapart.com/articles/neveruseawarning" rel="nofollow">Never Use a Warning When you Mean Undo</a>. Coding undo is not all that hard: examples <a href="http://humanized.com/weblog/2007/09/14/undo-made-easy-with-ajax-part-1/" rel="nofollow">[1]</a>, <a href="http://humanized.com/weblog/2007/09/21/undo-made-easy-with-ajax-part-15/" rel="nofollow">[1.5]</a>, <a href="http://humanized.com/weblog/2007/10/22/undo_with_ajax_2/" rel="nofollow">[2]</a>.</p> http://stackoverflow.com/questions/322594/where-to-start-what-language-to-learn-first/322609#322609 0 Answer by Internet Friend for Where to start? What language to learn first? Internet Friend 2008-11-27T00:25:28Z 2008-11-27T00:25:28Z <p>What do you want to do?</p> <p>Programming skill isn't really tied to one language or technology. Decide on a goal that you feel is within your limits, and then ask about the tools.</p> http://stackoverflow.com/questions/322118/what-is-the-weirdest-commercial-language-system-youve-ever-used/322557#322557 2 Answer by Internet Friend for What is the weirdest commercial language/system you've ever used? Internet Friend 2008-11-26T23:45:11Z 2008-11-26T23:45:11Z <p><img src="http://common.ziffdavisinternet.com/util_get_image/18/0,1425,i=180249,00.gif" alt="alt text" /></p> <p>Google Mini.</p> <p>These are fickle beasts, but they hold incredible searching power within. The first time I connected one to our intranet for testing purposes, it somehow caught scent of the Apache directory indices, and almost brought our intranet to its knees with its crawl. After the Great Indexing, everybody at the office had a field day doing searches to all the stuff well forgotten, and to the stuff better left forgotten, and to the stuff never meant to be known by men.</p> http://stackoverflow.com/questions/321999/does-silverlight-use-a-separate-application-domain-for-each-browser-tab/322215#322215 0 Answer by Internet Friend for Does Silverlight use a separate application domain for each browser tab? Internet Friend 2008-11-26T21:25:09Z 2008-11-26T21:25:09Z <p>The browser is completely in control of the tabs, and should keep them separate for obvious security reasons.</p> http://stackoverflow.com/questions/121743/server-virtualization-how-to-avoid-locate-and-fix-bottlenecks 4 Server virtualization: how to avoid, locate and fix bottlenecks? Internet Friend 2008-09-23T15:28:52Z 2008-09-28T12:08:29Z <p>Server virtualization is a big thing these days, so I'm tasked at work to install some of our software on a virtualized server and see what happens. Long story short: a <code>rsync</code> transfer promptly brings the virtualized server to its knees. The virtualization host is a beefy machine with no other load; I don't think this should be happening. <code>Top</code> shows high load averages, and cpu iowait near 100%. There's a huge bottleneck somewhere.</p> <p>I'm more a programmer than a sysadmin, I lack the knowledge on how to go about fixing this outside of random Googling. I suspect I'm not alone in this. </p> <p>What I'd like to see here is general advice on virtualization, and pointers to good articles and other resources, which I and others could use to educate ourselves. </p> <ul> <li>What tools (even standard unix tools) can be used to pinpoint bottlenecks?</li> <li>What metrics should be followed to ensure things run smoothly?</li> <li>What kind of things can be efficiently virtualized? </li> <li>What kind of setups are doomed to fail?</li> </ul> <p>I apologize the broadness of the question. I just don't have the knowledge to ask useful specific questions about this.</p> <p>Edit: More on my specific problem:</p> <ul> <li>XAN paravirtualization, 3 x guest CentOS</li> <li>All guests on local SCSI disks, there is a fully hardware raid controller</li> <li>rsyncd running on 1 guest os, transfer initiated from a remote non virtualized server through 100mbps LAN</li> </ul> <p>Like I said before, I really can't provide a ton of useful data. I'm not really expecting to get a direct solution to this problem, I'd be happy with pointers on where to start building the skillset required to better understand these kinds of problems.</p> http://stackoverflow.com/questions/124462/asynchronous-php-calls/124557#124557 2 Answer by Internet Friend for Asynchronous PHP calls? Internet Friend 2008-09-23T23:35:26Z 2008-09-23T23:35:26Z <p>You can do trickery by using exec() to invoke something that can do HTTP requests, like <code>wget</code>, but you must direct all output from the program to somewhere, like a file or /dev/null, otherwise the PHP process will wait for that output.</p> <p>If you want to separate the process from the apache thread entirely, try something like (I'm not sure about this, but I hope you get the idea):</p> <pre><code>exec('bash -c "wget -O (url goes here) &gt; /dev/null 2&gt;&amp;1 &amp;"'); </code></pre> <p>It's not a nice business, and you'll probably want something like a cron job invoking a heartbeat script which polls an actual database event queue to do real asynchronous events.</p> http://stackoverflow.com/questions/124314/to-update-blindly-or-to-update-where/124430#124430 1 Answer by Internet Friend for To Update blindly or to Update Where? Internet Friend 2008-09-23T22:54:03Z 2008-09-23T22:54:03Z <p>How often are these turns happening? How many rows do you expect to have in this table? If the answers are 'less than once a second' and 'less than 10000', just stop worrying.</p> <p>Unless if you happen to have some sort of academic interest in this, of course.</p> http://stackoverflow.com/questions/124266/sort-object-in-php/124315#124315 0 Answer by Internet Friend for Sort Object in PHP Internet Friend 2008-09-23T22:27:34Z 2008-09-23T22:27:34Z <p>If you want to explore the full (terrifying) extent of lambda style functions in PHP, see: <a href="http://docs.php.net/manual/en/function.create-function.php" rel="nofollow">http://docs.php.net/manual/en/function.create-function.php</a></p> http://stackoverflow.com/questions/124153/applying-for-a-programming-position-include-my-salary-requirements/124268#124268 0 Answer by Internet Friend for Applying for a programming position--include my Salary Requirements? Internet Friend 2008-09-23T22:16:53Z 2008-09-23T22:16:53Z <p>If you are looking for a long-time work relationship, put in at least a ballpark figure. If they aren't willing to pony up anything near that, you'll be saving both of your time.</p> http://stackoverflow.com/questions/124115/is-it-worth-learning-java-when-you-already-know-c-fairly-well/124203#124203 0 Answer by Internet Friend for Is it worth learning Java when you already know C# fairly well? Internet Friend 2008-09-23T22:01:53Z 2008-09-23T22:01:53Z <p>I know Java pretty well, and had to learn C# for a work project. It was very painless, and I learned a lot about <em>both</em> languages in the process.</p> <p>Java will also offer the whole 'write once, run everywhere' thing, and open up a path to doing unix/linux server based integration projects.</p> http://stackoverflow.com/questions/123976/url-encryption-in-java/124036#124036 0 Answer by Internet Friend for URL Encryption in Java Internet Friend 2008-09-23T21:31:30Z 2008-09-23T21:31:30Z <p>Are you sure you don't mean URL <em>encode</em>? Encoding is available through java.net.URLEncoder.encode.</p> http://stackoverflow.com/questions/123837/how-much-process-should-a-single-developer-follow-is-a-formal-process-too-much/123959#123959 1 Answer by Internet Friend for How much process should a single developer follow? Is a formal process too much? Internet Friend 2008-09-23T21:19:49Z 2008-09-23T21:19:49Z <p>This is a very broad question, but perhaps I can help by sharing an experience of mine. I worked for almost 5 years on a hobby game coding project with a couple of friends of mine. A very thightly knit group of developers, we usually tugged our machines into a single apartment for a weekend to develop the project. My point here is that it could be compared to a single person effort, as we were all there to decide on the important design decisions, and so on. 'Process?' No, none I can identify, even in retrospect.</p> <p>The one thing that kept the source in control was following an 'agile developement' paradigm which we decided to implement from the start: <strong>refactor mercilessly</strong>. We did, and holy hell did it break the whole game apart all the time. But it <strong>did</strong> keep the source clean, and when we decided to go for 'stable releases' every now and then, it all seemed to come toghether.</p> http://stackoverflow.com/questions/123559/a-comprehensive-regex-for-phone-number-validation/123652#123652 1 Answer by Internet Friend for A comprehensive regex for phone number validation Internet Friend 2008-09-23T20:27:59Z 2008-09-23T20:27:59Z <p>Trying to build a <em>comprehensive regex</em> from scratch is usually a bad idea, unless you have good hard reasons for implementing it. Are you in direct contact with SMSCs, or other telcom operated hardware? If that's the case, you should be able to get this sort of validation related information from them.</p> http://stackoverflow.com/questions/123300/can-you-imagine-to-still-develop-software-within-the-next-20-years/123409#123409 2 Answer by Internet Friend for Can you imagine to still develop software within the next 20 years? Internet Friend 2008-09-23T19:52:54Z 2008-09-23T19:52:54Z <p>The day I stop coding, you can cover my bed with a shovel.</p> <p>I can see myself trying out other types of careers, though. There's always a ton of interesting open source projects to contribute to, while I'm not coding for a living.</p> http://stackoverflow.com/questions/122883/interfaces-why-cant-i-seem-to-grasp-them/123060#123060 4 Answer by Internet Friend for Interfaces: Why cant I seem to grasp them? Internet Friend 2008-09-23T19:01:44Z 2008-09-23T19:01:44Z <p>In addition to the function interfaces have within programming languages, they also are a powerful semantic tool when expressing design ideas to other <em>people</em>.</p> <p>A code base with well-designed interfaces is suddenly a lot easier to discuss. "Yes, you need a CredentialsManager to register new remote servers." "Pass a PropertyMap to ThingFactory to get a working instance."</p> <p>Ability to address a complex thing with a single word is pretty useful.</p> http://stackoverflow.com/questions/122724/is-there-a-java-equivalent-for-net-system-data/122862#122862 0 Answer by Internet Friend for Is there a Java equivalent for .Net System.Data? Internet Friend 2008-09-23T18:33:38Z 2008-09-23T18:33:38Z <p>ADO.NET is a framework with multiple uses, and DataSet is one of the main abstractions. Tell us more about what you want to achieve, and I'm sure somebody will find a Java framework for that purpose.</p> <p>If you want a simple way to map Java objects to a data backend (like XML files), take a look at some of the POJO (Plain Old Java Object) frameworks.</p> http://stackoverflow.com/questions/122493/is-it-better-working-on-a-single-technology-or-working-on-different-ones/122543#122543 5 Answer by Internet Friend for Is it better working on a single technology or working on different ones? Internet Friend 2008-09-23T17:42:32Z 2008-09-23T17:48:04Z <p>You are better off learning multiple technologies.</p> <p>I'll even go out on a limb and say you cannot really master a given technology without trying others. If you only ever work within a given realm of possible expression, you will tend to limit the way you think about engineering problems to that realm.</p> <p>Trying out other possible ways of expression will help you understand the limitations of the first set, and vice versa.</p> http://stackoverflow.com/questions/121849/pros-and-cons-of-using-one-file-for-entire-webpage/121911#121911 5 Answer by Internet Friend for Pros and cons of using one file for entire webpage? Internet Friend 2008-09-23T15:53:24Z 2008-09-23T16:42:11Z <p>If you mean a single landing page (e.g. index.php) which then uses session variables etc. to figure out what code needs to be included, then yes, this is an often used technique.</p> <p>Edit: and by the above I mean what Daniel Papasian explains in detail in his excellent post</p> <p>If you mean placing all of your HTML, SQL and PHP in a single file, then no, for the reasons pointed out by GateKiller.</p> http://stackoverflow.com/questions/107828/how-can-i-turn-on-php-errors-display-on-just-a-subfolder/107841#107841 0 Answer by Internet Friend for How can I turn on PHP errors display on just a subfolder Internet Friend 2008-09-20T10:29:17Z 2008-09-20T11:54:46Z <p><strike>I don't believe there's a simple answer to this</strike>, but I'd certainly want to be proven wrong.</p> <p>edit: turns out this can be controlled from .htaccess files. Thanks people! :)</p> <p>You can use error_reporting() <a href="http://docs.php.net/manual/en/function.error-reporting.php" rel="nofollow">http://docs.php.net/manual/en/function.error-reporting.php</a> to switch the setting on a script by script basis, though. If you happen to have a single script which is included every time at /html/beta/usercomponent, this will do the trick.</p> http://stackoverflow.com/questions/107693/global-variables-in-php-not-working-as-expected/107821#107821 2 Answer by Internet Friend for global variables in php not working as expected Internet Friend 2008-09-20T10:17:31Z 2008-09-20T10:17:31Z <p>If you have a lot of variables you want to access during a task which uses many functions, consider making a 'context' object to hold the stuff:</p> <pre><code>//We're doing "foo", and we need importantString and relevantObject to do it $fooContext = new StdClass(); //StdClass is an empty class $fooContext-&gt;importantString = "a very important string"; $fooContext-&gt;relevantObject = new RelevantObject(); doFoo($fooContext); </code></pre> <p>Now just pass this object as a parameter to all the functions. You won't need global variables, and your function signatures stay clean. It's also easy to later replace the empty StdClass with a class that actually has relevant methods in it.</p> http://stackoverflow.com/questions/107683/when-and-why-should-request-be-used-instead-of-get-post-cookie/107689#107689 6 Answer by Internet Friend for When and why should $_REQUEST be used instead of $_GET / $_POST / $_COOKIE? Internet Friend 2008-09-20T09:08:31Z 2008-09-20T09:08:31Z <p>Sometimes you might want the same script to be called with several different ways. A form submit and an AJAX call comes to mind. In most cases, however, it´s better to be explicit.</p> <p>Also, see <a href="http://docs.php.net/manual/en/ini.core.php#ini.request-order" rel="nofollow">http://docs.php.net/manual/en/ini.core.php#ini.request-order</a> on how the different sources of variables overwrite each other if there is a name collision.</p> http://stackoverflow.com/questions/107603/is-there-still-any-reason-to-learn-awk/107630#107630 3 Answer by Internet Friend for Is there still any reason to learn AWK ? Internet Friend 2008-09-20T08:32:24Z 2008-09-20T08:32:24Z <p>If you already know and use sed, you might as well pick up at least a bit of awk. They can be piped together for some pretty powerful tricks. Always impresses the audience.</p> http://stackoverflow.com/questions/103136/error-while-using-groovy-sql-out-parameter/107518#107518 1 Answer by Internet Friend for error while using groovy.sql Out parameter. Internet Friend 2008-09-20T07:31:15Z 2008-09-20T07:31:15Z <p>This is still unanswered, so I did a bit of digging although I don't fully understand the problem. The following turned up from the Groovy source, perhaps it's of some help:</p> <p>This line seems to be the origin of the exception:</p> <p><a href="http://groovy.codehaus.org/xref/groovy/sql/Sql.html#1173" rel="nofollow">http://groovy.codehaus.org/xref/groovy/sql/Sql.html#1173</a></p> <p>This would seem to indicate that you have a Statement object implementing PreparedStatement, when you need the subinterface CallableStatement, which has the registerOutParameter() method which should be ultimately invoked.</p> http://stackoverflow.com/questions/105049/what-are-the-best-design-patterns-books-you-have-read/105204#105204 0 Answer by Internet Friend for What are the best design patterns books you have read? Internet Friend 2008-09-19T20:19:21Z 2008-09-19T20:19:21Z <p>A thought for the day: a design pattern is a solution for a problem your environment is forcing upon you</p> http://stackoverflow.com/questions/104516/calling-php-functions-within-heredoc-strings/104578#104578 1 Answer by Internet Friend for Calling PHP functions within HEREDOC strings Internet Friend 2008-09-19T19:02:25Z 2008-09-19T19:02:25Z <p>You are pretty much describing what happens in a templating engine. You obviously know php pretty well. Have you considered taking a look at an actual templating engine?</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/104535#104535 0 Answer by Internet Friend for What was your first home computer? Internet Friend 2008-09-19T18:56:37Z 2008-09-19T18:56:37Z <p>People, please try to find pictures of your computers to include with your posts. I find them... <em>adorable</em>.</p> http://stackoverflow.com/questions/104291/trialware-licensing-strategies/104368#104368 2 Answer by Internet Friend for Trialware/licensing strategies Internet Friend 2008-09-19T18:34:57Z 2008-09-19T18:34:57Z <p>If you are planning to continue developing your software, you might consider the ransom model:</p> <p><a href="http://en.wikipedia.org/wiki/Street_Performer_Protocol" rel="nofollow">http://en.wikipedia.org/wiki/Street_Performer_Protocol</a></p> <p>Essentially, you develop improvements to the software, and then ask for a certain amount of donations before you release them (without any DRM).</p> http://stackoverflow.com/questions/741552/php-cookies Comment by Internet Friend on PHP : cookies Internet Friend 2009-04-12T10:58:15Z 2009-04-12T10:58:15Z I call shenanigans! http://stackoverflow.com/questions/322585/important-ui-features-that-are-often-left-out/322593#322593 Comment by Internet Friend on Important UI Features That Are Often Left Out Internet Friend 2008-11-27T00:38:05Z 2008-11-27T00:38:05Z Good point Chris. But it's very bitchy when you have to shoehorn it into an existing app. :( http://stackoverflow.com/questions/322183/does-silverlight-have-a-performance-advantage-over-javascript/322193#322193 Comment by Internet Friend on Does Silverlight have a performance advantage over JavaScript? Internet Friend 2008-11-26T23:59:27Z 2008-11-26T23:59:27Z &quot;They are used for two different things&quot;, that's exactly it! It's very possible to run Jscript code within C# (and more, that's the point of CIL, you can do even Visual Basic if you really want). And it's possible to run Javascript within the Hotspot VM. Jobs and tools, jobs and tools. http://stackoverflow.com/questions/322183/does-silverlight-have-a-performance-advantage-over-javascript/322193#322193 Comment by Internet Friend on Does Silverlight have a performance advantage over JavaScript? Internet Friend 2008-11-26T23:09:36Z 2008-11-26T23:09:36Z Yes, I'm willing to concede many of your points. It's still better than many of the industry standard languages. Java? PHP? C++? any of the .NET languages? I'll take JS over them any given sunday. (C# is nice tho :P) http://stackoverflow.com/questions/322118/what-is-the-weirdest-commercial-language-system-youve-ever-used/322349#322349 Comment by Internet Friend on What is the weirdest commercial language/system you've ever used? Internet Friend 2008-11-26T22:17:01Z 2008-11-26T22:17:01Z I've read about this in the Daily WTF. It's the highway to hell AND career deadend all combined in one. http://stackoverflow.com/questions/322183/does-silverlight-have-a-performance-advantage-over-javascript/322193#322193 Comment by Internet Friend on Does Silverlight have a performance advantage over JavaScript? Internet Friend 2008-11-26T22:11:42Z 2008-11-26T22:11:42Z ECMAscript isn't all that 'funky'. It's a very decent C-style functional language, the buggered browser DOM just gives it a bad name. http://stackoverflow.com/questions/321979/how-do-you-determine-if-a-variable-contains-a-file-pointer-in-php/322061#322061 Comment by Internet Friend on How do you determine if a variable contains a file pointer in PHP? Internet Friend 2008-11-26T21:18:03Z 2008-11-26T21:18:03Z PHP is a fickly mistress. http://stackoverflow.com/questions/140253/how-can-i-simulate-ext3-filesystem-corruption Comment by Internet Friend on How can I simulate ext3 filesystem corruption? Internet Friend 2008-09-26T15:49:50Z 2008-09-26T15:49:50Z Great question, but I'd tag this fault-tolerance instead of graceful-degradation. http://stackoverflow.com/questions/121849/pros-and-cons-of-using-one-file-for-entire-webpage/121911#121911 Comment by Internet Friend on Pros and cons of using one file for entire webpage? Internet Friend 2008-09-23T21:00:04Z 2008-09-23T21:00:04Z Templating engines are pretty much designed for removing this confusion. The dynamic areas of the page are marked with special tags within the (hopefully semantc) HTML, and thus the people responsible for designing the layout can identify the places where the varying content should go. http://stackoverflow.com/questions/123534/is-delphi-still-a-viable-choice-for-development/123550#123550 Comment by Internet Friend on Is Delphi still a viable choice for development? Internet Friend 2008-09-23T20:43:01Z 2008-09-23T20:43:01Z Good point gabr. I'd still say that Delphi is better as an additional skill, than one to base a career on. It really isn't that far away from high abstraction-level c-style languages anyway. Java + NetBeans is very close to the Deplhi experience. http://stackoverflow.com/questions/123534/is-delphi-still-a-viable-choice-for-development/123550#123550 Comment by Internet Friend on Is Delphi still a viable choice for development? Internet Friend 2008-09-23T20:17:28Z 2008-09-23T20:17:28Z Too many other technologies overshadow it. Just pick up one of the more popular ones in the industry, they're not that different. http://stackoverflow.com/questions/123300/can-you-imagine-to-still-develop-software-within-the-next-20-years/123464#123464 Comment by Internet Friend on Can you imagine to still develop software within the next 20 years? Internet Friend 2008-09-23T20:11:11Z 2008-09-23T20:11:11Z Hey, it's live at Hollywood Bowl. If I had a time machine, I know what I'd do with it. http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121380#121380 Comment by Internet Friend on What is the one programming skill you have always wanted to master but haven't had time? Internet Friend 2008-09-23T19:30:55Z 2008-09-23T19:30:55Z While learning Haskell I came to realize this: to solve a software engineering problem, and to describe the solution in a given language; these are two separate programming skills. A pivotal moment in my ongoing quest for enlightenment. http://stackoverflow.com/questions/122493/is-it-better-working-on-a-single-technology-or-working-on-different-ones/122600#122600 Comment by Internet Friend on Is it better working on a single technology or working on different ones? Internet Friend 2008-09-23T18:08:55Z 2008-09-23T18:08:55Z Good career advice here. Dabble around. There's nothing that brings a job interview home like 'Yeah, I developed a plugin for that once', or 'Oh, I used to contribute to this-and-that OS project'. http://stackoverflow.com/questions/121743/server-virtualization-how-to-avoid-locate-and-fix-bottlenecks/121857#121857 Comment by Internet Friend on Server virtualization: how to avoid, locate and fix bottlenecks? Internet Friend 2008-09-23T16:19:40Z 2008-09-23T16:19:40Z At the moment I'm still very much stuck on the 'collecting data' part, as I don't have experience with the tools, and I exactly don't know where to look. But your post has me thinking, perhaps I should read up on general performance tuning first, and forget about the virtualization aspect for now.