jenkins_url + /api/json?tree=jobs[name,color]
jenkins_url + /job/${job_name}/api/json?tree=builds[number,status,timestamp,id,result]
| .ab-pause-scrolling, | |
| body.ab-pause-scrolling, | |
| html.ab-pause-scrolling { | |
| overflow: hidden; | |
| touch-action: none | |
| } | |
| .ab-centering-div, | |
| .ab-iam-root.v3 { | |
| position: fixed; |
| #!/bin/sh | |
| # | |
| # This script automates a call to mysqldump | |
| # and sends the output to a file in a backup | |
| # directory. The script is set up to keep | |
| # seven days of history. | |
| # | |
| # Before you can run this script you must | |
| # set up a MySQL user that can perform the | |
| # backup. This user must have permission to |
| # Recusively Unzip 7-zip files in place | |
| $7zipPath = "$env:ProgramFiles\7-Zip\7z.exe" | |
| if (-not (Test-Path -Path $7zipPath -PathType Leaf)) { | |
| throw "7 zip file '$7zipPath' not found" | |
| } | |
| Set-Alias 7zip $7zipPath | |
| Get-ChildItem -Recurse *.z | %{ 7zip e $_.FullName "-o$($_.Directory)"} | |
| type Libraries = any; | |
| type Remoting = any; | |
| export interface LibrariesViewModel { | |
| list(): Libraries[]; | |
| } | |
| class LibrariesImpl implements LibrariesViewModel { | |
| public list(): Libraries[] { | |
| return [ | |
| 'lib1', |
| # Description: Boxstarter Script | |
| # Author: Cameron Rollheiser | |
| # Last Updated: 2019-04-17 | |
| # | |
| # Enable Developer Mode: | |
| # | |
| # Open Windows Settings and search for "Developer Mode" | |
| # | |
| # Show Installed Apps: | |
| # Get-AppxPackage | Select-Object Name, PackageFullName, Version | Format-Table -AutoSize |
| # Licensed to the Apache Software Foundation (ASF) under one or more | |
| # contributor license agreements. See the NOTICE file distributed with | |
| # this work for additional information regarding copyright ownership. | |
| # The ASF licenses this file to You under the Apache License, Version 2.0 | |
| # (the "License"); you may not use this file except in compliance with | |
| # the License. You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software |
| -- Query a parameter | |
| SHOW max_connections; | |
| RESET max_connections; | |
| SHOW ALL; | |
| SELECT * FROM pg_settings; | |
| SELECT * | |
| FROM pg_settings | |
| WHERE name = 'max_connections'; |
| # Disable the progress bar to speed up npm | |
| npm set progress=false |
| @BeforeClass | |
| public static void setup() { | |
| System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "trace"); | |
| } |