rdebath

Results 80 issues of rdebath

The problem is you're using the standard I/O functions to read this Unix device; that is not a good idea. The stdio read functions are buffered so the `fread()` call...

From the documentation and example interpreters this is a valid Petooh "Hello World!" program. For various reasons it appears that only one of the interpreters can run it successfully. ```...

Many by https://github.com/kostya/benchmarks/commit/387b17d0c84cacb8e20d9f29a4fcb8b1d778f247 The condition should be testing for [zero or non-zero](https://en.wikipedia.org/wiki/Brainfuck#Commands) not greater than. This "Hello World!" contains a relevent test case. ``` bf >++++++++[-][][+>-[+]++>++>+++[>[->++++++..+++.>-.+]>>]>.+++.------.--------.>+.>+. ``` NB: Some languages...

When you're editing code it's good practice to keep it syntactically correct as much as possible. Certain editors make it difficult; for example "Intellisense" is really dumb about this grabbing...

The `.build_deps` are installed in one `RUN` command and deleted in the next one. This means that they are in different layers and the packages installed still take up space...

## Steps to Reproduce 1. Run a trivial "smoke test" ``` debian-buster64(robert)~$ docker run --rm -it mono:latest bash root@35a955a211eb:/# apt update && apt upgrade Get:1 https://download.mono-project.com/repo/debian stable-buster/snapshots/6.12.0.182 InRelease [5874 B]...

**Is your feature request related to a problem? Please describe.** The problem is: https://community.letsencrypt.org/t/revoking-certain-certificates-on-march-4/114864 That is, a certificate has been revoked for whatever reason and needs renewal before it's expiry....

enhancement

When a domain config file is begin created the script attempts to download the current certificate from port 443 on the named host. If the name is on a host...

This command isn't right ... ``` RUN apk add --no-cache --virtual \ busybox-extras ``` Maybe better ... ``` RUN apk add --no-cache busybox-extras ```

bug

Some images are significantly larger than they need to be, for example: ``` IMAGE ID SIZE REPOSITORY:TAG CREATED e3d3433d6e8a 6.45MB suckless-quark-std:latest 30 seconds ago caa507a71d90 1.75MB suckless-quark:latest About an hour...