Archives
- 2019
- 2018
- 2017
- 2016
- 2015
- 2014
- 2013
- 2012
-
2011
- December
- October
- September
- July
-
June
-
Sending email through Task Scheduler
30/06/11
The Task Scheduler action "Send an e-mail" needs to be able to authenticate before sending.
To do this, I enabled the SMTP Feature in Windows, went into the firewall, disabled all the external access rules (just to be on the safe side), and allowed 127.0.0.1 to relay.
The Send Em -
Bash Scripting
29/06/11
Bash supports numerical looping by:
for (( I = 0; I < 10; I++ ));
do;
something;
done;
This includes variable substitutions, allowing the min/max to be set by variables.
BASH also supports
for I in {1..10};
but the numbers have to be hard coded (no va -
Bazaar/SVN
18/06/11
Bazaar has built-in support for working with SVN. You can do things like:
bzr branch https://path.to/svn/repo localfolder
and you can use it as a local bzr branch, then bzr push to push the changes to svn as a single commit, and bzr pull to merge upstream changes into your local branch.
-
Sending email through Task Scheduler
- May
- March
- February
- January
- 2010
- 2009
Archives



