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
{ | |
"rate": "fr_home_without_signature", | |
"debug": true, | |
"test": true, | |
"demand_location_id": "US01", | |
"fulfillment_node_id": "US02", | |
"carrier_code": "colissimo", | |
"booking_method": "only_return", | |
"sender_address": { | |
"country_code": "FR", |
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
y |
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
const functions = require('firebase-functions'); | |
var admin = require("firebase-admin"); | |
const cookieParser = require('cookie-parser'); | |
const crypto = require('crypto'); | |
const axios = require('axios'); | |
admin.initializeApp({}); | |
/** | |
* Creates a configured simple-oauth2 client for Twitch. |
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
from datetime import datetime | |
from ftplib import FTP | |
from threading import Thread | |
from utils import parse_date, value_from_nested_dict | |
REFERENCE_CODES = { | |
'CN': 'pro_number', |
This file has been truncated, but you can view the full file.
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
<HTML> | |
<HEAD> | |
<TITLE> CloneDigger Report </TITLE> | |
<script type="text/javascript"> | |
function unhide(divID) { | |
var item = document.getElementById(divID); | |
if (item) { | |
item.className=(item.className=='hidden')?'unhidden':'hidden'; | |
} |
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
<html> | |
<head> | |
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<title>TNT Label</title> | |
<script type="text/javascript"> | |
var firstPagePrinted = false; function includePageBreak() { if (firstPagePrinted) { document.writeln('<div class="pagebreak">'); document.writeln('<font size="1" color="#FFFFFF">.</font>'); document.writeln('</div>'); } else { firstPagePrinted = true; } } | |
</script><style> |
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
<html> | |
<head> | |
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<title>TNT Label</title> | |
<script type="text/javascript"> | |
var firstPagePrinted = false; function includePageBreak() { if (firstPagePrinted) { document.writeln('<div class="pagebreak">'); document.writeln('<font size="1" color="#FFFFFF">.</font>'); document.writeln('</div>'); } else { firstPagePrinted = true; } } | |
</script><style> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> | |
<log4j:configuration> | |
<appender name="STDOUT" class="org.apache.log4j.ConsoleAppender"> | |
<layout class="org.apache.log4j.PatternLayout"> | |
<param name="ConversionPattern" | |
value="%d %-5p [%t] %M - %m%n"/> | |
</layout> | |
</appender> | |
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
# -*- coding: utf-8 -*- | |
__author__ = 'diony_000' | |
#original list of currencies is from https://code.google.com/p/dspl/source/browse/datasets/google/canonical/currencies.csv | |
symbol_to_currency = { | |
'$':['USD','AUD','ARS','BBD','BMD','BND','BSD','CAD','CLP','COP','FJD','GYD','HKD','KYD','LRD','MXN','NZD','SBD','SGD','SRD','SVC','XCD'], | |
'$b':['BOB'], | |
'$U':['UYU'], | |
'£':['GBP','EGP','FKP','GIP','LBP','SHP','SYP'], |