Questions tagged [projects]

318 questions
2
votes
1 answer

Creating projects based on jupyter notebooks

Having learned to program in Python with Jupyter Notebooks, I've found this to be a very practical way of analyzing data, writing simple programs and even interacting with databases. However, if one is working on a bigger project (with program and…
2
votes
1 answer

How do I make different targets build to separate iOS applications?

I have a project with two different versions. I keep two targets in xcode to differentiate the two. Are there steps I need to take to submit them as two separate apps, like changing the bundle identifier from this default value that has a suffix…
Joey
  • 7,537
  • 12
  • 52
  • 104
2
votes
0 answers

Managing config files for multiple Maven projects

I have three Maven projects (A, B, and C) that generate library JAR files. C depends on B, and B depends on A. Projects A and B are jars that have some required configuration files (XML/XSD files) that must be present when I use Project C (a…
Patrick
  • 41
  • 2
2
votes
1 answer

Hide Keyboard and show it by button

I am creating a program that write in EditText by barcode reader so I don't want to show the keyboard immediately even if I focused on it I don't wanna it to be visible , I need to press a button to show keyboard only to Edit sometimes . and thanks
2
votes
3 answers

Multiple git repositories in a path

I got a project ("myproject"), managed with git. Inside the project there is another project ("a_node_module"), managed with git, too. myproject ├── .git ├── .gitignore └── node_modules └── a_node_module └── .git The .gitignore file…
Artisan72
  • 3,052
  • 3
  • 23
  • 30
2
votes
1 answer

Ruby Project VS Ruby Gem

I have read through Q&A/articles that explain the ideal structure of a Ruby project. I read the RubyGems guides on how to create a Ruby gem. I have just read a Q&A asking at what point a ruby project becomes a ruby gem but I can not for the life of…
2
votes
3 answers

How much time should a Project Manager spend on a typical IT based project

We've had a number of projects where the costs have been scrutinised recently and one thing that has come out is that people believe there is too much time allocated to the project managers' role. For example, we have a development project which…
DevMG
  • 21
  • 1
  • 3
2
votes
1 answer

How to deploy source code from multiple Eclipse projects to Google App Engine? (aka, linking two projects)

I am thinking of extracting some core functionality into a new Eclipse GAE project, so I don't have duplicated code. Meaning I now have two Eclipse projects; one "main" and one "util". I have linked them together locally in Eclipse, but when I…
corgrath
  • 11,673
  • 15
  • 68
  • 99
2
votes
2 answers

Is there a way to have JAR dependencies of a Netbeans project provided to another (dependent) project automatically?

Assume the following project setup in Netbeans Project A depending on Project B depending on lib/projectBLib.jar In my current setup, I have to tell Project A that it depends on projectBLib.jar, otherwise it is not loaded. I would have expected…
PeterP
  • 119
  • 1
  • 8
2
votes
1 answer

IntelliJ add (local) project as dependency for another one

I'd like to work on two projects simultaneously. Project A is kind of the core of Project B, but also more general. As I want to work on both at the same time, but let them be distinct (Project A will be used for other Projects as well) I'm kind of…
user4063815
2
votes
4 answers

Using a (relatively) new language for a long-term project

Would using something like Google Go (that's obviously still under rapid development) be stupid if you're trying to build a long-term project? (Access to developers that know the language not being a concern...)
Aaron Yodaiken
  • 19,163
  • 32
  • 103
  • 184
2
votes
1 answer

How to git version control multiple projects with one framework project?

Well, I took a look at this post GIT Version Control setup for multiple projects with shared code, but turns out that I don't really think it answers exactly what I want because that is too complex (i guess) for what I need. I work in a company and…
user3155328
  • 144
  • 1
  • 7
2
votes
2 answers

Solution with 2 projects - sharing Properties.Resources

In Visual C# 2008, I have a solution with two projects. First project contains Form1 that displays one Label with Text set to a string from Properties.Resources, like this: label1.Text = Properties.Resources.MY_TEXT; In the second project, I "Add…
user20353
  • 1,293
  • 4
  • 15
  • 28
2
votes
1 answer

Visual Studio 2010 projects are never up to date

I've hit an issue with some of the projects in our Visual Studio 2010 solution. When I build they are never up to date and always rebuild. Using this post http://blogs.msdn.com/b/vsproject/archive/2009/07/21/enable-c-project-system-logging.aspx I…
Shane Gannon
  • 6,770
  • 7
  • 41
  • 64
2
votes
2 answers

Merging Two Projects and accessing files from each other in Visual Studio

I have merged another project in my existing project by right-clicking on the project name and selecting Add->Existing project option. Now i wan't to access the files from my newly added project from the existing one in Visual Studio (Its a C#…