Robert Gonciarz
Robert Gonciarz
Please let me know if you considered extending markets to GPW. I really like your app, but miss my local stock exchange. I may help to contribute just give me...
ClassPath: com.revinate:assertj-json:1.0.1 com.jayway.jsonpath:json-path:2.0.0 com.google.code.gson:gson:2.7 Code to reproduce: String json = "{\"id\":186,\"areaIds\":[39]}"; Configuration config = Configuration.builder() .jsonProvider(new GsonJsonProvider()) .mappingProvider(new GsonMappingProvider()) .build(); DocumentContext response = JsonPath.using(config).parse(content); JsonPathAssert.assertThat(response) .jsonPathAsListOf("$.areaIds", Integer.class) .containsExactly(39); java.lang.AssertionError: Expecting:...
1. Create an isolated virtual python env. 2. source bin/activate 3. pip install cffi 4. pip install bedup ``` pip install bedup Collecting bedup Downloading bedup-0.10.1.tar.gz (75 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.8/75.8...
cat /etc/bees/bread.conf ``` UUID=a88fbf6f-df4b-42bd-936c-13acf504681c #MNT_DIR="$WORK_DIR/mnt/$UUID" WORK_DIR=/run/bees/ MNT_DIR="/.btrfs" BEESHOME="$MNT_DIR/.beeshome" BEESSTATUS="$WORK_DIR/$UUID.status" DB_SIZE=$((256*1024*1024)) # 256MB ``` cat /etc/fstab | grep btrfs ``` UUID=a88fbf6f-df4b-42bd-936c-13acf504681c / btrfs compress-force=no,subvol=/@archlinux 0 1 UUID=a88fbf6f-df4b-42bd-936c-13acf504681c /var/cache btrfs compress-force=no,subvol=/@cache 0...
``` [ownstuff] Server = https://ftp.f3l.de/~martchus/$repo/os/$arch Server = https://martchus.no-ip.biz/repo/arch/$repo/os/$arch ``` I've tested it on a bootstrapped ArchLinux. package: ownstuff/static-compat-libx11 1.6.12-1 ``` pacman -Ql static-compat-libx11 | grep libX11-xcb.so static-compat-libx11 /usr/static-compat/lib/libX11-xcb.so static-compat-libx11 /usr/static-compat/lib/libX11-xcb.so.1...
Tested on ArchLinux (virtual env) and inside docker container: ``` python -m venv . source bin/activate pip install leetscrape leetscrape ``` ``` cat Dockerfile FROM python:3 RUN pip install leetscrape...