VCNews’ engine & apache rewrite

Today I cre­ated some new fea­tures in VCNews’ engine.

  • Upro­file sync. Now every sin­gle twit­ter and facebook’s pro­file will auto sign up with Uprofile’s account.
  • Word­Press reader
  • Yahoo! news reader
  • con­sole “panel” con­trol. I don’t like to view logs using web browser or ssh shell at “far away” servers, with this con­sole app I can apply all regexp/grep rules than I want or, bet­ter, view logs at my local Emacs. OK this is not an Engine’s stuff, but I’d cre­ate some API to that works. Mmm, yeah… It’s runs using Upro­file authentication.

Apache Rewrite

Just a few things to remember.

Reg­u­lar Expres­sion Syntax

  • ^ start of string
  • $ end of string
  • . any sin­gle character
  • (a|b) a or b
  • (…) group sec­tion
  • [xyz] item in range (x or y or z)
  • [^xyz] not in range (not x or y or z)
  • x? 0 or one of x
  • x* 0 or more of x
  • x+ 0 or more of x
  • x{3} exactly 3 of x
  • x{3,} 3 or more of x
  • x{3,6} between 3 and 6 of x
  • !(pat­tern) apply rule when URL does not match pattern

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>