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' encoding='utf-8' standalone='yes'?> | |
| <REQUEST> | |
| <QUERY>INVENTORY</QUERY> | |
| <VERSIONCLIENT>Agent_v1.0</VERSIONCLIENT> | |
| <DEVICEID>0F895B78-6F86-46AD-A263-29273E1EBB0C</DEVICEID> | |
| <CONTENT> | |
| <ACCESSLOG> | |
| <LOGDATE>2017-06-21 17:29:27</LOGDATE> | |
| <USERID>N/A</USERID> | |
| </ACCESSLOG> |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am flyve-mdm-bot on github. | |
| * I am flyvemdm (https://keybase.io/flyvemdm) on keybase. | |
| * I have a public key whose fingerprint is 917B 2F8F DA1A B38A B2F3 3CD8 F26C 3C07 5DB8 3D47 | |
| To claim this, I am signing this object: |
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
| <main class="calendar-contain"> | |
| <section class="title-bar"> | |
| <button class="title-bar__burger"> | |
| <span class="burger__lines">Toggle Menu</span> | |
| </button> | |
| <span class="title-bar__year"> | |
| Calendar > May 2017 | |
| </span> | |
| <span class="title-bar__month"> |
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
| image: golang:1.8.1 | |
| variables: | |
| BIN_NAME: go-practice-ci | |
| ARTIFACTS_DIR: artifacts | |
| GO_PROJECT: gitlab.com/go-practice-ci | |
| stages: | |
| - build | |
| - test |
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
| processor : 0 | |
| vendor_id : GenuineIntel | |
| cpu family : 6 | |
| model : 61 | |
| model name : Intel(R) Core(TM) i5-5200U CPU @ 2.20GHz | |
| stepping : 4 | |
| microcode : 0x23 | |
| cpu MHz : 2457.468 | |
| cache size : 3072 KB |
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 golang:1.8-windowsservercore | |
| WORKDIR /compile | |
| RUN git clone https://github.com/golang/go | |
| WORKDIR /compile/go/src | |
| ENV GOROOT_BOOTSTRAP C:/go | |
| ENV CGO_ENABLED 0 | |
| RUN cmd /C all.bat | |
| RUN cp ..\bin\*.exe \go\bin |
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 | |
| #==INSTRUCTIONS | |
| # - Add EMAIL and PASS infomation | |
| # - Replace script path with your path `/home/USER/scripts/` in the script | |
| # - Check your machine timezone `date +"%Z %z"` output ex: UTC +0000 | |
| # - patckpub.com is UTC +0000, find the best hour for you to use in the crontab | |
| # - Execute `crontab -e` | |
| # - Add `0 1 * * * /bin/sh /home/USER/scripts/packtpub_redeem.sh > /home/USER/scripts/packtpub_redeem.out` , this mean everyday 1am | |
| # - Restart Service `sudo service cron reload` (optional, crontab -e, will reload) | |
| # - Add Permission `chmod 755 /home/USER/scripts/packtpub_redeem.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
| <?xml version="1.0" encoding="utf-8" standalone="yes"?> | |
| <REQUEST> | |
| <QUERY>INVENTORY</QUERY> | |
| <DEVICEID>861946037669183-2016-10-06-13-26-18</DEVICEID> | |
| <CONTENT> | |
| <ACCESSLOG> | |
| <LOGDATE>2016-30-08 05:11:48</LOGDATE> | |
| <USERID>N/A</USERID> | |
| </ACCESSLOG> | |
| <HARDWARE> |
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
| -- | |
| -- This will register the "planet" table within your AWS account | |
| -- | |
| CREATE EXTERNAL TABLE planet ( | |
| id BIGINT, | |
| type STRING, | |
| tags MAP<STRING,STRING>, | |
| lat DECIMAL(9,7), | |
| lon DECIMAL(10,7), | |
| nds ARRAY<STRUCT<ref: BIGINT>>, |
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
| image: golang:1.7 | |
| stages: | |
| - build | |
| - test | |
| before_script: | |
| - go get github.com/tools/godep | |
| - cp -r /builds/user /go/src/github.com/user/ | |
| - cd /go/src/github.com/user/repo |