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
<a rdz-modal="contato">Abrir modal contato</a> | |
.directive('rdzModal', function($rootScope){ | |
return { | |
restrict: 'A', | |
link: function(scope, element, attrs){ | |
alert(attrs.rdzModal) // ISSO E UMA STRING | |
} | |
} |
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
import ( | |
"github.com/mongodb/mongo-go-driver/bson" | |
) | |
func formatDocument(evdata interface{}) *bson.Document { | |
doc := bson.NewDocument() | |
for k, v := range evdata.(map[string]interface{}) { | |
switch t := v.(type) { | |
case map[string]interface{}: |
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
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] user request to connect modem | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] simple connect started... | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] PIN: unspecified | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] operator ID: unspecified | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] allowed roaming: yes | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] APN: gprs.oi.com.br | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] IP family: ipv4v6 | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] allowed authentication: unspecified | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] User: oi | |
Sep 10 13:42:47 3182c51 ModemManager[1389]: [modem0] Password: oi |
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 ( | |
"crypto/tls" | |
"io" | |
"log" | |
) | |
func main() { |
OlderNewer