Skip to content

Instantly share code, notes, and snippets.

import rasterio
import numpy as np
INP_FILE = "91_1040010039040600.tif"
dataset = rasterio.open(INP_FILE, "r")
print(f'dataset: {dataset}')
# r = np.zeros(data.shape)
# g = np.zeros(data.shape)
# b = np.zeros(data.shape)
@pradoz
pradoz / fix-wsl2-dns-resolution
Created June 24, 2021 05:45 — forked from coltenkrauter/fix-wsl2-dns-resolution
Fix DNS resolution in WSL2
More recent resolution:
1. cd ~/../../etc (go to etc folder in WSL).
2. echo "[network]" | sudo tee wsl.conf (Create wsl.conf file and add the first line).
3. echo "generateResolvConf = false" | sudo tee -a wsl.conf (Append wsl.conf the next line).
4. wsl --terminate Debian (Terminate WSL in Windows cmd, in case is Ubuntu not Debian).
5. cd ~/../../etc (go to etc folder in WSL).
6. sudo rm -Rf resolv.conf (Delete the resolv.conf file).
7. In windows cmd, ps or terminal with the vpn connected do: Get-NetIPInterface or ipconfig /all for get the dns primary and
secondary.