This command would alter the default committer name and email address for each of the commits.
This command uses the git filter-branch
command.
$ git filter-branch --env-filter '
WRONG_EMAIL="[email protected]"
NEW_NAME="New Name Value"
#!/bin/sh | |
########################################### | |
### Workspace Startup File | |
### | |
### @brief Creates the Required files and configuration needed | |
### to begin working with Python projects | |
### This work has been inspired by: | |
### Learn Python the Hard Way by Zed A Shaw | |
### - Great book on python and other topics | |
### - Visit: https://learnpythonthehardway.org/ |
This command would alter the default committer name and email address for each of the commits.
This command uses the git filter-branch
command.
$ git filter-branch --env-filter '
WRONG_EMAIL="[email protected]"
NEW_NAME="New Name Value"
We have been using [Manjaro linux][2] for past year and have been happy with its perfomance. Though we don't use te [AUR][1] (Arch User Repository, since many are not supported into Manjaro.
The best part is even with bad / dumb users like myself, IT-DOES-NOT-BREAK. So, we very much recommend [Manjaro][2].
It seriously worked much better than Ubuntu. We might not be able to have all the boat load of software & support like Debian, but we are happy.
#include <SPI.h> | |
#include "PinNames.h" | |
// 11 - GPIOC_2 - SPI0_MOSI = Connected to Chip SPI MOSI | |
// 12 - GPIOC_3 - SPI0_MISO = Connected to Chip SPI MISO | |
// 13 - GPIOC_1 - SPI0_CLK = Connected to Chip SPI SCK | |
// GPIOC_4 - SPI0_CS1 = Connected to Chip SPI CS | |
#define CS PC_4 | |
SPISettings settings = SPISettings(20000000, MSBFIRST, SPI_MODE0); | |
void setup() { |
First we need to load the latest Image of Raspbian
Next in case you have a display :
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
These boards are low cost and very well supported by STM32 Arduino
One needs to flash the Bootloader to make this board work with modified MAPLE booloader.
For that here are the Steps:
#!/bin/sh | |
alias ll='ls -alF' | |
alias la='ls -aol' | |
alias l='ls -CF' | |
alias c='clear' | |
alias d='cd ..' | |
alias cd..='cd ..' | |
alias ..='cd ..' | |
alias ...='cd ../../../' | |
alias ....='cd ../../../../' |
#!/bin/bash | |
apt update && apt install -y curl python nano vim wget git apt-transport-https | |
curl https://sdk.cloud.google.com/ | bash | |
wget https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | |
tar -C /usr/local -xzf go1.8.3.linux-amd64.tar.gz | |
rm go1.8.3.linux-amd64.tar.gz | |
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> ~/.bashrc | |
echo 'export GOPATH=$HOME/go' >> ~/.bashrc | |
mkdir -p ~/go/src ~/go/bin | |
wget https://goo.gl/FEjiMK -O .gitconfig |