- ve spojení neslabičných předložek k, s, v, z s následujícím slovem
(?<=[[:space:]](k|s|v|z))[[:space:]] - ve spojení slabičných předložek o, u a spojek a, i s výrazem, který po nich následuje
(?<=[[:space:]](o|u|a|i))[[:space:]] - pro členění čísel, např. 2 500, 1 000 000, 25,325 23
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
| { | |
| "openapi": "3.0.0", | |
| "info": { | |
| "title": "Document Manager API", | |
| "version": "1.0" | |
| }, | |
| "servers": [ | |
| { | |
| "url": "https://documentmanager.cz", | |
| "description": "Production environment" |
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="cs"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width,initial-scale=1.0"> | |
| <title>CSS for paged media playground</title> | |
| <style media="print"> | |
| input, button { | |
| display: none; | |
| } |
The goal is to restrict certain OpenVPN clients to the specific subnet and keeping the ReForis OpenVPN configuration interface working.
This guide assumes you have already the OpenVPN set up and working with the default configuration. We will create only one subnet, but the procedure should be easily adjusted even for multiple subnets (you would just need to shift the IP ranges and adjust subnet masks). It should also work with any other OpenVPN configurations on OpenWRT.
Note: I'm no expert and it is possible that there are some serious issues in the following. Nevertheless it is working fine so far for me. Use at your own risk.
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
| """Create testing files for calcs.""" | |
| # import gspread | |
| import os | |
| import json | |
| import pandas as pd | |
| import random | |
| import string | |
| import math |