NEW: For a prettier blog interface, see the Wordpress version!
| A1 | X | Make a quiz for CS21A |
| A2 | X | Reserve F227 from 3:30 - 4:30 on Fridays for C++ group |
| A3 | X | Reserve CTC 313 from 1:30 to 2:30 on Fridays for Design Patterns group |
1. Dominique's birthday : 08:03
2. Oops, forgot my keys : 08:24
3. e-learning conference tomorrow : 12:27
then rush back to school
4. Automatically detecting proxy settings : 13:30
This goes into my /etc/laptop-net/profiles/school/files.d/var/www/proxy.js:
function FindProxyForURL(url,host)
{ if(isPlainHostName(host)||
isInNet(host,"10.0.0.0","255.0.0.0")) return "DIRECT";
else return "PROXY proxy.admu.edu.ph:3128; DIRECT";
}
and this goes into my /etc/laptop-net/profiles/home/files.d/var/www/proxy.js:
function FindProxyForURL(url,host)
{
return "DIRECT";
}
I deleted the other profile and changed my settings to automatically detect the proxy configuration from file:///var/www/proxy.js . Tada! No more worries. It just works.
I'd love to hear about any questions, comments, suggestions or links that you might have. Your comments will not be posted on this website immediately, but will be e-mailed to me first. You can use this form to get in touch with me, or e-mail me at sacha@sachachua.com .