Today I created some new features in VCNews’ engine.
- Uprofile sync. Now every single twitter and facebook’s profile will auto sign up with Uprofile’s account.
- WordPress reader
- Yahoo! news reader
- console “panel” control. I don’t like to view logs using web browser or ssh shell at “far away” servers, with this console app I can apply all regexp/grep rules than I want or, better, view logs at my local Emacs. OK this is not an Engine’s stuff, but I’d create some API to that works. Mmm, yeah… It’s runs using Uprofile authentication.
Apache Rewrite
Just a few things to remember.
Regular Expression Syntax
- ^ start of string
- $ end of string
- . any single character
- (a|b) a or b
- (…) group section
- [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
- !(pattern) apply rule when URL does not match pattern







