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
11
votes
2 answers

How do I set Windows environment variables permanently?

How do I set Windows environment variables permanently? I see that the Windows environment variables are reset when you close the command window. I want to set them permanently, so that I don't have to repeat the task every time I use the CLI.
11
votes
14 answers

Pros and Cons of Developing on a VM on a PC

I recently build myself a semi beef up PC (Q9450, 8GB DDR2 1066, 1TB HDD, Dual 8600GT, Vista Ultimate and Dual 22' Monitors) and I'm evaluating whether i should develop on a VPC/VMWare session on top of Vista or not? One benefit I can see is that I…
Jose B.
  • 897
  • 1
  • 10
  • 13
11
votes
2 answers

iOS Certificate Generation Error: Disc Quota Exceeded

I am trying to generate an iOS Development Certificate. After I select the .certSigningRequest file from my desktop and click on Generate, I get the following error: Processing of multipart/form-data request failed. Disc quota exceeded Why is this…
Antiohia
  • 1,142
  • 13
  • 37
11
votes
2 answers

How to use FactoryGirl factories to build a development database?

I have already built some elaborate FactoryGirl factory definitions for testing a Rails project, and for this purpose they are working well. I'd now like to use the same definitions with a script (Ruby, Rake, whatever...) to populate the Rails…
Gene
  • 46,253
  • 4
  • 58
  • 96
11
votes
2 answers

Develop app run in kiosk mode in android

How to make our app which is act like kiosk mode app( SureLock lockdown app). I have LG E400 rooted android phone Android 2.3.6. I want to develop app like Surelock what shold i need to develop such app. Can anyone help me to develop such app on my…
PrasadM
  • 211
  • 2
  • 4
  • 8
10
votes
5 answers

one or more errors occurred failed to launch debug adapter Visual Studio 2019

From today morning, my Visual Studio is behaving very strangely. I get the error "one or more errors occurred failed to launch debug adapter" whenever I run the project. I run my project profile instead of running it in the IIS Express profile.…
10
votes
2 answers

Python replacements for RVM/Bundler/Capistrano

I'm just moving over from Ruby/Rails development to Python/Django and i'm trying to find the best replacements for RVM/Bundler/Capistrano but it seems to be a total mess? I've found these so…
Andreas
  • 240
  • 3
  • 16
10
votes
4 answers

How to use docker in the development phase of a devops life cycle?

I have a couple of questions related to the usage of Docker in a development phase. I am going to propose three different scenarios of how I think Docker could be used in a development environment. Let's imagine that we are creating a REST API in…
10
votes
3 answers

should I use WebMatrix to build a real-world website?

I have gone through hundreds of articles and blog posts that saying WebMatrix is just for beginners and such. my question is, why shouldn't I use WebMatrix to create a real-world working website, like a light-weight Q&A website? we can create…
kayvan
  • 115
  • 2
  • 7
10
votes
6 answers

How to automatically set up a development environment?

I have been tasked to set up a Java based development environment across multiple Windows machines. The problem is that I want to the process to be done automatically and easily on each machine so the developers don't have to waste time downloading…
Nadav
  • 1,792
  • 2
  • 16
  • 20
10
votes
2 answers

ActiveRecord: query not using correct type condition for STI subclass

I have a set of STI subclasses inheriting from a User base class. I am finding that under certain conditions inside a subclass' definition, queries on the subclasses do not correctly use the type condition. class User < ActiveRecord::Base #…
10
votes
6 answers

Setting up a Ruby development environment

I am currently trying to set up a development environment for learning Ruby. The environment will primarily be for getting to grips with the language, but I will most probably move on to development with Rails after long. With web development a…
fletcher
  • 13,380
  • 9
  • 52
  • 69
10
votes
2 answers

How to avoid accidentally 'hg push' instead of 'hg qpush'?

For those of you that use Mercurial with the MQ extension: This is the second time I accidentally submit changes to the central repository (hg push) instead of applying a patch to my working directory (hg qpush). I think this is very unfortunate,…
10
votes
5 answers

Amazon SimpleDB for development environment / local installation

Is there a way / tool to simulate Amazon's SimpleDB for the purpose of development? In my quest for above, I found this tool but this is for the Mac OS. Anything that can be installed on Win XP? Needless to say, all SimpleDB APIs need to be…
Kabeer
  • 4,138
  • 7
  • 40
  • 62
10
votes
6 answers

Check if Java code is running from IntelliJ, Eclipse, etc or command line

I would like to know if there is a way (programmatically) to check if a code is running within Eclipse, IntelliJ, any other editor or running from the command line (console). I was thinking to use System.getProperty() but is there any property that…
Nir
  • 1,524
  • 6
  • 23
  • 41