Category Archives: Technology

Flapjax – Functional Reactive Programming in Javascript

What if programming can be as simple as writing spreadsheet formulas? Now – there are some complex spreadsheets out there for sure, but the power of spreadsheet comes from that the values are self-updating, i.e. changing value in one cell … Continue reading

Share
Posted in Technology | Tagged , , , , | Leave a comment

Setting Up SPF DNS Records

SPF (Sender Policy Framework) is an internet standard to address SPAM by ensuring that emails are sent by only the valid senders from valid servers, so spammers cannot send fake emails for your domain (unless they have compromised your server … Continue reading

Share
Posted in Technology | Tagged , | Leave a comment

Comment Spam Filter Via reCAPTCHA

Akismet, the built-in spam filter for WordPress, appears to suffer from some reputation problems, so we’ll avoid using akismet for now, and instead, we will use reCAPTCHA. The nice thing about reCAPTCHA is that it’s got descent strength, and people … Continue reading

Share
Posted in Setup, Technology | Tagged , , | Leave a comment

Enable SSL in Apache

In ubuntu, apache’s config files lie in /etc/apache2, and it uses two sub directories to determine the list of available virtual hosts: /sites-available – holds the configuration files of the defined virtual hosts /sites-enabled – holds symlinks that link back … Continue reading

Share
Posted in Technology | Tagged , | 1 Comment

Determine which process binds to which port in Linux

lsof -i tcp:<port_number> http://www.terrencemiao.com/Webmail/msg00900.html

Share
Posted in Technology | Tagged | Leave a comment