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
1
vote
6 answers

What kind of programming environment do you use to write your Windows-based Games?

I've used XNA and Visual Studio 2005 integrated with Flash. I'm curious to see what environments other people use and prefer.
Joe Morgan
  • 1,761
  • 6
  • 20
  • 29
1
vote
0 answers

how to change different environments easily in asp.net application?

I have an asp.net application that needs to run on different environment such as development, test and production. The site uses a couple of connection strings, 3 web services, different Url paths for OData services, different file upload…
1
vote
2 answers

Cannot login to Django admin

My admin login in development stopped working suddenly. It used to be working fine for almost a year. I am able to see the login page and type the superuser credentials. When I click on the login button, nothing happens. The admin log also does not…
m b
  • 101
  • 8
1
vote
3 answers

Using Gradle in Android Development

Im new to android development and ive seen some old tutorials before regarding its development on Eclipse. i recently download the new Android Studio to use for the development. However, i found something new called gradle files that are present in…
1
vote
5 answers

Prevent file differences between live and staging websites AND system scripts (PHP)

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 (see below), but not when they are run on the command line, e.g. via…
Tom
  • 14,041
  • 16
  • 64
  • 80
1
vote
2 answers

Accumulo - MiniAccumuloCluster Connection Refused

I'm using the MiniAccumuloCluster (MAC) 1.5 jar and attempting to even just instantiate a MAC object but can't seem to connect to it. I get a ton of errors akin to the following: 13/07/08 14:31:29 INFO zookeeper.ClientCnxn: Opening socket connection…
Mastergeek
  • 429
  • 1
  • 6
  • 16
1
vote
4 answers

Architecture: using different classes on development / production

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…
1
vote
5 answers

In which practical ways can virtualization enhance your development environment?

Practical uses of virtualization in software development are about as diverse as the techniques to achieve it. Whether running your favorite editor in a virtual machine, or using a system of containers to host various services, which use cases have…
julien
  • 1,879
  • 2
  • 20
  • 29
1
vote
2 answers

Best practice for developing under multiple JDKs

I have a library which I am currently developing with target compatibility to JDK 6. I like to take advantage of Java 8 feature, like lambdas. The code and APIs will greatly profit from Java 8. I would like to offer versions of the library for Java…
Christian Fries
  • 16,175
  • 10
  • 56
  • 67
1
vote
0 answers

Should i use Tegra for setting up environment to develop android app?

i am going to use the environment to develop apps using opencv library. But first i may also use it to develop some basic core Android Applications. Should i use the automatic TADP installer to set up the environment or should i set up things…
Arihant
  • 3,847
  • 16
  • 55
  • 86
1
vote
1 answer

Can't find Samsung Galaxy s4 obb folder for Expansion Files

I am not able to find the .obb folder on my Samsung Galaxy S4 on DDMS in Eclipse.
1
vote
0 answers

VisualStudio, Bookmark broken after relocating project to new directory

When I renamed the root directory of my project, the bookmarks in VisualStudio still point to the old directory. How can I make the bookmarks point to the new location? Where are the bookmarks stored?, are they editable? I am using VisualStudio2012
ctrl-alt-delor
  • 7,506
  • 5
  • 40
  • 52
1
vote
0 answers

Commonly used android configuration environment setups?

So I've started using the new Google/Jetbrains Android Studio today and I cant seem to find an environment configuration setup that I'm happy with for android, in Xcode you can do stuff like set up a file that contains lots of different build…
bruchowski
  • 5,043
  • 7
  • 30
  • 46
1
vote
1 answer

Tracks needed to create a useful Netbeans module for Java development

I was wondering while looking at the eternal "serializable class XXX has no definition of serialVersionUID" warning in Netbeans : why not create a netbeans module which would populate this field "automagically" ? The idea I had is the following…
Benj
  • 1,184
  • 7
  • 26
  • 57
1
vote
1 answer

SQL database to android SQLite database

I've a table named student. I need to display attendance details of student by passing Student_ID. Database uses normal MySQL database on server-side to maintain the attendance register. How to connect that MySQL Server to Android Application ?