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' ?> | |
<!--This is the basics - platform (windows or mac)and version number--> | |
<workbook source-platform='mac' version='9.0' xmlns:user='http://www.tableausoftware.com/xml/user'> | |
<!-- build 9000.15.0318.1720 --> | |
<!--No idea what this for --> | |
<preferences> | |
<preference name='ui.encoding.shelf.height' value='250' /> | |
<preference name='ui.shelf.height' value='250' /> | |
</preferences> | |
<!--This is everything you need to know about datasources --> |
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' ?> | |
<datasource formatted-name='XXXX' inline='true' version='9.0' xmlns:user='http://www.tableausoftware.com/xml/user'> | |
<!-- build 8100.14.0717.0952 --> | |
<connection class='New Skool DB' dbname='DB' odbc-connect-string-extras='' port='####' server='some_connection_string' single-node='no' sslmode='require' username='username'> | |
<relation name='database' table='[Tables/Views].[Contacts]' type='table' /> | |
<cols> | |
<!-- Paste all the new XML in here --> | |
<map key='[MyPeople]' value='[Contacts].[mypeople]' /> | |
<map key='[YourPeople]' value='[Contacts].[yourpeople]' /> |
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
<style> | |
<style-rule element='cell'> | |
<format attr='font-weight' value='normal' /> | |
<format attr='color' value='#ff0080' /> | |
<format attr='text-align' value='center' /> | |
<format attr='vertical-align' value='center' /> | |
<format attr='text-orientation' value='0' /> | |
<format attr='border-style' value='solid' /> | |
<format attr='border-color' value='#ffffff' /> | |
</style-rule> |
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' ?> | |
<datasource formatted-name='Country' inline='true' version='9.2' xmlns:user='http://www.tableausoftware.com/xml/user'> | |
<connection class='firebird' dbname='GEOCODING.FDB' local-data='standard' username='sysdba'> | |
<relation join='inner' type='join'> | |
<clause type='join'> | |
<expression op='AND'> | |
<expression op='='> | |
<expression op='[Country].[ID]' /> | |
<expression op='[LocalData].[ParentID]' /> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Syria Time with Video</title> | |
<script src="https://public.tableau.com/javascripts/api/tableau-2.0.0.min.js" type="text/javascript"></script> | |
<script src="https://code.jquery.com/jquery-1.10.2.js"></script> | |
<style> | |
body { | |
background-color: white; |
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
i = 1 | |
function interval() { | |
var i = 0; | |
setInterval(function() { | |
if (i < 70) { | |
console.log("The count is: " + i); | |
animate1(i); | |
i++; | |
} |
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
PATCH /styles/v1/cmtoomey/cikzyao29004davm1r7aull0w?access_token=[token] HTTP/1.1 | |
Host: api.mapbox.com | |
Content-Type: application/json | |
Cache-Control: no-cache | |
Postman-Token: fc3820e4-18bb-5e99-597c-27e9eb3549b5 | |
{ | |
"version": 8, | |
"name": "Basic", | |
"metadata": { |
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
--- | |
worker0.gateway.port: 80 | |
worker0.cacheserver.procs: 1 | |
install.firewall.gatewayhole: true | |
service.runas.username: WIN-56CEIQFDEQOY\TestAccount | |
worker0.dataserver.procs: 1 | |
jdbc.password: 961a8015afc0d7c826cf33dc9f512f61ef69111f | |
wgserver.domain.fqdn: "" | |
wgserver.domain.nickname: WIN-56CEIQFDEQO | |
service.runas.password: "password" |
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 was written Python 2.7, not tested for Python 3 | |
#The original version of this script lived in the Tableau Server directory | |
#That's why newpath adds on 9.1\bin (the second \ is so Python reads it as a slash and not a character escape | |
#If you have tabadmin on your path, you can comment out lines 13 & 15 | |
#tinys3 is an easy way to handle S3 activity - https://github.com/smore-inc/tinys3 | |
import tinys3 | |
#os give you access to operating system interfaces | |
import os | |
#glob finds patterns | |
import glob |
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
'use strict'; | |
console.log('Loading function'); | |
const aws = require('aws-sdk'); | |
const s3 = new aws.S3({ apiVersion: '2006-03-01' }); | |
const dynamodb = new aws.DynamoDB('2012-08-10'); |
OlderNewer