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
import json | |
def load_config(config_file): | |
with open(config_file, 'r') as file: | |
return json.load(file) | |
def redact_pii(file_path, config_file='redaction_config.json'): | |
config = load_config(config_file) | |
with open(file_path, 'r', encoding='utf-8') as 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
Onboarding | |
Internet Speed | |
Choose speed -> VAS Options | |
VAS Options | |
Yes TV -> TV Drawer | |
Yes VoIP -> VoIP Drawer | |
Not interested | |
TV Drawer | |
Chose TV options | |
No TV |
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
{ | |
"action": "subscription.activated", | |
"activated_at": "2023-02-10T07:46:55-08:00", | |
"assigned_resources": [], | |
"service": { | |
"detail": {}, | |
"id": "e1619919-7b87-4b96-adb4-77ba5d57d78c", | |
"type": "voip" | |
}, | |
"subscription": { |
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
Marketplace Home | |
Initial Actions | |
Filter or Search Engaged -> Service Filter | |
Provider Selected -> Provider Page | |
Service Filter | |
Cancel -> Marketplace Home | |
Select Service Type | |
Internet Service -> Service Results | |
IPTV Service -> Service Results |
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
/* SERVER ONE */ | |
const express = require('express') | |
const cors = require('cors') | |
const proxy = require('express-http-proxy') | |
const app = express() | |
// Table Options | |
// CORS and JSON Config | |
app.use(cors()) |
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
Portfolio Constructor Sidebar | |
Build Sample Set* | |
Pricing Data Required | |
Download and Upload Data -> Optimization Details | |
Add filters -> Pricing Data Required | |
Modified sample set -> Pricing Data Required | |
Optimization Details | |
Modified sample set -> Pricing Data Required | |
Add optimizations -> Portfolio Can Be Generated | |
Portfolio Can Be Generated |
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
Search Input | |
Nothing selected -> No results | |
User selects input -> Text to type at least 3 characters | |
User begins typing -> Text to type at least 3 characters | |
User types 0-2 characters -> Text to type at least 3 characters | |
User types 3-8 characters | |
If matches -> Show partial matches | |
If no matches -> Show error | |
User types 9 characters | |
If match -> Show single match |
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
[ | |
{ | |
"title": "1 Year Maturity (2019)", | |
"year": 2019, | |
"maturity": 1, | |
"val_benchmark": 2.37, | |
"val_atOffering": 1.37 | |
}, | |
{ | |
"title": "2 Year Maturity (2020)", |
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
<div id="container"></div> |
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
var https = require('https'); | |
// CONFIGURATION ####################################################################################################### | |
var token = 'SLACK TOKEN'; | |
var channel = 'CHANNEL ID'; | |
var privateChannel = false; | |
var delay = 300; // delay between delete operations in millisecond | |
// GLOBALS ############################################################################################################# |
NewerOlder