This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.8' | |
services: | |
grafana: | |
image: grafana/grafana:main | |
container_name: grafana | |
restart: always | |
ports: | |
- "3000:3000" | |
networks: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Buildmonitor Material</title> | |
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> | |
<link rel="stylesheet" href="https://code.getmdl.io/1.2.0/material.indigo-pink.min.css"> | |
<style> | |
body { | |
background: #dedede; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cssUrl = 'https://jenkins-contrib-themes.github.io/jenkins-material-theme/dist/material-light-blue.css'; | |
var url = 'http://192.168.1.11:8080/view/Monitor/'; | |
if (window.location.href === url) { | |
var links = document.getElementsByTagName("link"); | |
for (var i = 0; i < links.length; i++) { | |
var link = links[i]; | |
if (link.href === cssUrl) { | |
link.href = ''; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pipeline-wrapper { | |
background:#FFF; | |
} | |
.build-card .header { | |
font-weight:800; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.beans.property.StringProperty; | |
import javafx.beans.property.adapter.JavaBeanStringPropertyBuilder; | |
public class Main { | |
public static class MyPojo { | |
private String name; | |
private String country; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var casper = require('casper').create(); | |
casper.start(); | |
casper.userAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X)'); | |
casper.viewport(1024, 768); | |
casper.thenOpen('http://jsbin.com/ifuma#noedit', function() { | |
this.capture('test.png'); |