Model / Variant | Battery (kWh) | Power (hp) | Range (km) | Price (DKK) | Warranty |
---|---|---|---|---|---|
Citroën YOU! | 44 | 113 | 314 | 159.990 | 5 yrs |
Citroën ATTRACTION | 44 | 113 | 320 | 172.990 | 5 yrs |
BYD Dolphin Active | 30 | 88 | 220 | 149.995 | 6 yrs / 150k km (car), 8 yrs / 200k km (battery) |
BYD Dolphin Boost | 43.2 | 88 | 322 | 174.995 | Same |
BYD Dolphin Comfort | 43.2 | 156 | 310 | 189.995 | Same |
Hyundai INSTER Essential | 42 / 49 | 97 / 115 | 327 / 370 | 169.995–181.995 | 5 yrs / unlimited km, 8 y |
Europe:
Country | Minimum Length | Maximum Length | Country Code | Example Phone Number | Regex Validation |
---|---|---|---|---|---|
Austria | 7 | 13 | +43 | +4312345678901 | ^+43\d{7,13}$ |
Belgium | 9 | 10 | +32 | +32123456789 | ^+32\d{9,10}$ |
Bulgaria | 8 | 9 | +359 | +35912345678 | ^+359\d{8,9}$ |
Croatia | 8 | 11 | +385 | +385123456789 | ^+385\d{8,11}$ |
Cyprus | 8 | 10 | +357 | +35712345678 | ^+357\d{8,10}$ |
Category | AWS | Azure | Google Cloud |
---|---|---|---|
Compute | EC2, Lambda, ECS, EKS, Fargate | Virtual Machines, App Service, Functions | Compute Engine, App Engine, Kubernetes |
Storage | S3, EBS, Glacier, EFS | Blob Storage, File Storage, Disk Storage | Cloud Storage, Persistent Disk, Filestore |
Database | RDS, DynamoDB, Aurora | Azure SQL Database, Cosmos DB | Cloud SQL, Cloud Spanner, Firestore |
Networking | VPC, Route 53, CloudFront | Virtual Network, Traffic Manager | VPC, Cloud DNS, Load Balancing |
Identity & Access Management | IAM, Cognito, KMS |
This is a fun project done to calculate how much can be fit into plane.
See it in action here https://play.tailwindcss.com/Y4gksQ1bCm
Here is how you undo your last commit and keep the changes from last commit files in stag or uncommited.
reset --soft HEAD^
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
// original from: http://mashe.hawksey.info/2014/07/google-sheets-as-a-database-insert-with-apps-script-using-postget-methods-with-ajax-example/ | |
// original gist: https://gist.github.com/willpatera/ee41ae374d3c9839c2d6 | |
function doGet(e){ | |
return handleResponse(e); | |
} | |
// Enter sheet name where data is to be written below | |
var SHEET_NAME = "Sheet1"; |
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 | |
from sklearn.linear_model import LogisticRegression | |
from sklearn.model_selection import train_test_split | |
from sklearn.metrics import confusion_matrix | |
from sklearn.metrics import accuracy_score | |
# import warnings filter | |
from warnings import simplefilter | |
# ignore all future warnings | |
simplefilter(action='ignore', category=FutureWarning) |
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/env python | |
import socket, sys | |
PRINTER_IP = '10.1.11.121' | |
PORT = 9100 | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
s.connect((PRINTER_IP, PORT)) | |
zpl = '' | |
zpl += '^XA' |
NewerOlder