<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4255469787327441327</id><updated>2012-02-16T16:55:41.560+07:00</updated><category term='php5'/><category term='TOEFL iBT'/><category term='install MySQL5'/><category term='PBX'/><category term='mysql_connect'/><category term='voicemail.'/><category term='SIP'/><category term='ADSL'/><category term='IPPBX'/><category term='hacking'/><category term='SIP Phone'/><category term='RHEL4'/><category term='VITAE'/><category term='cambridge'/><category term='truyện'/><category term='One minute manager'/><category term='CURRICULUM'/><category term='MS-Office'/><category term='web server'/><category term='Install Asterisk'/><category term='longman'/><category term='database'/><category term='spence Johnson'/><category term='apache'/><category term='story'/><category term='PSTN'/><category term='fax over IP'/><category term='exam'/><category term='office'/><category term='Spencer Johnson'/><category term='mysql'/><category term='english'/><category term='application form'/><category term='princeton'/><category term='php'/><category term='connect'/><category term='kaplan'/><category term='tutorial'/><category term='modem'/><category term='FoIP'/><category term='book'/><category term='Phone'/><category term='job letter'/><category term='mysql5'/><category term='H323'/><category term='asterisk'/><category term='VoIP'/><category term='ruby on rails'/><category term='learn to speak English 9.0'/><category term='fax'/><category term='toeic'/><category term='unifed'/><category term='Who moved my cheese'/><category term='toefl.barron'/><category term='microsoft'/><category term='project'/><category term='ubuntu'/><category term='svn server'/><category term='Ken Blanchard'/><category term='password'/><category term='Intermediate.advanced'/><category term='subversion'/><title type='text'>Sharing is the best thing in life.</title><subtitle type='html'>Great place for everyone.
It's about Networking,Computing,Business,Culture,Programming,Operating System.And about love ,friend.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>22</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-7202681888469006963</id><published>2008-03-29T00:05:00.001+07:00</published><updated>2008-03-29T00:15:14.748+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='subversion'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='svn server'/><title type='text'></title><content type='html'>&lt;h2&gt;&lt;a href="http://www.vietlog.co.cc" rel="bookmark" title="Permanent Link: Install Subversion with Web Access on Ubuntu"&gt;Install Subversion with Web Access on Ubuntu,SVN server&lt;br /&gt;&lt;/a&gt;&lt;/h2&gt;        &lt;!-- google_ad_section_start --&gt;   &lt;p&gt;This article covers installing subversion with the apache module so that it can be easily accessed from other systems on a public network. If you want a more secure svn server, you could use svnserve+ssh, which isn't covered in this article.&lt;/p&gt; &lt;p&gt;To install subversion, open a terminal and run the following command:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;sudo apt-get install subversion libapache2-svn&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;&lt;a href="javascript:void(0)" tabindex="10" onclick="return false;"&gt;&lt;span&gt;&lt;/span&gt;&lt;/a&gt;We're going to create the subversion repository in /svn, although you should choose a location that has a good amount of space.&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;sudo svnadmin create /svn&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;Next we'll need to edit the configuration file for the subversion webdav module. You can use a different editor if you'd like.&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;sudo gedit /etc/apache2/mods-enabled/dav_svn.conf&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;The Location element in the configuration file dictates the root directory where subversion will be acessible from, for instance: http://www.server.com/svn&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;&lt;location&gt; &lt;/location&gt;&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;The DAV line needs to be uncommented to enable the dav module&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;# Uncomment this to enable the repository,&lt;br /&gt;DAV svn &lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;The SVNPath line should be set to the same place your created the repository with the svnadmin command.&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;# Set this to the path to your repository&lt;br /&gt;SVNPath /svn &lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;The next section will let you turn on authentication. This is just basic authentication, so don't consider it extremely secure. The password file will be located where the AuthUserFile setting sets it to…  probably best to leave it at the default.&lt;br /&gt;&lt;/p&gt;&lt;blockquote&gt; &lt;p&gt;# Uncomment the following 3 lines to enable Basic Authentication&lt;br /&gt;AuthType Basic&lt;br /&gt;AuthName "Subversion Repository"&lt;br /&gt;AuthUserFile /etc/apache2/dav_svn.passwd &lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;To create a user on the repository use, the following command:&lt;br /&gt;&lt;/p&gt;&lt;blockquote&gt; &lt;p&gt;sudo htpasswd2 -cm /etc/apache2/dav_svn.passwd &lt;username&gt;&lt;/username&gt;&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;Note that you should only use the -c option the FIRST time that you create a user. After that you will only want to use the -m option, which specifies MD5 encryption of the password, but doesn't recreate the file.&lt;/p&gt; &lt;p&gt;Example:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;sudo htpasswd2 -cm /etc/apache2/dav_svn.passwd geek&lt;br /&gt;New password:&lt;br /&gt;Re-type new password:&lt;br /&gt;Adding password for user geek&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;Restart apache by running the following command:&lt;br /&gt;&lt;/p&gt;&lt;blockquote&gt; &lt;p&gt;sudo /etc/init.d/apache2 restart&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;Now if you go in your browser to http://www.server.com/svn, you should see that the repository is enabled for anonymous read access, but commit access will require a username. &lt;/p&gt;&lt;p&gt;&lt;img style="border: 0px none ;" src="http://www.howtogeek.com/wp-content/uploads/2006/12/WindowsLiveWriter/InstallSubversionwithWebAccessonUbuntu_602B/rev0%5B1%5D1.png" border="0" height="102" width="338" /&gt; &lt;/p&gt;&lt;p&gt;If you want to force all users to authenticate even for read access, add the following line right below the AuthUserFile line from above. Restart apache after changing this line.&lt;br /&gt;&lt;/p&gt;&lt;blockquote&gt; &lt;p&gt;Require valid-user&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;Now if you refresh your browser, you'll be prompted for your credentials: &lt;/p&gt;&lt;p&gt;&lt;img src="http://www.howtogeek.com/wp-content/uploads/2006/12/WindowsLiveWriter/InstallSubversionwithWebAccessonUbuntu_602B/enterpass%5B3%5D1.png" height="153" width="343" /&gt; &lt;/p&gt; &lt;p&gt;You now have a working subversion server!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-7202681888469006963?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/7202681888469006963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=7202681888469006963' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/7202681888469006963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/7202681888469006963'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/03/install-subversion-with-web-access-on.html' title=''/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-851825512973745387</id><published>2008-03-13T13:03:00.004+07:00</published><updated>2008-03-13T13:15:49.236+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SIP'/><category scheme='http://www.blogger.com/atom/ns#' term='Phone'/><category scheme='http://www.blogger.com/atom/ns#' term='VoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='SIP Phone'/><title type='text'>SIP phone,Sip Client,Web based SIP Client</title><content type='html'>&lt;ul&gt;&lt;li&gt;&lt;b&gt;x-lite, x-pro&lt;/b&gt;: A SIP client for Windows; Mac OS and Windows CE, &lt;a href="http://www.xten.com/index.php?menu=download"&gt;http://www.xten.com/index.php?menu=download&lt;/a&gt;. A really nice SIP UA with a lot of features. The light version is free and really &lt;b&gt;rocks&lt;/b&gt;, the pro version not. Supports multiple proxies. &lt;code&gt;&lt;code&gt;&lt;/code&gt; &lt;/li&gt;&lt;li&gt;&lt;b&gt;MiniSIP&lt;/b&gt;: An open source SIP user agent for Linux which runs on PDAs. It is based on several libraries, including libmsip, a C++ SIP stack. Homepage: &lt;a href="http://www.minisip.org/index.html"&gt;http://www.minisip.org/index.html&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;OpenWengo&lt;/b&gt;: A Windows softphone based on Qt and eXosip. Open Source.&lt;a href="http://www.openwengo.com/"&gt;http://www.openwengo.com/&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;KPhone&lt;/b&gt;: A GPL SIP Softphone for Linux (KDE). Note: Development moved from wirlab to sourceforge. Homepage: &lt;a href="http://sourceforge.net/projects/kphone"&gt;http://sourceforge.net/projects/kphone &lt;/a&gt;. The old kphone (which was originally maintained by wirlab) can still be download at &lt;a href="http://www.wirlab.net/kphone/kphone-4.2.tar.gz"&gt;http://www.wirlab.net/kphone/kphone-4.2.tar.gz&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Microsoft portrait&lt;/b&gt;: Windows SIP client that supports Audio, Video and IM. Uses RTC API 1.2 and therefore has poor compatibility with other SIP clients.&lt;a href="http://research.microsoft.com/%7Ejiangli/portrait/"&gt;http://research.microsoft.com/~jiangli/portrait/&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Ubiquity User Agent&lt;/b&gt;: Java based SIP Client for Windows, very useful, you have to register (free) to get an license; Homepage: &lt;a href="http://www.sipcenter.com/sip.nsf/html/User+Agent+Downloads"&gt;http://www.sipcenter.com/sip.nsf/html/User+Agent+Downloads&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;EZ-Phone (Evaluation Version)&lt;/b&gt;: SIP Phone for Windows; Homepage: &lt;a href="http://www.hssworld.com/voip/download.htm"&gt;http://www.hssworld.com/voip/download.htm&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;MySIP&lt;/b&gt;: SIP User Agent from Siemens; Homepage: &lt;a href="http://www.mysip.ch/"&gt;http://www.mysip.ch/&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;SJPhone&lt;/b&gt;: SIP and H.323 Softphone for Windows, Linux and PocketPC from: &lt;a href="http://www.sjlabs.com/products.html"&gt;http://www.sjlabs.com/&lt;/a&gt;. There must not be another SIP client running on port 5060 or the SJPhone won't work.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Linphone&lt;/b&gt;: A SIP Softphone for Linux (GNOME), needs libosip ans oRTP; Homepage: &lt;a href="http://www.linphone.org/"&gt;http://www.linphone.org/&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Vovida&lt;/b&gt;: Complete SIP Suite for Linux (Uaser Agent, Proxy, ...), very, very big software contruct; Homepage: &lt;a href="http://www.vovida.org/"&gt;Vovida.org &lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Siphon&lt;/b&gt;: Linux SIP Softphone; Homepage: &lt;a href="http://siphon.sourceforge.net/index.html"&gt;http://siphon.sourceforge.net/index.html&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;ActXPhone&lt;/b&gt;: An ActiveX-Control SIP Softphone based on the Microsoft Real Time Communications (RTC) API.&lt;a href="http://www.pernau.at/kd/voip/ActXPhone/"&gt;http://www.pernau.at/kd/voip/ActXPhone/&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;&lt;b&gt;sipXphone&lt;/b&gt;: Part of pingtel's open source releases for VoIP.  License: &lt;a href="http://www.gnu.org/copyleft/lesser.html"&gt;LGPL&lt;/a&gt;; Homepage: &lt;a href="http://www.sipfoundry.org/sipXphone/index.html"&gt;sipfoundry.org&lt;/a&gt;. This softphone also requires lots of other libraries from the sipX... software at sipfoundry.org.&lt;/li&gt;&lt;li&gt;&lt;b&gt;SIPPS&lt;/b&gt;: SIP softphone with answering machine and a lot of features. They have also integrated support for nikotel.com for SIP-PSTN termination.&lt;a href="http://www.sippstar.com/en/index.html"&gt;http://www.sippstar.com/&lt;/a&gt;. A Demo for testing is available. The configuration is a bit weird (what's the difference between a proxy and a redirect server?).&lt;/li&gt;&lt;li&gt;&lt;b&gt;MSN Messenger&lt;/b&gt;: Microsofts Messenger, Version 4.6 allows also connections to other SIP servers than microsofts one. Nice design, works very well. Can be used with the SIP service of iptel.org. Homepage: &lt;a href="http://messenger.microsoft.com/"&gt;http://messenger.microsoft.com&lt;/a&gt;; local &lt;a href="http://www.pernau.at/kd/voip/msn46_chat.exe"&gt;download of Version 4.6&lt;/a&gt; for Windows NT (2000).&lt;/li&gt;&lt;li&gt;&lt;b&gt;MSN Messenger&lt;/b&gt;: Microsofts Messenger, Version 4.7 allows also connections to other SIP servers than microsofts one. Nice design, works very well. Can be used with the SIP service of iptel.org. Homepage: &lt;a href="http://messenger.microsoft.com/"&gt;http://messenger.microsoft.com&lt;/a&gt;; local &lt;a href="http://www.pernau.at/kd/voip/mmssetup4.7xp.exe"&gt;download of Version 4.7&lt;/a&gt; for Windows XP.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Shtoom&lt;/b&gt;: An open source, cross plattform SIP client written in Python.  License: &lt;a href="http://www.gnu.org/copyleft/lesser.html"&gt;LGPL&lt;/a&gt;; Homepage: &lt;a href="http://divmod.org/projects/shtoom"&gt;http://divmod.org/projects/shtoom&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;Cornfed SIP-UA&lt;/b&gt;: A SIP user agent for Linux. License: Free for non-commercial use (binary distribution); Homepage: &lt;a href="http://www.cornfed.com/products/"&gt;http://www.cornfed.com/products/&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;PhoneGaim&lt;/b&gt;: The multiplatform, multiprotocol IM client GAIM was extended with VoIP (linphone based) by linspire/sipphone. It's open source! At the moment it's in a beta status and supports only sipphone.com as SIP proxy, but as the source code is also available, you can change this by yourself ;-). Homepage: &lt;a href="http://www.phonegaim.com/"&gt;http://www.phonegaim.com/&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;SFLphone&lt;/b&gt;: A multiplatform, open source SIP user agent. It is based on several libraries: cc++, ccRTP, osip2+eXosip. Open Source. Homepage: &lt;a href="http://www.sflphone.org/"&gt;http://www.sflphone.org&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;ENUM softphone&lt;/b&gt;: An ENUM enabled SIP client based on the RTC API. Open Source. Homepage: &lt;a href="http://www.enum.at/index.php?id=292"&gt;http://www.enum.at/index.php?id=292&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;Phoner&lt;/b&gt;: A Windows softphone which supports dialing via an internal ISDN adapter (CAPI), TAPI or SIP. Freeware. Homepage: &lt;a href="http://www.phoner.de/"&gt;http://www.phoner.de&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;Twinkle&lt;/b&gt;: A Open Source Linux softphone based on Qt and ccRTP. Homepage:&lt;a href="http://www.twinklephone.com/"&gt;http://www.twinklephone.com/&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;BOL SIP Phone&lt;/b&gt;: A Windows softphone based on the MS RTC API and WinStun. Homepage:&lt;a href="http://www.bol2000.com/download/sipphone/"&gt;http://www.bol2000.com/download/sipphone/&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;sipXezPhone&lt;/b&gt;: A Windows/Linux softphone based on the sipXtapi. License: LGPL, Homepage:&lt;a href="http://www.sipfoundry.org/sipXezPhone/"&gt;http://www.sipfoundry.org/sipXezPhone/&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;sillyAnt&lt;/b&gt;: The first freely available SIP softphone for Symbian Series 60, unfortunately this SIP phone is locked to &lt;a href="http://www.tivi.com/"&gt;TiVi&lt;/a&gt;. Homepage:&lt;a href="http://www.sillyant.com/"&gt;http://www.sillyant.com/&lt;/a&gt;. &lt;/li&gt;&lt;li&gt;&lt;b&gt;PJPHONE&lt;/b&gt;: Windows SIP phone based on the PJ... stacks. License: LGPL; Homepage:&lt;a href="http://www.pjsip.org/pjsua.htm"&gt;http://www.pjsip.org/pjsua.htm&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;PartiSIPation&lt;/b&gt;: A SIP client with replaceable GUI. License: GPL; Homepage:&lt;a href="http://developer.berlios.de/projects/partisipation/"&gt;http://developer.berlios.de/projects/partisipation/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;Ekiga&lt;/b&gt;: A Linux SIP and H.323 softphone, based on GnomeMeeting; Homepage:&lt;a href="http://www.ekiga.org/"&gt;http://www.ekiga.org/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;zap!&lt;/b&gt;: A cross platform SIP client based on the Mozilla framework; Homepage:&lt;a href="http://www.croczilla.com/zap"&gt;http://www.croczilla.com/zap&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;sua&lt;/b&gt;: A Linux SIP client. Looks like this project is rather old and dead; Homepage:&lt;a href="http://sua.sourceforge.net/"&gt;http://sua.sourceforge.net/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;eyeP Media&lt;/b&gt;: This is not a softphone, but a softphone SDK. License: commercial; Homepage:&lt;a href="http://www.eyepmedia.com/"&gt;http://www.eyepmedia.com/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;Zfone&lt;/b&gt;: Zfone is not really a SIP phone, but an extension to any SIP phone. It implements the ZRTP protocol for secure media streams. This is done by intercepting the media stream from the SIP phone and adding the ZRTP extension. Homepage:&lt;a href="http://www.philzimmermann.com/EN/zfone/index.html"&gt;http://www.philzimmermann.com/EN/zfone/index.html&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;Tapioca&lt;/b&gt;: Tapioca is a VoIP and IM client. It supports XMPP (allows communciation with Google Talk) and SIP (uses Nokia's sofia SIP stack). Homepage:&lt;a href="http://tapioca-voip.sourceforge.net/"&gt;http://tapioca-voip.sourceforge.net/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;Kapanga&lt;/b&gt;: Kapanga is free for personal use (after registration). It runs on Windows and supports video. Homepage:&lt;a href="http://www.kapanga.net/"&gt;http://www.kapanga.net/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;ATL Softphone&lt;/b&gt;: A SIP softphone for Windows based on the OpenSipStack. License: MPL1.0. Homepage:&lt;a href="http://www.opensourcesip.org/softphone.php"&gt;http://www.opensourcesip.org/softphone.php&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;YateClient&lt;/b&gt;: An open source multiplatform softphone which supports SIP, H.323 and IAX. Homepage:&lt;a href="http://voip.null.ro/pmwiki/index.php?n=Main.YateClient"&gt;http://voip.null.ro/pmwiki/index.php?n=Main.YateClient&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;Zoiper&lt;/b&gt;: A SIP/IAX2 softphone. It's using reciprocate as sip stack and has an in house developped iax2 stack - both function at the same time and you could do a conference between them. Supports Windows. Mac and linux versions are planned. The "Free" version is free to use. Homepage:&lt;a href="http://www.zoiper.com/"&gt;http://www.zoiper.com/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;SIP-communicator&lt;/b&gt;: A Java SIP client. License: LGPL. Homepage:&lt;a href="http://sip-communicator.org/"&gt;http://sip-communicator.org/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;UTC IMS Client&lt;/b&gt;: A IMS compatible SIP Client for Linux, written in C, based on eXosip. License: GPL. Homepage:&lt;a href="http://uctimsclient.berlios.de/"&gt;http://uctimsclient.berlios.de/&lt;/a&gt;. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;Lynxphone&lt;/b&gt;: A commercial multiplattform SIP client; based on resiprocate STIP stack; A free version is available at &lt;a href="http://www.bitlynx.com/lynxphone.php"&gt;http://www.bitlynx.com/lynxphone.php&lt;/a&gt;. Offers nearly the same settings as eyebeam (as based on the same stack). The german translations are really funny! The user interface is crap.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;VO2IP&lt;/b&gt;: VoVoIP (means voice over voice over IP) is a proof of concept implementation which hides a G.729 encoded audio stream into a G.711 encoded fake audio stream using G.711's least significant bit. It is GPL licensed, based on pjmedia (see SIP stacks) and runs under Windows. Homepage: &lt;a href="http://voipcc.gtisc.gatech.edu/"&gt;http://voipcc.gtisc.gatech.edu/&lt;/a&gt;.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;wxCommunicator&lt;/b&gt;: wxCommunicator is a cross platform GPL SIP softphone. It is based on sipXtapi and wxWidgets 2.8.x GUI library. Homepage: &lt;a href="http://wxcommunicator.sourceforge.net/"&gt;http://wxcommunicator.sourceforge.net/&lt;/a&gt;.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;SIPek Phone&lt;/b&gt;: a Windows softphone based on pjsip SIP stack. Includes a pjsip .NET wrapper. License: ? (but as it is based on pjsip i guess it is GPL too). Homepage: &lt;a href="http://sipekphone.googlepages.com/"&gt;http://sipekphone.googlepages.com/&lt;/a&gt;.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;SIPek2 Phone&lt;/b&gt;: based on SIPek phone, but a new C# GUI. Homepage: &lt;a href="http://sipekphone2.googlepages.com/"&gt;http://sipekphone2.googlepages.com/&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-851825512973745387?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/851825512973745387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=851825512973745387' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/851825512973745387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/851825512973745387'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/03/sip-phonesip-clientweb-based-sip-client.html' title='SIP phone,Sip Client,Web based SIP Client'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-1330680618408305528</id><published>2008-03-11T22:50:00.005+07:00</published><updated>2008-03-13T22:35:17.511+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='modem'/><category scheme='http://www.blogger.com/atom/ns#' term='password'/><category scheme='http://www.blogger.com/atom/ns#' term='ADSL'/><category scheme='http://www.blogger.com/atom/ns#' term='hacking'/><title type='text'>Get the ADSL Account Information.</title><content type='html'>So many ADSL modem common setup with default password.It listing below.&lt;br /&gt;So,why don' t you cannot get the ADSL account information.&lt;br /&gt;You can use some wide tool as Angry IP Scan to find the IP range of ADSL ISP supply.&lt;br /&gt;When you login to ADSL modem.You can see Usename,Password of ADSL ISP supply.&lt;br /&gt;But password is hidden.You can't see the password.How???&lt;br /&gt; With Snadboy Revelation V2 you can get user and password of ADSL Account.You just download and install it and run.You can see true password.Believe me.Try it.&lt;br /&gt;&lt;br /&gt;Here is default password list of the most popular modem and router:&lt;br /&gt;&lt;table border="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td colspan="3" align="center"&gt;362 Vendors, 1677 Passwords&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Biodata"&gt; Biodata&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=360%20Systems"&gt;360 Systems&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=3COM"&gt;3COM&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Accelerated%20Networks"&gt;Accelerated Networks&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=ACCTON"&gt;ACCTON&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Acer"&gt;Acer&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Actiontec"&gt;Actiontec&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Adaptec"&gt;Adaptec&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=ADC%20Kentrox"&gt;ADC Kentrox&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=AdComplete%2ecom"&gt;AdComplete.com&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Adtech"&gt;Adtech&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Adtran"&gt;Adtran&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Advanced%20Integration"&gt;Advanced Integration&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=AirLink%20Plus"&gt;AirLink Plus&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Aironet"&gt;Aironet&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Airway"&gt;Airway&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Aladdin"&gt;Aladdin&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Alcatel"&gt;Alcatel&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Allied%20Telesyn"&gt;Allied Telesyn&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Allnet"&gt;Allnet&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Allot"&gt;Allot&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Alteon"&gt;Alteon&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Ambit"&gt;Ambit&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=AMI"&gt;AMI&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=AmpJuke"&gt;AmpJuke&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Amptron"&gt;Amptron&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Apache"&gt;Apache&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Apache%20Project"&gt;Apache Project&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=APC"&gt;APC&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Apple%20Computer"&gt;Apple Computer&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Arrowpoint"&gt;Arrowpoint&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Aruba"&gt;Aruba&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Asante"&gt;Asante&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Ascend"&gt;Ascend&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=AST"&gt;AST&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Asus"&gt;Asus&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=AT%26T"&gt;AT&amp;amp;T&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Attachmate"&gt;Attachmate&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Audioactive"&gt;Audioactive&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Autodesk"&gt;Autodesk&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Avaya"&gt;Avaya&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Avenger%20News%20System%20%28ANS%29"&gt;Avenger News System (ANS)&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=AWARD"&gt;AWARD&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Axis"&gt;Axis&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Axis%20Communications"&gt;Axis Communications&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Bay%20Networks"&gt;Bay Networks&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Bea"&gt;Bea&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=BestPractical"&gt;BestPractical&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Bewan"&gt;Bewan&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Billion"&gt;Billion&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Bintec"&gt;Bintec&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Biostar"&gt;Biostar&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=BizDesign"&gt;BizDesign&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Borland"&gt;Borland&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Breezecom"&gt;Breezecom&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Brocade"&gt;Brocade&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Brother%20Industries%20Ltd%2e"&gt;Brother Industries Ltd.&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=BT"&gt;BT&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Buffalo%2fMELCO"&gt;Buffalo/MELCO&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Busybox"&gt;Busybox&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Cabletron"&gt;Cabletron&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Cayman"&gt;Cayman&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=CGI%20World"&gt;CGI World&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Chase%20Research"&gt;Chase Research&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Check%20Point"&gt;Check Point&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Chuming%20Chen"&gt;Chuming Chen&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Ciphertrust"&gt;Ciphertrust&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Cisco"&gt;Cisco&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Cisco%2dArrowpoint"&gt;Cisco-Arrowpoint&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Claris"&gt;Claris&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Cobalt"&gt;Cobalt&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Colubris%20Networks"&gt;Colubris Networks&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Comcast%20SMC"&gt;Comcast SMC&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Comersus"&gt;Comersus&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Compaq"&gt;Compaq&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Compualynx"&gt;Compualynx&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Conceptronic"&gt;Conceptronic&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Concord"&gt;Concord&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Conexant"&gt;Conexant&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Crystalview"&gt;Crystalview&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=CTX%20International"&gt;CTX International&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Cyberguard"&gt;Cyberguard&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=CyberMax"&gt;CyberMax&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Cyclades"&gt;Cyclades&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=D%2dLink"&gt;D-Link&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Daewoo"&gt;Daewoo&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Dallas%20Semiconductors"&gt;Dallas Semiconductors&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Data%20General"&gt;Data General&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Datacom"&gt;Datacom&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=DataWizard%20Technologies%20Inc%2e"&gt;DataWizard Technologies Inc.&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Daytek"&gt;Daytek&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Debian"&gt;Debian&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Deerfield"&gt;Deerfield&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Dell"&gt;Dell&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Develcon"&gt;Develcon&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Dictaphone"&gt;Dictaphone&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Digicorp"&gt;Digicorp&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Digicraft%20Software"&gt;Digicraft Software&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Digital%20Equipment"&gt;Digital Equipment&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Dlink"&gt;Dlink&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Draytek"&gt;Draytek&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Draytek%20Corp"&gt;Draytek Corp&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=DuPont"&gt;DuPont&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=DVB"&gt;DVB&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Dynalink"&gt;Dynalink&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Dynix%20Library%20Systems"&gt;Dynix Library Systems&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Edimax"&gt;Edimax&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Efficient"&gt;Efficient&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Elron"&gt;Elron&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Elsa"&gt;Elsa&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Eminent"&gt;Eminent&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Enhydra%20"&gt;Enhydra &lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Enox"&gt;Enox&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Entrust"&gt;Entrust&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Epox"&gt;Epox&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Ericsson"&gt;Ericsson&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=eSeSIX%20Computer%20GmbH"&gt;eSeSIX Computer GmbH&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Exinda%20Networks"&gt;Exinda Networks&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Extended%20Systems"&gt;Extended Systems&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Extreme%20Networks"&gt;Extreme Networks&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=F5"&gt;F5&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Fastwire"&gt;Fastwire&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Flowpoint"&gt;Flowpoint&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Fortinet"&gt;Fortinet&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Foundry%20Networks"&gt;Foundry Networks&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Freetech"&gt;Freetech&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=FrontRange%20Solutions"&gt;FrontRange Solutions&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Funk%20Software"&gt;Funk Software&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Galacticomm"&gt;Galacticomm&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Gandalf"&gt;Gandalf&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Gateway"&gt;Gateway&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Geeklog"&gt;Geeklog&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=General%20Instruments"&gt;General Instruments&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=glFtpD"&gt;glFtpD&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Globespan%20Virata"&gt;Globespan Virata&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Gossamer%20Threads%20Inc%2e"&gt;Gossamer Threads Inc.&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=GrandStream"&gt;GrandStream&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Groupee,%20Inc%2e"&gt;Groupee, Inc.&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=GuardOne"&gt;GuardOne&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=H2O%20Project"&gt;H2O Project&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Hayes"&gt;Hayes&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Hewlett%2dPackard"&gt;Hewlett-Packard&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Honeynet%20Project"&gt;Honeynet Project&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Horizon%20DataSys"&gt;Horizon DataSys&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Hosting%20Controller"&gt;Hosting Controller&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=IBM"&gt;IBM&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Informix"&gt;Informix&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Infrant"&gt;Infrant&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Inova"&gt;Inova&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Integrated%20Networks"&gt;Integrated Networks&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Intel"&gt;Intel&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=IntelliTouch"&gt;IntelliTouch&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Interbase"&gt;Interbase&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Intermec"&gt;Intermec&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Internet%20Archive"&gt;Internet Archive&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Inventel%20Wanadoo"&gt;Inventel Wanadoo&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Ipswitch"&gt;Ipswitch&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=IRC"&gt;IRC&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=IronPort"&gt;IronPort&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Iwill"&gt;Iwill&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=JD%20Edwards"&gt;JD Edwards&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Jetform"&gt;Jetform&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=JetWay"&gt;JetWay&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Johnson%20Controls"&gt;Johnson Controls&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Joss%20Technology"&gt;Joss Technology&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Juniper"&gt;Juniper&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Justin%20Hagstrom"&gt;Justin Hagstrom&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Kethinov"&gt;Kethinov&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Konica%20Minolta"&gt;Konica Minolta&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Kyocera"&gt;Kyocera&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=LaCie"&gt;LaCie&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Lantronics"&gt;Lantronics&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Lantronix"&gt;Lantronix&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Leading%20Edge"&gt;Leading Edge&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Lenel"&gt;Lenel&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Level1"&gt;Level1&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=LGIC"&gt;LGIC&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Lindsay%20Electronics"&gt;Lindsay Electronics&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Linksys"&gt;Linksys&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Linux"&gt;Linux&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Livingston"&gt;Livingston&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Lucent"&gt;Lucent&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Luxon%20Communications"&gt;Luxon Communications&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=M%20Technology"&gt;M Technology&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=MachSpeed"&gt;MachSpeed&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Macsense"&gt;Macsense&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Magic%2dPro"&gt;Magic-Pro&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Mambo"&gt;Mambo&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Mantis"&gt;Mantis&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Megastar"&gt;Megastar&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Mentec"&gt;Mentec&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Mercury%20Interactive"&gt;Mercury Interactive&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Michiel"&gt;Michiel&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Microcom"&gt;Microcom&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Micron"&gt;Micron&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Micronet"&gt;Micronet&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Micronics"&gt;Micronics&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Microplex"&gt;Microplex&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Microsoft"&gt;Microsoft&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Mike%20Peters"&gt;Mike Peters&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Mintel"&gt;Mintel&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=mklencke"&gt;mklencke&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Motive"&gt;Motive&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Motorola"&gt;Motorola&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=MP3Mystic"&gt;MP3Mystic&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Muze"&gt;Muze&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=MySQL"&gt;MySQL&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Nanoteq"&gt;Nanoteq&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=NCR"&gt;NCR&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=NetBotz"&gt;NetBotz&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Netcomm"&gt;Netcomm&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Netcordia"&gt;Netcordia&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Netgear"&gt;Netgear&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=NetGenesis"&gt;NetGenesis&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Netopia"&gt;Netopia&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Netscape"&gt;Netscape&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Netscreen"&gt;Netscreen&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=NetworkICE"&gt;NetworkICE&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Nexsan"&gt;Nexsan&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=NeXT"&gt;NeXT&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=NICE%20Systems%20Ltd%2e"&gt;NICE Systems Ltd.&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Nimble"&gt;Nimble&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Nokia"&gt;Nokia&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Nortel"&gt;Nortel&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Novell"&gt;Novell&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=NSI"&gt;NSI&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Nurit"&gt;Nurit&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=ODS"&gt;ODS&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Open%2dXchange%20Inc%2e"&gt;Open-Xchange Inc.&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=OpenMarket"&gt;OpenMarket&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Optivision"&gt;Optivision&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Oracle"&gt;Oracle&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Osicom"&gt;Osicom&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=OvisLink%20Canada%20Inc%2e"&gt;OvisLink Canada Inc.&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Packard%20Bell"&gt;Packard Bell&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Packeteer"&gt;Packeteer&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Pandatel"&gt;Pandatel&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Patton"&gt;Patton&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=PBX"&gt;PBX&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=PHPReactor"&gt;PHPReactor&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=phpTest"&gt;phpTest&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Pikatel"&gt;Pikatel&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Pirelli"&gt;Pirelli&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=PlainTree"&gt;PlainTree&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=PLANET%20Technology%20Corp%2e"&gt;PLANET Technology Corp.&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Pollsafe"&gt;Pollsafe&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Polycom"&gt;Polycom&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=PostgreSQL"&gt;PostgreSQL&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Powerchute"&gt;Powerchute&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=POWERLOGIC"&gt;POWERLOGIC&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Prestige"&gt;Prestige&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Prime"&gt;Prime&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=PrimeBase"&gt;PrimeBase&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Proxim"&gt;Proxim&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=QDI"&gt;QDI&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=QualiTeam"&gt;QualiTeam&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Quantex"&gt;Quantex&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Quest%20Software"&gt;Quest Software&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Radvision"&gt;Radvision&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Raidzone"&gt;Raidzone&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Rainbow"&gt;Rainbow&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Ramp%20Networks"&gt;Ramp Networks&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=RapidStream"&gt;RapidStream&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Raritan"&gt;Raritan&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=RayTalk"&gt;RayTalk&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Redcreek%20Communications"&gt;Redcreek Communications&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=RedHat"&gt;RedHat&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Remedy"&gt;Remedy&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=remote%2dexploit"&gt;remote-exploit&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Research"&gt;Research&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Research%20Machines"&gt;Research Machines&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Resumix"&gt;Resumix&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Ricoh"&gt;Ricoh&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Rizen"&gt;Rizen&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=RM"&gt;RM&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=RNN"&gt;RNN&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Rodopi"&gt;Rodopi&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=rPath"&gt;rPath&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=RSA"&gt;RSA&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Saba"&gt;Saba&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Sambar%20Technologies"&gt;Sambar Technologies&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Samuel%20Abels"&gt;Samuel Abels&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=SAP"&gt;SAP&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Schneider%20Electric"&gt;Schneider Electric&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Seagull%20Scientific"&gt;Seagull Scientific&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Securicor3NET"&gt;Securicor3NET&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Semaphore"&gt;Semaphore&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Shiva"&gt;Shiva&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Shuttle"&gt;Shuttle&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Siemens%20Corp"&gt;Siemens Corp&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Silicon%20Graphics"&gt;Silicon Graphics&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Site%20Interactive"&gt;Site Interactive&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Sitecom"&gt;Sitecom&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=SMC"&gt;SMC&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Smith%20%26%20Bentzen"&gt;Smith &amp;amp; Bentzen&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Snom"&gt;Snom&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Sonicwall"&gt;Sonicwall&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Sony%20Ericsson"&gt;Sony Ericsson&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Sourcefire"&gt;Sourcefire&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Sovereign%20Hill"&gt;Sovereign Hill&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Spider%20Systems"&gt;Spider Systems&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Ssangyoung"&gt;Ssangyoung&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Sun"&gt;Sun&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=SuperMicro"&gt;SuperMicro&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Surecom"&gt;Surecom&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Sybase"&gt;Sybase&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Symantec"&gt;Symantec&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=SysKonnect"&gt;SysKonnect&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Tandberg"&gt;Tandberg&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Tasman"&gt;Tasman&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Telappliant"&gt;Telappliant&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Telebit"&gt;Telebit&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Telelec"&gt;Telelec&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Telus"&gt;Telus&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Terayon"&gt;Terayon&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=TextPortal"&gt;TextPortal&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Tim%20Schaab"&gt;Tim Schaab&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Tiny"&gt;Tiny&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Tinys"&gt;Tinys&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=TMC"&gt;TMC&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=TopLayer"&gt;TopLayer&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Toshiba"&gt;Toshiba&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Trend%20Micro"&gt;Trend Micro&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Trintech"&gt;Trintech&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=TYPO3"&gt;TYPO3&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=U%2eS%2e%20Robotics"&gt;U.S. Robotics&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Unex"&gt;Unex&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=UNIX"&gt;UNIX&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Unknown"&gt;Unknown&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=UTStarcom"&gt;UTStarcom&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Verifone"&gt;Verifone&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Veritas"&gt;Veritas&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Verity"&gt;Verity&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=vertex"&gt;vertex&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Vextrec%20Technology"&gt;Vextrec Technology&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=VieNuke"&gt;VieNuke&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Vina%20Technologies"&gt;Vina Technologies&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Virtual%20Programming"&gt;Virtual Programming&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Visa%20VAP"&gt;Visa VAP&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Vobis"&gt;Vobis&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=VoiceGenie%20Technologies"&gt;VoiceGenie Technologies&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Vonage"&gt;Vonage&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=VPASP"&gt;VPASP&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=WatchGuard"&gt;WatchGuard&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Web%20Wiz"&gt;Web Wiz&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Webmin"&gt;Webmin&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Webramp"&gt;Webramp&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Westell"&gt;Westell&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Wim%20Bervoets"&gt;Wim Bervoets&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Wireless,%20Inc%2e"&gt;Wireless, Inc.&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=WWWBoard"&gt;WWWBoard&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=X%2dMicro"&gt;X-Micro&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Xerox"&gt;Xerox&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Xinit%20Systems%20Ltd%2e"&gt;Xinit Systems Ltd.&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Xylan"&gt;Xylan&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Xyplex"&gt;Xyplex&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Yuxin"&gt;Yuxin&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Zenith"&gt;Zenith&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=ZEOS"&gt;ZEOS&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Zeus"&gt;Zeus&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Zoom"&gt;Zoom&lt;/a&gt;&lt;/td&gt; &lt;td width="33%"&gt;&lt;a href="http://www.cirt.net/cgi-bin/passwd.pl?method=showven&amp;amp;ven=Zyxel"&gt;Zyxel&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;br /&gt;&lt;br /&gt;You can download Snadboy at:&lt;a href="http://www.snadboy.com/RevelationV2.zip"&gt;http://www.snadboy.com/RevelationV2.zip&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-1330680618408305528?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/1330680618408305528/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=1330680618408305528' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/1330680618408305528'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/1330680618408305528'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/03/getting-adsl-modem-account.html' title='Get the ADSL Account Information.'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-1103096865372717540</id><published>2008-03-09T22:29:00.005+07:00</published><updated>2008-03-09T22:44:50.882+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ruby on rails'/><category scheme='http://www.blogger.com/atom/ns#' term='VoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='asterisk'/><title type='text'>Hacking Asterisk and Rails with RAGI</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_afOHirXMcDQ/R9QEBwudqOI/AAAAAAAAACo/wklX8uUkDp0/s1600-h/clip_image001.jpg"&gt;  &lt;/a&gt;&lt;h2&gt;&lt;span style=""&gt;Hacking Asterisk and Rails with RAGI&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p class="MsoNormal"&gt;&lt;span style=""&gt;by &lt;a href="http://www.oreillynet.com/pub/au/2542"&gt;Joe Heitzeberg&lt;/a&gt;&lt;br /&gt;12/19/2005 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=""&gt;Chances are that by now you are using Skype, Yahoo Instant Messenger with Voice, Google Talk, or one of the other PC VoIP phones that let you talk for free over the internet. You might also be a customer of Vonage, AT&amp;amp;T CallVantage, BroadVoice, or one of the other VoIP-based land-line replacements that give you flat-rate, unlimited calling and tons of great features like voicemail-to-email or click-to-call.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=""&gt;Thanks to VoIP, now anyone can talk for free; I get that. But what's &lt;em&gt;next&lt;/em&gt;? Free calls and voicemail-to-email are just the beginning, right? You bet! Open protocols, low telephony cost, and a rapidly growing installed base of VoIP-capable PCs, phones, and networks mean a wave of innovation and opportunity, and we're just at the beginning.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=""&gt;In this world, hackers and entrepreneurs everywhere ought to be able to pioneer vastly new and powerful services, such as:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Mashing up RSS and voice to create a better kind of 411.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;eBay virtual call centers: High-volume seller and not around to      answer your inquiries? Click to provision some virtual call center agents      across the globe.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Temporary phone numbers: Rent a temporary phone number for a week      to use on Craigslist. Forward all calls to your real phone and log all      messages on the Web.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Click and talk with other people who are viewing a given web page.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Learn Chinese: Fill out your profile, and we'll connect you with a      qualified language instructor.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p class="title" style="background: white none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;strong&gt;&lt;span style=""&gt;Joe Heitzeberg&lt;/span&gt;&lt;/strong&gt;&lt;span style=""&gt;&lt;br /&gt;&lt;a href="http://conferences.oreillynet.com/cs/etel2006/view/e_sess/8105?CMP=ILC-PS2458945551&amp;amp;ATT=http://www.oreillynet.com/lpt/a/6391"&gt;Ruby on Rails with Asterisk&lt;/a&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="background: white none repeat scroll 0% 50%; text-align: center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;span lang="PL"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="headline" style="background: white none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;span style=""&gt;&lt;a href="http://conferences.oreilly.com/etel/?CMP=ILC-PS2458945551&amp;amp;ATT=http://www.oreillynet.com/lpt/a/6391"&gt;O'Reilly Emerging Telephony Conference&lt;/a&gt;&lt;br /&gt;January 24-26 2006&lt;br /&gt;San Francisco Airport Marriott &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=""&gt;You might have read about &lt;a href="http://www.redherring.com/Article.aspx?a=14634&amp;amp;hed=Google+Tests+Dial+Tone&amp;amp;sector=Industries&amp;amp;subsector=InternetAndServices"&gt;Google's latest foray&lt;/a&gt; into "Click to Dial" advertising. There is no reason you can't build a similar service.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=""&gt;In this article, I'll provide a quick overview of how Asterisk, the open source PBX, can be used as a general-purpose "telephony protocol server," and can be connected to Ruby on Rails to create a rapid prototyping environment for creating next-generation VoIP applications and services.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h3&gt;&lt;span style=""&gt;Asterisk in 30 Seconds&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h3&gt;  &lt;p&gt;&lt;span style=""&gt;&lt;a href="http://www.voip-info.org/wiki-Asterisk"&gt;Asterisk&lt;/a&gt; is an open source PBX. It is designed to handle all of the basic office phone services an ordinary PBX might handle and more, including call routing, conferencing, call forwarding, and three-way calling. It also speaks more than half a dozen VoIP protocols and codecs, and runs on Linux. &lt;/span&gt;&lt;span lang="PL"&gt;You might use Asterisk to:&lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Start a consulting business installing 25-person office phone      systems.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Build the best home phone system ever. Calling China? Have the      phone warn you, "It is 2 A.M. in China, are you sure you want to      continue this call?" Away for the day? Have all your calls forwarded      to your cell phone (unless they're from your employer; then play a &lt;i&gt;Ferris      Bueller&lt;/i&gt; movie audio clip).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Build a banking IVR product to sell.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Help your local politician get elected by auto-dialing a list of      phone numbers and playing a message.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h3&gt;&lt;span style=""&gt;Ruby on Rails in a Jiffy&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h3&gt;  &lt;p&gt;&lt;span style=""&gt;If you are building web apps, then you might consider running (don't walk) to get yourself outfitted with &lt;a href="http://www.rubyonrails.com/"&gt;Ruby On Rails&lt;/a&gt;, a great new web-application development framework by David Heinemeier Hansson and many open source contributors. Rails is framework for creating database-driven web sites that manages to cut out a lot of the grunt work typically associated with Java- or Perl-based frameworks. Rails uses the Ruby language, which will feel familiar to any Java or C# programmer, and includes tons of libraries to help with common web development tasks and with newer things like Ajax.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h3&gt;&lt;span style=""&gt;Bird's-Eye View&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h3&gt;  &lt;p&gt;&lt;span style=""&gt;Hopefully you are starting to get the picture: &lt;em&gt;hosted&lt;/em&gt; VoIP-enabled apps that connect to VoIP phones like Skype and real phones, and operate on the same kind of open source development stack that powers the Web. Say goodbye to proprietary and closed telephony hardware and hosted voiceXML platforms that tie you to someone else's voice platform. Plug a Linux box into the internet, grab a domain name, and get in business.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span lang="PL"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600" spt="75" preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;  &lt;v:stroke joinstyle="miter"&gt;  &lt;v:formulas&gt;   &lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt;   &lt;v:f eqn="sum @0 1 0"&gt;   &lt;v:f eqn="sum 0 0 @1"&gt;   &lt;v:f eqn="prod @2 1 2"&gt;   &lt;v:f eqn="prod @3 21600 pixelWidth"&gt;   &lt;v:f eqn="prod @3 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @0 0 1"&gt;   &lt;v:f eqn="prod @6 1 2"&gt;   &lt;v:f eqn="prod @7 21600 pixelWidth"&gt;   &lt;v:f eqn="sum @8 21600 0"&gt;   &lt;v:f eqn="prod @7 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @10 21600 0"&gt;  &lt;/v:formulas&gt;  &lt;v:path extrusionok="f" gradientshapeok="t" connecttype="rect"&gt;  &lt;o:lock ext="edit" aspectratio="t"&gt; &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_i1025" type="#_x0000_t75" alt="figure 1" style="'width:374.25pt;height:206.25pt'"&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\TRIEUT~1\LOCALS~1\Temp\msohtml1\08\clip_image001.jpg" href="http://www.oreillynet.com/etel/2005/12/19/graphics/network_diagram.jpg"&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;img src="file:///C:/DOCUME%7E1/TRIEUT%7E1/LOCALS%7E1/Temp/msohtml1/08/clip_image001.jpg" alt="figure 1" shapes="_x0000_i1025" border="0" height="275" width="499" /&gt;&lt;!--[endif]--&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_afOHirXMcDQ/R9QEpwudqPI/AAAAAAAAACw/hrI6C5Bz124/s1600-h/clip_image001.jpg"&gt;&lt;img style="cursor: pointer;" src="http://bp2.blogger.com/_afOHirXMcDQ/R9QEpwudqPI/AAAAAAAAACw/hrI6C5Bz124/s320/clip_image001.jpg" alt="" id="BLOGGER_PHOTO_ID_5175766987256473842" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;span lang="PL"&gt;Diagram Notes:&lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style=""&gt;You&lt;/span&gt;&lt;/b&gt;&lt;span style=""&gt;: Your Linux      server is hosted on the internet, but instead of just serving web      browsers, you also connect to phones and VoIP phones to serve mobile      users, phone users, and VoIP users with voice interfaces.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style=""&gt;VoIP/PSTN service&lt;/span&gt;&lt;/b&gt;&lt;span style=""&gt;:      Providers such as Level3 and GlobalCrossing and a multitude of smaller      providers such as VoipJet, VoicePulse, and LES.net provide the capability      to place and receive calls to regular phones via the internet (it's like      SkypeOut, but from your server). Any mobile or land-line phone can be      reached at very low cost.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;&lt;span style=""&gt;VoIP clients&lt;/span&gt;&lt;/b&gt;&lt;span style=""&gt;:      Currently, Gizmo is the most open VoIP client out there, and the others      (i.e. Skype and GoogleTalk) won't accept directly connected SIP traffic.      However, as a workaround, you can connect to users of SkypeIn (the dotted      line), or use Jabber for a limited interaction with GoogleTalk.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;table class="MsoNormalTable" style="width: 100%;" border="0" cellpadding="0" cellspacing="0" width="100%"&gt;  &lt;tbody&gt;&lt;tr style=""&gt;   &lt;td style="padding: 0in;"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style=""&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;br /&gt;&lt;/td&gt;   &lt;td style="padding: 0in;"&gt;   &lt;p class="secondary" style="text-align: right;" align="right"&gt;&lt;span style=""&gt;&lt;a href="http://www.oreillynet.com/lpt/a/%3C%21--CS_NEXT_REF--%3E"&gt;&lt;span style="" lang="PL"&gt;http://www.oreillynet.com/lpt/a/%3C%21--CS_NEXT_REF--%3E&lt;/span&gt;&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;h3&gt;&lt;span style=""&gt;Rails + Asterisk = Peanut Butter + Chocolate&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h3&gt;  &lt;p&gt;&lt;span style=""&gt;What could be a better way to create these new apps and services than to combine Asterisk's VoIP handling capabilities with the power and efficiency of Ruby on Rails?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=""&gt;For that purpose, we have &lt;a href="http://www.snapvine.com/code/ragi"&gt;RAGI: Ruby Asterisk Gateway Interface&lt;/a&gt;. RAGI is a simple API and set of helper classes that facilitate programmable phone logic, or IVR, from a Ruby environment by implementing the Asterisk AGI protocol. In Rails apps, RAGI makes handling phone call interaction something similar to rendering a web page. From a systems point of view, it allows you to attach your Asterisk server to your Rails server something like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span lang="PL"&gt;&lt;img src="file:///C:/DOCUME%7E1/TRIEUT%7E1/LOCALS%7E1/Temp/msohtml1/08/clip_image002.jpg" alt="figure 2" shapes="_x0000_i1026" border="0" height="245" width="498" /&gt;&lt;!--[endif]--&gt;&lt;/span&gt;&lt;/p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_afOHirXMcDQ/R9QFDwudqQI/AAAAAAAAAC4/azwHWv1CwIc/s1600-h/clip_image002.jpg"&gt;&lt;img style="cursor: pointer;" src="http://bp2.blogger.com/_afOHirXMcDQ/R9QFDwudqQI/AAAAAAAAAC4/azwHWv1CwIc/s320/clip_image002.jpg" alt="" id="BLOGGER_PHOTO_ID_5175767433933072642" border="0" /&gt;&lt;/a&gt;&lt;p&gt;&lt;span lang="PL"&gt;Diagram Notes:&lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Phone calls come in to your Asterisk server, and control over how      to handle the call (ask the user a question, play a sound) is handed to      your web application server.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Ruby on Rails is configured to load up RAGI when it starts, so that      your calls have access to your entire set of classes defined in your web      application (whatever you've built for user registration, data feeds,      tagging objects, etc., will be available inside of the phone call      session).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;A &lt;/span&gt;&lt;code&gt;&lt;span style="font-size:10;"&gt;CallHandler&lt;/span&gt;&lt;/code&gt;&lt;span style=""&gt;      subclass is created for every type of call session you might need (user      checking account balance, checking voice mail, etc.).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;You can write services that handle incoming calls or place outgoing      calls. &lt;/span&gt;&lt;span lang="PL"&gt;Your only limit to capacity is bandwidth and      CPU.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h3&gt;&lt;span lang="PL"&gt;Programming with RAGI&lt;/span&gt;&lt;/h3&gt;  &lt;p&gt;&lt;span style=""&gt;With RAGI, you spend most of your time focusing on application logic and you get full access to the objects and services you've already defined for the rest of your web application. Spend less time hacking low-level Asterisk and VoIP configurations, and more time on user experience!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=""&gt;Let's take a look at the body of a call handler to get a sense of what this looks like:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;module MyCallHandler&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;  &lt;/span&gt;class CallHandler &lt;&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;# when someone calls the number, &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;# the call routes to this "dialup" method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;def dialup&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;  &lt;/span&gt;answer()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;      &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;# Who is calling?&lt;span style=""&gt;  &lt;/span&gt;Read the caller id&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;user_phone_number = @params[RAGI::CALLERID]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;# Look up the user in the db using Rails.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;# Since the db has a "phone_number" field, Rails&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;# automatically provides a "find_by_phone_number" method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;# on the User class -- gotta love Rails!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;user = User.find_by_phone_number(user_phone_number)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;# Service logic here...&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;#&lt;span style=""&gt;    &lt;/span&gt;if (user.account_balance &lt;= 0) --&gt; hangUp&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;#&lt;span style=""&gt;    &lt;/span&gt;else --&gt; speak "hello" + user.first_name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;#&lt;span style=""&gt;    &lt;/span&gt;Play their voice mail&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;#&lt;span style=""&gt;    &lt;/span&gt;Ask for key presses&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;#&lt;span style=""&gt;    &lt;/span&gt;Connect this call to conference call&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;#&lt;span style=""&gt;    &lt;/span&gt;Etc.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;hangUp()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;&lt;span style=""&gt;  &lt;/span&gt;end&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=""&gt;end&lt;/span&gt;&lt;/code&gt;&lt;span style=""&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;  &lt;p&gt;&lt;span style=""&gt;RAGI exposes most of the major functions and capabilities of Asterisk itself. And if what's already there is not enough, you can add and contribute back, since RAGI is open source. &lt;/span&gt;&lt;span lang="PL"&gt;The major API functions are:&lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span lang="PL"&gt;Play sounds.&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span lang="PL"&gt;Record sounds.&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Place a call (can be processed through RAGI when answered).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Forward a caller to another number by placing a call.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Listen for key presses (DTMF signals).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=""&gt;Send key presses (DTMF signals).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span lang="PL"&gt;Text to speech.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h3&gt;&lt;span lang="PL"&gt;Summary&lt;/span&gt;&lt;/h3&gt;  &lt;p&gt;&lt;span style=""&gt;VoIP connectivity has quickly become ubiquitous. Its openness and low cost means that it can be combined with traditional web infrastructure to create powerful new communications applications and services. In this article, I've sketched out what those new services may look like, and illustrated an approach to developing such applications using open source software such as Asterisk and Ruby on Rails.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h3&gt;&lt;span style=""&gt;Would you like to learn more?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h3&gt;  &lt;p&gt;&lt;span style=""&gt;I'll be doing a &lt;a href="http://conferences.oreillynet.com/cs/etel2006/view/e_sess/8105"&gt;workshop on RAGI&lt;/a&gt; at the &lt;a href="http://conferences.oreillynet.com/etel/"&gt;O'Reilly Emerging Telephony&lt;/a&gt; conference, January 24 to 26 in San Francisco. Also, in the new year, look for a complete tutorial on O'Reilly about using RAGI. In the meantime, please feel free to get started on your own by visiting the &lt;a href="http://www.snapvine.com/code/ragi"&gt;RAGI developer pages&lt;/a&gt;. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style=""&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-1103096865372717540?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/1103096865372717540/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=1103096865372717540' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/1103096865372717540'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/1103096865372717540'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/03/hacking-asterisk-and-rails-with-ragi.html' title='Hacking Asterisk and Rails with RAGI'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_afOHirXMcDQ/R9QEpwudqPI/AAAAAAAAACw/hrI6C5Bz124/s72-c/clip_image001.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-568156913528106590</id><published>2008-03-09T22:20:00.004+07:00</published><updated>2008-03-09T22:43:39.754+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='toeic'/><category scheme='http://www.blogger.com/atom/ns#' term='english'/><title type='text'>TOEIC test handbook</title><content type='html'>&lt;span style="color: rgb(51, 204, 255); font-weight: bold;"&gt;About the TOEIC test&lt;/span&gt;&lt;br /&gt;The TOEIC® (Test of English for International Communication) test is an English language proficiency test&lt;br /&gt;for people whose native language is not English. It measures the everyday English skills of people&lt;br /&gt;working in an international environment. The scores indicate how well people can communicate in&lt;br /&gt;English with others in business, commerce, and industry. The test does not require specialized&lt;br /&gt;knowledge or vocabulary beyond that of a person who uses English in everyday work activities.&lt;br /&gt;&lt;span style="color: rgb(51, 204, 255); font-weight: bold;"&gt;WHAT IS THE FORMAT OF THE TOEIC TEST?&lt;/span&gt;&lt;br /&gt;The TOEIC test is a two-hour multiple-choice test that consists of 200 questions divided into two sections:&lt;br /&gt; Listening Comprehension Section: There are 100 listening comprehension questions&lt;br /&gt;administered by audiocassette. There are four types of questions. You will listen to a variety of&lt;br /&gt;statements, questions, short conversations, and short talks recorded in English, then you will&lt;br /&gt;answer the questions. Total time: approximately 45 minutes.&lt;br /&gt; Reading Section: There are 100 reading questions, consisting of three types of questions. You will&lt;br /&gt;read a variety of materials and respond at your own pace to questions based on the content of the&lt;br /&gt;materials. Total time: 75 minutes.&lt;br /&gt;You will respond to test questions by marking one of the letters (A), (B), (C), or (D) with a pencil on a&lt;br /&gt;separate answer sheet. Although the actual testing time is approximately two hours, additional time is&lt;br /&gt;needed to allow you to complete the background questions on the answer sheet. Therefore, you should&lt;br /&gt;allow approximately 2.5 hours to take the test.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 204, 255); font-weight: bold;"&gt;WHO TAKES THE TOEIC TEST?&lt;/span&gt;&lt;br /&gt; personnel who use English in real-life work settings, such as businesses, hotels, hospitals,&lt;br /&gt;restaurants, international meetings, conventions, and sports events&lt;br /&gt; managerial, sales, and technical employees in international business, commerce, and industry who&lt;br /&gt;require English for their work&lt;br /&gt; candidates for training to be conducted in English&lt;br /&gt; individuals in English-language training programs&lt;br /&gt;Commonly Asked Questions&lt;br /&gt;&lt;span style="color: rgb(51, 204, 255); font-weight: bold;"&gt;WHY TAKE THE TOEIC TEST?&lt;/span&gt;&lt;br /&gt;The TOEIC test is the choice of more than 2 million examinees a year and is recognized by thousands of&lt;br /&gt;corporations. As a fair and objective measure of English proficiency, the TOEIC test will enable you to:&lt;br /&gt; verify your current level of English proficiency&lt;br /&gt; qualify for a new position and/or promotion in your company&lt;br /&gt; enhance your professional credentials&lt;br /&gt; monitor your progress in English&lt;br /&gt; set your own learning goals&lt;br /&gt; involve your employer in advancing your English ability&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 204, 255);"&gt;WHEN AND WHERE CAN I TAKE THE TOEIC TEST?&lt;/span&gt;&lt;br /&gt;TOEIC testing can be arranged through corporations or other organizations that ask employees or job&lt;br /&gt;applicants to take the TOEIC test. Many language-training programs and schools offer TOEIC testing as&lt;br /&gt;well. If testing has not been arranged through your organization, you can contact your local TOEIC&lt;br /&gt;representative to find out when and where you can take the test. The TOEIC test is available throughout&lt;br /&gt;the world.&lt;br /&gt;&lt;span style="color: rgb(51, 204, 255); font-weight: bold;"&gt;HOW MUCH DOES THE TOEIC TEST COST?&lt;/span&gt;&lt;br /&gt;TOEIC prices vary worldwide according to local markets. To inquire about pricing in your area, contact&lt;br /&gt;your local representative.&lt;br /&gt;&lt;span style="color: rgb(51, 204, 255); font-weight: bold;"&gt;WHAT SCORE DO I NEED TO “PASS” THE TOEIC TEST?&lt;/span&gt;&lt;br /&gt;The TOEIC test is not the kind of test that one “passes” or “fails.” Not every job or task requires the same&lt;br /&gt;level of English proficiency. Because it was developed specifically to meet the needs of working people,&lt;br /&gt;the TOEIC test measures many levels of ability. It enables people to demonstrate what they currently can&lt;br /&gt;accomplish in English. The single, continuous scale also makes it possible for learners to set attainable&lt;br /&gt;goals and to measure their progress as their English improves.&lt;br /&gt;Many companies use the TOEIC test to set their own score standards based on the levels of English&lt;br /&gt;necessary to carry out particular responsibilities. Your company may require that employees have a&lt;br /&gt;minimum TOEIC score because the corresponding level of English is needed on the job. Many companies&lt;br /&gt;offer English training to help their employees reach target TOEIC scores reflecting specific levels of&lt;br /&gt;proficiency based on professional need.&lt;br /&gt;&lt;span style="color: rgb(51, 204, 255); font-weight: bold;"&gt;DOES THE TOEIC TEST MEASURE SPEAKING AND WRITING?&lt;/span&gt;&lt;br /&gt;The TOEIC test measures listening and reading directly. These skills can be tested objectively, costeffectively,&lt;br /&gt;and efficiently. Testing speaking and writing directly requires considerable time and expense,&lt;br /&gt;both for administering the test and for scoring. The decision to test only listening and reading directly on&lt;br /&gt;the TOEIC test was a response to the needs of clients and test takers for a rapid, affordable, and&lt;br /&gt;convenient service, as well as for high reliability.&lt;br /&gt;The TOEIC test provides an indirect measure of speaking and writing. Studies with large samples of&lt;br /&gt;nonnative speakers of English from around the world have confirmed a strong link between TOEIC results&lt;br /&gt;and an oral interview. Smaller studies have shown a similar link with writing skills.&lt;br /&gt;&lt;span style="color: rgb(51, 204, 255); font-weight: bold;"&gt;FROM WHAT KIND OF CONTEXTS ARE THE TOEIC TEST QUESTIONS DRAWN?&lt;/span&gt;&lt;br /&gt;These are some examples of the settings and situations you may find in TOEIC test questions:&lt;br /&gt; Corporate Development: research, product development&lt;br /&gt; Dining Out: business and informal lunches, banquets, receptions, restaurant reservations&lt;br /&gt; Entertainment: cinema, theater, music, art, exhibitions, museums, media&lt;br /&gt; Finance and Budgeting: banking, investments, taxes, accounting, billing&lt;br /&gt; General Business: contracts, negotiations, mergers, marketing, sales, warranties,&lt;br /&gt;business planning, conferences, labor relations&lt;br /&gt; Health: medical insurance, visiting doctors, dentists, clinics, hospitals&lt;br /&gt; Housing/Corporate Property: construction, specifications, buying and renting, electric and&lt;br /&gt;gas services&lt;br /&gt; Manufacturing: assembly lines, plant management, quality control&lt;br /&gt; Offices: board meetings, committees, letters, memoranda, telephone, fax and e-mail messages,&lt;br /&gt;office equipment and furniture, office procedures&lt;br /&gt; Personnel: recruiting, hiring, retiring, salaries, promotions, job applications, job advertisements,&lt;br /&gt;pensions, awards&lt;br /&gt; Purchasing: shopping, ordering suppies, shipping, invoices&lt;br /&gt; Technical Areas: electronics, technology, computers, laboratories and related equipment,&lt;br /&gt;technical specifications&lt;br /&gt; Travel: trains, airplanes, taxis, buses, ships, ferries, tickets, schedules, station and airport&lt;br /&gt;announcements, car rentals, hotels, reservations, delays and cancelations&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-568156913528106590?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/568156913528106590/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=568156913528106590' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/568156913528106590'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/568156913528106590'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/03/toeic-test-handbook.html' title='TOEIC test handbook'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-5926128085429447205</id><published>2008-03-06T22:01:00.005+07:00</published><updated>2008-03-06T22:23:26.746+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='One minute manager'/><category scheme='http://www.blogger.com/atom/ns#' term='Spencer Johnson'/><category scheme='http://www.blogger.com/atom/ns#' term='Ken Blanchard'/><title type='text'>One minute Manager (Vị giám đốc một phút) Mở đầu</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_afOHirXMcDQ/R9AHxvyKOyI/AAAAAAAAACg/gzM8IDukAgc/s1600-h/GiamDoc1PhutB.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_afOHirXMcDQ/R9AHxvyKOyI/AAAAAAAAACg/gzM8IDukAgc/s320/GiamDoc1PhutB.jpg" alt="" id="BLOGGER_PHOTO_ID_5174644523070536482" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p class="pHead"&gt;&lt;i&gt;"Vị Giám đốc Một phút"&lt;/i&gt; của tác giả &lt;strong&gt;Spencer Johnson&lt;/strong&gt; và &lt;strong&gt;Ken Blanchard&lt;/strong&gt; đã thật sự trở thành hiện tượng toàn cầu trong những năm gần đây. &lt;/p&gt;  &lt;p align="justify"&gt;          Công việc là một phần quan trọng không thể thiếu trong cuộc sống của mọi người. Ai cũng mong muốn có được một công việc tốt, vừa thể hiện năng lực lao động của bản thân, vừa có thu nhập cao. &lt;/p&gt;  &lt;p align="justify"&gt;          Tuy nhiên, trên thực tế không dễ dàng tìm được một môi trường làm việc mà ở đó nhân viên phát huy được khả năng tối đa, ở đó người lãnh đạo thật sáng suốt và điều hành công việc rất khoa học, tình cảm giữa các đồng nghiệp thật gắn bó, đoàn kết với tinh thần trách nhiệm cao…&lt;/p&gt;  &lt;p align="justify"&gt;          &lt;strong&gt;Vị Giám đốc Một phút&lt;/strong&gt; là câu chuyện thú vị kể về quá trình tìm kiếm và tích lũy về những kinh nghiệm quản lý của một chàng trai trẻ vừa tốt nghiệp đại học với tấm lòng tràn đầy nhiệt huyết, muốn đem những kiến thức học được ra cống hiến cho xã hội. &lt;/p&gt;  &lt;p align="justify"&gt;          Anh không chỉ mong được làm việc trong một môi trường làm việc tuyệt vời để có thể phát huy hết năng lực bản thân mà còn mơ ước trở thành một người quản lý xuất sắc nên đã hạ quyết tâm đi tìm một vị giám đốc lý tưởng. &lt;/p&gt;  &lt;p align="justify"&gt;          Hành trình tìm kiếm ròng rã trong nhiều năm. Chàng trai đã đến nhiều nơi, từ những thành thị nhỏ bé đến những thủ đô tráng lệ của các cường quốc năm châu… Anh đã gặp gỡ nhiều cấp quản lý, từ những quan chức trong chính phủ đến các giám đốc doanh nghiệp, từ các giáo sư đại học đến những người quản lý cửa hàng, từ giám đốc ngân hàng đến những người chủ nhà hàng, khách sạn, cả nam và nữ giới, từ người trẻ tuổi đến trung niên… &lt;/p&gt;  &lt;p align="justify"&gt;          Trong suốt hành trình trên, anh đã chứng kiến nhiều cách quản lý khác nhau nhưng vẫn chưa tìm ra người và nơi mình mong được gặp. Mãi cho đến khi anh gặp được một vị giám đốc rất đặc biệt - &lt;strong&gt;Vị Giám đốc Một phút&lt;/strong&gt; - người thành công thật sự trong cương vị của mình với phương pháp làm việc chỉ gói gọn trong vòng một phút nhưng rất hoàn hảo, vừa tạo hiệu quả công việc cao nhất, vừa xây dựng được một môi trường làm việc thân thiện giữa các nhân viên với nhau, một người quản lý tuyệt vời luôn đảm bảo được lợi ích của công ty cũng như quyền lợi của nhân viên. &lt;/p&gt;  &lt;p align="justify"&gt;          &lt;strong&gt;Vị Giám đốc Một phút&lt;/strong&gt; cho rằng muốn điều hành và quản lý công việc được tốt, người lãnh đạo phải giúp nhân viên lập ra &lt;strong&gt;mục tiêu một phút&lt;/strong&gt;, đồng thời phải luôn dành ra &lt;strong&gt;một phút khen ngợi&lt;/strong&gt; những thành quả tốt của nhân viên để khích lệ tinh thần làm việc của mọi người và &lt;strong&gt;một phút khiển trách&lt;/strong&gt; đối với các việc làm sai trái của nhân viên để giúp họ hiểu rõ trách nhiệm của mình và hoàn thiện bản thân. &lt;/p&gt;  &lt;p align="justify"&gt;          Nhờ áp dụng những bí quyết hữu ích từ Giám đốc Một phút, chàng thanh niên trẻ đã tìm ra phương cách quản lý cho riêng mình và anh cũng sớm trở thành vị Giám đốc Một phút.&lt;/p&gt;  &lt;p align="justify"&gt;          Câu chuyện thú vị trong cuốn sách sẽ chia sẻ với các bạn rất nhiều điều. Đó là những kiến thức đã được đúc kết từ những những nghiên cứu trong các lĩnh vực tâm lý học, y học và khoa học hành vi về cách con người hợp tác tốt nhất với người khác để giúp bạn hoàn thành được xuất sắc trong vai trò quản lý của mình. &lt;/p&gt;  &lt;p align="justify"&gt;          Khi chỉ nhìn vào tựa đề, hẳn không ít người sẽ nghĩ cuốn sách này chỉ dành cho những người làm công việc quản lý, nhưng thật ra, ý nghĩa và giá trị thực chất của nó có thể ứng dụng trong nhiều mặt của cuộc sống. &lt;/p&gt;  &lt;p align="justify"&gt;          Trong công việc sau khi áp dụng ba bí quyết một phút, bạn sẽ cảm thấy thích thú với công việc hơn và ít căng thẳng hơn, sự nghiệp sẽ được thăng tiến hơn. &lt;/p&gt;  &lt;p align="justify"&gt;          Ở môi trường gia  đình, bạn có thể vận dụng ba &lt;i&gt;“bí quyết một phút” &lt;/i&gt;để thu được những kết quả rất khả quan như: giúp các con của bạn biết tự quản cuộc sống tốt hơn, giúp vợ hoặc chồng của bạn có cách cư xử tốt hơn...&lt;/p&gt;  &lt;p align="justify"&gt;          Những ý tưởng hữu ích trong &lt;strong&gt;Vị Giám đốc Một phút&lt;/strong&gt; đã nhanh chóng lan rộng và được hàng triệu giám đốc, những nhà quản lý trong danh sách 500 tập đoàn, công ty hàng đầu thế giới của tạp chí Fortune cũng như các doanh nghiệp khắp thế giới đã và đang ứng dụng những kinh nghiệm quản lý quý báu trong cuốn sách này. &lt;/p&gt;  &lt;p align="justify"&gt;          Cuốn sách bé nhỏ này đã làm được những điều lớn lao thật đáng ngạc nhiên – đã làm tăng năng suất, hiệu quả trong công việc và những thành tích, tiến bộ đối với từng cá nhân cũng như đối với các công ty, tập đoàn lớn trên thế giới như: &lt;strong&gt;&lt;i&gt;Toyota, Toshiba, Doughnut, Wells Fargo, Sony Corp, Victoria’s Secret, Yellow Pages, Abbot Labs, Foodmaker, Hilton Hotels, Bayer Corporation…&lt;/i&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p align="justify"&gt;          Charles Lee, chủ tịch công ty Verizon đã viết: &lt;i&gt;“Sau ngần ấy năm, tôi vẫn cầm đến cuốn sách &lt;strong&gt;Vị Giám đốc Một phút&lt;/strong&gt; trong những phút giây rãnh rỗi hiếm hoi nhằm ôn lại những kỹ thuật quản lý của mình. Cho đến lúc này, tôi chưa tìm thấy một cuốn sách nào có những lời hướng dẫn quản lý con người tốt hơn và dễ vận dụng hơn cuốn sách này.”&lt;/i&gt;&lt;/p&gt;  &lt;p align="justify"&gt;          &lt;strong&gt;Vị Giám đốc Một phút&lt;/strong&gt; là một câu chuyện thú vị, dễ đọc và ngắn gọn, thể hiện ba bí quyết rất thiết thực: &lt;strong&gt;mục tiêu một phút, một phút khen ngợi&lt;/strong&gt; và &lt;strong&gt;một phút khiển trách&lt;/strong&gt; đã liên tục xuất hiện trong danh sách những cuốn sách bán chạy nhất trong hơn hai thập kỷ qua và trở thành một hiện hiện tượng toàn cầu. Bất cứ ai làm công tác quản lý cũng đều biết đến cuốn sách Vị Giám đốc một phút cũng như giá trị to lớn của nó. &lt;/p&gt;&lt;br /&gt;&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/doc/aeeb807b-4585-4a17-89b9-1924633e6b8d/vi-giam-doc-mot-phut/?widget=documentIcon"&gt;&lt;img alt="vi giam doc mot phut" title="click to Viewvi giam doc mot phut" src="http://www.blogger.com/images/thumbs/thumb.pdf.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/doc/aeeb807b-4585-4a17-89b9-1924633e6b8d/vi-giam-doc-mot-phut/?widget=documentIcon"&gt;vi giam doc mot ph...&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding: 5px; font-size: 9px; color: rgb(255, 255, 255);" valign="bottom"&gt;Hosted by &lt;a href="http://www.esnips.com/" style="color: rgb(255, 255, 255);"&gt;eSnips&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-5926128085429447205?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/5926128085429447205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=5926128085429447205' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/5926128085429447205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/5926128085429447205'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/03/one-minute-manager-v-gim-c-mt-pht-m-u.html' title='One minute Manager (Vị giám đốc một phút) Mở đầu'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_afOHirXMcDQ/R9AHxvyKOyI/AAAAAAAAACg/gzM8IDukAgc/s72-c/GiamDoc1PhutB.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-4138307930060206556</id><published>2008-03-02T21:47:00.000+07:00</published><updated>2008-03-02T21:50:12.525+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MS-Office'/><category scheme='http://www.blogger.com/atom/ns#' term='office'/><category scheme='http://www.blogger.com/atom/ns#' term='tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='project'/><category scheme='http://www.blogger.com/atom/ns#' term='microsoft'/><title type='text'>Microsoft Project Tutorial</title><content type='html'>&lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="font-size: 14pt;"&gt;MS Project Tutorial&lt;o p=""&gt;&lt;/o&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;MS Project 2003&lt;/i&gt; is a family of products designed to address the work and people management needs of any organization. &lt;i style=""&gt;Project 2003&lt;/i&gt; suit of products include &lt;i style=""&gt;MS-Office Project Standard&lt;/i&gt;, &lt;i style=""&gt;MS-Office Project Professional&lt;/i&gt;, &lt;i style=""&gt;MS-Office Project Server&lt;/i&gt;, and &lt;i style=""&gt;MS-Office Project Web Access&lt;/i&gt;.&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;u&gt;Project Professional&lt;/u&gt;&lt;/i&gt; is the desktop project management program that can be used with &lt;i style=""&gt;Project Server&lt;/i&gt; and &lt;i style=""&gt;Project Web Access&lt;/i&gt; to form the &lt;i style=""&gt;Enterprise Project Management&lt;/i&gt; (EPM) Solution.&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;u&gt;Project Server&lt;/u&gt;&lt;/i&gt; is the flexible platform that supports the portfolio management, resource management, and collaboration capabilities in the EPM Solution. Project Server enables organizations to store project and resource information centrally and consistently.&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;u&gt;Project Web Access&lt;/u&gt;&lt;/i&gt; is the Web portal that enables you to connect to the project and resource information that is stored in Project Server and collaborate on projects. Team members who need access to Project Server information but do not require the scheduling capabilities of Project Professional—can use Project Web Access through a Web browser to view and analyze information.&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;In this lab we would be learning to use only the “Project Professional”. “Project Server” and “Project web access” are not installed in the CIS servers.&lt;span style="font-size: 14pt;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;u&gt;Things that you should do/think about before&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Before embarking on the project you need to put down a few key points very clearly -&lt;/p&gt;&lt;ol type="1"&gt;&lt;li class="MsoNormal" style=""&gt;Conceptualize and identify the purpose of the project  &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Define its objectives  &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Finalize its scope  &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Identify its activities  &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Assign resources to activities  &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Create an estimate of time and costs  &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Make honest assumptions about various relevant factors that can affect the duration of a project and its costs  &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Discuss alternative scenarios and build contingency plans &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;MS Project cannot help you with (1), (2), (7) and (8) but it can carry the remaining on its shoulders and sail you smoothly to your goals.&lt;/p&gt;&lt;p&gt;&lt;span class="subtitle"&gt;&lt;b&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="subtitle"&gt;&lt;b&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="subtitle"&gt;&lt;b&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="subtitle"&gt;&lt;b&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="subtitle"&gt;&lt;b&gt;&lt;u&gt;&lt;o p=""&gt;&lt;span style="text-decoration: none;"&gt;&lt;/span&gt;&lt;/o&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="subtitle"&gt;&lt;b&gt;&lt;u&gt;Terms that you need to know&lt;/u&gt;&lt;/b&gt;&lt;span style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="subtitle"&gt;&lt;b&gt;Tasks&lt;/b&gt;:&lt;/span&gt; They are a division of all the work that needs to be completed in order to accomplish the project goals. &lt;/p&gt;&lt;p style="text-indent: 0.5in;"&gt;There are 4 major types of tasks:&lt;/p&gt;&lt;p style="margin-left: 0.75in; text-indent: -0.25in;"&gt;&lt;span style=""&gt;1.&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;i style=""&gt;Summary tasks- &lt;/i&gt;They contain subtasks and their related properties.&lt;/p&gt;&lt;p style="margin-left: 0.75in; text-indent: -0.25in;"&gt;&lt;span style=""&gt;2.&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;i style=""&gt;Subtasks-&lt;/i&gt; they are smaller tasks that are part of a summary task.&lt;/p&gt;&lt;p style="margin-left: 0.75in; text-indent: -0.25in;"&gt;&lt;span style=""&gt;3.&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;i style=""&gt;Recurring tasks-&lt;/i&gt;are tasks that occur at regular intervals.&lt;/p&gt;&lt;p style="margin-left: 0.75in; text-indent: -0.25in;"&gt;&lt;span style=""&gt;4.&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;i style=""&gt;Milestones-&lt;/i&gt;are like interim goals in the project. They are tasks that are set to zero duration.&lt;/p&gt;&lt;p&gt;&lt;span class="subtitle"&gt;&lt;b&gt;Scope: &lt;/b&gt;&lt;/span&gt;of any project is a combination of all individual tasks and their goals.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Resources: &lt;/b&gt;can be people, equipment, materials or services that are needed to complete various tasks. The amount of resources affects the scope and time of any project.&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="font-size: 14pt;"&gt;Today’s lab&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="font-size: 14pt;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 14pt;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;u&gt;Things to do:&lt;o p=""&gt;&lt;/o&gt;&lt;/u&gt;&lt;/p&gt;&lt;ol style="margin-top: 0in;" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;Create Project&lt;o p=""&gt;&lt;/o&gt;&lt;/i&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;Add Tasks and subtasks to a project&lt;o p=""&gt;&lt;/o&gt;&lt;/i&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;Assign task duration&lt;o p=""&gt;&lt;/o&gt;&lt;/i&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;Show progress of task (how much has been accomplished?)&lt;o p=""&gt;&lt;/o&gt;&lt;/i&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;Go to Start-&gt; All Programs -&gt;Microsoft Office Project 2003&lt;/p&gt;&lt;p class="separator" style="clear: both; text-align: center;"&gt;&lt;a style="border: 0px none ; margin-left: 1em; margin-right: 1em; background-color: transparent;" href="http://thanhbinhtrieu.googlepages.com/image001.png/image001-full;init:.png" imageanchor="1"&gt;&lt;img style="border: 0px none ;" tabindex="0" src="http://thanhbinhtrieu.googlepages.com/image001.png/image001-full.png" closure="" hashcode="" height="442" width="202" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.75in; text-indent: -0.75in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;I)&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style=""&gt;&lt;u&gt;Create a Project&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;v shapetype="" id="_x0000_t75" path=" m@4@5 l@4@11@9@11@9@5 xe" stroked="f" filled="f" spt="75" o="" preferrelative="t" coordsize="21600,21600"&gt;&lt;v stroke="" joinstyle="miter"&gt;&lt;v formulas=""&gt;&lt;v f="" eqn="if lineDrawn pixelLineWidth 0 "&gt;&lt;v f="" eqn="sum @0 1 0 "&gt;&lt;v f="" eqn="sum 0 0 @1 "&gt;&lt;v f="" eqn="prod @2 1 2 "&gt;&lt;v f="" eqn="prod @3 21600 pixelWidth "&gt;&lt;v f="" eqn="prod @3 21600 pixelHeight "&gt;&lt;v f="" eqn="sum @0 0 1 "&gt;&lt;v f="" eqn="prod @6 1 2 "&gt;&lt;v f="" eqn="prod @7 21600 pixelWidth "&gt;&lt;v f="" eqn="sum @8 21600 0 "&gt;&lt;v f="" eqn="prod @7 21600 pixelHeight "&gt;&lt;v f="" eqn="sum @10 21600 0 "&gt;&lt;v path="" connecttype="rect" gradientshapeok="t" o="" extrusionok="f"&gt;&lt;o lock="" v="" ext="edit" aspectratio="t"&gt;&lt;v shape="" id="_x0000_s1026" style="margin-top: -0.2pt; z-index: 1; left: 0px; margin-left: 0px; width: 151.5pt; position: absolute; height: 331.5pt; text-align: left;" coordsize="21600,21600" type="#_x0000_t75"&gt;&lt;v imagedata="" src="http://thanhbinhtrieu.googlepages.com/MS%20Project%20Tutorial_files/image001.png" o="" title=""&gt;&lt;w wrap="" type="square" side="right"&gt; &lt;/w&gt;&lt;/v&gt;&lt;/v&gt;&lt;/o&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/v&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;You should be able to see a ‘tasks’ list on the left as shown here. Click on “Define the project” link.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 1in; text-indent: -0.25in; text-align: justify;"&gt;&lt;span style=""&gt;1.&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;Give the start date of your project.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 1in; text-indent: -0.25in; text-align: justify;"&gt;&lt;span style=""&gt;2.&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;Click on “Save and go to Step2”&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 1in; text-indent: -0.25in; text-align: justify;"&gt;&lt;span style=""&gt;3.&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;For Collaborate on your project, select “No” and go to Step 3.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 1in; text-indent: -0.25in;"&gt;&lt;span style=""&gt;4.&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;Save and finish.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.75in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.75in;"&gt;If you want to specify which days and hours you want the team to work, or which days are off/holidays then click on “Define general working time” and follow the 5 steps. In our case we might not want to do that.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.75in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.75in;"&gt;Click on “List the tasks in the project”.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 45pt; text-indent: -45pt;"&gt;II) &lt;span style=""&gt;&lt;/span&gt;&lt;b style=""&gt;Add Tasks/Sub-Tasks to your project&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="separator" style="clear: both; text-align: center;"&gt;&lt;a style="border: 0px none ; margin-left: 1em; margin-right: 1em; background-color: transparent;" href="http://thanhbinhtrieu.googlepages.com/image003.png/image003-full;init:.png" imageanchor="1"&gt;&lt;img style="border: 0px none ;" tabindex="0" src="http://thanhbinhtrieu.googlepages.com/image003.png/image003-full.png" closure="" hashcode="" height="73" width="531" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 45pt; text-indent: -45pt;"&gt;&lt;b style=""&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-indent: -0.5in;"&gt;&lt;span style=""&gt;&lt;/span&gt;- Click on the ‘Task Name’ Column and type out the task that you want to perform as part of the project.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;- In the “Duration” column you should be able to specify the time taken in minutes. So, enter the number of minutes followed by “m”. You can enter task duration as and when you decide upon the suitable estimate. If you are not sure about how much time you need for a task, you can put a “?” for duration.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;- Tasks that are milestones are marked “0” duration.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;i style=""&gt;&lt;u&gt;Adding Sub-Task&lt;o p=""&gt;&lt;/o&gt;&lt;/u&gt;&lt;/i&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;To add a sub-task, insert a row below the task for which you are adding a sub-task. For e.g. - if “Meeting” is a task, its sub task could be “Setting the agenda” for the meeting. Then insert a row below “Meeting”.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;Add all the sub-tasks for the concerned task. Then select all the sub-task (you can select multiple sub tasks by holding down the ‘ctrl’ key).&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;v shape="" id="_x0000_i1025" style="width: 398.25pt; height: 54.75pt;" coordsize="21600,21600" type="#_x0000_t75"&gt;&lt;v imagedata="" src="http://thanhbinhtrieu.googlepages.com/MS%20Project%20Tutorial_files/image003.png" o="" title=""&gt;&lt;/v&gt;&lt;/v&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;Click on the right arrow icon as shown above. This would indent the sub-tasks under the Task.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in; text-indent: -0.5in;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;II)&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style=""&gt;Adding Resources&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoBodyTextIndent"&gt;Double click on any tasks/sub-tasks and the ‘task information’ window pops up. Check on the ‘Resources’ tab and give the resource names (the name of the person who is assigned the task) and Click OK.&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;&lt;v shape="" id="_x0000_i1026" style="width: 396.75pt; height: 238.5pt;" coordsize="21600,21600" type="#_x0000_t75"&gt;&lt;v imagedata="" src="http://thanhbinhtrieu.googlepages.com/MS%20Project%20Tutorial_files/image005.png" o="" title=""&gt;&lt;/v&gt;&lt;/v&gt;&lt;/p&gt;&lt;p class="separator" style="clear: both; text-align: center;"&gt;&lt;a style="border: 0px none ; margin-left: 1em; margin-right: 1em; background-color: transparent;" href="http://thanhbinhtrieu.googlepages.com/image005.png/image005-full;init:.png" imageanchor="1"&gt;&lt;img style="border: 0px none ;" tabindex="0" src="http://thanhbinhtrieu.googlepages.com/image005.png/image005-full.png" closure="" hashcode="" height="318" width="529" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in; text-indent: -0.5in;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;III)&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style=""&gt;Linking tasks:&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;Sometimes, even after designing a schedule many unforeseen changes can affect the completion of tasks midway. This could lead to disruption to completion of other related tasks. To solve this problem, MS Project allows you to link tasks in various ways. By linking tasks Project adjusts the schedule whenever there are changes that affect duration of other tasks.&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;A task that needs to be completed before are called predecessor task and the linked tasks is its successors.&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;Tasks can be linked in four ways: -&lt;/p&gt;&lt;ol style="margin-top: 0in;" start="4" type="1"&gt;&lt;ol style="margin-top: 0in;" type="1"&gt;&lt;li class="MsoNormal" style="margin-top: 12pt;"&gt;&lt;u&gt;Finish-to-Start&lt;/u&gt;: Predecessor finishes and the other starts  &lt;/li&gt;&lt;li class="MsoNormal" style="margin-top: 12pt;"&gt;&lt;u&gt;Start-to-Finish: &lt;/u&gt;Task begins at the same time as its predecessor finishes.&lt;u&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/u&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin-top: 12pt;"&gt;&lt;u&gt;Finish-to-Finish:&lt;/u&gt; Both tasks finish at the same time.&lt;u&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/u&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;4.&lt;span style=""&gt;&lt;/span&gt;&lt;u&gt;Start-to-Start:&lt;/u&gt; Start of the predecessor determines when the other starts. This is the default setting for any pair of tasks.&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;-Double click on any task to bring up the “task information” window. Select the “Predecessors” tab and select the predecessor for the task from the drop down list.&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;-Click on “Schedule Tasks” on the “Tasks” list in the left.&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;-Select the predecessor and the current task (multiple tasks are selected using ‘ctrl’) and click on the appropriate type of link that you want to provide, on the left.&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in; text-indent: -0.5in;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;IV)&lt;span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style=""&gt;How much has been accomplished?&lt;o p=""&gt;&lt;/o&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;Double click on any task and bring up the “task information” window. In the “general” tab, you can specify the amount of work that has been completed. Also check out how the Gantt chart reflects the amount of work that has been completed.&lt;/p&gt;&lt;p class="MsoNormal" style="margin: 12pt 0in 0pt 0.75in;"&gt;&lt;span style=""&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-top: 12pt;"&gt;&lt;span style="font-size: 14pt;"&gt;&lt;span style=""&gt;&lt;/span&gt;&lt;b style=""&gt;&lt;u&gt;Some Extra Notes&lt;/u&gt;&lt;/b&gt;&lt;o p=""&gt;&lt;/o&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol style="margin-top: 0in;" type="1"&gt;&lt;li class="MsoNormal" style="margin-top: 12pt;"&gt;You can add notes to each of your task. When you bring up the “task information” window for each task, you can click on the “notes” tab and add appropriate notes for the task. If you feel like giving a hyper link for each task, that would take you to the web-page that lists out more information, you can do that by-right click the mouse on each selected task and select “Hyperlink”. Add the hyperlink (URL), which you want to provide. &lt;/li&gt;&lt;li class="MsoNormal" style="margin-top: 12pt;"&gt;You can set deadlines and constraints in the “task information” window. Select the “advanced” tab and select the constraints that you want to specify. &lt;/li&gt;&lt;li class="MsoNormal" style="margin-top: 12pt;"&gt;If you want to view the Gantt chart more clearly, you can zoom on it. Right click on the calendar over the Gantt chart and click on zoom. You can specify the units in which the Gantt chart would display. &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-4138307930060206556?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/4138307930060206556/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=4138307930060206556' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/4138307930060206556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/4138307930060206556'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/03/microsoft-project-tutorial.html' title='Microsoft Project Tutorial'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-4605997197272619085</id><published>2008-02-28T22:39:00.005+07:00</published><updated>2008-02-29T21:48:32.068+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='english'/><category scheme='http://www.blogger.com/atom/ns#' term='learn to speak English 9.0'/><title type='text'>Learn to speak English Deluxe 9.0</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_afOHirXMcDQ/R8bY_MYr-OI/AAAAAAAAACY/aQdS4UzfPUU/s1600-h/learn+to+speak+english.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp3.blogger.com/_afOHirXMcDQ/R8bY_MYr-OI/AAAAAAAAACY/aQdS4UzfPUU/s320/learn+to+speak+english.jpg" alt="" id="BLOGGER_PHOTO_ID_5172059802249722082" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Dung lượng khá lớn.Nhưng đây là chương trình rất hay.Rất tuyệt vời.Thử xem.Nếu không Download được có thể liên hệ để Copy CD của tui.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;File size:&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:100%;"&gt; 1.4 GB&lt;br /&gt;&lt;index&gt;&lt;/index&gt;Trying to learn English? Our Learn to Speak English software is an expansive language program that uses a wealth of instructional techniques to help you learn English. It includes lessons in &lt;a class="kLink" id="KonaLink1" style="position: static; text-decoration: underline ! important;" href="http://avaxhome.org/software/learn_english_9_4cd.html#" target="_top"&gt;  &lt;span class="kLink" style="border-bottom: 1px solid blue; font-weight: 400; padding-bottom: 1px; position: static; color: rgb(176, 0, 0);font-family:Verdana,Helvetica,Arial,sans-serif;" &gt;vocabulary&lt;/span&gt;&lt;/a&gt;, grammar, and conversation (both verbal and written), and provides plenty of practice, drill and review in each of these areas.&lt;br /&gt;&lt;br /&gt;Unlike most &lt;a class="kLink" id="KonaLink2" style="position: static; text-decoration: underline ! important;" href="http://avaxhome.org/software/learn_english_9_4cd.html#" target="_top"&gt;  &lt;span style="color:blue;"&gt;   &lt;span class="kLink" style="border-bottom: 1px solid blue; font-weight: 400; padding-bottom: 1px; position: static; color: rgb(176, 0, 0);font-family:Verdana,Helvetica,Arial,sans-serif;" &gt;language &lt;/span&gt;   &lt;span class="kLink" style="border-bottom: 1px solid blue; font-weight: 400; padding-bottom: 1px; position: static; color: rgb(176, 0, 0);font-family:Verdana,Helvetica,Arial,sans-serif;" &gt;software&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; programs, Learn to Speak English attempts to teach the language from the ground up. It not only immerses the user in the language, but it provides extensive grammar lessons as well. The program is divided into 10 units and 30 chapters. Each chapter contains a vocabulary list, story, dialogue, grammar topic, conversation lab, and exercises. Also included are fun games to break the monotony while strengthening and reinforcing learning. &lt;a class="kLink" id="KonaLink3" style="position: static; text-decoration: underline ! important;" href="http://avaxhome.org/software/learn_english_9_4cd.html#" target="_top"&gt;  &lt;span style="color:blue;"&gt;   &lt;span class="kLink" style="border-bottom: 1px solid blue; font-weight: 400; padding-bottom: 1px; position: static; color: rgb(176, 0, 0);font-family:Verdana,Helvetica,Arial,sans-serif;" &gt;Speech &lt;/span&gt;   &lt;span class="kLink" style="border-bottom: 1px solid blue; font-weight: 400; padding-bottom: 1px; position: static; color: rgb(176, 0, 0);font-family:Verdana,Helvetica,Arial,sans-serif;" &gt;recognition&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; technology allows users to test their knowledge and perfect their accents with immediate feedback from the &lt;a class="kLink" id="KonaLink4" style="position: static; text-decoration: underline ! important;" href="http://avaxhome.org/software/learn_english_9_4cd.html#" target="_top"&gt;  &lt;span class="kLink" style="border-bottom: 1px solid blue; font-weight: 400; padding-bottom: 1px; position: static; color: rgb(176, 0, 0);font-family:Verdana,Helvetica,Arial,sans-serif;" &gt;computer&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Included with the Learn to Speak English CD-ROM is a 115-page workbook for practicing away from the computer.&lt;br /&gt;What is the Best Way to Learn English?&lt;br /&gt;In order to truly learn English, four things must be accomplished:&lt;br /&gt;1. Learn English grammar&lt;br /&gt;2. Learn English vocabulary&lt;br /&gt;3. Be able to listen to and comprehend the English language&lt;br /&gt;4. To be understood by others when you &lt;a class="kLink" id="KonaLink5" style="position: static; text-decoration: underline ! important;" href="http://avaxhome.org/software/learn_english_9_4cd.html#" target="_top"&gt;  &lt;span style="color:blue;"&gt;   &lt;span class="kLink" style="border-bottom: 1px solid blue; font-weight: 400; padding-bottom: 1px; position: static; color: rgb(176, 0, 0);font-family:Verdana,Helvetica,Arial,sans-serif;" &gt;speak &lt;/span&gt;   &lt;span class="kLink" style="border-bottom: 1px solid blue; font-weight: 400; padding-bottom: 1px; position: static; color: rgb(176, 0, 0);font-family:Verdana,Helvetica,Arial,sans-serif;" &gt;English&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Learn to Speak English is designed with these four things in mind. Unlike many other language software programs, Learn to Speak English does much more than help you memorize words. Using a step-by-step process, you learn both vocabulary and grammar rules. Then, using the speech recognition technology, you can test your proficiency in speaking and understanding English.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;span style="text-decoration: underline;"&gt;CD1&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66032275/LSE.9.DELUXE.CD1.part1.rar"&gt;http://rapidshare.com/files/66032275/LSE.9.DELUXE.CD1.part1.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66041742/LSE.9.DELUXE.CD1.part2.rar"&gt;http://rapidshare.com/files/66041742/LSE.9.DELUXE.CD1.part2.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66052666/LSE.9.DELUXE.CD1.part3.rar"&gt;http://rapidshare.com/files/66052666/LSE.9.DELUXE.CD1.part3.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66172641/LSE.9.DELUXE.CD1.part4.rar"&gt;http://rapidshare.com/files/66172641/LSE.9.DELUXE.CD1.part4.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66174920/LSE.9.DELUXE.CD1.part5.rar"&gt;http://rapidshare.com/files/66174920/LSE.9.DELUXE.CD1.part5.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66176412/LSE.9.DELUXE.CD1.part6.rar"&gt;http://rapidshare.com/files/66176412/LSE.9.DELUXE.CD1.part6.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;CD2&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66183171/LSE.9.DELUXE.CD2.part01.rar"&gt;http://rapidshare.com/files/66183171/LSE.9.DELUXE.CD2.part01.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66230829/LSE.9.DELUXE.CD2.part02.rar"&gt;http://rapidshare.com/files/66230829/LSE.9.DELUXE.CD2.part02.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66239127/LSE.9.DELUXE.CD2.part03.rar"&gt;http://rapidshare.com/files/66239127/LSE.9.DELUXE.CD2.part03.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66258487/LSE.9.DELUXE.CD2.part04.rar"&gt;http://rapidshare.com/files/66258487/LSE.9.DELUXE.CD2.part04.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66406757/LSE.9.DELUXE.CD2.part05.rar"&gt;http://rapidshare.com/files/66406757/LSE.9.DELUXE.CD2.part05.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66451203/LSE.9.DELUXE.CD2.part06.rar"&gt;http://rapidshare.com/files/66451203/LSE.9.DELUXE.CD2.part06.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;CD3&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66467548/LSE.9.DELUXE.CD3.part01.rar"&gt;http://rapidshare.com/files/66467548/LSE.9.DELUXE.CD3.part01.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66478849/LSE.9.DELUXE.CD3.part02.rar"&gt;http://rapidshare.com/files/66478849/LSE.9.DELUXE.CD3.part02.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66585601/LSE.9.DELUXE.CD3.part03.rar"&gt;http://rapidshare.com/files/66585601/LSE.9.DELUXE.CD3.part03.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66625322/LSE.9.DELUXE.CD3.part04.rar"&gt;http://rapidshare.com/files/66625322/LSE.9.DELUXE.CD3.part04.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66641497/LSE.9.DELUXE.CD3.part05.rar"&gt;http://rapidshare.com/files/66641497/LSE.9.DELUXE.CD3.part05.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66643851/LSE.9.DELUXE.CD3.part06.rar"&gt;http://rapidshare.com/files/66643851/LSE.9.DELUXE.CD3.part06.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;CD4&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66649901/LSE.9.DELUXE.CD4.part01.rar"&gt;http://rapidshare.com/files/66649901/LSE.9.DELUXE.CD4.part01.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66652156/LSE.9.DELUXE.CD4.part02.rar"&gt;http://rapidshare.com/files/66652156/LSE.9.DELUXE.CD4.part02.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66655853/LSE.9.DELUXE.CD4.part03.rar"&gt;http://rapidshare.com/files/66655853/LSE.9.DELUXE.CD4.part03.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66722934/LSE.9.DELUXE.CD4.part04.rar"&gt;http://rapidshare.com/files/66722934/LSE.9.DELUXE.CD4.part04.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66830562/LSE.9.DELUXE.CD4.part05.rar"&gt;http://rapidshare.com/files/66830562/LSE.9.DELUXE.CD4.part05.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66843709/LSE.9.DELUXE.CD4.part06.rar"&gt;http://rapidshare.com/files/66843709/LSE.9.DELUXE.CD4.part06.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66868197/LSE.9.DELUXE.CD4.part07.rar"&gt;http://rapidshare.com/files/66868197/LSE.9.DELUXE.CD4.part07.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66870159/LSE.9.DELUXE.CD4.part08.rar"&gt;http://rapidshare.com/files/66870159/LSE.9.DELUXE.CD4.part08.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66871990/LSE.9.DELUXE.CD4.part09.rar"&gt;http://rapidshare.com/files/66871990/LSE.9.DELUXE.CD4.part09.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66879503/LSE.9.DELUXE.CD4.part10.rar"&gt;http://rapidshare.com/files/66879503/LSE.9.DELUXE.CD4.part10.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/66881264/LSE.9.DELUXE.CD4.part11.rar"&gt;http://rapidshare.com/files/66881264/LSE.9.DELUXE.CD4.part11.rar&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-weight: bold; color: rgb(255, 0, 0);font-size:100%;" &gt;MIRRORS&lt;br /&gt;&lt;/span&gt; &lt;span style="font-weight: bold;font-size:100%;" &gt;CD1&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://www.filefactory.com/file/44450b" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/44450b&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/6f8d07" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/6f8d07&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/d7bdb7" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/d7bdb7&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-weight: bold;font-size:100%;" &gt;CD2&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/6bf7e4" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/6bf7e4&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/21405c" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/21405c&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/6d607c" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/6d607c&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-weight: bold;font-size:100%;" &gt;CD3&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/6ffef8" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/6ffef8&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/0a0d2f" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/0a0d2f&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/10ce40" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/10ce40&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/5f1396" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/5f1396&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-weight: bold;font-size:100%;" &gt;CD4&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/df41da" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/df41da&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/77ceda" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/77ceda&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/36c0a6" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/36c0a6&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/cf992a" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/cf992a&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/6ce99a" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/6ce99a&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.filefactory.com/file/f76fcf" target="_blank" tooltip="(откроется в новом окне)"&gt;  &lt;span style="color: rgb(0, 0, 255);"&gt;http://www.filefactory.com/file/f76fcf&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CD1&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=4ILR25SB"&gt;http://www.megaupload.com/?d=4ILR25SB&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=JXFTMKOM"&gt;http://www.megaupload.com/?d=JXFTMKOM&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=R00RXLQI"&gt;http://www.megaupload.com/?d=R00RXLQI&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;CD2&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=0P49GM9B"&gt;http://www.megaupload.com/?d=0P49GM9B&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=Z102IJ7A"&gt;http://www.megaupload.com/?d=Z102IJ7A&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=MIRAAA9S"&gt;http://www.megaupload.com/?d=MIRAAA9S&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;CD3&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=A60O27MQ"&gt;http://www.megaupload.com/?d=A60O27MQ&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=9XSKZV7C"&gt;http://www.megaupload.com/?d=9XSKZV7C&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=A8VP52G1"&gt;http://www.megaupload.com/?d=A8VP52G1&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=OVR0KXC0"&gt;http://www.megaupload.com/?d=OVR0KXC0&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;CD4&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=R8SEMJ1D"&gt;http://www.megaupload.com/?d=R8SEMJ1D&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=WI2RL80J"&gt;http://www.megaupload.com/?d=WI2RL80J&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=PFLEDOHU"&gt;http://www.megaupload.com/?d=PFLEDOHU&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=Z6MYOH9Y"&gt;http://www.megaupload.com/?d=Z6MYOH9Y&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=4ZMR3G2L"&gt;http://www.megaupload.com/?d=4ZMR3G2L&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=MU2UA8I0"&gt;http://www.megaupload.com/?d=MU2UA8I0&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-4605997197272619085?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/4605997197272619085/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=4605997197272619085' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/4605997197272619085'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/4605997197272619085'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/learn-to-speak-english-deluxe-90.html' title='Learn to speak English Deluxe 9.0'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_afOHirXMcDQ/R8bY_MYr-OI/AAAAAAAAACY/aQdS4UzfPUU/s72-c/learn+to+speak+english.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-5871538436595011386</id><published>2008-02-28T11:40:00.004+07:00</published><updated>2008-03-15T08:40:23.361+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='RHEL4'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql5'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='install MySQL5'/><title type='text'>Install Upgrade MySQL 5 on Redhat Enterprise version 4 (RHEL4)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_afOHirXMcDQ/R8Y9EcYr-NI/AAAAAAAAACQ/9aHPGxRyBoo/s1600-h/mysql5.0"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp0.blogger.com/_afOHirXMcDQ/R8Y9EcYr-NI/AAAAAAAAACQ/9aHPGxRyBoo/s320/mysql5.0" alt="" id="BLOGGER_PHOTO_ID_5171888368630102226" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Upgrade MySQL 4.1 to 5.0 on RHEL4:&lt;br /&gt;With Debian(Ubuntu) install and upgrade are very easy but on Fedora or Redhat it very difficult.&lt;br /&gt;On Redhat Enterprise 4.0 before upgrade MySQl 4.1 to MySQL 5.0 you must uninstall MySql 4.1 first.&lt;br /&gt;You can follow these command :&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#rpm -e mysql-devel-4.1.7-4.RHEL4.1.i386&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#rpm -e mysql-server-4.1.7-4.RHEL4.1.i386&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#rpm -e mysql-4.1.7-4.RHEL4.1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After you removed old MySQL 4.1 you need download these packages:&lt;br /&gt;MySQL-shared-compat-5.0.51a-0.rhel4.i386.rpm,MySQL-devel-community-5.0.51a-0.rhel4.i386.rpm,MySQL-server-community-5.0.51a-0.rhel4.i386.rpm ,MySQL-client-community-5.0.51a-0.rhel4.i386.rpm&lt;br /&gt;It can be download on website mysql:&lt;br /&gt;http://dev.mysql.com/downloads/mysql/5.0.html#&lt;br /&gt;when downloaded you enter these command:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#rpm -ivh MySQL-shared-compat-5.0.51a-0.rhel4.i386.rpm&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#rpm -ivh MySQL-devel-community-5.0.51a-0.rhel4.i386.rpm&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#rpm -ivh MySQL-server-community-5.0.51a-0.rhel4.i386.rpm&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#rpm -ivh MySQL-client-community-5.0.51a-0.rhel4.i386.rpm&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;At the Terminal :when you entered command mysql&lt;br /&gt;it can be show this:&lt;br /&gt;&lt;table&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Your MySQL connection id is 13&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Server version: 5.0.51a-community MySQL Community Edition (GPL)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Type 'help;' or '\h' for help. Type '\c' to clear the buffer.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;mysql&gt;&lt;/span&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;Congratulations,You have Mysql 5.0 Installed&lt;br /&gt;(I'm so sorry if I make mistake in English Grammar)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-5871538436595011386?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/5871538436595011386/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=5871538436595011386' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/5871538436595011386'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/5871538436595011386'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/installing-upgrade-mysql-41-to-mysql-50.html' title='Install Upgrade MySQL 5 on Redhat Enterprise version 4 (RHEL4)'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_afOHirXMcDQ/R8Y9EcYr-NI/AAAAAAAAACQ/9aHPGxRyBoo/s72-c/mysql5.0' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-3105303029186658631</id><published>2008-02-27T21:41:00.006+07:00</published><updated>2008-02-27T22:56:07.389+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SIP'/><category scheme='http://www.blogger.com/atom/ns#' term='IPPBX'/><category scheme='http://www.blogger.com/atom/ns#' term='PSTN'/><category scheme='http://www.blogger.com/atom/ns#' term='VoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='H323'/><category scheme='http://www.blogger.com/atom/ns#' term='asterisk'/><category scheme='http://www.blogger.com/atom/ns#' term='PBX'/><category scheme='http://www.blogger.com/atom/ns#' term='hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='unifed'/><title type='text'>VoIP Security</title><content type='html'>&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px; width: 500px; height: 72px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/doc/d0aa8082-40b3-4edd-b796-81ee7369483e/McGrawHill-Hacking-Exposed-VoIP-Voice.Over.IP-Security-Secrets-Solutions-eBook/?widget=documentIcon"&gt;&lt;img alt="McGrawHill Hacking Exposed VoIP Voice.Over.IP Security Secrets Solutions eBook" title="click to ViewMcGrawHill Hacking Exposed VoIP Voice.Over.IP Security Secrets Solutions eBook" src="http://www.blogger.com/images/thumbs/any.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/doc/d0aa8082-40b3-4edd-b796-81ee7369483e/McGrawHill-Hacking-Exposed-VoIP-Voice.Over.IP-Security-Secrets-Solutions-eBook/?widget=documentIcon"&gt;McGrawHill Hacking...&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding: 5px; font-size: 9px; color: rgb(255, 255, 255);" valign="bottom"&gt;Hosted by &lt;a href="http://www.esnips.com/" style="color: rgb(255, 255, 255);"&gt;eSnips&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px; width: 501px; height: 72px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/doc/c0aec6c2-a055-4228-9bc6-49fa0ec83726/Syngress-How-to-Cheat-at-VolP-Security-%282007%29/?widget=documentIcon"&gt;&lt;img alt="Syngress How to Cheat at VolP Security (2007)" title="click to ViewSyngress How to Cheat at VolP Security (2007)" src="http://www.blogger.com/images/thumbs/thumb.pdf.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/doc/c0aec6c2-a055-4228-9bc6-49fa0ec83726/Syngress-How-to-Cheat-at-VolP-Security-%282007%29/?widget=documentIcon"&gt;Syngress How to Ch...&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding: 5px; font-size: 9px; color: rgb(255, 255, 255);" valign="bottom"&gt;Hosted by &lt;a href="http://www.esnips.com/" style="color: rgb(255, 255, 255);"&gt;eSnips&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px; width: 497px; height: 72px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/doc/4c455354-05f2-4630-8f42-94cb269a4c03/Asterisk-Stability-And-Security/?widget=documentIcon"&gt;&lt;img alt="Asterisk Stability And Security" title="click to ViewAsterisk Stability And Security" src="http://www.blogger.com/images/thumbs/thumb.ppt.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/doc/4c455354-05f2-4630-8f42-94cb269a4c03/Asterisk-Stability-And-Security/?widget=documentIcon"&gt;Asterisk Stability...&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding: 5px; font-size: 9px; color: rgb(255, 255, 255);" valign="bottom"&gt;Hosted by &lt;a href="http://www.esnips.com/" style="color: rgb(255, 255, 255);"&gt;eSnips&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;p class="FIRST-PARA"&gt;&lt;a name="12"&gt;&lt;/a&gt;&lt;a name="BEGINPAGE.8108E235-8A5F-48EF-BF79-5ECE88C413BB"&gt;&lt;/a&gt;Voice over IP (VoIP) has  finally come of age and is being rapidly embraced across most markets as an  alternative to the traditional public-switched telephone network (PSTN). VoIP is  a broad term, describing many different types of applications (hard phones,  softphones, proxy servers, Instant Messaging clients, peer-to-peer clients, and  so on), installed on a wide variety of platforms (Linux, Windows, VxWorks,  mobile devices, PCs, and so on), and using a wide variety of both proprietary  and open protocols (SIP, RTP, H.323, MGCP, SCCP, Unistim, SRTP, ZRTP, and so on)  that depend heavily on your preexisting data network's infrastructure and  services (routers, switches, DNS, TFTP, DHCP, VPNs, VLANs and so on).  Correspondingly, VoIP security is just as broad a subject thanks to the  heterogeneous nature of these environments found in the consumer, enterprise,  carrier, and small/medium–sized business markets.&lt;/p&gt;&lt;br /&gt;&lt;h2 class="FIRST-SECTION-TITLE"&gt;&lt;a name="22"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP50"&gt;&lt;/a&gt;How the Book is Organized&lt;/h2&gt; &lt;p class="FIRST-PARA"&gt;This book is split into five completely different parts.  Each part can be read without even touching the remaining four—so if the reader  is interested only in the issues described in the selected part, he or she may  consult only that part.&lt;/p&gt; &lt;div class="section"&gt; &lt;h3 class="sect3-title"&gt;&lt;a name="23"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP52BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0005.htm#48" target="_parent"&gt;Part I&lt;/a&gt;. "Casing the  Establishment"&lt;/h3&gt; &lt;p class="first-para"&gt;The first part is introductory and describes how an attacker  would first scan the whole network and then pick up specific targets and  enumerate them with great precision in order to proceed with further advanced  attacks through or from the hacked VoIP devices.&lt;/p&gt; &lt;div class="SECTION"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="24"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp54BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0006.htm#59" target="_parent"&gt;Chapter 1&lt;/a&gt;. "Footprinting  a VoIP Network"&lt;/h4&gt; &lt;p class="first-para"&gt;We begin the book by describing how a hacker first profiles  the target organization by performing passive reconnaissance using tools such as  Google, DNS, and WHOIS records, as well as the target's own website.&lt;/p&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="25"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp56"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0011.htm#112" target="_parent"&gt;Chapter 2&lt;/a&gt;. "Scanning a  VoIP Network"&lt;/h4&gt; &lt;p class="first-para"&gt;A logical continuation of the previous chapter, this chapter  provides a review of various remote scanning techniques in order to identify  potentially active VoIP devices on the network. We cover the traditional UDP,  TCP, SNMP, and ICMP scanning techniques as applied to VoIP devices.&lt;a name="26"&gt;&lt;/a&gt;&lt;a name="beginpage.8545b8f1-a0da-4a72-9fab-1979e7fe1bfa"&gt;&lt;/a&gt;  &lt;/p&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h4 class="SECT4-TITLE"&gt;&lt;a name="27"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp58"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0018.htm#153" target="_parent"&gt;Chapter 3&lt;/a&gt;. "Enumerating  a VoIP Network"&lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;Here, we show active methods of enumeration of various  standalone VoIP devices, from softphones, hard phones, proxies, and other  general SIP-enabled devices. Plenty of examples are provided, along with a  demonstration of SIPScan, a SIP directory scanning tool we  wrote.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h3 class="sect3-title"&gt;&lt;a name="28"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp60"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0026.htm#241" target="_parent"&gt;Part II&lt;/a&gt;. "'Exploiting  the VoIP Network"&lt;/h3&gt; &lt;p class="first-para"&gt;This part of the book is focused on exploiting the  supporting network infrastructure on which your VoIP applications depend. We  begin with typical network denial-of-service attacks and eventually lead up to  VoIP conversation eavesdropping. While many of the demonstrated techniques  originate from the traditional data security world, we applied them against VoIP  devices and supporting network services.&lt;/p&gt; &lt;div class="SECTION"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="29"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP62BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0027.htm#245" target="_parent"&gt;Chapter 4&lt;/a&gt;. "VoIP  Network Infrastructure Denial of Service (DoS)"&lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;In this chapter, we introduce quality of service and how to  objectively measure the quality of a VoIP conversation on the network using  various free and commercial tools. Next, we discuss various flooding and denial  of service attacks on VoIP devices and supporting services such as DNS and  DHCP.&lt;/p&gt;&lt;/div&gt; &lt;div class="SECTION"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="30"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp64"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0036.htm#307" target="_parent"&gt;Chapter 5&lt;/a&gt;. "VoIP  Network Eavesdropping"&lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;This section is very much focused on the types of VoIP  privacy attacks an attacker can perform with the appropriate network access to  sniff traffic. Techniques such as number harvesting, call pattern tracking, TFTP  file snooping, and actual conversation eavesdropping are demonstrated.&lt;/p&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="31"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP66BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0041.htm#356" target="_parent"&gt;Chapter 6&lt;/a&gt;. "VoIP  Interception and Modification"&lt;/h4&gt; &lt;p class="first-para"&gt;The methods described in this chapter detail how to perform  man-in-the-middle attacks in order to intercept and alter an active VoIP session  and conversation. We demonstrate some man-in-the-middle methods of ARP poisoning  and present a new tool called &lt;span class="FIXED"&gt;sip_rogue&lt;/span&gt; that can sit in  between two calling parties and monitor or alter their session and  conversation.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h3 class="SECT3-TITLE"&gt;&lt;a name="32"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp68BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0048.htm#434" target="_parent"&gt;Part III&lt;/a&gt;. "Exploiting  Specific VoIP Platforms"&lt;/h3&gt; &lt;p class="first-para"&gt;In this part of the book, we shift our attention to  attacking specific vendor platforms where each has unique security weaknesses  and countermeasures. We demonstrate some of the attacks covered in the last few  chapters in order to detail the vendor-specific best practices for mitigating  them.&lt;/p&gt; &lt;div class="SECTION"&gt; &lt;h4 class="SECT4-TITLE"&gt;&lt;a name="33"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP70"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0049.htm#439" target="_parent"&gt;Chapter 7&lt;/a&gt;. "Cisco  Unified CallManager"&lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;We installed Cisco CallManager 4.&lt;i class="emphasis"&gt;x&lt;/i&gt;  with Cisco hard phones in a fully homogenous Cisco-switched environment in order  to perform many of the attacks we've already detailed. &lt;a name="34"&gt;&lt;/a&gt;&lt;a name="beginpage.f5677dd3-3f0a-4381-a49e-e5ff2451da4e"&gt;&lt;/a&gt;&lt;/p&gt; &lt;p class="LAST-PARA"&gt;We also cover the various best practices to apply to the  Cisco switching gear to mitigate most of the network attacks covered in &lt;a class="chapterjump" href="http://www.blogger.com/0026.htm#241" target="_parent"&gt;Part II&lt;/a&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h4 class="SECT4-TITLE"&gt;&lt;a name="35"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP73BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0057.htm#533" target="_parent"&gt;Chapter 8&lt;/a&gt;. "Avaya  Communication Manager"&lt;/h4&gt; &lt;p class="first-para"&gt;Similarly, we installed a full Avaya Communication Manager  along with Avaya hard phones to detail some of the specific attacks we covered  in &lt;a class="chapterjump" href="http://www.blogger.com/0005.htm#48" target="_parent"&gt;Part I&lt;/a&gt; and &lt;a class="chapterjump" href="http://www.blogger.com/0026.htm#241" target="_parent"&gt;Part II&lt;/a&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="36"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp75"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0067.htm#656" target="_parent"&gt;Chapter 9&lt;/a&gt;.  "Asterisk"&lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;We targeted our SIP test bed running Asterisk with the  similar attacks detailed in &lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0005.htm#48" target="_parent"&gt;Part I&lt;/a&gt; and &lt;a class="chapterjump" href="http://www.blogger.com/0026.htm#241" target="_parent"&gt;Part II&lt;/a&gt;. We also performed some basic platform testing on a  subset of the SIP phones in our test bed.&lt;/p&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="37"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP77BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0077.htm#716" target="_parent"&gt;Chapter 10&lt;/a&gt;. "Emerging  Softphone Technologies"&lt;/h4&gt; &lt;p class="first-para"&gt;In this chapter, we discuss some security issues with the  emerging softphone services, such as Skype, Gizmo, and others. While these  services have not yet dominantly emerged into the enterprise space, they are  poised to do so through some interesting partnerships under way.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h3 class="sect3-title"&gt;&lt;a name="38"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp79BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0085.htm#753" target="_parent"&gt;Part IV&lt;/a&gt;. "VoIP Session  and Application Hacking"&lt;/h3&gt; &lt;p class="FIRST-PARA"&gt;In this part of the book, we shift our attention from  attacking the network and device to attacking the protocol. The fine art of  protocol exploitation can hand intruders full control over the VoIP application  traffic without any direct access and reconfiguration of the hosts or phones  deployed.&lt;/p&gt; &lt;div class="SECTION"&gt; &lt;h4 class="SECT4-TITLE"&gt;&lt;a name="39"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP81BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0086.htm#758" target="_parent"&gt;Chapter 11. "Fuzzing  VoIP"&lt;/a&gt; &lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;The practice of &lt;i class="EMPHASIS"&gt;fuzzing,&lt;/i&gt; otherwise  known as &lt;i class="EMPHASIS"&gt;robustness testing&lt;/i&gt; or &lt;i class="emphasis"&gt;functional protocol testing,&lt;/i&gt; has been around for a while in  the security community. The practice has proven itself to be pretty effective at  automating vulnerability discovery in applications and devices that support a  target protocol. In this chapter, we demonstrate some tools and techniques for  fuzzing your VoIP applications.&lt;/p&gt;&lt;/div&gt; &lt;div class="SECTION"&gt; &lt;h4 class="SECT4-TITLE"&gt;&lt;a name="40"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP83"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0094.htm#804" target="_parent"&gt;Chapter 12&lt;/a&gt;.  "Flood-Based Disruption of Service"&lt;/h4&gt; &lt;p class="first-para"&gt;In this chapter, we cover additional attacks that disrupt  SIP proxies and phones by flooding them with various types of VoIP protocol and  session-specific messages. These types of attacks partially or totally disrupt  service for a SIP proxy or phone while the attack is under way. Some of the  attacks actually cause the target to go out of service, requiring a restart.&lt;a name="41"&gt;&lt;/a&gt;&lt;a name="beginpage.8a9868f0-259e-470c-993b-ef3a05b35f65BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;  &lt;/p&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="42"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP85BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0100.htm#884" target="_parent"&gt;Chapter 13&lt;/a&gt;. "Signaling  and Media Manipulation"&lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;In this chapter, we cover other attacks in which an attacker  manipulates SIP signaling or RTP media to hijack, terminate, or otherwise  manipulate calls. We introduce no less than ten new tools to demonstrate these  attacks. As with other attacks we have covered, these attacks are simple to  execute and quite lethal.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h3 class="sect3-title"&gt;&lt;a name="43"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp87BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0112.htm#996" target="_parent"&gt;Part V&lt;/a&gt;. "Social  Threats"&lt;/h3&gt; &lt;p class="first-para"&gt;In the same way that the traditional email realm has been  inundated with spam and phishing, so too are we starting to see the evolution of  these social nuisances into the VoIP world. This chapter focuses on how  advertisers and scam artists will likely target VoIP users and how to help  counter their advance.&lt;/p&gt; &lt;div class="SECTION"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="44"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP89BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="chapterjump" href="http://www.blogger.com/0113.htm#1002" target="_parent"&gt;Chapter 14&lt;/a&gt;. "SPAM over  Internet Telephony (SPIT)"&lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;&lt;i class="EMPHASIS"&gt;Voice SPAM&lt;/i&gt; or &lt;i class="EMPHASIS"&gt;SPAM  over Internet Telephony (SPIT)&lt;/i&gt; is a similar problem that will affect VoIP.  SPIT, in this context, refers to bulk, automatically generated, unsolicited  calls. SPIT is like telemarketing on steroids. You can expect SPIT to occur with  a frequency similar to email SPAM. This chapter describes how you can use the  Asterisk IP PBX and a new tool called &lt;span class="fixed"&gt;spitter&lt;/span&gt; to  generate your own SPIT. This chapter also details how you can detect and  mitigate SPIT.&lt;/p&gt;&lt;/div&gt; &lt;div class="section"&gt; &lt;h4 class="sect4-title"&gt;&lt;a name="45"&gt;&lt;/a&gt;&lt;a name="wbp02introductionp91BC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt;&lt;a class="CHAPTERJUMP" href="http://www.blogger.com/0120.htm#1035" target="_parent"&gt;Chapter 15&lt;/a&gt;. "Voice  Phishing"&lt;/h4&gt; &lt;p class="FIRST-PARA"&gt;Voice phishing relies on the effective gullibility of a  victim trusting a phone number much more than an email link. Also, for a  fraction of the cost, an attacker can set up an interactive voice response  system through a VoIP provider that is harder to trace than a compromised web  server. Also, the nature of VoIP makes this type of attack even more feasible  because most VoIP services grant their customers an unlimited number of calls  for a monthly fee. This chapter details how these attacks are performed and how  to detect them at their various stages.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="CHAPTER"&gt;&lt;a name="chapter.7ddd7b1c-fe3d-40ab-b080-bf26a70360bcBC901160-BC4D-4749-8063-07FBC38AB86A"&gt;&lt;/a&gt; &lt;div class="SECTION"&gt; &lt;h2 class="FIRST-SECTION-TITLE"&gt;&lt;a name="22"&gt;&lt;/a&gt;&lt;a name="WBP02INTRODUCTIONP50"&gt;&lt;/a&gt;&lt;/h2&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-3105303029186658631?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/3105303029186658631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=3105303029186658631' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/3105303029186658631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/3105303029186658631'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/voip-security.html' title='VoIP Security'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-2877756079536026335</id><published>2008-02-27T12:49:00.003+07:00</published><updated>2008-02-27T12:53:26.073+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='toefl.barron'/><category scheme='http://www.blogger.com/atom/ns#' term='exam'/><category scheme='http://www.blogger.com/atom/ns#' term='cambridge'/><category scheme='http://www.blogger.com/atom/ns#' term='kaplan'/><category scheme='http://www.blogger.com/atom/ns#' term='TOEFL iBT'/><category scheme='http://www.blogger.com/atom/ns#' term='english'/><category scheme='http://www.blogger.com/atom/ns#' term='longman'/><title type='text'>TOEFL IBT ALL-IN-ONE (AIO)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_afOHirXMcDQ/R8T6LMYr-MI/AAAAAAAAACI/xW6_DAfRxzM/s1600-h/toeflallinone.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_afOHirXMcDQ/R8T6LMYr-MI/AAAAAAAAACI/xW6_DAfRxzM/s320/toeflallinone.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5171533342338447554" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; This package contains materials that are required for those who prepare for TOEFL-iBT exam. I have collected the materials for iBT alone. The unpacked size will be 3GB in size. The compressed one comes around 2.57GB in size.&lt;br /&gt;Contents&lt;br /&gt;Barron's TOEFL CD+ 10 Audio CDs&lt;br /&gt;Barron's passkey to the TOEFL-iBT&lt;br /&gt;Kaplan TOEFL-iBT with CD-ROM 2007-08 Edition&lt;br /&gt;Longman's TOEFL-iBT&lt;br /&gt;ETS-TOEFL official Guide+ Audio CD&lt;br /&gt;New Cambridge preparation for TOEFL&lt;br /&gt;Mastering skills for the TOEFL-iBT&lt;br /&gt;Cracking TOEFL listening&lt;br /&gt;400 Must-have Words for the TOEFL.pdf&lt;br /&gt;Answers to all TOEFL Essay Questions.pdf&lt;br /&gt;BARRONS How to Prepare For TOEFL 11ed.pdf&lt;br /&gt;English Advanced Grammar in Use.pdf&lt;br /&gt;TOEFL Exam Success In Only 6 Steps.pdf&lt;br /&gt;TOEFL Exam Essentials.pdf&lt;br /&gt;&lt;br /&gt;links&lt;br /&gt;http://rapidshare.com/files/72717703/TOEFL_IBT_AIO.part01.rar&lt;br /&gt;http://rapidshare.com/files/72718451/TOEFL_IBT_AIO.part02.rar&lt;br /&gt;http://rapidshare.com/files/72719543/TOEFL_IBT_AIO.part03.rar&lt;br /&gt;http://rapidshare.com/files/72720151/TOEFL_IBT_AIO.part04.rar&lt;br /&gt;http://rapidshare.com/files/72720794/TOEFL_IBT_AIO.part05.rar&lt;br /&gt;http://rapidshare.com/files/72721665/TOEFL_IBT_AIO.part06.rar&lt;br /&gt;http://rapidshare.com/files/72722781/TOEFL_IBT_AIO.part07.rar&lt;br /&gt;http://rapidshare.com/files/72723579/TOEFL_IBT_AIO.part08.rar&lt;br /&gt;http://rapidshare.com/files/72724306/TOEFL_IBT_AIO.part09.rar&lt;br /&gt;http://rapidshare.com/files/72725090/TOEFL_IBT_AIO.part10.rar&lt;br /&gt;http://rapidshare.com/files/72726388/TOEFL_IBT_AIO.part11.rar&lt;br /&gt;http://rapidshare.com/files/72727248/TOEFL_IBT_AIO.part12.rar&lt;br /&gt;http://rapidshare.com/files/72730800/TOEFL_IBT_AIO.part13.rar&lt;br /&gt;http://rapidshare.com/files/72731492/TOEFL_IBT_AIO.part14.rar&lt;br /&gt;http://rapidshare.com/files/72732243/TOEFL_IBT_AIO.part15.rar&lt;br /&gt;http://rapidshare.com/files/72733754/TOEFL_IBT_AIO.part16.rar&lt;br /&gt;http://rapidshare.com/files/72734829/TOEFL_IBT_AIO.part17.rar&lt;br /&gt;http://rapidshare.com/files/72735662/TOEFL_IBT_AIO.part18.rar&lt;br /&gt;http://rapidshare.com/files/72736137/TOEFL_IBT_AIO.part19.rar&lt;br /&gt;http://rapidshare.com/files/72736923/TOEFL_IBT_AIO.part20.rar&lt;br /&gt;http://rapidshare.com/files/72738031/TOEFL_IBT_AIO.part21.rar&lt;br /&gt;http://rapidshare.com/files/72738652/TOEFL_IBT_AIO.part22.rar&lt;br /&gt;http://rapidshare.com/files/72740198/TOEFL_IBT_AIO.part23.rar&lt;br /&gt;http://rapidshare.com/files/72740784/TOEFL_IBT_AIO.part24.rar&lt;br /&gt;http://rapidshare.com/files/72741347/TOEFL_IBT_AIO.part25.rar&lt;br /&gt;http://rapidshare.com/files/72742181/TOEFL_IBT_AIO.part26.rar&lt;br /&gt;http://rapidshare.com/files/72742927/TOEFL_IBT_AIO.part27.rar&lt;br /&gt;http://rapidshare.com/files/72743404/TOEFL_IBT_AIO.part28.rar&lt;br /&gt;97,280KB x 27 files + 75,317KB x 1 file [97Mb x 27 + 75Mb x 1]&lt;br /&gt;No password required.&lt;br /&gt;&lt;br /&gt;Ultra ISO enclosed for viewing CD files after installation within appropriate&lt;br /&gt;folders that require CD on drive with specific label that can not be labelled using&lt;br /&gt;Nero CD writing software [long CD label name]&lt;br /&gt;Good collection of Audio CDs , model tests with time mode, listening, writing and speaking&lt;br /&gt;practice etc.&lt;br /&gt;A good collection of pdf books are also included which are specifically for iBT tests&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-2877756079536026335?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/2877756079536026335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=2877756079536026335' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/2877756079536026335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/2877756079536026335'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/this-package-contains-materials-that.html' title='TOEFL IBT ALL-IN-ONE (AIO)'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_afOHirXMcDQ/R8T6LMYr-MI/AAAAAAAAACI/xW6_DAfRxzM/s72-c/toeflallinone.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-2640941471532840726</id><published>2008-02-27T11:42:00.001+07:00</published><updated>2008-02-27T11:57:08.651+07:00</updated><title type='text'>The Best Things in Life</title><content type='html'>&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_afOHirXMcDQ/R8TtWcYr-LI/AAAAAAAAACA/3WUMVcGSZgw/s1600-h/3773%7EThe-First-Kiss-Posters.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_afOHirXMcDQ/R8TtWcYr-LI/AAAAAAAAACA/3WUMVcGSZgw/s320/3773%7EThe-First-Kiss-Posters.jpg" alt="" id="BLOGGER_PHOTO_ID_5171519241960814770" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Falling in love.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Laughing so hard your face hurts.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A hot shower.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;No lines at the Super Wal-Mart.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A special glance.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Getting mail.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Taking a drive on a pretty road.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Hearing your favorite song on the radio.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Lying in bed listening to the rain outside.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Hot towels out of the dryer.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Finding the sweater you want is on sale for half price.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Chocolate milkshake.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A long distance phone call.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A bubble bath.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Giggling.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A good conversation.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The beach.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Finding a $20 bill in your coat from last winter.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Laughing at yourself.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Midnight phone calls that last for hours.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Running through sprinklers.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Laughing for absolutely no reason at all.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Having someone tell you that you're beautiful.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Laughing at an inside joke.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Friends.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Falling in love for the first time.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Accidentally overhearing someone say something nice about you.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Waking up and realizing you still have a few hours left to sleep.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Your first kiss.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Making new friends or spending time with old ones.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Playing with a new puppy.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Late night talks with your roommate that keep you from sleeping.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Having someone play with your hair.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Sweet dreams.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Hot chocolate.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Road trips with friends.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Swinging on swings.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Watching a good movie cuddled up on a couch with someone you love.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Wrapping presents under the Christmas tree while eating cookies and drinking eggnog.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Song lyrics printed inside your new CD so you can sing along without feeling stupid.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Going to a really good concert.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Getting butterflies in your stomach every time you see that one person.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Making eye contact with a cute stranger.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Winning a really competitive game.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Making chocolate chip cookies!&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Having your friends send you homemade cookies!&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Spending time with close friends!&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Seeing smiles and hearing laughter from your friends.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Holding hands with someone you care about.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Running into an old friend and realizing that some things (good or bad) never change.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Discovering that love is unconditional and stronger than time.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Riding the best roller coasters over and over.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Hugging the person you love.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Watching the expression someone's face as they open a much-desired present from you.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Watching the sunrise.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Getting out of bed every morning and thanking God for another beautiful day.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Having friends you know you can cry on or talk to about your deepest problems&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-2640941471532840726?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/2640941471532840726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=2640941471532840726' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/2640941471532840726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/2640941471532840726'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/best-things-in-life.html' title='The Best Things in Life'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_afOHirXMcDQ/R8TtWcYr-LI/AAAAAAAAACA/3WUMVcGSZgw/s72-c/3773%7EThe-First-Kiss-Posters.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-4418110523217794394</id><published>2008-02-27T00:18:00.002+07:00</published><updated>2008-02-27T00:23:27.223+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='princeton'/><category scheme='http://www.blogger.com/atom/ns#' term='TOEFL iBT'/><category scheme='http://www.blogger.com/atom/ns#' term='english'/><title type='text'>The Princeton Review
Cracking the TOEFL 2007 edition</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_afOHirXMcDQ/R8RKosYr-KI/AAAAAAAAAB0/REUjQd_OW14/s1600-h/crackibttoefl.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp3.blogger.com/_afOHirXMcDQ/R8RKosYr-KI/AAAAAAAAAB0/REUjQd_OW14/s320/crackibttoefl.jpg" alt="" id="BLOGGER_PHOTO_ID_5171340335098099874" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Author:&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:85%;"&gt; Douglas Pierce, Sean Kinsell&lt;br /&gt;&lt;b&gt;Publisher:&lt;/b&gt; Princeton&lt;br /&gt;&lt;b&gt;File size:&lt;/b&gt; 60.3 + 57 Mb&lt;br /&gt;&lt;b&gt;File type:&lt;/b&gt; pdf in rar&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;index&gt;&lt;/index&gt;&lt;span style="color: rgb(128, 0, 0);font-size:130%;" &gt;&lt;strong&gt;The Princeton Review&lt;/strong&gt;&lt;/span&gt;  &lt;div&gt;&lt;span style="color: rgb(128, 0, 0);font-size:130%;" &gt;&lt;strong&gt;Cracking the TOEFL 2007 edition&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;In Cracking the TOEFL iBT, The Princeton Review will teach you how to&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;·Use our preparation strategies and test-taking techniques to raise your score&lt;br /&gt; ·Focus your reading and listening to identify the key parts of passages, lectures, and conversations&lt;br /&gt; ·Improve your command of spoken English and your use of good English grammar and vocabulary&lt;br /&gt; ·Write top-scoring essays by responding to the specific question asked and organizing your ideas clearly&lt;br /&gt; ·Test your knowledge with review questions and practice drills for each topic covered&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;All of our practice test questions are just like those on the actual exam, and we explain how to answer every question.&lt;/span&gt;&lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Download: &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 205);"&gt;The book:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://mihd.net/0fo2ci"&gt;http://mihd.net/0fo2ci&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;or&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://rapidshare.com/files/75766243/PT8.rar"&gt;http://rapidshare.com/files/75766243/PT8.rar&lt;/a&gt;&lt;br /&gt;&lt;/span&gt; &lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt;&lt;span style="color: rgb(0, 0, 205);font-size:100%;" &gt;&lt;strong&gt;Audio CD:&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://www.vanandy.com/plus/download.php?open=1&amp;amp;link=L3VwaW1nL3NvZnQvMjAwNzAzMjcwMDU0LnJhcg%3D%3D"&gt;http://www.vanandy.com/plus/download.php?open=1&amp;amp;link=L3VwaW1nL3NvZnQvMjAwNzAzMjcwMDU0LnJhcg%3D%3D&lt;/a&gt;&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="font-size:100%;"&gt;or&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="color: rgb(0, 0, 0);font-size:100%;" &gt;&lt;a href="http://rapidshare.com/files/75839765/200703270054.rar"&gt;http://rapidshare.com/files/75839765/200703270054.rar&lt;/a&gt; &lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-4418110523217794394?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/4418110523217794394/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=4418110523217794394' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/4418110523217794394'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/4418110523217794394'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/princeton-review-cracking-toefl-2007.html' title='The Princeton Review&#xA;Cracking the TOEFL 2007 edition'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_afOHirXMcDQ/R8RKosYr-KI/AAAAAAAAAB0/REUjQd_OW14/s72-c/crackibttoefl.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-5265547880306872182</id><published>2008-02-27T00:06:00.001+07:00</published><updated>2008-02-27T00:14:50.126+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Intermediate.advanced'/><category scheme='http://www.blogger.com/atom/ns#' term='TOEFL iBT'/><category scheme='http://www.blogger.com/atom/ns#' term='english'/><title type='text'>Developing Skills for the TOEFL iBT</title><content type='html'>&lt;div&gt;&lt;span style="font-weight: bold; font-size: 12pt; color: rgb(0, 0, 205);"&gt;Developing Skills for the TOEFL iBT&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;span style="font-weight: bold; font-size: 12pt; color: rgb(0, 0, 205);"&gt;(Intermediate)&lt;/span&gt;&lt;br /&gt;Developing Skills for the iBT TOEFL continues the Compass graded test preparation course designed to hone the test-taking skills required of students who will take the TOEFL iBT administered by ETS. In this second book of the series, students will be able to familiarize themselves with innovative question types found on the TOEFL iBT test in addtion to practicing suggested tips and skills designed to increase their test scores in all four skill-based test sections: reading, listening, speaking, and writing.&lt;br /&gt; Download here &lt;span style="font-size: 18pt; color: rgb(255, 0, 0);"&gt;10 CDs&lt;br /&gt;  &lt;/span&gt;&lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt;&lt;strong&gt;&lt;span style="font-size: 10pt; color: rgb(128, 0, 0);"&gt;Download: &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt; &lt;div&gt;Free downloading:&lt;/div&gt; &lt;div&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 205);"&gt;Writing: 1CD - 20 MB&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt; &lt;a href="http://www.compasspub.com/mp3file/Developing_Writing.zip"&gt;http://www.compasspub.com/mp3file/Developing_Writing.zip&lt;/a&gt;&lt;/div&gt; &lt;div&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 205);"&gt;Speaking: 2CD - 54 MB&lt;br /&gt;   &lt;/span&gt;&lt;/strong&gt;&lt;a href="http://www.compasspub.com/mp3file/Developing_Speaking.zip"&gt;http://www.compasspub.com/mp3file/Developing_Speaking.zip&lt;/a&gt;&lt;/div&gt; &lt;div&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 205);"&gt;Listening: 6CD - 155 MB&lt;br /&gt;   &lt;/span&gt;&lt;/strong&gt;&lt;a href="http://www.compasspub.com/mp3file/Developing_Listening.zip"&gt;http://www.compasspub.com/mp3file/Developing_Listening.zip&lt;/a&gt;&lt;/div&gt; &lt;div&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 205);"&gt;Answer keys-Transcript&lt;br /&gt;   &lt;/span&gt;&lt;/strong&gt;&lt;a href="http://www.compasspub.com/korean/support/AnswerKey/?goodkey=524"&gt;http://www.compasspub.com/korean/support/AnswerKey/?goodkey=524&lt;/a&gt;&lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt;&lt;strong&gt;&lt;span style="color: rgb(128, 0, 128);"&gt;Mirrors:&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt; &lt;div&gt;&lt;a href="http://rapidfolder.com/?T9BN6"&gt;http://rapidfolder.com/?T9BN6&lt;/a&gt; &lt;/div&gt; &lt;div&gt;or&lt;/div&gt; &lt;div&gt;&lt;a href="http://mihd.net/t08kyg"&gt;http://mihd.net/t08kyg&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/5bkrde"&gt;http://mihd.net/5bkrde&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/42o3qa"&gt;http://mihd.net/42o3qa&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/vemwp4"&gt;http://mihd.net/vemwp4&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/jp7f69"&gt;http://mihd.net/jp7f69&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/ozst92"&gt;http://mihd.net/ozst92&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/isch6v"&gt;http://mihd.net/isch6v&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/5ed8k9"&gt;http://mihd.net/5ed8k9&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/nlxekv"&gt;http://mihd.net/nlxekv&lt;/a&gt;&lt;br /&gt; &lt;a href="http://mihd.net/uc4qve"&gt;http://mihd.net/uc4qve&lt;/a&gt;&lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt;&lt;strong&gt;&lt;span style="font-size: 24pt; color: rgb(255, 0, 0);"&gt;+&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt; &lt;div&gt;  &lt;img alt="alt" src="http://www.ndcsa.com/newsmedia/vieboard/2007/Mastering_skills_TOELF_iBT.jpg" border="0" /&gt;&lt;br /&gt; &lt;strong&gt;&lt;span style="font-size: 10pt; color: rgb(255, 0, 0);"&gt;Mastering Skills for the TOEFL iBT (2006)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt; &lt;div&gt;&lt;strong&gt;&lt;span style="font-size: 10pt; color: rgb(255, 0, 0);"&gt;(Advanced)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt; &lt;div&gt;Writing: 1CD - 23.46 MB&lt;br /&gt; &lt;a href="http://www.compasspub.com/mp3file/Mastering_Writing.zip"&gt;http://www.compasspub.com/mp3file/Mastering_Writing.zip&lt;/a&gt;&lt;/div&gt; &lt;div&gt;Speaking: 2CD - 57 MB&lt;br /&gt; &lt;a href="http://www.compasspub.com/mp3file/Mastering_Speaking.zip"&gt;http://www.compasspub.com/mp3file/Mastering_Speaking.zip&lt;/a&gt;&lt;/div&gt; &lt;div&gt;Listening: 6CD - 196.8 MB&lt;br /&gt; &lt;a href="http://www.compasspub.com/mp3file/Mastering_Listening.zip"&gt;http://www.compasspub.com/mp3file/Mastering_Listening.zip&lt;/a&gt;&lt;/div&gt; Answer keys-Transcript&lt;br /&gt; &lt;a href="http://www.compasspub.com/korean/support/AnswerKey/?goodkey=525"&gt;http://www.compasspub.com/korean/support/AnswerKey/?goodkey=52&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-5265547880306872182?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/5265547880306872182/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=5265547880306872182' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/5265547880306872182'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/5265547880306872182'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/developing-skills-for-toefl-ibt.html' title='Developing Skills for the TOEFL iBT'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-2578884816039041716</id><published>2008-02-26T00:21:00.000+07:00</published><updated>2008-02-26T00:22:15.767+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='FoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='PSTN'/><category scheme='http://www.blogger.com/atom/ns#' term='VoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='fax over IP'/><category scheme='http://www.blogger.com/atom/ns#' term='fax'/><title type='text'>Fax Over IP (Part II)</title><content type='html'>&lt;span style="font-weight: bold;"&gt;  FoIP Software Architecture&lt;/span&gt;&lt;br /&gt;The facsimile interface unit (FIU) is the software module that resides within a&lt;br /&gt;FoIP IWF. It demodulates voiceband signals from an analog interface and&lt;br /&gt;converts them to a digital format suitable for transport over a packet network. It&lt;br /&gt;also remodulates data received from the packet network and transmits it to the&lt;br /&gt;analog interface. In doing so, the FIU performs protocol conversion between&lt;br /&gt;Group-3 facsimile protocols and the digital facsimile protocol employed over the&lt;br /&gt;packet network.&lt;br /&gt;The FIU, shown in Figure 10, consists of the following three units:&lt;br /&gt;fax-modem unit (FM)—This processes PCM samples based on the current&lt;br /&gt;modulation mode and supports the following functions:&lt;br /&gt;       •  V.21 Channel 2 (300 bps) binary signaling modulation and&lt;br /&gt;          demodulation&lt;br /&gt;       •  high-level data link control (HDLC) framing (0 bit insertion/removal,&lt;br /&gt;          cyclic redundancy check (CRC) generation/checking)&lt;br /&gt;       •  V.27 ter (2400/4800 bps) high-speed data modulation and&lt;br /&gt;          demodulation&lt;br /&gt;       •  V.29 (7200/9600 bps) high-speed data modulation and demodulation&lt;br /&gt;       •  V.17 (7200/9600/12000/14400 bps) high-speed data modulation and&lt;br /&gt;          demodulation&lt;br /&gt;       •  V.33 (12000/14400 bps) high-speed modulation and demodulation&lt;br /&gt;       •  CED detection and generation&lt;br /&gt;       •  CNG detection and generation&lt;br /&gt;       •  V.21 Channel-2 detection&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-2578884816039041716?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/2578884816039041716/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=2578884816039041716' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/2578884816039041716'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/2578884816039041716'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/fax-over-ip-part-ii.html' title='Fax Over IP (Part II)'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-627294875026295634</id><published>2008-02-25T14:30:00.001+07:00</published><updated>2008-02-26T23:33:51.111+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='job letter'/><category scheme='http://www.blogger.com/atom/ns#' term='application form'/><category scheme='http://www.blogger.com/atom/ns#' term='VITAE'/><category scheme='http://www.blogger.com/atom/ns#' term='CURRICULUM'/><title type='text'>CURRICULUM VITAE</title><content type='html'>CURRICULUM VITAE&lt;br /&gt;&lt;br /&gt;--------- &amp;amp; --------&lt;br /&gt;&lt;br /&gt;Personal information:&lt;br /&gt;Full name :&lt;br /&gt;Data of birth :&lt;br /&gt;Place of birth :&lt;br /&gt;Sex : Male&lt;br /&gt;Address :&lt;br /&gt;Mobil :&lt;br /&gt;Email :&lt;br /&gt;Education:&lt;br /&gt;From 2002-2007: Study in Hanoi university of technology, specialized in Printing technology.&lt;br /&gt;From 1998- 2001 : Study in Le Hong Phong High School, Nam Dinh, in gifted class of computer studies&lt;br /&gt;Job objectives:&lt;br /&gt;Have an opportunity to work in a professional and active environment.&lt;br /&gt;Find a challenging position that meets my capabilities, skills, education and experience to have a chance to prove myself.&lt;br /&gt;Learn from experienced and talented colleagues.&lt;br /&gt;Capacities:&lt;br /&gt;Professional knowledge: good background of Printing, Information Technology.&lt;br /&gt;Language skills: fluent at English.&lt;br /&gt;Computer skills: good command of information technology, especially skilled in graphic software: Photoshop, Corel. Can use some office tools such as Word, Excel and PowerPoint.&lt;br /&gt;Communication skills: open-minded, easy to make friend.&lt;br /&gt;Have an inquiring min, always look for challenges, highly responsible.&lt;br /&gt;Be willing to learn and work hard under great pressure and far from home.&lt;br /&gt;Interest:&lt;br /&gt;Like everything about Printing technology, graphic art.&lt;br /&gt;Make friends&lt;br /&gt;Read about science and economics&lt;br /&gt;Explore the internet&lt;br /&gt;&lt;br /&gt;It is acknowledged that all the information stated above is absolutely true and correct. For further information, I would be very pleased to be contacted at:&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-627294875026295634?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/627294875026295634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=627294875026295634' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/627294875026295634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/627294875026295634'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/curriculum-vitae.html' title='CURRICULUM VITAE'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-1524905357092254555</id><published>2008-02-25T14:09:00.004+07:00</published><updated>2008-02-25T14:22:08.494+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Who moved my cheese'/><category scheme='http://www.blogger.com/atom/ns#' term='spence Johnson'/><category scheme='http://www.blogger.com/atom/ns#' term='truyện'/><category scheme='http://www.blogger.com/atom/ns#' term='story'/><category scheme='http://www.blogger.com/atom/ns#' term='book'/><title type='text'>Who moved my cheese</title><content type='html'>(Who moved my cheese)-Dr Spence Johnson&lt;br /&gt;Parts of All of Us&lt;br /&gt;The Simple and The Complex&lt;br /&gt;The four imaginary characters depicted in this story the mice: "Sniff" and "Scurry;' and the Little people: "Hem" and "Haw" are intended to represent the simple and the complex parts of ourselves, regardless of our age, gender, race or nationality.&lt;br /&gt;Sometimes we may act like:&lt;br /&gt;Sniff : Who sniffs out change early, or&lt;br /&gt;Scurry: Who scurries into action, or&lt;br /&gt;Hem :Who denies and resists change as he fears it will lead to something worse, or&lt;br /&gt;Haw : Who learns to adapt in time when he sees changing can lead to something better!&lt;br /&gt;Whatever parts of us we choose to use,we all share something in common:&lt;br /&gt;a need to find our way in the Maze&lt;br /&gt;and succeed in changing times.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-1524905357092254555?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/1524905357092254555/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=1524905357092254555' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/1524905357092254555'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/1524905357092254555'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/who-moved-my-cheese.html' title='Who moved my cheese'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-5295029165902641721</id><published>2008-02-22T16:48:00.001+07:00</published><updated>2008-02-26T00:13:29.488+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mysql_connect'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='php5'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='connect'/><category scheme='http://www.blogger.com/atom/ns#' term='apache'/><category scheme='http://www.blogger.com/atom/ns#' term='database'/><title type='text'>Connect PHP and MySQL</title><content type='html'>Create file &lt;span style="font-weight: bold;"&gt;db_connect.php&lt;/span&gt;&lt;br /&gt; db_connect.php content:&lt;br /&gt;$host=localhost ;Mysql -server hostname&lt;br /&gt;$user=root;// user privileges for mysql&lt;br /&gt;$pass=password ;// User password&lt;br /&gt;$port=3306;// Mysql port,common is 3306&lt;br /&gt;mysql_connect($host,$user,$pass) or die ("could not connect to databases");&lt;br /&gt;?&gt;&lt;br /&gt;And then,in other PHP file just add line&lt;br /&gt;include("db_connect.php");&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-5295029165902641721?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/5295029165902641721/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=5295029165902641721' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/5295029165902641721'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/5295029165902641721'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/connect-php-and-mysql-kt-ni-php-vi.html' title='Connect PHP and MySQL'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-8671197421744853887</id><published>2008-02-21T19:55:00.001+07:00</published><updated>2008-02-26T00:07:25.266+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web server'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='php5'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='apache'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Installling Apache PHP MySQL on Ubuntu</title><content type='html'>&lt;h3 class="post-title entry-title"&gt; &lt;a href="http://nhakhtn.blogspot.com/2007/05/install-apache-and-php-5.html"&gt;Install Apache and PHP 5&lt;/a&gt; &lt;/h3&gt;   &lt;h3 style="font-family: arial; font-weight: bold;"&gt;&lt;span style="font-size: 100%;"&gt; Apache HTTP Server&lt;/span&gt;&lt;/h3&gt;&lt;span style="font-family: arial; font-size: 100%;"&gt;from terminal type:&lt;br /&gt;sudo apt-get install apache2&lt;br /&gt;start Apache server:&lt;br /&gt;sudo /etc/init.d/apache2 start&lt;br /&gt;from web browser type into adress bar: localhost &lt;enter&gt;&lt;br /&gt;&lt;/enter&gt;&lt;/span&gt;&lt;h3 style="font-family: arial; font-weight: normal;"&gt;&lt;span style="font-size: 100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;&lt;h3 style="font-family: arial; font-weight: bold;"&gt;&lt;span style="font-size: 100%;"&gt;How to install PHP 5&lt;/span&gt;&lt;/h3&gt;&lt;pre style="font-family: arial;"&gt;&lt;span style="font-size: 100%;"&gt;sudo apt-get install php5&lt;br /&gt;sudo apt-get install libapache2-mod-php5&lt;br /&gt;sudo /etc/init.d/apache2 restart&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size: 100%;"&gt;To test if PHP 5 installed correctly&lt;/span&gt;&lt;span style="font-size: 100%;"&gt;&lt;br /&gt;sudo gedit /var/www/testphp.php&lt;br /&gt;insert following line :&lt;br /&gt;&lt;br /&gt;save and exit.&lt;br /&gt;from web browser type to adress bar: localhost/testphp.php &lt;enter&gt;&lt;br /&gt;If that didn't work, try these commands:&lt;br /&gt;sudo a2enmod php5&lt;br /&gt;sudo /etc/init.d/apache2 force-reload&lt;br /&gt;(Optional) Install recommended PHP5 modules:&lt;br /&gt;sudo apt-get install php5-xsl php5-gd php-pear&lt;br /&gt;Restart Apache&lt;br /&gt;sudo /etc/init.d/apache2 restart&lt;br /&gt;&lt;br /&gt;The root directory of your web server is /var/www/ so you must&lt;br /&gt;place your projects in this folder.&lt;br /&gt;&lt;br /&gt;&lt;/enter&gt;&lt;/span&gt;&lt;h4 style="font-family: arial;"&gt;&lt;span style="font-size: 100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h4&gt;&lt;h4 style="font-family: arial;"&gt;&lt;span style="font-size: 100%;"&gt;&lt;span style="font-family: arial; font-weight: bold; font-size: 100%;"&gt;How to install MYSQL for Apache HTTP Server&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h4&gt;&lt;pre style="font-family: arial;"&gt;&lt;span style="font-size: 100%;"&gt;sudo apt-get install mysql-server&lt;br /&gt;gksudo gedit /etc/mysql/my.cnf&lt;br /&gt;Find the line &lt;i&gt;bind-address = 127.0.0.1&lt;/i&gt; and comment it out&lt;br /&gt;...&lt;br /&gt;#bind-address           = 127.0.0.1&lt;br /&gt;...&lt;br /&gt;sudo /etc/init.d/mysql restart&lt;br /&gt;&lt;br /&gt;sudo apt-get install libapache2-mod-auth-mysql&lt;br /&gt;sudo apt-get install php5-mysql&lt;br /&gt;sudo aptitude install phpmyadmin&lt;br /&gt;gksudo gedit /etc/php&lt;version&gt;/apache2/php.ini&lt;br /&gt;You'll need to uncomment the ";extension=mysql.so" line so that&lt;br /&gt;it looks like this&lt;br /&gt;...&lt;br /&gt;extension=mysql.so&lt;br /&gt;...&lt;br /&gt;from web browser type: &lt;a href="http://localhost/phpmyadmin" class="external free" title="http://localhost/phpmyadmin" rel="nofollow"&gt;http://localhost/phpmyadmin&lt;/a&gt;&lt;newpassword&gt;&lt;br /&gt;&lt;/newpassword&gt;&lt;/version&gt;&lt;/span&gt;&lt;/pre&gt;&lt;span style="font-family: arial; font-size: 100%;"&gt; &lt;/span&gt;&lt;pre style="font-family: arial;"&gt;&lt;span style="font-size: 100%;"&gt;&lt;enter&gt;&lt;span style="font-size: 100%;"&gt;&lt;span style="font-family: arial;"&gt;sources from http://ubuntuguide.org/wiki/Ubuntu&lt;/span&gt;&lt;/span&gt;&lt;/enter&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-8671197421744853887?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/8671197421744853887/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=8671197421744853887' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/8671197421744853887'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/8671197421744853887'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/installling-apache-php-mysql-on-ubuntu.html' title='Installling Apache PHP MySQL on Ubuntu'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-3570194607986233302</id><published>2008-02-21T11:05:00.001+07:00</published><updated>2008-02-26T00:04:36.280+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IPPBX'/><category scheme='http://www.blogger.com/atom/ns#' term='Install Asterisk'/><category scheme='http://www.blogger.com/atom/ns#' term='PSTN'/><category scheme='http://www.blogger.com/atom/ns#' term='VoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='asterisk'/><category scheme='http://www.blogger.com/atom/ns#' term='PBX'/><title type='text'>Installing Asterisk</title><content type='html'>&lt;b&gt;&lt;u&gt;Compiling Asterisk on most Linux distributions&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;&lt;div class="dash"&gt; &lt;/div&gt;&lt;br /&gt;Accomplish this by opening the folder in which the source codes were extracted (if you are using tarball files), or go to the &lt;i&gt;/usr/src/asterisk&lt;/i&gt; folder (if using CVS server) to get the required packages.&lt;br /&gt;&lt;br /&gt;To go to this directory, see example:&lt;div class="tab"&gt;&lt;br /&gt;#cd /usr/src/asterisk&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Once here, the final step is to compile:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;Important&lt;/u&gt;&lt;/b&gt;: Follow this installation order: libpri, zaptel, asterisk&lt;br /&gt;&lt;br /&gt;&lt;b&gt;-Installing &lt;i&gt;libpri&lt;/i&gt;&lt;/b&gt;&lt;div class="tab"&gt;&lt;br /&gt;#cd /usr/src/asterisk/libpri&lt;br /&gt;#make clean&lt;br /&gt;#make&lt;br /&gt;#make install&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;-Installing &lt;i&gt;zaptel&lt;/i&gt;&lt;/b&gt;&lt;div class="tab"&gt;&lt;br /&gt;#cd /usr/src/asterisk/zaptel&lt;br /&gt;#make clean&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt; If you are using kernel 2.6 enter the following command '#make linux26', before doing '#make install'.&lt;br /&gt;&lt;br /&gt;#make install&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;-Installing &lt;i&gt;asterisk&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;#cd /usr/src/asterisk/asterisk&lt;br /&gt;#make clean&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt; If you want to use a mp3 files for music-on-hold enter the following command '#make mpg123', before doing '#make install'.&lt;br /&gt;&lt;br /&gt;#make install&lt;br /&gt;&lt;br /&gt;If this is your first installation perform 'make samples' to install sample&lt;br /&gt;&lt;br /&gt;(asteriskguru.com)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-3570194607986233302?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/3570194607986233302/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=3570194607986233302' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/3570194607986233302'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/3570194607986233302'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/ci-t-asterisk-installing-asterisk.html' title='Installing Asterisk'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-7027322428843024492</id><published>2008-02-21T10:53:00.001+07:00</published><updated>2008-02-26T00:20:43.954+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='FoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='PSTN'/><category scheme='http://www.blogger.com/atom/ns#' term='VoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='fax over IP'/><category scheme='http://www.blogger.com/atom/ns#' term='fax'/><title type='text'>Fax Over IP (Part I)</title><content type='html'>Traditionally, there have been two approaches for sending FoIP networks:&lt;br /&gt; real-time methods and store-and-forward methods. The primary difference in service between these two approaches lies in the delivery and method of receipt&lt;br /&gt;confirmation. The Frame Relay Forum has defined a real-time protocol for the&lt;br /&gt;transmission of fax-over–frame relay networks. Likewise, the ITU and Internet&lt;br /&gt;Engineering Task Force (IETF) are working together to continue to evolve both&lt;br /&gt;the real-time FoIP network standard (T.38) as well as the store-and-forward FoIP&lt;br /&gt;network standard (T.37). Both T.37 and T.38 were approved by the ITU in June,&lt;br /&gt;1998. Furthermore, T.38 is the fax transmission protocol selected for H.323.&lt;br /&gt;There are tremendous opportunities for cost savings by transmitting fax calls&lt;br /&gt;over packet networks. Fax data in its original form is digital. However, it is&lt;br /&gt;modulated and converted to analog for transmission over the PSTN. This analog&lt;br /&gt;form uses 64 kbps of bandwidth in both directions.&lt;br /&gt;&lt;span style="font-weight: bold;font-size:180%;" &gt;FoIP QoS&lt;/span&gt;&lt;br /&gt;The advantages of reduced cost and bandwidth savings of carrying FoIP networks are associated with some QoS issues that are unique to packet networks and can affect the reliability of the fax transmission.&lt;br /&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;Timing&lt;/span&gt;&lt;br /&gt; A major issue in the implementation of FoIP networks is the problem of&lt;br /&gt;inaccurate timing of messages caused by delay through the network. The delay of fax packets through a packet network causes the precise timing that is required for many portions of the fax protocol to be skewed and can result in the loss of the call. The FoIP protocol in the IWF must compensate for the loss of a fixed timing of messages over the packet network so that the T.30 protocol operates without error.&lt;br /&gt;There are two sources of delay in an end-to-end, FoIP call: network delay and&lt;br /&gt;processing delay.&lt;br /&gt;        •   &lt;span style="font-weight: bold;"&gt;network delay&lt;/span&gt;—This is caused by the physical medium and protocols&lt;br /&gt;            that are used to transmit the fax data and by buffers used to remove&lt;br /&gt;            packet jitter on the receiving end. This delay is a function of the&lt;br /&gt;            capacity of the links in the network and the processing that occurs as&lt;br /&gt;            the packets transit the network. The jitter buffers add delay when they&lt;br /&gt;            remove the packet-delay variation of each packet as it transits the&lt;br /&gt;            packet network. This delay can be a significant part of the overall delay,&lt;br /&gt;            as packet-delay variations can be as high as 70 to 100 milliseconds in&lt;br /&gt;            some frame-relay networks and even higher in IP networks.&lt;br /&gt;        •   &lt;span style="font-weight: bold;"&gt;processing delay&lt;/span&gt;—This is caused by the process of demodulating and&lt;br /&gt;            collecting the digital fax information into a packet for transmission&lt;br /&gt;            over the packet network. The encoding delay is a function of both the&lt;br /&gt;            processor execution time and the amount of data collected before&lt;br /&gt;            sending a packet to the network. Low-speed data, for instance, is&lt;br /&gt;            usually sent out with a single byte per packet, as the time to collect a&lt;br /&gt;            byte of information at 300 bps is 30 milliseconds.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Jitter&lt;/span&gt;&lt;br /&gt;Delay issues are compounded by the need to remove jitter, a variable interpacket  timing caused by the network that a packet traverses. An approach to removing the jitter is to collect packets and hold them long enough so that the slowest packets to arrive are still in time to be played in the correct sequence. This approach, however, causes additional delay. In most FoIP protocols, a time stamp is incorporated in the packet to ensure that the information is played out at the proper instant.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Lost-Packet Compensation&lt;/span&gt;&lt;br /&gt;Lost packets can be an even more severe problem, depending on the type of&lt;br /&gt;packet network that is being used. In a VoIP application, the loss of packets can&lt;br /&gt;be addressed by replaying last packets and other methods of interpolation. A&lt;br /&gt;FoIP application, however, has more severe constraints on the loss of data, as the fax protocol can fail if information is lost. This problem varies, depending on the type of fax machine used and whether error-correction mode is enabled.&lt;br /&gt;Two schemes that are used by FoIP software to address the problems of lost&lt;br /&gt;frames are as follows:&lt;br /&gt;        •   repeating information in subsequent frames so that the error can be&lt;br /&gt;            corrected by the receiver's playout mechanism&lt;br /&gt;        •   using an error-correcting protocol such as TCP to transport the fax data&lt;br /&gt;            at the expense of added delay&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-7027322428843024492?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/7027322428843024492/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=7027322428843024492' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/7027322428843024492'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/7027322428843024492'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/truyn-kim-hip-trn-my-di-ng.html' title='Fax Over IP (Part I)'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4255469787327441327.post-2651765647004139256</id><published>2008-02-21T10:38:00.002+07:00</published><updated>2008-02-26T00:26:19.603+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IPPBX'/><category scheme='http://www.blogger.com/atom/ns#' term='voicemail.'/><category scheme='http://www.blogger.com/atom/ns#' term='PSTN'/><category scheme='http://www.blogger.com/atom/ns#' term='VoIP'/><category scheme='http://www.blogger.com/atom/ns#' term='asterisk'/><category scheme='http://www.blogger.com/atom/ns#' term='PBX'/><category scheme='http://www.blogger.com/atom/ns#' term='hacking'/><title type='text'>Asterisk Hacking</title><content type='html'>Today,Asterisk become the most wide use solution for IP PBX.With Asterisk and one old PC ,you can building one system with many Application as:voicemail,Call forwarding,Music on hold,Call conferencing,v.vv.&lt;br /&gt;So,you might be read this book,it;s truly useful for me when I'm development A NGN system called by Unified Messaging.I hope it can help you,too.Thank you.&lt;br /&gt;&lt;br /&gt;&lt;table style="border: 1px solid rgb(53, 53, 53); padding: 0px; background-color: rgb(93, 124, 186); font-family: Arial,Helvetica,sans-serif; font-size: 11px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;a href="http://www.esnips.com/doc/1233ed45-6c87-4763-96c2-634883c30fc5/Syngress-Asterisk-Hacking-May-2007-eBook/?widget=documentIcon"&gt;&lt;img alt="Syngress Asterisk Hacking May 2007 eBook" title="click to ViewSyngress Asterisk Hacking May 2007 eBook" src="http://www.blogger.com/images/thumbs/thumb.pdf.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="background-color: rgb(255, 255, 255);"&gt;&lt;td style="padding: 5px;" align="center"&gt;&lt;strong&gt;&lt;a style="color: rgb(51, 51, 51);" href="http://www.esnips.com/doc/1233ed45-6c87-4763-96c2-634883c30fc5/Syngress-Asterisk-Hacking-May-2007-eBook/?widget=documentIcon"&gt;Syngress Asterisk ...&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="padding: 5px; font-size: 9px; color: rgb(255, 255, 255);" valign="bottom"&gt;Hosted by &lt;a href="http://www.esnips.com/" style="color: rgb(255, 255, 255);"&gt;eSnips&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4255469787327441327-2651765647004139256?l=vietebook.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vietebook.blogspot.com/feeds/2651765647004139256/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4255469787327441327&amp;postID=2651765647004139256' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/2651765647004139256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4255469787327441327/posts/default/2651765647004139256'/><link rel='alternate' type='text/html' href='http://vietebook.blogspot.com/2008/02/asterisk-hacking.html' title='Asterisk Hacking'/><author><name>Dark Prince</name><uri>http://www.blogger.com/profile/05136804472210585854</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://bp0.blogger.com/_afOHirXMcDQ/R8LnIcYr-JI/AAAAAAAAABo/ANP6LK5NDKw/S220/1-1.jpg'/></author><thr:total>0</thr:total></entry></feed>
