Category Archives: developer’s Guide

developer’s tools & references

regex cheat sheet

Share Special Sequences \w - Any “word” character (a-z 0-9 _) \W - Any non “word” character \s - Whitespace (space, tab CRLF) \S - Any non whitepsace character \d - Digits (0-9) \D - Any non digit character . - (Period) – Any character except newline … Continue reading

Posted in regex | Tagged , , | 1 Comment

regex: match all including new line

ShareI was looking for a way to match all characters plus new line and using “.” is not solely the answer because: The dot matches a single character, without caring what that character is. The only exception are newline characters. … Continue reading

Posted in developer's Guide, regex | Tagged , , , , , , | Leave a comment

localhost not working in vista after installing nod32 v3

ShareThis error is making me so crazy… my localhost works fine until I installed nod32 v3 in windows vista business. But it works fine with windows xp… I’ve been searching the web for solutions but seems like none of it … Continue reading

Posted in developer's Guide | Tagged , , , , , | 2 Comments

what is SOAP

Share How is SOAP Used? There are many possible applications for SOAP, here are just a couple: Business to Business integration – SOAP allows businesses to develop their applications, and then make those applications available to other companies Distributed applications … Continue reading

Posted in developer's Guide, server, xml | Tagged , , | Leave a comment

using xml for live search

ShareFor the XML interface, there is an interface specific parameter XmlType, which can control the flavor of XML interface. If ElementBased enumeration is specified, each field will be rendered as a separated tag. If AttributeBased enumeration is specified, all simple … Continue reading

Posted in xml | Tagged , | Leave a comment