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
store_id | latitude | longitude | |
---|---|---|---|
POI-00157213 | 45.43705 | 9.191937 | |
POI-00157230 | 45.433346 | 9.262957 | |
POI-00157217 | 45.496092 | 9.139218 | |
POI-00157229 | 45.483717 | 9.214571 | |
POI-00157231 | 45.423873 | 9.250132 | |
POI-00157221 | 45.494949 | 9.184943 | |
POI-00157216 | 45.484058 | 9.204831 | |
POI-00157222 | 45.46561 | 9.191485 | |
POI-00157228 | 45.485712 | 9.216043 |
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
const Track = event => { | |
var url = new URL("https://trk.beintoo.net/ ..."); | |
var params = window.adsbybeintoo.params; | |
if (params) { | |
url.searchParams.append("campaign", params.ad_id); | |
url.searchParams.append("channel", params.ad_server); | |
url.searchParams.append("idfa", params.ios_advertising_id); | |
url.searchParams.append("gaid", params.android_advertising_id); |
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
const Img = props => { | |
var isDevelopment = | |
location.hostname === "localhost" || location.hostname === "127.0.0.1"; | |
var params = window.adsbybeintoo.params; | |
var src = props.src; | |
if (!isDevelopment && params) { | |
var filename = /([\w-]+\.jpg|png|)/.exec(src)[1]; |
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
import { Block } from "jsxstyle/preact"; | |
const Video = props => { | |
var isDevelopment = | |
location.hostname === "localhost" || location.hostname === "127.0.0.1"; | |
var params = window.adsbybeintoo.params; | |
var src = props.src; |
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
const Link = props => { | |
var isDevelopment = | |
location.hostname === "localhost" || location.hostname === "127.0.0.1"; | |
return ( | |
<Block | |
position="absolute" | |
height={props.height} | |
width={props.width} | |
top={props.top} |
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
#!/bin/bash | |
curl -O https://bootstrap.pypa.io/get-pip.py | |
python3 get-pip.py --user | |
echo `export PATH=~/.local/bin:$PATH` >> .bashrc | |
pip --version | |
pip install awscli --upgrade --user |
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
dfgsdgdsgsd | |
ads | |
sd | |
dsa | |
f |
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
/* | |
* # Hello World | |
* | |
* It is common to start any tutorial for a new language with the Hello World | |
* example so we'll start out by showing how easy this is to do in Swift: | |
*/ | |
print("Hello World") | |
/* |