(?!\s\d\sмес)(\s\d\s)
neg. lookahead ?!xxx should match everything but xxx
thus in the below, 4 мес should not match
фывыфлоол 3 Каша ылвоаыд ывлдао 4 мес еукфывфыв 4 мышвофы 6 ыф 7 ajsdas
| -- create table tmp2( | |
| -- foo int | |
| -- ) | |
| -- insert into tmp values (1),(2),(4),(4),(5),(null); | |
| -- insert into tmp2 values (1),(3),(4),(4),(5),(5),(null); | |
| -- select tmp.foo, tmp2.foo | |
| -- from tmp |
(?!\s\d\sмес)(\s\d\s)
neg. lookahead ?!xxx should match everything but xxx
thus in the below, 4 мес should not match
фывыфлоол 3 Каша ылвоаыд ывлдао 4 мес еукфывфыв 4 мышвофы 6 ыф 7 ajsdas
Given the following template template.yml:
data:
FOO_BAR: {{ .Values.foo.bar | quote }}
And the following value-file values.yaml:
foo:
bar: 2e0
| version: '2' | |
| # works great with AWS free tier | |
| services: | |
| plex: | |
| container_name: plex | |
| image: plexinc/pms-docker | |
| restart: unless-stopped | |
| environment: | |
| - TZ=Europe/London |
| version: '3.1' | |
| services: | |
| xpostgres: | |
| image: postgres:10.10 | |
| environment: | |
| POSTGRES_DB: ics | |
| POSTGRES_USER: ics | |
| POSTGRES_PASSWORD: ics | |
| ports: |
| public class MinioAdapter { | |
| private MinioClient minio; | |
| public MinioAdapter() { | |
| try { | |
| this.minio = new MinioClient(MINIO_URL, MINIO_ACCESS_KEY, MINIO_SECRET); | |
| } catch (InvalidPortException | InvalidEndpointException e) { | |
| throw new IllegalStateException("Could not start Minio client", e); |
| import openbabel as ob | |
| import pybel | |
| ASPIRIN = "CC(=O)OC1=CC=CC=C1C(=O)O" | |
| SALICIL = "C1=CC=C(C(=C1)C(=O)O)O" | |
| smiles = [ASPIRIN, SALICIL] | |
| mols = [pybel.readstring("smi", x) for x in smiles] | |
| for mol in mols: |
| // Arduino UNO | |
| // Programmer: AVRISP mkII | |
| /* | |
| Blink | |
| Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO | |
| it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to | |
| the correct LED pin independent of which board is used. |
| % with all respect to Maria | |
| SobelD = [1 2 1; 0 0 0; -1 -2 -1]; %ядро или оператор собеля для свертки down | |
| SobelR = [-1 0 1; -2 0 2; -1 0 1]; %ядро или оператор собеля для свертки right | |
| P = imread('BioID_0508.pgm'); %исходное изображение | |
| C1 = conv2(SobelD, P); %conv2 оператор свертки | |
| C2 = conv2(SobelR, P); |