I hereby claim:
- I am chadly on github.
- I am chadly (https://keybase.io/chadly) on keybase.
- I have a public key ASBTKACyrzJ1v6PUsnKg5_bHIcPfYpvQKGi7pM000zuVmQo
To claim this, I am signing this object:
[core] | |
editor = code --wait | |
[user] | |
name = Chad Lee | |
email = [email protected] | |
[pull] | |
rebase = true | |
[push] | |
default = upstream |
#!/bin/bash | |
PREFIX=src/CivicSource/CivicSource.Web/CivicSource.Administrator.Web/Content/scripts/property | |
git filter-branch --index-filter ' | |
git ls-files -s | | |
sed "s,\t,&'"$PREFIX"'/," | | |
GIT_INDEX_FILE=$GIT_INDEX_FILE.new git update-index --index-info && | |
mv $GIT_INDEX_FILE.new $GIT_INDEX_FILE | |
' HEAD |
#!/bin/bash | |
#http://stackoverflow.com/a/6638058/316108 | |
git branch rename 65a6c070f80b3b3e071fed8360c1b589a2b64018 | |
git branch pre-rename rename~ | |
## First filter all commits up to rename, but not rename itself | |
git filter-branch --prune-empty --subdirectory-filter CivicSource/CivicSource.Util/CivicSource.Migrator pre-rename | |
## Add a graft, so our rename rev comes after the processed pre-rename revs |
I hereby claim:
To claim this, I am signing this object:
# in first monorepo | |
git remote remove origin | |
git tag -l | xargs git tag -d | |
git filter-branch --prune-empty --subdirectory-filter FOLDER-NAME master | |
git update-ref -d refs/original/refs/heads/master | |
# in second repo (the one that was originally added to the monorepo) | |
git remote add cs ../civicsource | |
git fetch cs |
for d in */ ; do | |
cd $d | |
git log --since 2015-03-01 --until 2016-06-30 --reverse --pretty=format:https://github.com/civicsource/${d}commit/%H,%an,%ad,\"%s\" --date=iso > ../${d::-1}.csv | |
cd .. | |
done |
List<Task> tasks = new List<Task>(); | |
for (int i = 0; i < parallelTaskCount; i++) | |
{ | |
tasks.Add(Task.Run(async () => | |
{ | |
try | |
{ | |
await ProcessScopeAsync(provider.CreateScope()); | |
} |
ffmpeg -i in.mkv -vf "scale=-2:720" -vcodec libx264 -crf 30 -af "pan=stereo|FL < 1.0FL + 0.707FC + 0.707BL|FR < 1.0FR + 0.707FC + 0.707BR" out.mp4 |