- The highest additional cost of buying a home in Germany.
- You’ll usually need to pay between 3.5% and 6.5% of the purchase price.
- https://hypofriend.de/en/property-transfer-tax.fhd
- Pay it within four weeks of finalizing your purchase.
- Once paid, the transfer of ownership of the property can be registered in the German land registry (Grundbuch).
- Use an online platform to simplify the taxation process:
- https://expatica.germantaxes.de/
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> | |
<script> | |
fetch("http://localhost:3000", { |
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/bash | |
isPackageManagerSpecified="false"; | |
for ((i=1; i<=$#; i++)) | |
do | |
nextArgumentIndex=$((i+1)); | |
if [[ "${!i}" == "--package-manager" ]] && [[ "${!nextArgumentIndex}" == "pnpm" ]]; | |
then | |
isPackageManagerSpecified="true"; | |
fi |
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/bash | |
pnpm create next-app "$@" | |
cd "$1" | |
pnpm i | |
# Add prettier and its script | |
pnpm add -D prettier | |
wget https://gist.githubusercontent.com/kasir-barati/2bcdeea964f88712eca171adb3fbd979/raw/.prettierrc |
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/bash | |
mkdir -p "$(dirname "$1")" && touch "$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
git config --global init.defaultBranch main | |
sudo wget https://gist.githubusercontent.com/kasir-barati/5590e1420aedc2dc321571b4b9df7d33/raw/my-create-angular-app -O /usr/local/bin/my-create-angular-app | |
sudo chmod +x /usr/local/bin/my-create-angular-app | |
sudo wget https://gist.githubusercontent.com/kasir-barati/fb8263d5f546de1503847928ad4c6025/raw/my-create-react-app -O /usr/local/bin/my-create-react-app | |
sudo chmod +x /usr/local/bin/my-create-react-app | |
wget https://gist.githubusercontent.com/kasir-barati/bf022bc96f51ed351c8fc3667eb247b3/raw/my-touch -O /usr/local/bin/my-touch | |
sudo chmod +x /usr/local/bin/my-touch |
ssh-keygen
- Specify a new pass if you already have another ssh
ssh-agent -s
ssh-agent ssh-add .ssh/backup/id_rsa
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
GNU GENERAL PUBLIC LICENSE | |
Version 3, 29 June 2007 | |
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> | |
Everyone is permitted to copy and distribute verbatim copies | |
of this license document, but changing it is not allowed. | |
Preamble | |
The GNU General Public License is a free, copyleft license for |
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/bash | |
setxkbmap -layout us,ir | |
setxkbmap -option 'grp:alt_shift_toggle' |
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
# Upgrade and update | |
sudo pacman -Syu --noconfirm | |
# Install Git and config it | |
sudo pacman -S git | |
git config --global init.defaultBranch main | |
git config --global user.name "Kasir Barati" | |
git config --global user.email "[email protected]" |
NewerOlder