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"
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.
/* ADS1256 simple library for Arduino | |
ADS1256, datasheet: http://www.ti.com/lit/ds/sbas288j/sbas288j.pdf | |
connections to Atmega328 (UNO) | |
CLK - pin 13 | |
DIN - pin 11 (MOSI) | |
DOUT - pin 12 (MISO) | |
CS - pin 10 | |
DRDY - pin 9 | |
RESET- pin 8 (or tie HIGH?) |
.PHONY: test-cover-html | |
PACKAGES = $(shell find ./ -type d -not -path '*/\.*') | |
test-cover-html: | |
echo "mode: count" > coverage-all.out | |
$(foreach pkg,$(PACKAGES),\ | |
go test -coverprofile=coverage.out -covermode=count $(pkg);\ | |
tail -n +2 coverage.out >> coverage-all.out;) | |
go tool cover -html=coverage-all.out |
/************************************************************************ | |
* NJC's Simple LaunchPad DAC | |
* | |
* Description: This code turns the LaunchPad into a simple (slow) | |
* function generator that outputs a sine wave at 128Hz. | |
* For each point in a period signal, there is one | |
* smaller PWM period. For this example there are 32 | |
* points per period. The duty cycle of each PWM period | |
* determines the analog value at that point in time. | |
* By continually changing the duty cycle, an analog |