Tour Operator & Booking Types — for Hilda to verify
One-pager to align on tour types and operator tracking before we build out the admin tooling.
Seðlabanki Íslands setur reglur um hámark greiðslubyrðar fasteignalána í hlutfalli við tekjur. Hámarkið er 35% af ráðstöfunartekjum (eða 40% fyrir fyrstu kaupendur). Þó er til undanþága sem margir vita ekki af — og hún var tvöfölduð í lok árs 2025.
| Reglur | Dagsetning | Undanþága | Breyting |
|---|
Source: https://www.youtube.com/watch?v=rTB_0TkJRlE
The following is my speech given at the UN Security Council in New York. I was supposed to be there in person, although my flight was cancelled without any replacement flights to get me there on time. Nonetheless, here is my speech and afterward I will give some comments to further extend upon my argument.
| #!/bin/bash | |
| # Function to check if the branch exists on the remote | |
| branch_exists_on_remote() { | |
| git ls-remote --quiet --exit-code origin "refs/heads/$1" &>/dev/null | |
| return $? | |
| } | |
| # Function to check if the branch exists locally | |
| branch_exists_locally() { |
| /* eslint-disable @typescript-eslint/no-unsafe-call */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-return */ | |
| /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-member-access */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-argument */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-assignment */ | |
| /* eslint-disable react-hooks/exhaustive-deps */ | |
| import { useRouter } from "next/router"; | |
| import { z } from "zod"; |
| import requests | |
| import re | |
| from bs4 import BeautifulSoup | |
| import random | |
| URL = "http://www.ljod.is/index.php/ljod/poem_collection/author" | |
| page = requests.get(URL) | |
| soup = BeautifulSoup(page.content, "html.parser") |
| # 87116010 = Lítil rafknúin ökutæki og hlaupahjól gerð fyrir aksturshraða < 25 km á klst (reiðhjól b og c, létt bifhjól 1) | |
| # 87116090 = Létt bifhjól 2 | |
| # 87120000 = Reiðjól | |
| # From january 2020 | |
| # 8711.6011 = reiðhjól b | |
| # 8711.6012 = reiðhjól c | |
| # 8711.6013 = létt bifhjól 1 | |
| library(scales) |
| import re | |
| from typing import Dict, Iterable | |
| from reynir import Greynir | |
| from reynir.reynir import _Sentence | |
| greynir = Greynir() | |
| COMPANY_SUFFIXES = ( | |
| "ehf.", |
| """ | |
| Look at the split of non-working-day windows for each year | |
| Produces something like this: | |
| 2020 - 117 frídagar (119 í frígluggum sem hefjast á árinu) | |
| - 1x fimm daga frí - 9.4 (Holy Thursday) | |
| - 2x fjögurra daga frí - 24.12 (Christmas Eve), 31.12 (New Year's Eve) | |
| - 3x þriggja daga frí - 1.5 (Labour Day), 3.5 (Whit Monday), 1.8 (Commerce Day) | |
| - 47x tveggja daga frí |
| import os | |
| from enum import Enum as PyEnum | |
| from collections import namedtuple | |
| from fastapi import Depends, FastAPI, HTTPException | |
| from starlette.requests import Request | |
| from starlette.templating import Jinja2Templates | |
| from sqlalchemy import ( | |
| create_engine, |