Organizing projects in Eclipse [closed] - eclipse

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
For school I have a lot of projects in my project explorer in Eclipse, and I was wondering if it was possible to put them in folders (in eclipse)
for example:
Folder Chapter 1
project exercise 1
project exercise 2
Folder Chapter 3
project exercise 3
...

In Package Explorer view you can organize your projects using Working Set
To configure working set open view menu and select "Configure Working Sets..." then to turn it on open one more time and select "Top Level Element" and choose "Working Sets".

Related

Where does OWASP Dependency-Track actually scan to get data about a project? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I've scoured https://docs.dependencytrack.org/ for information on how to actually use Dependency-Track.
What does Dependency-Track actually scan to get the data about my software build?
When I run Dependency-Track -> Projects -> Create Project -> and give the project a name, it just takes me to the project overview and the vulns, components, and auditing graphs are all at zero.
Do I point it to Jenkins or to GitLab? I don't see a place to put in the URL and creds for those locations in the project details.
Have a closer look at https://docs.dependencytrack.org/usage/cicd/ .
You need to feed it with your project BOM. It will then compare components from BOM against known vulnerabilities.
How you do that depends. If you are using Jenkins then it will be a bit easier with a Jenkins plugin https://plugins.jenkins.io/dependency-track/. If you are using GitLab CI then you need to use appropriate for your project SBOM generator from https://cyclonedx.org/tool-center/.

Official VSCode in browser? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
The new July update of VSCode looks very interesting, particulary the Browser Support ( https://code.visualstudio.com/updates/v1_48#_browser-support ) where a developer seems to have opened VSCode inside a browser using localhost:9888.
Does anyone know how to do that? I can't seem to find any documentation about this and the only results I get are for code-server, which is not a official VSCode project.
https://code.visualstudio.com/updates/v1_40#_engineering
According to the description, in your local fork of the vscode repository, running yarn web from the command line.

VersionOne: Filter Issues by Project [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I am quite new using VersionOne and I would like to know if there is an easy way to filter issues by project; I would like not to have to add a tag dedicated to the project name in order to be able to filter them
Thanks in advance for your help
I have found the question to my answer.
The filter "by project" is not in the "funnel" area as all the other filters in VersionOne.
In order to filter "by project" the user has to click on the arrow near the project name (in the blue square in the top left) and select the project(s) which want to see in the project tree

Can't open json files in vscode directly form File Explorer? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
Can't even open ps1 files in vscode from File Explorer. With both (json and ps1) I get a tone with no message that I can find. Everything opens fine if I open directly from the "open file" menu item in vscode. I don't think it was like this before installing PowerShell.
It sounds like a permission error or a bad installation of vscode.
I recommend you reinstall vscode & make sure to check all these 4 boxes in this image below, we will see how it goes after.

Viewing Two (or Multiple folders) in MATLAB [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Is it possible to have two "Current Folder" windows open in MATLAB?
I have two folders a long way away from one another in the folder tree and need to keep files in the same place as the are referred to by other software.
I should add that I am in the process of importing specific files from each one and cannot do all of one folder at once.
Short answer: no. You need to use commands like cd to change from one folder to another for importing files, or add both folders to your MATLAB path using addpath. The latter has the advantage of referring to any file in these folders without having to specify in which folder they are located.