active questions tagged development-environment - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T22:50:45Zhttp://stackoverflow.com/feeds/tag/development-environmenthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/85353/best-general-svn-ignore-pattern22Best general SVN Ignore Pattern?Burly2008-09-17T16:59:23Z2009-11-29T13:00:54Z
<p>What is the best (or as good as possible) general SVN ignore pattern to use? </p>
<p>There are a number of different IDE, editor, compiler, plug-in, platform, etc. specific files and some file types that "overlap" (i.e. desirable for some types projects and not for others). </p>
<p><strong>There are however, a large number of file types that you just never want included in source control automatically regardless the specifics of your development environment.</strong></p>
<p>The answer to this question would serve as a good starting point for any project - only requiring them to add the few environment specific items they need. It could be adapted for other Version Control Systems (VCS) as well.</p>
http://stackoverflow.com/questions/1810079/different-development-environment-than-test-production-environments2Different Development environment than Test & Production environments?Jeremy2009-11-27T18:18:58Z2009-11-27T21:32:32Z
<p>What would you say if a developer wanted to implement a sql2008 dev environment, but we were still forced to use a sql2000 test and sql2000 production environment?</p>
<p>Would there be anything wrong with using sql2008 on a dev server? Of course you'd need to know what functionality you couldn't use, so you didn't have problems migrating your work from the sql2008 servers to sql2000.</p>
http://stackoverflow.com/questions/1809763/library-locations-and-packages-for-software-development-on-linux1Library locations and packages for software development on Linuxsdg2009-11-27T16:55:46Z2009-11-27T16:55:46Z
<p>We will shortly be spinning up a new Linux-based development effort; and we are new-ish to Linux development on a large scale. We have a well-defined process to handle third-party and internal libraries on Windows, but I am interested in Linux-specific variations and optimizations.</p>
<p>It seems logical to (as on Windows)</p>
<ol>
<li>Not have everyone download and compile their own version of various libraries like boost/etc. but have official builds checked-in to a repository somewhere.</li>
<li>To further have the above libraries binaries checked in to source control so different versions can be tied to our code, so for example version 1.2 of our code needs boost 1.41 and the whole thing just works.</li>
</ol>
<p>Should we therefore use something like apt-get packages to a local server with official versions of things?</p>
<p>If so, do we allow the libraries to install to their "natural" place of /usr/local/include or wherever?</p>
<p>If not; do we just check-in libraries into our normal repository places, then have our Makefile(s) have paths (relative or otherwise) embedded in them so as to <strong>not</strong> depend upon /usr/local/?</p>
<p>What have other people done in this area please? Pointers to books/sites also greatly appreciated for Linux-based team development (of applications, not Kernel).</p>
http://stackoverflow.com/questions/116949/what-is-your-preferred-tool-stack-for-php-development-in-the-windows-environment12What is your preferred tool stack for PHP development in the Windows Environment?Tim Visher2008-09-22T19:25:21Z2009-11-27T14:21:56Z
<p>I have been developing <em>basic</em> web sites for awhile now with some PHP thrown in for getting dynamic stuff done. However, I recently decided that it was time I got my hands a little dirtier so I wanted to start to play with the underpinnings of Wordpress and other such apps. I work on a Mac at home and have been using <a href="http://www.panic.com/coda/" rel="nofollow">Coda</a> for most of my editing needs and I love it. Also, to manage the services stack I use <a href="http://www.mamp.info/en/index.php" rel="nofollow">MAMP</a> at home. However, I've begun to realize that for <em>heavy</em> PHP and Web work (AJAX, etc.), more is needed.</p>
<p>I'm very interested to hear the kinds of tools more experienced web developers use on a day to day basis to manage the entire work flow. I found <a href="http://www.developertutorials.com/blog/php/the-ultimate-php-web-development-environment-part-2-98/" rel="nofollow">this article</a> over on developer tutorials and decided to go with XAMPP (for the moment) for managing the services. However, IDE, Source Control, Debugger, etc. are all up for grabs.</p>
<p>Anyway, your thoughts are <em>much appreciated</em>. And, if at all possible, try to describe your <em>entire</em> stack with what each tool fulfills for your development process.</p>
http://stackoverflow.com/questions/1783487/is-it-possible-to-exclude-grails-plugin-from-production-environment1Is it possible to exclude grails plugin from production environment?Dan2009-11-23T14:34:29Z2009-11-27T06:19:41Z
<p>I would like to use certain plugin in development environment, but would like to exclude this plugin from production and from generated war. What is the easiest way to accomplish this?</p>
http://stackoverflow.com/questions/1679084/lightweight-development-web-server-with-support-for-php-v23Lightweight development web server with support for PHP v2David2009-11-05T08:22:14Z2009-11-26T06:01:27Z
<p>In line with this question:
<a href="http://stackoverflow.com/questions/171655/lightweight-web-app-server-for-php">http://stackoverflow.com/questions/171655/lightweight-web-app-server-for-php</a></p>
<p>The above question has been asked numerous times and answered exactly the same in all the cases I've found using google. My question is similar to a degree but with a different desired goal: On demand development instances.</p>
<p>I have come up with a somewhat questionable solution to host arbitrary directories in my user account for the purpose of development testing. I am not interested in custom vhosts but looking to emulate the behaviour I get when using paster or mongrel for Python & Ruby respectively.</p>
<p>Ubuntu 9.10
TOXIC@~/ >APACHE_RUN_USER=$USER APACHE_RUN_GROUP=www-data apache2 -d ~/Desktop/ -c "Listen 2990"</p>
<p>Is there a better solution, could I do something similar with nginix or lighttpd?</p>
<p>Note:
The above won't work correctly for stock environments without a copied & altered httpd.conf.</p>
<p>Update:
The ideal goal is to mimic Paster, Webbrick, and Mongrel for rapid local development hosting. For those light weight servers, it takes less then a minute to get a working instance running ( not factoring any DB support ). Apache2 vhost is great but I've been using Apache2 for over ten years and it would be some sort of abomination hack to setup a new entry in /etc/hosts unless you have your own DNS, in which case a wildcard subdomain setup would probably work great. EXCEPT one more problem, it's pretty easy for me to know what is being hosted ( ex. by paster or mongeral ) just doing a sudo netstat -tulpn while there would be a good possibility of confusion in figure out which vhost is what.</p>
http://stackoverflow.com/questions/1789031/what-development-environment-for-php-mysql-would-you-suggest0What development environment for PHP + MySQL would you suggestJosef Sábl2009-11-24T09:49:48Z2009-11-24T12:17:11Z
<p>I am setting up web application development environment on my localhost. I am used to use WAMP server but I noticed Zend Server which looks promising. I am developing both Zend Framework and non framework applications.</p>
<p>Which of these two would you suggest? Is there another option?</p>
http://stackoverflow.com/questions/1784848/create-a-fully-featured-environment-for-tcl-tk-development-under-windows2Create a Fully Featured Environment For Tcl/Tk Development Under WindowsNathan Campos2009-11-23T17:55:11Z2009-11-24T09:04:23Z
<p>I'm now learning Tcl/Tk, but as I'm running Windows, I want to create a fully featured(professional) development environment for this language, but I need to know:</p>
<ul>
<li>Which tools I need to install(first of all)?</li>
<li>What are the IDEs that support Tcl/Tk development?</li>
<li>What is the best text editor to develop in?</li>
<li>Where I can find some librarys for it(if exists)?</li>
<li>It's possible to do some web applications with it?
<ul>
<li>It uses CGI?</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/81008/is-it-possible-by-any-stable-method-to-enable-readyboost-on-windows-server-20081Is it possible, by any stable method, to enable ReadyBoost on Windows Server 2008?DavidK2008-09-17T08:08:32Z2009-11-22T21:54:43Z
<p>I know the standard answer is No. However hear out the reasons for wanting it, and then we'll go for whether it is possible to achieve the same effect as ReadyBoost via either enabling (and installing) ReadyBoost or using third party software.</p>
<p>Reasons for using Widows Server 2008 as a development environment on a laptop:</p>
<ol>
<li>64-Bit, so you get the full use of 4GB RAM.</li>
<li>SharePoint developer, so you can run SharePoint locally and debug successfully.</li>
<li>Hyper-V, so you get hardware virtualisation of test environments and the ability to demo full solutions stored in Hyper-V on the road</li>
</ol>
<p>So all of that equals: Windows Server 2008 (64) on a laptop.</p>
<p>Now because we are running Hyper-V, we require a large volume of disk space. This means we are using 5,000 rpm 250GB HDD.</p>
<p>So we are on a laptop, we are not able to use solid state HDD, and we only have 4GB of RAM and the throughput of a laptop motherboard rather than a server one... all of which means we are not flying... this thing isn't a sluggard but it's not zippy either.</p>
<p>Windows Server 2008 is based on the same code base as Vista. Vista features ReadyBoost, which enables USB 2 flash devices to be used as a weak cache for system files, which visibly increases the performance of Vista. As the codebases are similar, it should be possible for ReadyBoost to work on WS2008, however Microsoft have not shipped or enabled ReadyBoost in WS2008.</p>
<p>Given that we are running WS2008 on a laptop as a development environment, how can we achieve the performance gains of ReadyBoost through the use of flash devices in Windows Server 2008?</p>
<p>For the answer to be accepted it must outline an end to end process for achieving the performance gain.</p>
<p>Answers of 'No' will not be accepted as I understand some third party tools achieve some of the functionality, but I haven't seen a full end-to-end description of how to get going with them.</p>
http://stackoverflow.com/questions/1767278/development-software-how-common-is-it-for-developers-to-buy-it-for-personal-use4Development software - How common is it for developers to buy it for personal useRocketSurgeon2009-11-19T23:20:03Z2009-11-21T00:07:52Z
<p>Edit: The answer is yes, pretty common. The Microsoft TechNet is one of best deals (except it does not have Visual Studio). So MSDN generally is a better choice. Thank you</p>
<p>Hello All,
I was recently looking at prices of Microsoft Visual Studio, SQL server and MSDN subscription. I never considered it necessary to buy it for personal use, until this year. For some reason it is not possible to get any new hardware, operating systems or development tools at my work. Everything I can use for self-training of pet projects is on average 5-10 years old. So I am seriously thinking of buying my personal software. The company I work for is one of the largest in USA, but for last few years R&D is non-existent. And I have spent all possible trial periods for Microsoft Visual Studio, SQL Server and similar things. I never mind to spend hundreds of dollars for broadband, personal computers, technical books. But Development Software ?</p>
<p>So I need to hear from you. How many of you, being full-time employed by software shops decided to spend cash on things, your employer will never buy for you: things like Visual Studio, laptops, Windows 7 etc.</p>
http://stackoverflow.com/questions/1760706/a-development-machine-in-virtualbox-debian-min-vs-archlinux-vs-recommend-one0A Development Machine in VirtualBox - (Debian-min vs ArchLinux vs recommend-one).Vivek Sharma2009-11-19T03:29:57Z2009-11-19T03:36:40Z
<p>I have few years of exp on linux, mainly ubuntu (dual-boot). Now i am shifting to windows, and installing linux in VirtualBox (PUEL). I am looking for a light-weight distro for development machine setup. Thought of using debian-unstable-minimum, and installing build-essentials, openbox(or a little more feature light-WM, ps recommend), ssh-server, ethereal, iptables, nmap(maybe), vim, python3. That is all what i can think of now mainly. </p>
<p>Options I can think of -- </p>
<ul>
<li>Debian-unstable minimum, and then using apt-get to do the rest. Is there also recommended version of ubuntu-lite. I read Ulite is not good, some-others are also not that good. </li>
<li>ArchLinux, reading a great deal about it. Wikipedia says it is mainly a binary-based distro, but everywhere on net/community only talk about its source-based approach. If it is binary I think I can have a quick setup. (For guest-OS-ArchLinux guys in VBox ) is your guest-additions working fine in archLinux. </li>
<li>FreeBSD 8, is it possible for minimum install. And recommended. </li>
<li>Recommendations for other i686 optimized linux, if any, or lets say i386 is also fine, as will only use it for coding.</li>
</ul>
<p>For system admins -<br>
I would like to know if ArchLinux keeps the potential to penetrate companies for production systems, and replace redhat/debian/bsd in servers for hosting apps/portals. </p>
<p>Addition: Just a thought- is there any distro which helps you to be a better programmer/developer/analyst, in terms of the way things should be done. I dont know if I am over-generalizing it :).</p>
http://stackoverflow.com/questions/1730351/eclipse-smart-quotes-like-in-textmate2Eclipse smart quotes - like in Textmaterh0dium2009-11-13T16:33:22Z2009-11-18T18:12:09Z
<p>Hey all,</p>
<p>Happy Friday — Does anyone know if eclipse has the notion of smart quotes like Textmate. The way it works is to select some words and quote them by simply hitting the <kbd>"</kbd> key? I'm a newbie here so be gentle. FWIW - I'm using pydev in Eclipse.</p>
<p>Thanks</p>
<p><strong>Rephrase</strong></p>
<p>What I am looking for is given I have a word or phrase selected on the screen, I would like to simply hit the '"' key and have the entire word or phrase enclosed by quotes. The same would apply to various keys — like ([{"'`.</p>
<p>So say I have the following code</p>
<pre><code>a = {}
a[keyword] = 1
</code></pre>
<p>Now (in python) keyword should be in quotes. I should be able to double click (select) keyword and simply type the <kbd>'</kbd> and then viola the whole word is quoted. Right now what happens is that keyword is replaced by a single quote... Sigh..</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1756750/do-you-virtualize-all-or-part-of-your-development-environment2Do you virtualize all or part of your development environment ?julien2009-11-18T15:24:34Z2009-11-18T16:16:44Z
<p>I've been thinking about virtualizing part or all of my RoR development environment.</p>
<p>This could have, in theory, many advantages due to encapsulation </p>
<ul>
<li>easily manage app-specific configurations</li>
<li>sandboxing gems and plugins dependencies</li>
<li>cross-platform</li>
<li>plug 'n play </li>
<li>virtualization commodities, like snapshots and so on</li>
<li>separation of concerns through several appliances for the different development phases (development, testing, staging etc)</li>
</ul>
<p>However, in practice, my first tryout really borked my workflow.
My ubuntu box was running a headless VM ubuntu server, which I sshed into pretty much like you'd work off the cloud, but had local access to the source files, and edit in gVim from the host (obviously).</p>
<p>My problems were mainly due to editing the source from the host, and trying to rely on the guest for all things ruby, which rails.vim didn't like for example.
Even though I've been hinted at some possible workarounds for this particular vim issue, it still is pretty cumbersome as it is.</p>
<p>An alternative would be to run a full blown guest os, and edit the source from in there, but that doesn't really appeal to me somehow.</p>
<p>I haven't even tried to throw cvs into the mix yet, but i can foresee that as being yet another source of headaches, that would make this setup unwieldy and pretty much defeat the purpose.</p>
<p>So I've yet to find a workable solution.</p>
<p>Have you tried to virtualize part or all of your development environment and managed not to impair your workflow, productivity or environment's friendliness, or better yet, improved it ?</p>
http://stackoverflow.com/questions/1731791/whats-the-best-sql-server-setup-for-a-development-environment0What's the best SQL Server setup for a development environment?CesarGon2009-11-13T20:44:33Z2009-11-18T15:53:10Z
<p>Hi,</p>
<p>We are a small team using Visual Studio 2008 for development and SQL Server 2008 Standard in the production servers. We are seting up a new development lab and I am wondering about SQL Server versions/editions and configuration.</p>
<p>Visual Studio 2008 comes with a development license of SQL Server 2005, but since we are only targetting SQL Server 2008 for production, I don't think we should install SQL Server 2005 on the development workstations, right? Would you suggest skipping the bundled SQL Server 2005 and going for, perhaps, SQL Server 2008 Developer? Or maybe SQL Server 2008 Express?</p>
<p>Or would you recommend not installing SQL Server on the development workstations at all, and doing all the development against a development server?</p>
<p>Your views are appreciated. Thanks!</p>
http://stackoverflow.com/questions/1754793/prevent-file-differences-between-live-and-staging-websites-and-system-scripts-ph1Prevent file differences between live and staging websites AND system scripts (PHP)Tom2009-11-18T09:42:07Z2009-11-18T13:31:50Z
<p>I'm trying to find a good way to maintain PHP configuration differences between a dev and live environment. I know how to handle differences when scripts are run by Apache (<em>see below</em>), but not when they are run <strong>on the command line</strong>, e.g. via cron.</p>
<p><em>Background info:</em></p>
<p><strong><em>What do I mean by "configuration differences"?</em></strong> Like most code shops, we run a non-public 'staging' version of our website where we test code before it goes to the live website. We use Subversion and have the live website as 'Trunk' and 'Staging' as a branch. It makes life easier when code goes from staging to live if the repository version of the files have minimal differences. But obviously, some details need to be different, e.g. the DB connection details.</p>
<p><strong><em>How configuration differences are solved with Apache</em></strong></p>
<p>In PHP, we set branch specific variables as follows:</p>
<pre><code>switch ($_SERVER['HTTP_HOST']) {
case 'ourstagingurl.com':
$dbPassword = "blahblah";
break;
default:
$dbPassword = "blahblah";
}
</code></pre>
<p>or we put the following in the .htaccess file relevant to the specific site:</p>
<pre><code>php_value dbPassword "blahblah"
</code></pre>
<p><strong><em>Why I can't resolve configuration differences using the CLI?</em></strong></p>
<p>When a script is run on the CLI, there's no super globals such as <code>$_SERVER</code>. I could <code>include</code> a config file using a absolute path but how can I know whether the script is from live or staging? I could pass in a command line argument that specifies the environment but I was hoping there was a better way?</p>
http://stackoverflow.com/questions/1753158/how-risky-is-development-against-sql-server-2008-with-production-on-sql-server-202How risky is development against SQL Server 2008 with production on SQL Server 2005qntmfred2009-11-18T01:59:01Z2009-11-18T13:17:55Z
<p>My dev environment has SQL Server 2008 installed. I have an asp.net 1.1 site in production using SQL Server 2005. I'd rather not install SQL Server 2005 on my development environment. How risky would this be? What kinds of things might cause problems?</p>
http://stackoverflow.com/questions/779502/what-do-people-think-of-gupta-team-developer0What do people think of Gupta Team Developer?Stewart2009-04-22T22:20:05Z2009-11-17T21:32:03Z
<p>Has anybody any experience in using Gupta (formerly Centura) Team Developer? </p>
<p>If so, what do you think of it in terms of its capability to support the development of mature, scalable, maintainable applications?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app18The funniest/weirdest error message you've got from a development environment/applicationpablito2008-10-26T14:35:58Z2009-11-17T20:04:04Z
<p>What is the funniest/weirdest error message you've got from a development environment/application?</p>
<ul>
<li>"Catastrophic failure" </li>
<li>"'null' is null or not an object"</li>
</ul>
http://stackoverflow.com/questions/1740980/in-which-practical-ways-can-virtualization-enhance-your-development-environment1In which practical ways can virtualization enhance your development environment ?julien2009-11-16T09:14:49Z2009-11-17T15:42:09Z
<p>Practical uses of virtualization in software development are about as diverse as the techniques to achieve it.</p>
<p>Whether running your favorite editor in a virtual machine, or using a system of containers to host various services, which use cases have proven worth the effort and boosted your productivity, and which ones were a waste of time ?</p>
<p>I'll edit my question to provide a summary of the answers given here.
Also it'd be interesting to read about about the virtualization paradigms employed too, as they have gotten <a href="http://en.wikipedia.org/wiki/Virtualization" rel="nofollow">quite numerous</a> over the years.</p>
<p>Edit : I'd be particularly interested in hearing about how people virtualize "services" required during development, over the more obvious system virtualization scenarios mentioned so far, hence the title edit.</p>
<p><hr></p>
<p>Summary of answers :</p>
<ul>
<li><p>Development Environment</p>
<ul>
<li>Allows encapsulation of a particular technology stack, particularly useful for build systems</li>
</ul></li>
<li><p>Testing</p>
<ul>
<li>Easy switching of OS-specific contexts</li>
<li>Easy mocking of networked workstations in a n-tier application context</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1741100/advantages-of-running-a-production-oriented-stack-during-development2Advantages of running a production-oriented stack during development?julien2009-11-16T09:40:59Z2009-11-17T13:04:19Z
<p>Lately I seem to have noticed a trend amongst some RoR developers, that is using RubyEE/Passenger/Apache type setups during their development process.</p>
<p>Besides the obvious "use what your clients use" idea, do these technologies enhance the development environment in any way compared to what the vanilla mongrel stack gives you ?</p>
http://stackoverflow.com/questions/1744469/architecture-using-different-classes-on-development-production1Architecture: using different classes on development / productionSavageman2009-11-16T19:54:32Z2009-11-16T20:16:33Z
<p>Hello,</p>
<p>I'm interested about using 2 different classes in 2 different environment. Both classes should share the same structure (methods), but the one used in production would be "light", with less verifications or less funtionnality or different actions.</p>
<p>Example: a SQL query class which doesn't check the type/existence of fields.
Other example: a error handling class who logs and doesn't display messages.</p>
<p>I presume a specific design pattern already exists, but I don't really know which one I should digg into.
Can someone give me a hint here please?</p>
<p>Thanks in advance for the anwser! </p>
http://stackoverflow.com/questions/1743683/distinguishing-development-mode-and-release-mode-environment-settings-on-android0Distinguishing development mode and release mode environment settings on AndroidJoe Holloway2009-11-16T17:36:39Z2009-11-16T17:50:17Z
<p>I'm building an Android application and would like to maintain a few environment variables that I can tweak depending on whether I'm in development mode or release mode. For example, I need to invoke a web service and the URL will be slightly different in either mode. I'd like to externalize this and other settings so I can change them easily based on my target deployment.</p>
<p>Are there any best practices or anything in the SDK to assist with this need?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1736655/linux-development-c-c-bash-python-on-windows-72Linux Development C/C++/bash/python on windows-7.Vivek Sharma2009-11-15T05:12:22Z2009-11-15T20:16:52Z
<p>Before resorting to stackoverflow, i have spend a lot of times looking for the solutions. I have been a linux-user/developer for few years, now shifting to windows-7.<br>
I am looking for seting-up a development environment (mainly c/c++/bash/python) on my windows machine. Solutions i tired - </p>
<ul>
<li><p>VirtuaBox latest, with grml-medium (very light debian-based distro)<br>
some how managed to install it in VBox, but lots of issues still regarding Guest-Additions, sharing files, screen-resolutions. Tired with it, now. </p></li>
<li><p>MinGW<br>
installed it, added to %PATH%, along with GVIM. Now i can use powershell, run gvim, vim, and mingw from the shell as bash. But no manpages, its a lot of convenience to have them availble, locally and offline. But i think it gives me a gcc development
Do i need mySys now. i can installed it if it provides me with manpages and ssh.</p></li>
<li><p>Cygwin<br>
Has avoided till now. But i think it will give me manpages, gcc-utils, python-latest.</p></li>
<li><p>Something called Interix.<br>
any taker for that. is it recommened. </p></li>
</ul>
<p>What are the best practices? What are you guys following, i dont have a linux-box to ssh to, well if Vbox things works fine at some point of it, i can then ssh to my VBox. I have lost of time setting it up, so abandoning it for a while.<br>
I think only VirtualBox solution will let try things like IPtables, or other linux-system-frameworks. </p>
<p>I checked this<br>
<a href="http://stackoverflow.com/questions/964850/best-setup-for-linux-development-from-windows">http://stackoverflow.com/questions/964850/best-setup-for-linux-development-from-windows</a><br>
do you recommend coLinux or its derivatives. If yes advices or consideration before i try that.</p>
http://stackoverflow.com/questions/106419/whats-a-good-source-code-search-engine7What's a good source code search engine?toohool2008-09-19T23:38:53Z2009-11-14T20:27:42Z
<p>The codebase I work on is huge, and grepping it takes about 20 minutes. I'm looking for a good web-based source code search engine.. something like an intranet version of koders.com.</p>
<p>The only thing I've found is Krugle Enterprise Edition, which doesn't post its prices... and if you have to ask, you can't afford it.</p>
<p>I'd really prefer a plain old search engine, without a lot of other bells and whistles.</p>
<p>The source is mostly ASP.NET/C# and Javascript.</p>
http://stackoverflow.com/questions/1661908/qa-function-whos-responsibilty-what-skills-to-look-for1QA Function - Who's Responsibilty? What skills to look for?Rob2009-11-02T15:22:03Z2009-11-09T07:15:31Z
<p>Our company is exploring hiring a QA specialist and I had a couple of questions. I'm not sure if there are any cut and dry answers here but any input is appreciated. Here are my questions:</p>
<ol>
<li><p>Would a QA tester report to the business side or the IT side? It seems like there may be benefits to either. </p></li>
<li><p>What skills are best - should we look for a veteran tester and expect to teach them the business, or should I look for someone who is familliar with the business and expect to turn them into a tester? </p></li>
</ol>
<p>Any additional tips or suggestions. Thanks.</p>
http://stackoverflow.com/questions/1677113/files-to-ignore-when-using-visual-studio-with-git0Files to ignore when using Visual Studio with GitKelly French2009-11-04T22:28:41Z2009-11-08T10:15:48Z
<p>I've installed Git to do some development using Visual Studio 2008. Most of the work will be new development but we do have some old projects from prior to VS2005 that I want to bring over into the new repository. There is an existing thread about general <a href="http://stackoverflow.com/questions/507343/using-git-with-visual-studio">VS/Git integration</a> but my question is limited to the .gitignore file and Visual Studio.</p>
<p>My question has two parts: </p>
<ul>
<li><p>What entries should be included in the .gitignore file to cover the Visual Studio specific files like binaries, assemblies, debug files, etc? Some were covered in the thread mentioned above but is there a comprehensive set?</p></li>
<li><p>In what situations have you needed to exclude files globally, or for a single repository, or using the environment variable?</p></li>
</ul>
<p>I already know the HOW. Here is an excerpt from the Git <a href="http://www.kernel.org/pub/software/scm/git/docs/user-manual.html" rel="nofollow">user-manual</a> on ignoring files.</p>
<blockquote>
<p>If you wish the exclude patterns to
affect only certain repositories
(instead of every repository for a
given project), you may instead put
them in a file in your repository
named .git/info/exclude, or in any
file specified by the
core.excludesfile configuration
variable. Some git commands can also
take exclude patterns directly on the
command line. See <a href="http://www.kernel.org/pub/software/scm/git/docs/gitignore.html" rel="nofollow">gitignore(5)</a> for the
details.</p>
</blockquote>
http://stackoverflow.com/questions/1693778/xml-xml-stylesheets-xquery-book-and-development-environment0XML, XML Stylesheets XQuery: book and development environmentShaChris232009-11-07T17:26:02Z2009-11-07T18:30:06Z
<p>I'm completely new to XML Schema, XML Stylesheets and XQuery.</p>
<p>To me, XML is just a text file just containing tags and values. I know that much, lol.</p>
<p>I just got a <a href="http://sir-lab.usc.edu/cs585/CS585%5Ffall%5F2009%5Fassignment3.pdf" rel="nofollow">homework</a> asking us to design simple XML Schemas, and also applying Stylesheets and XQuery.</p>
<p>Could anyone please point me to:</p>
<ol>
<li>"Best" books/resources (based on your experience) that would teach me XML Schema, XML Stylesheet, and XQuery. (Would be awesome if it's example-driven since I learn best by doing).</li>
<li>What development environment (IDE, tools) that would allow me to solve the homework in the most productive way.</li>
</ol>
<p>I know it's a school assignment, but I want to do the assignment like how professionals do it so I can gain a lot from the assignment.</p>
http://stackoverflow.com/questions/1687837/worth-it-to-upgrade-from-a-dell-d8300worth it to upgrade from a Dell D830? [closed]JoelFan2009-11-06T14:09:07Z2009-11-07T01:59:42Z
<p>I do Visual Studio development on my employer-issued Dell D830 laptop (see <a href="http://www.notebookreview.com/default.asp?newsID=3857" rel="nofollow">specs</a>). Like many developers, I am ashamed to say, I am quite ignorant of hardware. The main thing I noticed in looking at the specs of my current machine is (1) it came out over 2.5 years ago and (2) it has 2 GB of RAM.</p>
<p>I am currently experiencing somewhat slow build times. I often have 3 or 4 Visual Studio instances running (due to having to work on several "solutions" at once) plus SQL Server, the web server, etc.</p>
<p>Is it worth the "capital" I would need to expend to twist my employer's arm to upgrade my laptop? I'm thinking a newer model would have 64-bit Windows and at least 4 GB or RAM and a faster processor, but I don't want to have to go through all that and not see a noticeable difference.</p>
<p>Due to the "contractor" nature of my job and the fact that I work from home sometimes, I need to have a loptop, not a desktop.</p>
<p>Any advice?</p>
http://stackoverflow.com/questions/1681437/beginning-php-development2Beginning PHP developmentMichael Kniskern2009-11-05T15:52:17Z2009-11-06T06:52:10Z
<p>I am starting on a project where I will be making HTML and CSS edits to PHP site. I need to configure my home computer to run the site and do PHP development work on it.</p>
<p>What is the best recommendation for a beginner to start PHP development? I have an extensive background using the Microsoft programming stack and .NET development.</p>
<p>My home computer is currently using Windows Vista Home Premium x64.</p>
http://stackoverflow.com/questions/1682171/is-it-possible-to-make-localhost-work-through-a-virtual-machine0Is it possible to make localhost work through a Virtual Machine?CT2009-11-05T17:22:17Z2009-11-05T19:51:10Z
<p>I am using a Macbook running 10.6. I am using VMware Fusion to run an Ubuntu Server minimal virtual machine. Ubuntu Server is running your basic LAMP stack.</p>
<p>I do my development in Mac OS. I have VMware share a directory from Mac OS to the Ubuntu Server. Ubuntu Server uses that directory for apache. </p>
<p>I access my server is Mac OS in firefox using the ip address of my virtual machine. This is a pain because I have to find out what the ip address is of my virtual machine each time I boot it up. I could set a static ip address but this causes problems if I move my Macbook from network to network.</p>
<p>Is there any configuration (NAT or Bridged or something) that would let me access my virtual machine from the Mac OS using localhost or something similar?</p>
<p>Thanks</p>