Skip to content

Instantly share code, notes, and snippets.

View gleich's full-sized avatar

Matt Gleich gleich

View GitHub Profile
# tap the macos-cross-toolchains repo
brew tap messense/macos-cross-toolchains
# install the armv7-unknown-linux-gnueabihf linker
brew install armv7-unknown-linux-gnueabihf
# tell cargo what linker to use when targeting armv7-unknown-linux-gnueabihf
printf "[target.armv7-unknown-linux-gnueabihf]\nlinker = \"armv7-unknown-linux-gnueabihf-gcc\"\n" >> ~/.cargo/config
# now just run the following command from the root of your rust project!
❗️ Closed issue #27 in gleich/texsch
❗️ Closed issue #20 in blackbirdtheme/vscode
❗️ Reopened issue #20 in blackbirdtheme/vscode
🗣 Commented on #20 in blackbirdtheme/vscode
🗣 Commented on #20 in blackbirdtheme/vscode
#!/bin/sh
# Installing docker onto a RPI
# Install Docker:
curl -sSL https://get.docker.com | sh
# Giving Docker Sudo Privildages:
sudo groupadd docker
sudo gpasswd -a $USER docker
@gleich
gleich / README-Template.md
Created March 5, 2019 04:13 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->