A manual approach to git rebase
that puts current branch commits over new commits in other branch.
git branch -m feature-branch tmp
git checkout dev
git checkout -b feature-branch
git cherry-pick <earliest-sha1>^...<latest-sha1>
git branch -D tmp
for f in *.jpg; do | |
date="${f:0:10}" | |
if ! [ -d "${date}" ]; then | |
echo "creating folder ${date}" | |
mkdir "${date}" | |
fi | |
echo "moving ${f}" | |
mv ${f} ${date} | |
done |
{ | |
"properties": { | |
"sra": "ERR2756788", | |
"genome": "cov3ma", | |
"date": "200607-01:47" | |
}, | |
"families": [ | |
{ | |
"family": "AMR", | |
"score": "100", |
A manual approach to git rebase
that puts current branch commits over new commits in other branch.
git branch -m feature-branch tmp
git checkout dev
git checkout -b feature-branch
git cherry-pick <earliest-sha1>^...<latest-sha1>
git branch -D tmp
import urllib | |
import datetime | |
import time | |
import string | |
url = "https://www.facebook.com/theKLIQUE/videos/1079723095393383/" | |
def printStuff(): | |
fileObj = urllib.urlopen(url) |
man find
find
is used to search for immediate subdirectories matching the regular expression R*.dm6
. The output of find
is a list of each match. These subdirectories are passed through a pipe into a push/pop loop.""" | |
Script to crete TSV file containing title/artist/__/BPM/key info | |
playlist_export_file | |
iTunes export of playlist (CSV) | |
auto_fpath | |
filepath of binary plist file generated by djay.app | |
""" | |
import csv |
Set your name and email (make sure the email is tied to your GitHub account).
git config --global user.name <YOUR_NAME>
git config --global user.email <YOUR_EMAIL>
git config -l