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
| #!/usr/bin/env bash | |
| # Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. | |
| # | |
| # This script executes Example 1 of the Data Flow Tutorial | |
| # https://docs.cloud.oracle.com/en-us/iaas/data-flow/data-flow-tutorial/tutorial/dfs_tut_etl_java.htm#etl_with_java | |
| # | |
| # For more help with specific Data Flow commands, see: | |
| # oci data-flow -h | |
| # |
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
| /* | |
| * Aeon HEM Gen5(zwave plus) | |
| * | |
| * Copyright 2016 Dillon A. Miller | |
| * | |
| * v0.8 of Aeon HEM Gen5(zwave plus) code, released 04/15/2016 for Aeotec Model zw095-a | |
| * This Gen5 device handler is not backward compatible with the Aeon V1 or V2 device. If your model number is not zw095-a, don't use it. | |
| * | |
| * Licensed 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: |
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
| # | |
| # Config file for collectd(1). | |
| # Please read collectd.conf(5) for a list of options. | |
| # http://collectd.org/ | |
| # | |
| ############################################################################## | |
| # Global # | |
| #----------------------------------------------------------------------------# | |
| # Global settings for the daemon. # |
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
| #!/bin/bash | |
| # install collectd with curl_json plugin for jolokia on RHEL6 | |
| # Perform installation as root | |
| # Install prereqs | |
| yum -y install libcurl libcurl-devel rrdtool rrdtool-devel rrdtool-prel libgcrypt-devel gcc make gcc-c++ yajl yajl-devel | |
| # Get Collectd, untar it, make it and install |
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
| <?xml version="1.0"?> | |
| <xsl:stylesheet version="2.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | |
| xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
| <xsl:output version="1.0" encoding="utf-8" indent="yes" name="xml" /> | |
| <xsl:template match="/"> | |
| <xsl:apply-templates /> |
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
| <?xml version="1.0"?> | |
| <xsl:stylesheet version="2.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | |
| xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
| <xsl:output version="1.0" encoding="utf-8" indent="yes" name="xml" /> | |
| <xsl:template match="/"> | |
| <xsl:apply-templates /> |