This file contains 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: '2' | |
volumes: | |
prometheus: | |
services: | |
prometheus: | |
image: prom/prometheus:v2.6.0 | |
restart: always | |
ports: |
This file contains 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: '2' | |
volumes: | |
prometheus: | |
services: | |
prometheus: | |
image: prom/prometheus:v2.4.3 | |
restart: always | |
ports: |
This file contains 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: '2' | |
volumes: | |
prometheus: | |
services: | |
prometheus: | |
image: prom/prometheus:v2.4.3 | |
restart: always | |
ports: |
This file contains 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: '2' | |
volumes: | |
prometheus: | |
services: | |
prometheus: | |
image: prom/prometheus:v2.4.3 | |
restart: always | |
ports: |
This file contains 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
diff -ruN litmus-0.13-orig/src/props.c litmus-0.13/src/props.c | |
--- litmus-0.13-orig/src/props.c 2017-03-24 10:31:12.000000000 +0100 | |
+++ litmus-0.13/src/props.c 2017-03-24 10:33:47.000000000 +0100 | |
@@ -453,28 +453,28 @@ | |
} | |
/* Test ability to parse and persist Unicode characters above UXFFFF. */ | |
-static int prophighunicode(void) | |
-{ | |
- PRECOND(prop_ok); |
This file contains 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: '2.1' | |
volumes: | |
files: | |
driver: local | |
mysql: | |
driver: local | |
backup: | |
driver: local | |
redis: |
This file contains 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
04be1009ebe52bd0b3aae1dfa1316fe55345430fd5dca788e67f4200162bea9e28db9d356eb96873223ce2e02249d2e29cbb57b31489b007d674a012571dee9676 |
This file contains 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
diff --git a/go.php b/go.php | |
index e14d87db..4919520b 100644 | |
--- a/go.php | |
+++ b/go.php | |
@@ -46,13 +46,11 @@ $mapping = array( | |
############# Do not edit below this line ################# | |
-$from = $_GET['to']; | |
+$from = isset($_GET['to']) ? $_GET['to'] : ''; |
This file contains 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
I can't seem to findout how to use go gin-gonic to perform CRUD or GET, PUT and POST with MongoDB | |
Below is my code, please Kindly assist me | |
package main | |
import ( | |
//"encoding/json" | |
"fmt" | |
"log" |
This file contains 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
package main | |
import ( | |
"fmt" | |
"strings" | |
"gopkg.in/ldap.v2" | |
) | |
const ( | |
ldapServer = "ad.example.com:389" |