“Rules” can be stifling if taken to extremes. Break the rules today with focus, composition, etc, and see what happens.
#ds116
“Rules” can be stifling if taken to extremes. Break the rules today with focus, composition, etc, and see what happens.
#ds116
Street scenes capture life on the go, be it a bustling city or a quaint village. Make a photo of a street scene today.
Get out there, take a photograph, upload it, and tweet a link to @dailyshoot with the hashtag: #ds115
Most of us enjoy some symmetry in our lives. Look around for it today and make a symmetrical photo. (via @melhutch)
#ds114
Striped patterns have a natural pattern that catches the eye. Find some stripes today and make a photo.
#ds109
Monochrome photos don’t have to be the result of processing or desaturation. Find a monochrome composition and shoot it.
DailyShoot.com #ds100
Squares and grids surround us in our built environment. Focus in on some squares today and make a photograph.
@dailyshoot #ds99
Backgrounds are tricky. They can make a subject stand out or distract from it. Make a photo with a good background today.
The sshguard documentation is correct, but a little lacking.
Here are my notes of what is needed in case I ever need to re-do it:
iptables -N sshguard
iptables -A INPUT -p tcp --dport 22 -j sshguard
You should run those commands before you edit the syslog configuration. Or reboot.
filter sshlogs { facility(auth, authpriv) and not match("sshguard"); };
destination sshguardproc {
program("/usr/local/sbin/sshguard"
template("$DATE $FULLHOST $MESSAGE\n"));
};
And down near the end of the file, add:
log { source(s_all); filter(sshlogs); destination(sshguardproc); };
And finally restart syslog-ng (sudo killall -HUP syslog-ng) and read the sshguard faqs: http://www.sshguard.net/docs/faqs/