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
| <table class="table table-hidaction table-hover mb30 dataTable" id="cust_advanced" aria-describedby="cust_advanced_info"> | |
| <thead> | |
| <tr role="row"> | |
| <th class="sorting_asc" ... style="width: 144px;">ConNo</th> | |
| <th class="sorting" ... style="width: 124px;">Name</th> | |
| <th class="sorting" ... style="width: 104px;">Area</th> | |
| <th class="sorting" ... style="width: 110px;">Pack</th> | |
| <th class="sorting" ... style="width: 130px;">Status</th> | |
| <th class="sorting" ... style="width: 102px;">STB</th> | |
| <th class="sorting" ... style="width: 81px;">VC</th> |
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
| 2017-02-23 08:07:24,904 marathon_lb: frontend at *:3000 with backend my-domain_my-domain-organisations_3000 | |
| 2017-02-23 08:07:24,904 marathon_lb: adding virtual host for app with hostname api.my-domain.io | |
| 2017-02-23 08:07:24,904 marathon_lb: adding virtual host for app with id /my-domain/my-domain-organisations | |
| 2017-02-23 08:07:24,904 marathon_lb: backend server 10.3.0.4:7239 on 10.3.0.4 | |
| 2017-02-23 08:07:24,904 marathon_lb: configuring app /my-domain/my-domain-organisations | |
| 2017-02-23 08:07:24,904 marathon_lb: frontend at *:10050 with backend my-domain_my-domain-organisations_10050 | |
| 2017-02-23 08:07:24,904 marathon_lb: backend server 10.3.0.4:7240 on 10.3.0.4 | |
| 2017-02-23 08:07:24,904 marathon_lb: configuring app /my-domain/my-domain-users | |
| 2017-02-23 08:07:24,904 marathon_lb: frontend at *:3000 with backend my-domain_my-domain-users_3000 | |
| 2017-02-23 08:07:24,904 marathon_lb: adding virtual host for app with hostname api.my-domain.io |
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
| 0xe3cdde8460670662d487f18228d252bc37c4353b |
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
| 0x84dcaec3e74feda9f61d116e490677724386c384 |
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
| pragma solidity ^0.4.23; | |
| // ---------------------------------------------------------------------------- | |
| // 'TRFT' token contract | |
| // | |
| // Deployed to : 0xF42B7755FC3627F56399FF6B6Ca2db667De755d2 | |
| // Symbol : TRFT | |
| // Name : Turf Test Coin | |
| // Total supply: 1000000000 | |
| // Decimals : 18 |
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 | |
| sudo su | |
| groupadd nvm | |
| usermod -aG nvm $1 | |
| mkdir /opt/nvm | |
| chown :nvm /opt/nvm | |
| chmod -R g+ws /opt/nvm | |
| git clone https://github.com/creationix/nvm.git /opt/nvm | |
| cat <<EOT >> /etc/profile.d/nvm.sh |
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
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: ingress-nginx | |
| labels: | |
| app.kubernetes.io/name: ingress-nginx | |
| app.kubernetes.io/part-of: ingress-nginx | |
| --- |
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
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: ingress-nginx | |
| labels: | |
| app.kubernetes.io/name: ingress-nginx | |
| app.kubernetes.io/part-of: ingress-nginx | |
| --- |
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
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: ingress-nginx | |
| labels: | |
| app.kubernetes.io/name: ingress-nginx | |
| app.kubernetes.io/part-of: ingress-nginx | |
| --- | |
| kind: ConfigMap | |
| apiVersion: v1 |
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
| FROM alpine | |
| RUN apk add -U curl privoxy jq && \ | |
| mv /etc/privoxy/templates /etc/privoxy-templates && \ | |
| rm -rf /var/cache/apk/* /etc/privoxy/* && \ | |
| mv /etc/privoxy-templates /etc/privoxy/templates | |
| ADD --chown=privoxy:privoxy config \ | |
| /etc/privoxy/ | |
| ADD --chown=privoxy:privoxy k8s-only.action \ | |
| /etc/privoxy/ |
OlderNewer