Skip to content

Instantly share code, notes, and snippets.

View yobra98's full-sized avatar
:atom:
At Work

brian yobra yobra98

:atom:
At Work
View GitHub Profile
@preshing
preshing / build_cross_gcc
Last active August 1, 2025 16:21
A shell script to download packages for, configure, build and install a GCC cross-compiler.
#! /bin/bash
set -e
trap 'previous_command=$this_command; this_command=$BASH_COMMAND' DEBUG
trap 'echo FAILED COMMAND: $previous_command' EXIT
#-------------------------------------------------------------------------------------------
# This script will download packages for, configure, build and install a GCC cross-compiler.
# Customize the variables (INSTALL_PATH, TARGET, etc.) to your liking before running.
# If you get an error and need to resume the script from some point in the middle,
# just delete/comment the preceding lines before running it again.
@staltz
staltz / introrx.md
Last active January 6, 2026 07:25
The introduction to Reactive Programming you've been missing