Need to archive teamcity build configuration of test [closed] - configuration

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
please help me! i need to archive the configuration of one test, not the hole project, how can i do this! i can archive only the hole project not a test, but need to archive the config of test! Teamcity 8.0.1!

if you have to archive only one configuration of build, you have to create the new one project , copy config of your build to your new project, and after that: administration->projects->on your project at the right side click on more and archive this project!

Related

GitHub source code embedded in my HTML page? [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 2 years ago.
Improve this question
I would like to display a code snippet from my own public GitHub source repo in my own web site, without having to make a copy. This is for a tutorial to illustrate some programming concepts. So not to run it but to pretty print it, as it were.
I bet this is something that many people need. I am looking for a lead on how to do this.
You could use the GitHub API to accomplish this.
See the Get Contents endpoint.
Yes, you can do that either by publishing your repo on npm and then referring it as npm dependency in projects package.json.
or 2nd , you can directly refer GitHub repo as dependency in package.json.
Hope this gets you in right direction.
thanks

CSS visual regression - do I need to store screenshots in git repository? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 7 years ago.
Improve this question
There is a technique to check if something visually not broken in HTML and CSS markup - visual regression testing.
We do following steps:
Check everything is ok.
Create a test "reference" (creating *.png files).
Change something.
Run test and check what changed.
What is better practice - all these "references" should be stored localy or should be commited to repository after check if everything is OK?
First case more simple and suitable for single development. Second can be useful if I have team and person with QA role - he can check and create references.
Do you have some experience or thoughts about how this will be on practice?

How do you use MYSQL in ColdFusion? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm currently learning ColdFusion and it's been going well except for when I have got to trying to use databases. I can't find anywhere what so ever how to connect to a MYSQL database. Can someone tell me how it's done?
Thanks
I'm surprised if you couldn't find anything on how to connect to a MySQL datasource. Here's Adobe's list of settings to use in CF Administrator. The important part here is the name you give it.
Because then in your queries or stored procs, you use that name to reference the datasource:
<cfquery name="yourQuery" datasource="name of datasource">
<cfstoredproc procedure="yourProcedure" datasource="name of datasource">
Here's more links Google showed up:
http://www.hosting.com/support/mysql/coldfusionstring/
http://www.bluereef.net/support/extensions/database/mysql/coldfusion.html
http://www.justskins.com/forums/how-to-connect-to-130869.html

Read data from a external webpage and store that into my database [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Improve this question
How can I read data from a external webpage and store that into my database.
if I already have permission to access that data from that external webpage?
I am using sql server 2008.
In your position I would use c# and do:
Get data from website -> Reading data from a website using C#
Write data to sql database -> Code for inserting data into SQL Server database using Enterprise library

How can i open a TCL file extension? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a TCL (Tool Command Language) file. but I want to run it.
Please help me about how i run this file! what opens this file formats?
Note that i using Windows 8 64-bit
Thanks
You will have to install a tcl library first.
You can download the installer from ActiveState Tcl.
After installation, you should be able to run the script (I already have it on my laptop and work on it almost everyday).