This guide provides a structured solution to resolve java.net.UnknownHostException: connectors.airbyte.com
, which occurs when Airbyte fails to resolve DNS for external services. The primary goal is to ensure proper DNS resolution by configuring CoreDNS to use reliable external DNS servers.
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 streamlit as st | |
import pandas as pd | |
sales = pd.read_csv('superstore.csv', parse_dates=['Ship Date', 'Order Date']) | |
st.markdown('# Suivi des ventes') | |
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 | |
def tableau_vers_json(tableau): | |
""" | |
Convertit un tableau (liste de listes) en JSON. | |
:param tableau: Liste de listes à convertir | |
:return: Chaîne JSON | |
""" | |
try: |
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
[Prénom et nom] | |
[Votre adresse] | |
[Code postal, Ville] | |
[Téléphone] | |
[Adresse e-mail] | |
[Date] | |
[Prénom et nom du député] | |
[Adresse du bureau du député] | |
[Code postal, Ville du bureau du député] |
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 geopandas as gdp | |
dep971 = gdp.read_file('./ZFU/ZFU_Dep971_Scan25_W84.shp') | |
dep972 = gdp.read_file('./ZFU/ZFU_Dep972_Scan25_W84.shp') | |
dep973 = gdp.read_file('./ZFU/ZFU_Dep973_Scan25_W84.shp') | |
dep974 = gdp.read_file('./ZFU/ZFU_Dep974_Scan25_W84.shp') | |
metropole = gdp.read_file('./ZFU/ZFU_FRM_Scan25_L93.shp') | |
# convert metropole to lon/lat system | |
dep971 = dep971.to_crs('EPSG:4326') |
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 pyproj import Transformer | |
# EPSG:2154 = Lambert 93 (french projection system) | |
# EPSG:4326 = WGS 84 (lon/lat) | |
class CoordinatesEncoder: | |
def convert(x: float, y: float): | |
transformer = Transformer.from_crs("EPSG:2154", "EPSG:4326", always_xy=True) |
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
version: "2" | |
services: | |
plex: | |
image: linuxserver/plex:latest | |
container_name: plex | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- VERSION=docker | |
volumes: |
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 pandas as pd | |
df = pd.read_csv('https://raw.githubusercontent.com/ageron/handson-ml/master/datasets/housing/housing.csv') | |
corr = df.corr() | |
corr.style.background_gradient(cmap='RdBu', vmin = -1, vmax = 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
<?php | |
use Resiliency\MainCircuitBreaker; | |
use Resiliency\Systems\MainSystem; | |
use Resiliency\Storages\SimpleArray; | |
use Resiliency\Clients\SymfonyClient; | |
use Symfony\Component\HttpClient\HttpClient; | |
$client = new SymfonyClient(HttpClient::create()); |
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
{#** | |
* 2007-2019 PrestaShop and Contributors | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Open Software License (OSL 3.0) | |
* that is bundled with this package in the file LICENSE.txt. | |
* It is also available through the world-wide-web at this URL: | |
* https://opensource.org/licenses/OSL-3.0 | |
* If you did not receive a copy of the license and are unable to |
NewerOlder