User The How-To Geek - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T08:22:34Z http://stackoverflow.com/feeds/user/291 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/3067/plugin-for-visual-studio-to-mimic-eclipses-open-type-or-open-resource-keyboa 2 Plugin for Visual Studio to Mimic Eclipse's "Open Type" or "Open Resource" Keyboard Access The How-To Geek 2008-08-06T03:44:41Z 2009-11-24T09:25:31Z <p>If you've ever used Eclipse, you've probably noticed the great keyboard shortcuts that let you hit a shortcut key combination, then just type the first few characters of a function, class, filename, etc. It's even smart enough to put open files first in the list.</p> <p><img src="http://archive.eclipse.org/eclipse/downloads/drops/R-3.3-200706251500/whatsnew/images/search-all-type-names.png" alt="alt text" title=""></p> <p>I'm looking for a similar functionality for Visual Studio 2008. I know there's a findfiles plugin on codeproject, but that one is buggy and a little weird, and doesn't give me access to functions or classes.</p> http://stackoverflow.com/questions/1313195/why-is-conhost-exe-being-launched/1564554#1564554 1 Answer by The How-To Geek for Why is conhost.exe being launched? The How-To Geek 2009-10-14T06:23:51Z 2009-10-14T06:23:51Z <p>I just wrote up an article attempting to explain the purpose of the process. It's geared towards regular people, but there's lots of screenshots to illustrate.</p> <p><a href="http://www.howtogeek.com/howto/4996/what-is-conhost.exe-and-why-is-it-running/">What is conhost.exe and Why Is It Running?</a></p> <p>The bottom line is that conhost.exe sits between the CSRSS process and cmd.exe, so you can use drag &amp; drop again. </p> <p><img src="http://www.howtogeek.com/wp-content/uploads/2009/10/image10.png" alt="alt text" /></p> http://stackoverflow.com/questions/14193/looking-for-reviews-of-vs-php-visual-studio-plugin-for-php 3 Looking for Reviews of VS.PHP (Visual Studio Plugin for PHP) The How-To Geek 2008-08-18T04:44:32Z 2008-12-13T07:33:58Z <p>I've been thinking about switching from my current PhpEd / UltraEdit combination to using this VS.PHP plugin that I just found a few days ago. The problem is that I don't have much free time, so I'm hoping that there are other people who can give me an opinion on it, especially concerning the remote debugging capabilities since I always run the dev server on a linux VM.</p> <p>Since I primarily do C# work in VS for my regular job, it would be great to stay in the same environment even when working on all of my personal PHP projects (and no, I'm not a big fan of PHP but I'm pretty much forced to use it).</p> <p>Edit: I have tried the various Eclipse-based environments, but have always had issues getting debugging to really work well. PhpEd has the best debugger that I've used so far.</p> <p><a href="http://www.jcxsoftware.com/" rel="nofollow"><a href="http://www.jcxsoftware.com/" rel="nofollow">http://www.jcxsoftware.com/</a></a></p> http://stackoverflow.com/questions/47104/slow-sql-query-due-to-inner-and-left-join/47120#47120 2 Answer by The How-To Geek for Slow SQL Query due to inner and left join? The How-To Geek 2008-09-06T00:11:05Z 2008-09-06T00:11:05Z <p>What you should usually do is turn on the "Show Actual Execution Plan" option and then take a close look at what is causing the slowdown. (hover your mouse over each join to see the details) You'll want to make sure that you are getting an index seek and not a table scan.</p> <p>I would assume what is happening is that SQL is being forced to pull everything from one table into memory in order to do one of the joins. Sometimes reversing the order that you join the tables will also help things.</p> http://stackoverflow.com/questions/42805/hello-world-what-did-your-first-ever-computer-program-do/42818#42818 4 Answer by The How-To Geek for Hello world: what did your first ever computer program do ? The How-To Geek 2008-09-03T23:23:15Z 2008-09-03T23:23:15Z <p>My first computer program was a little animated man that looked like he was walking, on a Texas Instruments TI 99/4a</p> <p>Soon after that I got a cartridge of Extended Basic and had access to sprites and joystick functions, so I attempted to make a Super Mario clone. Unfortunately, due to the receipt of an actual Nintendo (NES) the project was canceled indefinitely.</p> http://stackoverflow.com/questions/40966/should-i-use-window-onload-or-script-block/41005#41005 1 Answer by The How-To Geek for Should I use window.onload or script block? The How-To Geek 2008-09-03T01:13:00Z 2008-09-03T01:22:40Z <p>While I agree with the others about using window.onload if possible for clean code, I'm pretty sure that window.onload will be called again when a user hits the back button in IE, but doesn't get called again in Firefox. (Unless they changed it recently). </p> <p>Edit: I could have that backwards.</p> <p>In some cases, it's necessary to use inline script when you want your script to be evaluated when the user hits the back button from another page, back to your page.</p> <p>Any corrections or additions to this answer are welcome... I'm not a javascript expert.</p> http://stackoverflow.com/questions/39357/windows-vista-virtual-pc-image-for-visual-studio-development-minimized/40819#40819 2 Answer by The How-To Geek for Windows Vista Virtual PC-image for Visual Studio-development minimized The How-To Geek 2008-09-02T22:22:19Z 2008-09-02T22:22:19Z <p>You can try and cut stuff out with vLite, but unless you cut out a real lot it's not going to save a ton of drive space. Here's your best bets:</p> <ul> <li>Disable Hibernate and run disk cleanup to remove any hibernation file.</li> <li>Disable System restore entirely and use disk cleanup to remove all restore points... this will save an enormous amount of space.</li> <li>Disable SuperFetch (since it kills your VM hard drive with it's crazy usage)</li> <li>Minimize the size of your pagefile by setting a smaller static size and make sure to assign lots of memory to your VM to compensate.</li> <li>Use the disk utilities to shrink your VM drive down as far as possible.</li> </ul> <p>Once you have the base machine configured, I would suggest using VMware workstation and the awesome Linked Clones feature, which will let you create a completely new VM based on the base machine, but only using a portion of the space. </p> <p>I would not advise running a Vista VM from a USB flash drive, it will be slower than dirt.</p> http://stackoverflow.com/questions/37590/how-to-convert-ico-to-png/37608#37608 1 Answer by The How-To Geek for How to convert .ICO to .PNG? The How-To Geek 2008-09-01T08:16:34Z 2008-09-01T08:16:34Z <p>This is probably a rather silly answer, but if you only need one icon, you could just take a screenshot of the icon in the folder and chop out the part you want. Make sure the icon is showing the size you want and has a white background, of course.</p> <p>If you are using a decent screenshot application like SnagIt or WinSnap, a region snap should take care of it within a few seconds.</p> <p>Note that this won't give you transparency.</p> http://stackoverflow.com/questions/37343/wordpress-mediawiki-cookie-integration/37450#37450 2 Answer by The How-To Geek for Wordpress MediaWiki Cookie Integration The How-To Geek 2008-09-01T04:19:19Z 2008-09-01T04:19:19Z <p>The primary problem you are going to run into is that you'll have two login forms, and two logout methods. What you need to do is pick one of the login forms as the default, and redirect the other one over to it.</p> <p>I've been able to <a href="http://www.howtogeek.com" rel="nofollow">successfully integrate</a> bbPress + MediaWiki + WordPress + WordPress MU, but I wrote a lot of custom code to do it.</p> <p>I'm using the bbPress login page as the default (and .htaccess rewrite to /login/), and then I created my own MediaWiki authentication plugin (which looks a lot like the one you are using), except my plugin checks the WordPress/bbPress cookie for the login information and automatically logs the user in.</p> <p>I created a customized /logout/ link that runs the bbPress logout, and also kills the MediaWiki cookies at the same time.</p> <p>Then the last step was to redirect all of the other logout / login links for bbpress, mediawiki, etc, over to my consolidated one. I used .htaccess rewrites for this rather than mess with core code.</p> <p>Still a work in progress, but it works fairly well.</p> http://stackoverflow.com/questions/16111/anyone-know-of-a-good-nfs-client-for-vista/37241#37241 1 Answer by The How-To Geek for Anyone know of a good NFS client for Vista? The How-To Geek 2008-08-31T23:11:17Z 2008-08-31T23:11:17Z <p>Unless performance is a concern, I'd recommend using SftpDrive, which lets you map an actual drive letter over SSH. It's really a great product, and on a local network the transfer speeds are slower than samba, but not terrible.</p> <p>On a local network, Samba is the best option. </p> <p><a href="http://www.magnetk.com/sftpdrive/" rel="nofollow">http://www.magnetk.com/sftpdrive/</a></p> http://stackoverflow.com/questions/36502/how-can-i-disable-dll-caching-in-windows-vista-via-cmd/36529#36529 4 Answer by The How-To Geek for How can I disable DLL Caching in Windows Vista via CMD? The How-To Geek 2008-08-31T01:04:14Z 2008-08-31T01:04:14Z <p>The only thing you can do is disable SuperFetch, which can be done from the command prompt with this command (there has to be a space between the = sign and disabled).</p> <pre><code>sc config Superfetch start= disabled </code></pre> <p>There is a myth out there that you can disable DLL caching, but that only worked for systems prior to Windows 2000. [<a href="http://msdn.microsoft.com/en-us/library/bb776795.aspx" rel="nofollow">source</a>]</p> http://stackoverflow.com/questions/32845/creating-system-restore-points-thoughts/32933#32933 1 Answer by The How-To Geek for Creating System Restore Points - Thoughts? The How-To Geek 2008-08-28T18:00:02Z 2008-08-28T18:00:02Z <p>If you are developing an application for Vista you can use Transactional NTFS, which supports a similar feature to what you are looking for.</p> <p><a href="http://en.wikipedia.org/wiki/Transactional_NTFS" rel="nofollow">http://en.wikipedia.org/wiki/Transactional_NTFS</a></p> <p>Wouldn't installer packages already include this type of rollback support, though? I'm not terribly familiar with most of them so I am not sure.</p> <p>Finally, Windows will typically automatically create a restore point anytime you run a setup application.</p> http://stackoverflow.com/questions/28764/dealing-with-distractions/28771#28771 0 Answer by The How-To Geek for Dealing With Distractions The How-To Geek 2008-08-26T18:15:47Z 2008-08-26T18:15:47Z <p>I've tried a number of those, but I dislike bulky headphones. What I ended up settling on was just the earbud headphones that came with my iPod... I plug them into my computer and stream my music collection from my home machine with <a href="http://subsonic.sourceforge.net/" rel="nofollow">Subsonic</a>.</p> http://stackoverflow.com/questions/28716/which-php-opcode-cacher-should-i-use-to-improve-performance/28744#28744 1 Answer by The How-To Geek for Which PHP opcode cacher should I use to improve performance? The How-To Geek 2008-08-26T18:02:19Z 2008-08-26T18:02:19Z <p>I've been using XCache for more than a year now with no problems at all.</p> <p>I tried to switch to eAccelerator, but ended up with a bunch of segmentation faults (it's less forgiving of errors). The major benefit to eAccelerator is that it's not just an opcode cache, it's also an optimizer.</p> <p>You should fully test out your application with each one of them to make sure there aren't any problems, and then I'd use apachebench to test it under load.</p> http://stackoverflow.com/questions/26524/favorite-free-sftp-client/26623#26623 0 Answer by The How-To Geek for Favorite free SFTP client The How-To Geek 2008-08-25T18:45:56Z 2008-08-25T18:45:56Z <p>I second WinSCP, it's by far the best client out there, free or otherwise.</p> <p>If you have the need to map a drive letter, however, I recommend non-free <a href="http://www.magnetk.com/sftpdrive/" rel="nofollow">SftpDrive</a>. You can even use it to map a drive through a tunnel from one SSH connection to another.</p> http://stackoverflow.com/questions/4433/vista-or-xp-for-dev-machine/26618#26618 0 Answer by The How-To Geek for Vista or XP for Dev Machine The How-To Geek 2008-08-25T18:42:58Z 2008-08-25T18:42:58Z <p>If you run into problems with Vista and Visual Studio 2003 or 2005, try running it as administrator (Right-click, Run as Administrator). That solves the vast majority of the issues, especially when working with IIS, BizTalk, etc.</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25537#25537 5 Answer by The How-To Geek for How do you include a webpage title as part of a webpage URL? The How-To Geek 2008-08-25T01:20:35Z 2008-08-25T01:20:35Z <p>For good measure, here's the PHP function in WordPress that does it... I'd think that WordPress is one of the more popular platforms that uses fancy links.</p> <pre> function sanitize_title_with_dashes($title) { $title = strip_tags($title); // Preserve escaped octets. $title = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '---$1---', $title); // Remove percent signs that are not part of an octet. $title = str_replace('%', '', $title); // Restore octets. $title = preg_replace('|---([a-fA-F0-9][a-fA-F0-9])---|', '%$1', $title); $title = remove_accents($title); if (seems_utf8($title)) { if (function_exists('mb_strtolower')) { $title = mb_strtolower($title, 'UTF-8'); } $title = utf8_uri_encode($title, 200); } $title = strtolower($title); $title = preg_replace('/&.+?;/', '', $title); // kill entities $title = preg_replace('/[^%a-z0-9 _-]/', '', $title); $title = preg_replace('/\s+/', '-', $title); $title = preg_replace('|-+|', '-', $title); $title = trim($title, '-'); return $title; } </pre> <p>This function as well as some of the supporting functions can be found in wp-includes/formatting.php.</p> http://stackoverflow.com/questions/22687/alternative-ssh-application-to-plink/22932#22932 0 Answer by The How-To Geek for Alternative SSH Application to Plink The How-To Geek 2008-08-22T17:19:03Z 2008-08-22T17:19:03Z <p>TortoiseSVN, at least, has an option called Relocate which you can use if the location of the repository has changed.</p> <p>Also, this is a good example why you should always, always use DNS/hostnames instead of the IP address directly.</p> http://stackoverflow.com/questions/14193/looking-for-reviews-of-vs-php-visual-studio-plugin-for-php/15042#15042 -1 Answer by The How-To Geek for Looking for Reviews of VS.PHP (Visual Studio Plugin for PHP) The How-To Geek 2008-08-18T18:28:18Z 2008-08-18T18:28:18Z <blockquote> <p>You could try sticking to your current methods and using Firebug to help debug your PHP.</p> </blockquote> <p>I use Firebug all the time for client-side dev, but I'd never seen FirePHP, thanks!</p> http://stackoverflow.com/questions/14135/subversion-and-web-development/14197#14197 2 Answer by The How-To Geek for Subversion and web development The How-To Geek 2008-08-18T04:56:25Z 2008-08-18T04:56:25Z <p>I think you should probably use svn export rather than svn checkout for deployments, so you don't have those .svn directories muddying up your production backup jobs. svn export is a "clean" checkout.</p> <p>I'd also create a script that handles it all for you. Depending on how your code is structured, you can often version your directories and just update a symlink to the latest version, which makes rollbacks easier.</p> <p>You could even use something like <a href="http://www.capify.org/" rel="nofollow" title="Dylan: A Dynamic Object-Oriented Language">Capistrano</a> to automate the deployments. I second the recommendation for CruiseControl, though.</p> http://stackoverflow.com/questions/14155/windows-based-text-editors/14190#14190 4 Answer by The How-To Geek for Windows-based Text Editors The How-To Geek 2008-08-18T04:36:07Z 2008-08-18T04:36:07Z <p>I have used <a href="http://www.ultraedit.com/" rel="nofollow" title="Dylan: A Dynamic Object-Oriented Language">UltraEdit</a> for years... If I'm working on a project I prefer to use a real IDE, but nothing beats it for quickly making changes to source files, or especially for those small PHP projects where you're just hacking away anyway. The killer feature for me is the compare functionality.</p> http://stackoverflow.com/questions/13348/what-are-the-advantages-of-using-a-single-database-for-each-client/13408#13408 3 Answer by The How-To Geek for What are the advantages of using a single database for EACH client? The How-To Geek 2008-08-16T23:14:32Z 2008-08-16T23:14:32Z <p>Here's one approach that I've seen before:</p> <ul> <li>Each customer has a unique connection string stored in a master customer database.</li> <li>The database is designed so that everything is segmented by CustomerID, even if there is a single customer on a database.</li> <li>Scripts are created to migrate all customer data to a new database if needed, and then only that customer's connection string needs to be updated to point to the new location.</li> </ul> <p>This allows for using a single database at first, and then easily segmenting later on once you've got a large number of clients, or more commonly when you have a couple of customers that overuse the system.</p> <p>I've found that restoring specific customer data is really tough when all the data is in the same database, but managing upgrades is much simpler.</p> <p>When using a single database per customer, you run into a huge problem of keeping all customers running at the same schema version, and that doesn't even consider backup jobs on a whole bunch of customer-specific databases. Naturally restoring data is easier, but if you make sure not to permanently delete records (just mark with a deleted flag or move to an archive table), then you have less need for database restore in the first place.</p> http://stackoverflow.com/questions/11489/increasing-battery-life-under-windows/11536#11536 1 Answer by The How-To Geek for Increasing Battery Life Under Windows The How-To Geek 2008-08-14T19:10:37Z 2008-08-14T19:10:37Z <p>There's a number of tools that are designed to help with this type of thing.. off the top of my head:</p> <ul> <li><a href="http://www.verdiem.com/edison/default.htm" rel="nofollow" title="excanvas">Edison</a></li> <li><a href="http://www.localcooling.com/" rel="nofollow">LocalCooling</a></li> <li><a href="http://www.codeplex.com/vistabattery" rel="nofollow">Vista Battery Saver</a></li> </ul> <p>In my experience, turning down the brightness and eliminating or disabling anything that taxes your hard drive (like Windows Indexing/Search) or CPU will bring the biggest power-saving benefits.</p> <p>If you are running Vista a lot of people recommend disabling Aero to save battery life, but I personally don't see any benefit to this, and most of the testing I've seen <a href="http://windowsvistablog.com/blogs/windowsvista/archive/2007/05/14/aero-and-battery-life.aspx" rel="nofollow">shows only a 1-4% battery life improvement</a>. </p> http://stackoverflow.com/questions/8440/visual-studio-optimizations/8519#8519 6 Answer by The How-To Geek for Visual Studio Optimizations The How-To Geek 2008-08-12T05:53:41Z 2008-08-12T05:53:41Z <p>I find that if you are using a solution with a ton of files, the detection for file changes slows things down, especially if you are editing files on a shared folder. This doesn't work as well if you use a command-line source control system, of course.</p> <ul> <li>Environment \ Documents \ "Detect when file is changed outside the environment"</li> </ul> <p>Note that the same setting exists in almost all editors, and makes a big difference when editing files on a share.</p> http://stackoverflow.com/questions/6937/visual-studio-and-dual-multiple-monitors-how-do-i-get-optimized-use-out-of-my-mo/6950#6950 4 Answer by The How-To Geek for Visual Studio and dual/multiple monitors: how do I get optimized use out of my monitors? The How-To Geek 2008-08-09T23:39:42Z 2008-08-09T23:39:42Z <p>I have three monitors, so I usually run with this configuration:</p> <ul> <li>Left Monitor: documentation / ebooks.</li> <li>Middle Monitor: code / debugging</li> <li>Right Monitor: Test application / scrolling logfiles (if needed)</li> </ul> <p>This usually works pretty well, and since the monitors are fairly big I rarely need to use the test application in full-screen, so there's plenty of room for my tail -f windows.</p> <p>I also use AutoHotkey to assign hotkeys that flip to the most important windows, like Firefox or my SSH session. That way I can simply use a shortcut key to access them when necessary.</p> <p>The left monitor is actually a separate computer running Linux and keyboard/mouse shared with Synergy, so I have multiple ebooks or documentation pages open, one on each virtual desktop... I can flip between the documentation by moving my mouse to the left and using a shortcut key.</p>