Questions tagged [development-environment]

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

A development environment extends a text editor by providing built-in hooks for debugging, version control, unit testing, API referencing, and datasource connections.

2345 questions
685
votes
24 answers

How can you program if you're blind?

Sight is one of the senses most programmers take for granted. Most programmers would spend hours looking at a computer monitor (especially during times when they are in the zone), but I know there are blind programmers (such as T.V. Raman who…
MrValdez
  • 8,182
  • 10
  • 51
  • 77
478
votes
11 answers

What's the difference between Docker Compose vs. Dockerfile

I have been reading up and learning about Docker, and am trying to correctly choose the Django setup to use. So far there is either: Docker Compose or Dockerfile I understand that Dockerfiles are used in Docker Compose, but I am not sure if it is…
261
votes
12 answers

How to watch and reload ts-node when TypeScript files change

I'm trying to run a dev server with TypeScript and an Angular application without transpiling ts files every time. I found that I can do the running with ts-node but I want also to watch .ts files and reload the app/server as I would do with…
193
votes
15 answers

Change a Rails application to production

How can I change my Rails application to run in production mode? Is there a config file, environment.rb for example, to do that?
182
votes
114 answers

Recommended Fonts for Programming?

What fonts do you use for programming, and for what language/IDE? I use Consolas for all my Visual Studio work, any other recommendations?
tbreffni
  • 5,008
  • 5
  • 28
  • 30
176
votes
17 answers

Best general SVN Ignore Pattern?

What is the best (or as good as possible) general SVN ignore pattern to use? 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…
173
votes
18 answers

Using Emacs as an IDE

Currently my workflow with Emacs when I am coding in C or C++ involves three windows. The largest on the right contains the file I am working with. The left is split into two, the bottom being a shell which I use to type in compile or make…
user7545
  • 2,922
  • 4
  • 20
  • 21
161
votes
7 answers

How to print to the console in Android Studio?

I just downloaded Android Studio for Linux from: http://developer.android.com/sdk/installing/studio.html I'm wondering how to print to the console? Neither System.out.print(...) nor Log.e(...) from android.util.Log seem to work.
Tyrick
  • 2,294
  • 3
  • 20
  • 31
160
votes
23 answers

Is there a way to stop Google Analytics counting development work as hits?

I have added the JavaScript that I need to the bottom of my pages so that I can make use of Google Analytics. Only problem is that I am sure that it is counting all my development work as hits. Seeing as I probably see some of those pages a hundred…
uriDium
  • 12,309
  • 19
  • 70
  • 131
145
votes
33 answers

VBoxManage: error: Failed to create the host-only adapter

I am running vagrant 1.4 and virtual box 4.3 on fedora 17 machine. When I do "vagrant up", I get this error: Bringing machine 'default' up with 'virtualbox' provider... …
Adi
  • 3,307
  • 4
  • 21
  • 36
141
votes
22 answers

Should developers have administrator permissions on their PC

Should developers have administrator permissions on their PC or is giving them power user access sufficient? Some comments: If they want to try out some new application that would need installing, then they could try it on a virtual machine and…
Craig HB
  • 3,826
  • 9
  • 35
  • 48
121
votes
14 answers

ImportError: No module named 'encodings'

I recently reinstalled ubuntu and did upgrade to 16.04 and cannot use python: $ python manage.py runserver Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME…
119
votes
5 answers

How to get an outline view in sublime texteditor?

How do I get an outline view in sublime text editor for Windows? The minimap is helpful but I miss a traditional outline (a klickable list of all the functions in my code in the order they appear for quick navigation and orientation) Maybe there is…
user89021
  • 13,714
  • 14
  • 51
  • 65
94
votes
2 answers

What is the difference between production and development mode in Angular2?

For some reason, I have to run my app in production mode. What is the difference between those modes?
Rhushikesh
  • 3,432
  • 8
  • 35
  • 76
94
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
  • 7,399
  • 4
  • 38
  • 55
1
2 3
99 100