Skip to content

Instantly share code, notes, and snippets.

View ptorru's full-sized avatar
🚀
Making it happen!

Pedro Torruella ptorru

🚀
Making it happen!
View GitHub Profile
@WebDevSimplified
WebDevSimplified / bootstrap-breakpoint.css
Last active January 6, 2026 15:39
This stylesheet adds text describing the current Bootstrap Breakpoint in the top right corner of the screen.
body {
margin-top: 40px; /* This margin just makes the text easier to read. You can remove it if you want since it can mess with your other styles. */
}
body::before {
content: "XS";
color: red;
font-size: 2rem;
font-weight: bold;
position: fixed;
@ArturKlauser
ArturKlauser / check-qemu-binfmt.sh
Last active February 13, 2023 16:53
Building Multi-Architecture Docker Images With Buildx
#!/bin/bash
# (c) 2020 Artur.Klauser@computer.org
# SPDX-License-Identifier: Apache-2.0 OR MIT
#
# This script checks if all software requirements are met in a Linux environment
# in order to use 'docker buildx' to build multi-architecture images.
# For more information see:
# https://nexus.eddiesinentropy.net/2020/01/12/Building-Multi-architecture-Docker-Images-With-Buildx/
function error() {
@ashriram
ashriram / Zedboard-pynq-guide.md
Created August 8, 2019 18:11
Building Pynq Linux onto the Zedboard

Quick guide to building Pynq v2.3 onto the Zedboard

Prerequisites

  • Create a Ubuntu 16.04 x64 VM -- 60gb Disk Size, 6gb Ram
  • Install Petalinux 2018.2 onto the VM in your home directory; add it to your PATH variable
  • Download the "Pynq rootfs arm v2.3" image avialble here
  • Download the zedboard 2018.2 BSP file from xilinx

Steps to build