(for Apple macOS / Mac OSX)
Date: Thursday, May 4 2017
Related search: thrift "syntax error near unexpected token `QT,'"
Getting errors like this when running ./configure ...?
(for Apple macOS / Mac OSX)
Date: Thursday, May 4 2017
Related search: thrift "syntax error near unexpected token `QT,'"
Getting errors like this when running ./configure ...?
| var jsSha1 = require("js-sha1") | |
| function go(config) { | |
| function check() { | |
| var userAgent = window.navigator.userAgent, | |
| checkFlags = ['Phantom']; | |
| for (var i = 0; i < checkFlags.length; i++) { | |
| if (userAgent.indexOf(checkFlags[i]) != -1) { | |
| return true; | |
| } |
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "net" | |
| "runtime" | |
| "sync" | |
| "sync/atomic" | |
| "time" |
| FROM ubuntu | |
| RUN apt-get update -y \ | |
| && apt-get install -y wget \ | |
| && wget -O netselect.deb http://http.us.debian.org/debian/pool/main/n/netselect/netselect_0.3.ds1-28+b1_`dpkg --print-architecture`.deb \ | |
| && dpkg -i netselect.deb \ | |
| && rm netselect.deb \ | |
| && sed -r -i -e "s#http://(archive|security)\.ubuntu\.com/ubuntu/?#$(netselect -v -s1 -t20 `wget -q -O- https://launchpad.net/ubuntu/+archivemirrors | grep -P -B8 "statusUP|statusSIX" | grep -o -P "http://[^\"]*"`|grep -P -o 'http://.+$')#g" /etc/apt/sources.list |
| FROM debian:latest | |
| RUN apt-get update && apt-get install -y \ | |
| git \ | |
| build-essential \ | |
| wget \ | |
| python3 | |
| WORKDIR /build |
| package main | |
| import ( | |
| "flag" | |
| "io" | |
| "log" | |
| "net" | |
| "net/http" | |
| "os" | |
| "strings" |
| func readLines(path string) ([]string, error) { | |
| file, err := os.Open(path) | |
| if err != nil { | |
| return nil, err | |
| } | |
| defer file.Close() | |
| var lines []string | |
| scanner := bufio.NewScanner(file) | |
| for scanner.Scan() { |
| // Please use the package https://github.com/chmike/domain as is it maintained up to date with tests. | |
| // checkDomain returns an error if the domain name is not valid. | |
| // See https://tools.ietf.org/html/rfc1034#section-3.5 and | |
| // https://tools.ietf.org/html/rfc1123#section-2. | |
| func checkDomain(name string) error { | |
| switch { | |
| case len(name) == 0: | |
| return nil // an empty domain name will result in a cookie without a domain restriction | |
| case len(name) > 255: |
| package main | |
| import ( | |
| "fmt" | |
| "net" | |
| "os" | |
| "syscall" | |
| ) | |
| const ( |
| def verify_sign(public_key_loc, signature, data): | |
| ''' | |
| Verifies with a public key from whom the data came that it was indeed | |
| signed by their private key | |
| param: public_key_loc Path to public key | |
| param: signature String signature to be verified | |
| return: Boolean. True if the signature is valid; False otherwise. | |
| ''' | |
| from Crypto.PublicKey import RSA | |
| from Crypto.Signature import PKCS1_v1_5 |