2010-02-24
VB Script function to strips HTML tag
Dim tagStart, tagEnd, strNewHTML
strWithHTML = Replace( strWithHTML, vbTab, "" )
strWithHTML = Replace( strWithHTML, vbCrLf, "" )
strWithHTML = Trim( strWithHTML )
do
tagStart = Instr(strWithHTML, "<")
tagEnd = InStr(strWithHTML, ">")
strNewHTML = Mid( strWithHTML, tagStart, tagEnd - tagStart + 1)
strWithHTML = Trim( Replace( strWithHTML, strNewHTML, "" ) )
loop until Not Instr(strWithHTML, "<") AND Not Instr(strWithHTML, ">")
If Instr(strWithHTML, "<" )Then
strWithHTML = StripHTML( Trim( strWithHTML ) )
End If
StripHTML = Trim( strWithHTML )
End Function
2010-02-22
How to Bridge Network Connections in Windows 7
1. Plug in your console (WII, Xbox 360, PS3) and allow it to acquiring
ip address.
2. click on the Windows button and type "network and sharing center" and enter
3. on the left right under manage wireless networks, should say change
adapter settings click that
4. right click local area connection and disable it.
5. right click local area connection and click properties.
6. there should be a tab that says sharing go to that tab.
7. there is a box that says allow other network users to connect
through this computers internet connection. uncheck it if it is
checked.
8.hit ok then right click local area connection and enable it.
9 now select both your wireless network connection and the local area
connection and right click and it should have the option to bridge
connections. when you click bridge it will do its thing and should
work when its done.
A network bridge is just letting one device pass through another's
network connection. No routing or NAT is needed.
source : http://forums.cnet.com/5208-19411_102-0.html?threadID=326988
2010-02-08
Yet another easy GIT Guide (GIT)
http://www-cs-students.stanford.edu/~blynn/gitmagic/index.html
It's a very structured and simple website. Must read if just started to learn GIT.