-
## Issue description
I'm trying to generate a docker image to run Eris from a container, but docker fails with `invalid reference format` when running `docker load`
### Steps to reproduce
```…
-
**Describe the bug**
When trying to parse a string, which contains unicode characters (e.g. umlauts) and setting the flag `JSON_TOKENER_STRICT`, parsing is not successful. The error code is `json_to…
-
```
Serial.print(n, HEX, 3); // for example
```
Original issue reported on code.google.com by `dmel...@gmail.com` on 24 May 2011 at 7:34
-
```
Serial.print(n, HEX, 3); // for example
```
Original issue reported on code.google.com by `dmel...@gmail.com` on 24 May 2011 at 7:34
-
Trying to track down a funny compiler regression, but I can't look at vfp/neon instructions because the online compiler does not support hard float abi.
` /opt/compiler-explorer/arm/gcc-8.2.0/arm-u…
kraln updated
4 months ago
-
![grafik](https://user-images.githubusercontent.com/11522213/190858613-0896ea2c-b0c8-4e64-af41-9b857ead0648.png)
```
jobs:
~ - name: build-developers
+ | |
+ | on_failure:
+ | | put: matri…
-
The problem is the %c or {:c} which is supposed to format a number into a unicode character, but in Micropython (tested on the esp8266 and esp32) seems to truncate the parameter at one byte.
```
M…
-
Hello,
Thank you for this package. I found it to be quite useful for several of my projects. I am opening an issue because there were breaking changes sometime between 2.0 and 2.3.1, specifically …
-
My idea is to build a minimalistic logging layer build on top of [logrus](https://github.com/Sirupsen/logrus), having the ability to use a default logger (used by core vinxi package) or alternatively …
h2non updated
8 years ago
-
```
#include
void practice()
{
int arr[3] = { 0,1,2 };
int *ptr = arr;
printf("%d",ptr);
printf("%d", *ptr);
return;
}
```
*ptr을 선언할 경우 배열에 상관없이 무조건 배열의 첫번째 요소를 긁어오는건가요.배열을 선언하지…