A simple and efficient constant-size non-allocating ring buffer.
This file contains 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
[build] | |
build-std = false | |
[target.aarch64-unknown-linux-gnu] | |
build-std = false | |
[target.x86_64-unknown-linux-gnu] | |
build-std = false |
This file contains 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
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Process: Python [81293] | |
Path: /opt/homebrew/*/Python.framework/Versions/3.11/Resources/Python.app/Contents/MacOS/Python | |
Identifier: org.python.python | |
Version: 3.11.4 (3.11.4) | |
Code Type: ARM-64 (Native) | |
Parent Process: Python [81287] |
This file contains 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
Homebrew build logs for osrf/simulation/gz-common5 on macOS 13.2 | |
Build date: 2023-06-10 08:35:21 |
This file contains 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
Homebrew build logs for osrf/simulation/gazebo11 on macOS 13.2 | |
Build date: 2023-02-19 11:51:31 |
This file contains 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
Homebrew build logs for osrf/simulation/sdformat9 on macOS 13.2 | |
Build date: 2023-02-18 01:50:32 |
This file contains 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
#!/usr/bin/env bash | |
set -e | |
if [ "$#" -ne 3 ]; then | |
echo "Illegal number of parameters!" | |
echo "Usage:" | |
echo " ./get-envoy-binary.sh <version> <container engine: podman | docker> <out directory>" | |
exit 1 | |
fi |
I hereby claim:
- I am sitin on github.
- I am sitin (https://keybase.io/sitin) on keybase.
- I have a public key ASBdHKYvUU-UqZZYsRgl7qxj0KvTCV9JDl7onc9mPgdE1Ao
To claim this, I am signing this object:
This file contains 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
# Setup QEMU for x86-64 Docker images on Raspberry Pi 4 | |
# Install Python3 and Docker first: https://dev.to/rohansawant/installing-docker-and-docker-compose-on-the-raspberry-pi-in-5-simple-steps-3mgl | |
# Install QUEMU (https://www.qemu.org/) | |
sudo apt-get install qemu binfmt-support qemu-user-static | |
# Use QUS in Docker (https://github.com/dbhi/qus) to configure x86_64 architecture | |
docker run --rm --privileged aptman/qus -s -- -p x86_64 | |
# Test x86-64 image: |
NewerOlder