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
| <!-- Code En Anglais --> | |
| <div class="mkdf-icon-list-holder"> | |
| <div class="mkdf-il-icon-holder"> | |
| <span aria-hidden="true" class="mkdf-icon-font-elegant icon_clock_alt " style="color: #f1b847;font-size: 18px"></span> | |
| </div> | |
| <p class="mkdf-il-text" style="color: #b5b5b5; font-size: 15px; padding-left: 28px;">Mon – Fri 8am – 4pm</p> | |
| </div> | |
| <div class="mkdf-icon-list-holder"> | |
| <div class="mkdf-il-icon-holder"> |
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
| class DateRange { | |
| constructor(start, end) { | |
| this.start = start | |
| this.end = end | |
| } | |
| } | |
| let date1= new Date(2021, 4, 1, 10, 10, 10) | |
| let date2= new Date(2021, 4, 2, 10, 10, 10) | |
| let date3= new Date(2021, 4, 3, 10, 10, 10) |
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
| from english_words import get_english_words_set | |
| import click | |
| import matplotlib.pyplot as plt | |
| from itertools import product | |
| class Sorcerer: | |
| def generate_corpus(self, count): | |
| corpus = {} |
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 json | |
| import os | |
| import psycopg2 | |
| from pymongo import MongoClient | |
| conn_str = os.getenv('TS_CONNECTION_US') | |
| def get_mapping(): | |
| # Load the store mapping from the JSON file |
OlderNewer