Joined February 2013
·
Posted to
How I harmlessly pwn'ed a competitor with Javascript
over 1 year
ago
This case highlights it being wise to poke around your Apache logs regularly, rather than strictly relying on Google Analytics.
This case highlights it being wise to poke around your Apache logs regularly, rather than strictly relying on Google Analytics.
Often I'll use git log at/for/during the daily scrum. In that scenario the command can be a little easier since you don't need the timestamps, and thus may not need an alias, which is nice since that'll help you remember some of git's various options:
git log --author=YOURNAME --since="Yesterday" --oneline --no-merges
And of course for Monday's scrum:
git log --author=YOURNAME --since="Last Friday" --oneline --no-merges