How to get started with CA agile rally automation [closed] - vba

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 5 years ago.
Improve this question
I'm very eager to know how to automate agile rally without accessibg it from web site. Do we have any table or data bases for rally? Like Quality center (QC) . Can I automate it through VBA ? Do we have any connection string or libraries to make the automation feasible?

There's a great Web Services API on top of Agile Central for doing these sorts of things, but not direct DB access. There are toolkits for accessing them in a bunch of different languages- java, .net, node, etc.
https://rally1.rallydev.com/slm/doc/webservice/
There is also an Excel Add-In which you could then manipulate with VBA if that's more of your thing...

Yep there's loads of info out there, what is it you need to do.. I do most of my updating via the command line there are a few aps worth looking into with npm just run a search on rally. If you need integration with git or Jenkins for example take a look at the Agile central connectors.. The QC con is here.. Let us know how you get on..

Related

Communicate between 2 applications [closed]

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 5 years ago.
Improve this question
I have written a basic VB winform application (in visual studio) that control the lights. I published and create an install package so I can install this on other PCs.
My questions is how to sync these applications to communicate with one another so if I turn a light on, on one PC, other PC will sense that and display it on thier application.
I can use timer to see if there are any action every 15 second, but I don’t think this is efficient way.
Take a look at this question that involves sending information between computers over a network. You could have the program send what it did to the lights so that the other programs can update themselves.
I'd suggest you look at writing the status to a file accessible to all on the network, use the filewatcher class to detect changes to the file, and when the file changes read it from all PCs to see the current status of everything.
ref: https://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher(v=vs.110).aspx
another option would be to use UDP broadcasting

What is better in Google Cloud? Projects or Instance of vm for every customers? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
I'm a web developer and mobile applications. I have several clients which I manage in a hosting service with whm panel. Now I want to start using Google Cloud. My question is whether it is better to create a project for each client or to create a single project with a lot of space and there to store all the pages and databases. Please help me with this because I do not know what is the best practice
From my experience,
If your customer pays a fixed price for hosting it does not matter.
If you charge "pay as you go" then a separate project is the only way you can know how much exactly to charge.
Like Ken says, it is very difficult to predict your needs with so little information. One point to keep in mind: if you ever plan to turn over ownership of the project to the client, then having a separate project for each client will make life so much easier.

How to start into Thunderbird Addon Development [closed]

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 want to implement a Thunderbird-Addon and already found information on the mozilla web pages regarding Addon Development. However, some of the information is rather confusing, and thus I have some more specific questions:
1) Are Firefox Addon development and Thunderbird Addon development related? Some links may suggest so, others are indicated as "outdated"...
2) On the Mozilla web pages there are infos related to addons for Thunderbird 2,3, or 5. Isn't Thunderbird at version 31 currently? Probably I missed something here.
3) I want to extend the tagging mechanics in thunderbird, e.g. allowing relationships between tags, tag hierarchies etc. For that I would have to extend the existing data model. Can I do so?
4) Is there a good overview of the actual data model? Before I start programming something, I'd like to see which parts I have to touch and which I can leave alone.

How to integrate WebWorks ePublisher with a Continuous Integration server? [closed]

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 5 years ago.
Improve this question
Our documentation is built manually using the WebWorks ePublisher. We would like to have it built automatically on our CI server.
For that there should be a non interactive command line alternative to the ePublisher GUI.
Does anyone know anything about it?
I think you should look into the WebWorks ePublisher component called AutoMap.
From What Is ePublisher AutoMap?:
ePublisher AutoMap is the automation tool that enables you to automate the content transformation process, batch processing, and integration with content management or version control systems. This component lets you schedule ePublisher projects. For example, you can schedule the output generation to occur overnight. Then, when you arrive the next morning, your transformed content is ready for you. You can also automatically generate and deploy deliverables to meet your specific needs, such as updating Web site content based on updated source documents. You can automatically create ePublisher projects and generate output without manually opening ePublisher or your source documents.
More details here: Scheduling and Integrating Processes with AutoMap.

How difficult would it be to build a Chat/IM Client for an office network? [closed]

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 7 years ago.
Improve this question
First and foremost, I would like to say I am very, /very/ new to programming and the like. If I decide to build this, this would probably be my first "large" project i've ever done myself.
What I am looking to build is a very simple Chat/IM client to use for the users in our office network. It would just call us their Windows logon name and use that to IM and the like. I'm talking a very simple client, with a list of names of people who are logged into the network, and option to IM them and an option to do a multiple user chat. It doesn't have to be visually stunning.
How difficult would this honestly be? Is it possible for me, someone who has very little knowledge when it comes to programming to teach myself how to build it?
If not, can you explain why this would be very difficult and what already built clients would work well for what I am using?
This is a big application. Your first parts will suck and refactoring it later will suck even more. I suggest building something small in the first place and then step from one bigger project to another.
XMPP/Jabber is IMHO the best solution for office IM. Most clients like Pidgin, Adium etc can connect to it. Every bigger company I worked for in the last years used it. Take a look at Openfire - A free open source XMPP server that you can directly connect on and which is easy to set up: http://www.igniterealtime.org/projects/openfire/