Questions tagged [development-environment]

A development environment is an integrated set of programming tools, usually centered around a text editor.

A development environment is a preconfigured used during development lifecycle. Preferably hidden from the end user.

Key tools includes a text editor, commonly extended with other tools for , , automating tools, database access or project management features. Such an editor called . Commonly configured for seamless tool usage.
Compared to the stability, performance and backup creation may be sacrificed in favor of more logging, easier bug detection or rapid iterations.

2519 questions
95
votes
10 answers

What's the right way to set up a development environment on OS X with Docker?

Intro I can't figure out a good way to set up a development environment on OS X using Docker and Boot2Docker. The problem I'm hitting is how to manage the source code so that: I can modify the code on OS X using the tools (text editor, IDE, git,…
Yevgeniy Brikman
  • 8,711
  • 6
  • 46
  • 60
94
votes
6 answers

How to tell if rails is in production?

I used script/server -e production to start rails in production mode. It did and I got no errors. However how do I tell if it is in production mode? I tried a non-existent route, and I got a similar error page I did in development. I thought if…
sent-hil
  • 18,635
  • 16
  • 56
  • 74
93
votes
5 answers

How do I set a path in Visual Studio?

How do I set a path for DLL files to be searched in Visual Studio for a particular project alone? Now I am setting it in the environment path variable, but I would like better control over this.
yesraaj
  • 46,370
  • 69
  • 194
  • 251
82
votes
13 answers

How to automate development environment setup?

Every time a new developer joins the team or the computer a developer is using changes, the developer needs to do lots of work to setup the local development environment to make the current project work. As a SCRUM team we are trying to automate…
nimcap
  • 10,062
  • 15
  • 61
  • 69
82
votes
20 answers

Pre-installed Linux for Web Developers?

Does anybody know an ISO image of a up-to-date Linux distribution aimed at web developers with one, some or all of the following features: LAMP stack readily set up (Readily installed Apache 2, virtual sites directory structure (hosting), PHP…
Pekka
  • 442,112
  • 142
  • 972
  • 1,088
81
votes
35 answers

Install app via usb: The device is temporarily restricted

When I toggle on the install via USB in developer mode: it will pop the toast message said that the device is temporarily restricted then toggle off the settings. Is there any solution for this? I searched through all the way like turning off…
kyo
  • 813
  • 1
  • 6
  • 7
75
votes
4 answers

nm: "U" The symbol is undefined

When I nm on one of my libs: nm libmylib.so I get a line like this U _ZNSs4_Rep20_S_empty_rep_storageE@@GLIBCXX_3.4 I checked the man page for nm and I got "U" The symbol is undefined. What does an undefined symbol really mean? If…
bbazso
  • 1,959
  • 6
  • 22
  • 30
74
votes
14 answers

How to remove material theme (or reset to defaults) from IntelliJ / PyCharm?

I have installed Material Theme UI and it made my IDE blackish. Later I decided to remove and and removed plugin. Unfortunately, this didn't give default colors back, some parts of IDE, for example Project pane, remained blackish. How ro…
Dims
  • 47,675
  • 117
  • 331
  • 600
74
votes
4 answers

Write to rails console

When I want to try or debug smthing I run rails console and do some stuff there. I can print some text or variables from code by raising exception with raise "blablabla". Question: How I can just write to rails console without exception raising (and…
70
votes
2 answers

What is the difference between M2_HOME and MAVEN_HOME

I have two version of environment variables for maven home - M2_HOME and MAVEN_HOME. Which one needs to be set?
developer
  • 9,116
  • 29
  • 91
  • 150
67
votes
7 answers

How to search all open files in Eclipse?

Simple question: how do I search all the files currently open in Eclipse? Note: I don't wanna search all the files I have in that workspace, just the ones open in tabs. Is there an easy way to do this?
daveslab
  • 10,000
  • 21
  • 60
  • 86
65
votes
2 answers

What accounts to use when installing SQL Server 2008 Developer

I am installing SQL Server 2008 Developer here, and on the Server Configuration step of the installation it asks me about Service Accounts. What do I choose here? I can see the available ones in the screen shot, although on most of them I can only…
Svish
  • 152,914
  • 173
  • 462
  • 620
62
votes
8 answers

How can I use Python for large scale development?

I would be interested to learn about large scale development in Python and especially in how do you maintain a large code base? When you make incompatibility changes to the signature of a method, how do you find all the places where that method is…
user31157
60
votes
11 answers

What is in your JavaScript toolchain?

I am looking to start writing a sophisticated application in JavaScript to run on the web. I've written little bits of throwaway code in JavaScript before, using the DOM directly and a little bit of jQuery. But this is the first time I'm looking to…
Brian Campbell
  • 322,767
  • 57
  • 360
  • 340
57
votes
11 answers

How to test 500.html error page in django development env?

I am using Django for a project and is already in production. In the production environment 500.html is rendered whenever a server error occurs. How do I test the rendering of 500.html in dev environment? Or how do I render 500.html in dev, if I…
lud0h
  • 2,370
  • 6
  • 33
  • 41