Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
lazy dont have to read this
I have to work on an old netbeans project which is kinda messy. The previous autor changed a lot in some .properties and .xml files and add ant scripts. (Aplication is designed for Websphere, and it have some requirements)
Unfortunatly today doesn't work. Some important values was stored in private.properties (I dont know what exacly was), ant script don't run, and few versions issue apper. So first I have to tidy this mess, but I dont know about netbeans project well. Unfortunatly I have problem to find documentation to all of it.
Netbeans project is based on ant project. Fortunatley ant have manual here: http://ant.apache.org/manual/index.html . But (I assume that) 'nbproject' folder and its inner files are not part of ant project. I can't find documentation about it. Maybe I blind or something, but I didn't found it on NetBeans side. IMHO netbeans side is kinda messy as well.
straight to the point
I am searching for documentation for netbeans project, where will be written about files project.xml, project.properties etc. What they contain and even how to write them on your own.
This document explains freeform project configuration in detail. You should be able to find what you need in there. If I were in your position, I would create a new project that has all the frameworks like your original project and then look at the project metadata files of the new project for some direction. IMO this is far easier than trying to author the project.xml files from scratch.
http://netbeans.org/kb/articles/freeform-config.html
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I know this is probably a super silly question, but how do I install on my pc open source programs that I find here on github.
By installing I mean directly from the source code, and not by going on some external website and downloading the file from there.
I know I'm a noob, just go easy on me please
Github page of the program will generally show README file, and it would contain instructions on how to install this program. Sometimes you can find the instructions in wiki pages for this project.
There is no one general way to install something from github, it really depends on the software you are looking at.
Quite often, especially if it is a big project and is written in low level language, the main installation step is entering commands
./configure
make
make install
in your terminal, but this is only one of the different installation procedures.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there a way to get similar functionality to this one?
https://github.com/randy3k/Project-Manager
Even the out-of-the-box project manager workflow from Sublime would be a nice to have.
Right now I'm working with a structure of files that resembles something like:
-Workspace
- Folder1
- file1
- file2
- Folder2
- Folder3
- file1
- file2
- file3
- Folder4
We are managing the project in Jira (so, a ticket based kind of workflow if that makes sense).
I switch between tickets often times and I would like to save the "state/session/current workspace" (all the files that I was modifying at that time) for a specific task I was working on, so that I can also switch between the files that were involved for a particular task.
I guess I should note that the files I work on are spread across folders also.
I can easily save a Sublime's project and workspace for each ticket and switch to it, but I would like to do something similar in VSCode.
Edit
It's been quite some time since I asked, and I'm marking the new answer from #chachan
I also have been using it for a while now, works very well.
Found this one and works cool so far: https://github.com/alefragnani/vscode-project-manager
Currently there is no support for this in VS Code, but its a good idea for an extension.
Git Project Manager searches a directory (and subdirs) for git repos so you don't have to manage a list.
I am new to responding so forgive me if I am incredibly late. There is a project manager created by Alessandro Fragnani that can be obtained fromt he VCS Marketplace. I just installed and enabled it earlier today. Hope that helps.
I am using vscode-open-project
It is simple and fast.
More listed here:https://marketplace.visualstudio.com/search?
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
How many different way there is download open source projects in order to modify and rebuild them (directly in editors like eclipse and maven).
The short answer is "a lot".
Seriously it depends on the project. If for example project is developed by individual and not published at any public repository and exists on his hard drive only you do not even have a chance to know that the project exists.
If however the project is published in public repository it depends on the repository. The most popular way to develop open source projects these days is GitHub. If project is there you can always clone the repository and do what you want. Building the project depends on its author. If he/she uses "standard" build tools (maven, gradle etc) it is not a problem. Otherwise it depends...
If you do not want to modify the project but just want to include it as a dependency of your project it depends on the programming language. Java libraries are typically available in maven repository but it is up to the library author.
Please do not hesitate to ask more concrete questions.
I am a little confused on your question but it sounds like what ways there are to download projects.
Usually finding an SVN or GIT plugin would do the trick if you want to download it directly to the editor.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have searched around and can't find anything, so could anyone help me with getting notepad++ to work seamlessly with Github. I would like to be able to open notepad++ and be able to work on files, then when I save (or live) it will show on Github. I have installed everything they say I need to and have the README, but that's all.
Have you tried this plugin for Notepad++?
http://forum.lowyat.net/topic/1358320/all
You can not save directly on github but you can save and then commit these modified files.
This is really an old question, but I just bumped into it today and thought I'd share my strategy, as the plugin proposed here requires also TortoiseSVN, which is a setup that I don't find as fluid and easy to use as my alternative.
After finding that there's no "stand-alone" plugin you can get for this, I started using GitHub Desktop App. This enables you to set repositories locally, make commits, pulls, pushes, etc. Just login with your account, and then create a local repository for your project.
After creating the repository, just open the files you wish to edit with Notepad++. Make some changes, save and use the GitHub Desktop Application to do all GitHub related stuff. Opposed to the plugin, this app provides a full featured interaction with GitHub.
By the way, if you have two monitors, or a big one, you can just have the two applications open side by side, which emulates similar setups you can find in advanced IDEs (Eclipse, for example). I find this to be even more convenient and fluid than having to open a separate plugin dialogue for doing my Git related stuff. The GitHub Desktop application will even refresh automatically, without any interaction being required from you, after you make any editions to the files (using Notepadd++) or any changes in the file structure (add, rename, move, delete files).
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I am searching for an Eclipse plugin which supports drag and drop functionality to build a GUI
and
supports immediate and automatic embedding within a MVC (model view controller) structure. Any ideas?
WindowBuilder is free, simple and not cumbersome. It also supports binding and synchronization of model pojo objects taking some of the MVC pains away.
I find it quite pleasant to work with as it does not places itself at toe forefront like most other similar editors will. It does not embed strange files that serve no other purposes than to serve the editor, rather it uses directly the java source file as it's backing persistence and it does so in a very clean way compared to say visual Studio with an MFC project.
It does have some quirks though, especially with Maven as some of the dependencies are sometimes hard to find. Personnaly I package them as a single jar and added it dynamically to the build through some clever hacks inspired largely by other members of the present community :-)
Give it a try, may not be the uber cadillac with shiny chromed everything but it does work well and stays out of the way when you don't need it.