$ curl \
--header "Content-Type: application/json" \
--data '{"access_grant": "1uW6DdRk8aQ1CAK8H7K34BePSgSNFCy9vsZZgNmGrZBoqLrZS5Lu1pxaoDgyCF4NCY6KdiGyCyfAoNbxYoXMh9wWP6HgxkuQ1PCvC25DvoXjwaAkUqRXtFPhCb4hr5cTrLYLJnqcfKVEmXX6UeXXoBsQoktzXjYLjadzHX58XUWEpcZioqMqFGCUqnyzgRTTRZB2anQpADv1FCpuvombxZxzxTdd8HWEcRXmUAwVsNxavBHeLL7ymZMXihMb4FVrYvwUegmWXEg47f1x", "public": true}' \
-v https://auth.storjshare.io/v1/access
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
SET hive.exec.dynamic.partition.mode = nonstrict; | |
SET hive.exec.max.dynamic.partitions = 2000; | |
SET hive.exec.max.dynamic.partitions.pernode = 500; | |
USE wolffartu; | |
DROP TABLE IF EXISTS temp_Vehicles PURGE; | |
CREATE TEMPORARY EXTERNAL TABLE IF NOT EXISTS temp_Vehicles ( | |
id BIGINT, |
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'm doing this: | |
func main() { | |
selenium.SetDebug(false) | |
browser := selenium.Capabilities{ | |
"browserName": "firefox", | |
} | |
wd, err := selenium.NewRemote(browser, "http://127.0.0.1:4444/wd/hub") | |
if err != nil { | |
logrus.Panic(err) | |
} |