<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>YoshiLounge</title>
	<atom:link href="http://yoshilounge.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://yoshilounge.wordpress.com</link>
	<description>a few words would explain anything</description>
	<lastBuildDate>Tue, 29 Mar 2011 06:39:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='yoshilounge.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>YoshiLounge</title>
		<link>http://yoshilounge.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://yoshilounge.wordpress.com/osd.xml" title="YoshiLounge" />
	<atom:link rel='hub' href='http://yoshilounge.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Stop the transaction log of a SQL Server from growing unexpectedly</title>
		<link>http://yoshilounge.wordpress.com/2008/12/05/stop-the-transaction-log-of-a-sql-server-from-growing-unexpectedly/</link>
		<comments>http://yoshilounge.wordpress.com/2008/12/05/stop-the-transaction-log-of-a-sql-server-from-growing-unexpectedly/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 05:08:48 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://yoshilounge.wordpress.com/?p=30</guid>
		<description><![CDATA[In SQL Server 2000 and in SQL Server 2005, each database contains at least one data file and one transaction log file. SQL Server stores the data physically in the data file. The transaction log file stores the details of all the modifications that you perform on your SQL Server database and the details of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=30&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In SQL Server 2000 and in SQL Server 2005, each database contains at least one data file and one transaction log file. SQL Server stores the data physically in the data file. The transaction log file stores the details of all the modifications that you perform on your SQL Server database and the details of the transactions that performed each modification. Because the transactional integrity is considered a fundamental and intrinsic characteristic of SQL Server, logging the details of the transactions cannot be turned off in SQL Server.</p>
<p>The transaction log file is logically divided into smaller segments that are referred to as virtual log files. In SQL Server 2000, you can configure the transaction log file to expand as needed. The transaction log expansion can be governed by the user or can be configured to use all the available disk space. Any modifications that SQL Server makes to the size of the transaction log file, such as truncating the transaction log files or growing the transaction log files, are performed in units of virtual log files.</p>
<p>If the transaction log file that corresponds to a SQL Server database is filled and if you have set the option for the transaction log files to grow automatically, the transaction log file grows in units of virtual log files. Sometimes, the transaction log file may become very large and you may run out of disk space. When a transaction log file grows until the log file uses all the available disk space and cannot expand any more, you can no longer perform any data modification operations on your database. Additionally, SQL Server may mark your database as suspect because of the lack of space for the transaction log expansion.</p>
<p><strong><span class="clsTitle">Reduce the size of the transaction logs</span></strong></p>
<p>To recover from a situation where the transaction logs grow to an unacceptable limit, you must reduce the size of the transaction logs. To do this, you must truncate the inactive transactions in your transaction log and shrink the transaction log file.</p>
<p><strong>Note</strong> The transaction logs are very important to maintain the transactional integrity of the database. Therefore, you must not delete the transaction log files even after you make a backup of your database and the transaction logs.</p>
<p><strong><span class="clsTitle">Truncate the inactive transactions in your transaction log</span></strong></p>
<p>When the transaction logs grow to an unacceptable limit, you must immediately back up your transaction log file. While the backup of your transaction log files is created, SQL Server automatically truncates the inactive part of the transaction log. The inactive part of the transaction log file contains the completed transactions, and therefore, the transaction log file is no longer used by SQL Server during the recovery process. SQL Server reuses this truncated, inactive space in the transaction log instead of permitting the transaction log to continue to grow and to use more space.</p>
<p>You can also delete the inactive transactions from a transaction log file by using the <strong>Truncate</strong> method.</p>
<p><strong>Important</strong> After you manually truncate the transaction log files, you must create a full database backup before you create a transaction log backup.</p>
<p><strong><span class="clsTitle">Shrink the transaction log file</span></strong></p>
<p>The backup operation or the <strong>Truncate</strong> method does not reduce the log file size. To reduce the size of the transaction log file, you must shrink the transaction log file. To shrink a transaction log file to the requested size and to remove the unused pages, you must use the DBCC SHRINKFILE operation. The DBCC SHRINKFILE Transact-SQL statement can only shrink the inactive part inside the log file.</p>
<p><strong>Note</strong> The DBCC SHRINKFILE Transact-SQL statement cannot truncate the log and  shrink the used space inside the log file on its own.</p>
<p><strong><span class="clsTitle">Prevent the  transaction log files from growing unexpectedly</span></strong></p>
<p>To prevent the  transaction log files from growing unexpectedly, consider using one of the following methods:</p>
<ul>
<li>Set the size of the transaction log files to a large value to avoid the automatic expansion of the transaction log files.</li>
<li> Configure the automatic expansion of transaction log files by using memory units instead of a percentage after you thoroughly evaluate the optimum memory size.</li>
<li>Change the recovery model. If a disaster or data corruption occurs, you must recover your database so that the data consistency and the transactional integrity of the database are maintained. Based on how critical the data in your database is, you can use one of the following recovery models to determine how your data is backed up and what your exposure to the data loss is:
<ul>
<li>Simple recovery model</li>
<li>Full recovery model</li>
<li>Bulk-logged recovery model</li>
</ul>
<p>By using the simple recovery model, you can recover your database to the most recent backup of your database. By using the full recovery model or the bulk-logged recovery model, you can recover your database to the point when the failure occurred by restoring your database with the transaction log file backups.</p>
<p>By default, in SQL Server 2000 and in SQL Server 2005, the recovery model for a SQL Server database is set to the Full recovery model. With the full recovery model, regular backups of the transaction log are used to prevent the transaction log file size from growing out of proportion to the database size. However, if the regular backups of the transaction log are not performed, the transaction log file grows to fill the disk, and you may not be able to perform any data modification operations on the SQL Server database.</p>
<p>You can change the recovery model from full to simple if you do not want to use the transaction log files during a disaster recovery operation.</li>
<li>Back up the transaction log files regularly to delete the inactive transactions in your transaction log.</li>
<li>Design the transactions to be small.</li>
<li>Make sure that no uncommitted transactions continue to run for an indefinite time.</li>
<li>Schedule the Update Statistics option to occur daily.</li>
<li>To defragment the indexes to benefit the workload performance in your production environment, use the DBCC INDEXDEFRAG Transact-SQL statement instead of the DBCC DBREINDEX Transact-SQL statement. If you run the DBCC DBREINDEX statement, the transaction log may expand significantly when your SQL Server database is in Full recovery mode. Additionally, the DBCC INDEXDEGRAG statement does not hold the locks for a long time, unlike the DBCC DBREINDEX statement.</li>
</ul>
<p>-Microsoft Support</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=30&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/12/05/stop-the-transaction-log-of-a-sql-server-from-growing-unexpectedly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>
	</item>
		<item>
		<title>The end of an era &#8211; Windows 3.x</title>
		<link>http://yoshilounge.wordpress.com/2008/11/05/the-end-of-an-era-windows-3x/</link>
		<comments>http://yoshilounge.wordpress.com/2008/11/05/the-end-of-an-era-windows-3x/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 06:33:27 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://yoshilounge.wordpress.com/?p=23</guid>
		<description><![CDATA[An application has expectedly quit. Windows 3.x has come to the closing moments of its long life. On 1 November Microsoft stopped issuing licences for the software that made its debut in May 1990 in the US. The various versions of Windows 3.x (including 3.11) released in the early 1990s, were the first of Microsoft&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=23&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span class="clsTitle">An application has expectedly quit.</span></strong></p>
<div id="attachment_24" class="wp-caption alignright" style="width: 236px"><img class="size-full wp-image-24" title="Windows 3.x established the look of the operating system." src="http://yoshilounge.files.wordpress.com/2008/11/_45172878_7066e0ef-54df-455c-81bc-77d8ab1a1f33.jpg?w=510" alt="Windows 3.x established the look of the operating system."   /><p class="wp-caption-text">Windows 3.x established the look of the operating system.</p></div>
<p>Windows 3.x has come to the closing moments of its long life.</p>
<p>On 1 November Microsoft stopped issuing licences for the software that made its debut in May 1990 in the US.</p>
<p>The various versions of Windows 3.x (including 3.11) released in the early 1990s, were the first of Microsoft&#8217;s graphical user interfaces to win huge worldwide success.</p>
<p>They helped Microsoft establish itself and set the trend for how it makes its revenues, and what drives the company until the present day.</p>
<p><strong><span class="clsTitle">High flyer</span></strong></p>
<p>For many computer users 3.x was the first Windows-based operating system they used, and the software established the iconography of Microsoft&#8217;s flagship product.<br />
As it was updated the software started to make PCs a serious rival to Apple machines, as it could take advantage of much improved graphics, had a broader colour palette, and could use multimedia extras such as sound cards and CD Rom drives.<br />
Microsoft maintained support for Windows 3.x until the end of 2001, and it has lived on as an embedded operating system until 1 November 2008.</p>
<p>As an embedded system, it was used to power such things as cash tills in large stores and ticketing systems.<br />
One of its more glamorous uses as an embedded operating system is to power the in-flight entertainment systems on some Virgin and Qantas long-haul jets.</p>
<p><strong><span class="clsTitle">Tech specs</span></strong></p>
<p>Stefan Berka, who runs the GUI Documentation Project, said the important technical innovations in the software were its extended memory that could address more than 640KB and the improvements to hardware support.<br />
The fact that it was 100% compatible with older MSDOS applications helped too.<br />
Windows 3.x required an 8086/8088 processor or better that had a clock speed of up to 10MHz. It needed at least 640KB of RAM, seven megabytes of hard drive space, and a graphics card that supported CGA, EGA and VGA graphics.<br />
By comparison, the Home Basic version of Windows Vista requires a 32-bit 1GHz processor, 512MB of RAM, 20GB of hard drive space, and a graphics card with at least 32MB of memory.</p>
<p>&#8220;I haven&#8217;t received an e-mail about Windows 3.11 for a long time,&#8221; said Andy Rathbone, author of a Dummies guide to the software. &#8220;But I wouldn&#8217;t be surprised if some people still use it.&#8221;<br />
Sales of the software still pop up on eBay, he said, but not at a price that would tempt him to part with his unopened copy of Windows 3.1.<br />
Agent Quang from home IT support firm The Geek Squad, said he regularly encountered venerable operating systems in customer&#8217;s homes but it had been a long time since he saw Windows 3.x.<br />
&#8220;The majority of machines we run see are running XP,&#8221; he said, &#8220;Vista is still a bit flaky here and there and people are not comfortable with it.&#8221;<br />
But, he said, Windows 95 and 98 were still popular with some customers.<br />
&#8220;We see them on laptops and people are unwilling to let them go,&#8221; he said. &#8220;It&#8217;s perhaps because in the early days laptops cost a lot more money they do now, and there&#8217;s much more perceived value there.&#8221;<br />
Agent Quang&#8217;s personal favourite operating system was Windows 98 because, by the end of its life, the software was so solid.</p>
<p><strong><span class="clsTitle">Old Iron</span></strong></p>
<p> <br />
He said anyone running an ageing operating system might face problems as they try to find a web browser that could run on it and display the latest online innovations.</p>
<p>&#8220;We had a case a while ago a customer with a Windows 98 machine trying to view her website and the pictures were just not coming up,&#8221; he said. &#8220;Eventually we had to install Netscape Navigator to get it working.&#8221;</p>
<p>Stefan Berka said he had recently re-installed Windows 3.11 on a computer and was surprised at the results.</p>
<p>&#8220;Personally, I had fun at my last Windows 3.11 test installation to make it a useful desktop operating system again,&#8221; he said.</p>
<p>&#8220;With patched SVGA driver for 1024&#215;768 resolution, Internet Explorer 5, WinZIP, VfW and Video Player, it was still useful,&#8221; he said. &#8220;The desktop was ready after a few seconds loading time.&#8221;</p>
<p>Said Mr Rathbone: &#8220;Windows 3.11 would still work reasonably well today, provided it only ran software released around the same time.&#8221;</p>
<p>He cautioned against anyone considering returning to the olden days and using it as their mainstay operating system.</p>
<p>He said: &#8220;I wouldn&#8217;t connect it to the internet, though, as it&#8217;s not sophisticated enough to ward off attackers.&#8221;</p>
<p><em>BBC News</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=23&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/11/05/the-end-of-an-era-windows-3x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>

		<media:content url="http://yoshilounge.files.wordpress.com/2008/11/_45172878_7066e0ef-54df-455c-81bc-77d8ab1a1f33.jpg" medium="image">
			<media:title type="html">Windows 3.x established the look of the operating system.</media:title>
		</media:content>
	</item>
		<item>
		<title>Authentication in ASP.NET</title>
		<link>http://yoshilounge.wordpress.com/2008/06/16/authentication-in-aspnet/</link>
		<comments>http://yoshilounge.wordpress.com/2008/06/16/authentication-in-aspnet/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 16:55:55 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://yoshilounge.wordpress.com/?p=18</guid>
		<description><![CDATA[Security is a major concern for both application architects and developers. Applications that store sensitive information need to be protected from malicious attacks and from competitors attempting to steal information or intellectual property. When designing a security model for your application, you need to be aware of security requirements from a business perspective and the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=18&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Security is a major concern for both application architects and developers. Applications that store sensitive information need to be protected from malicious attacks and from competitors attempting to steal information or intellectual property. When designing a security model for your application, you need to be aware of security requirements from a business perspective and the implications that a chosen security model can have on performance, scalability, and deployment.</p>
<p><strong><span class="clsTitle">Relationship Between IIS and ASP.NET</span></strong></p>
<p>You should understand the relationship between Internet Information Services (IIS) authentication and the Microsoft® ASP.NET security architecture when designing your application. This will allow you to authenticate your users appropriately and obtain the correct security context within your application. You should note that ASP.NET application security configuration and IIS security configuration are completely independent and can be used independently or in conjunction with each other.</p>
<p>IIS maintains security related configuration settings in the IIS metabase. However, ASP.NET maintains security (and other) configuration settings in XML configuration files. While this generally simplifies the deployment of your application from a security standpoint, the security model adopted by your application will necessitate the correct configuration of both the IIS metabase and your ASP.NET application via its configuration file (Web.config).</p>
<p><img class="alignnone size-full wp-image-19" src="http://yoshilounge.files.wordpress.com/2008/06/iisandasp.gif?w=510" alt="The security relationship between IIS and ASP.NET "   /><br />
The security relationship between IIS and ASP.NET</p>
<p><strong><span class="clsTitle">ASP.NET Authentication Providers and IIS Security</span></strong></p>
<p>ASP.NET implements authentication using authentication providers, which are code modules that verify credentials and implement other security functionality such as cookie generation. ASP.NET supports the following three authentication providers:</p>
<ul type="disc">
<li><strong>Forms Authentication</strong>. Using this provider causes unauthenticated requests to be redirected to a specified HTML form using client side redirection. The user can then supply logon credentials, and post the form back to the server. If the application authenticates the request (using application-specific logic), ASP.NET issues a cookie that contains the credentials or a key for reacquiring the client identity. Subsequent requests are issued with the cookie in the request headers, which means that subsequent authentications are unnecessary.</li>
<li><strong>Passport Authentication</strong>. This is a centralized authentication service provided by Microsoft that offers a single logon facility and membership services for participating sites. ASP.NET, in conjunction with the Microsoft® Passport software development kit (SDK), provides similar functionality as Forms Authentication to Passport users.</li>
<li><strong>Windows Authentication</strong>. This provider utilizes the authentication capabilities of IIS. After IIS completes its authentication, ASP.NET uses the authenticated identity&#8217;s token to authorize access.</li>
</ul>
<p>In addition to authentication, ASP.NET provides an impersonation mechanism to establish the application thread&#8217;s security token. Obtaining the correct token relies upon you configuring IIS authentication, ASP.NET authentication providers, and ASP.NET impersonation settings appropriately. This figure the most likely combinations between IIS authentication and ASP.NET providers.</p>
<p><img class="alignnone size-full wp-image-20" src="http://yoshilounge.files.wordpress.com/2008/06/aspsecuritymatrix.gif?w=510" alt="ASP.NET and IIS security settings matrix"   /><br />
ASP.NET and IIS security settings matrix</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/yoshilounge.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/yoshilounge.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=18&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/06/16/authentication-in-aspnet/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>

		<media:content url="http://yoshilounge.files.wordpress.com/2008/06/iisandasp.gif" medium="image">
			<media:title type="html">The security relationship between IIS and ASP.NET </media:title>
		</media:content>

		<media:content url="http://yoshilounge.files.wordpress.com/2008/06/aspsecuritymatrix.gif" medium="image">
			<media:title type="html">ASP.NET and IIS security settings matrix</media:title>
		</media:content>
	</item>
		<item>
		<title>N-Tier Web Applications using ASP.NET 2.0</title>
		<link>http://yoshilounge.wordpress.com/2008/06/11/n-tier-web-applications-using-aspnet-20/</link>
		<comments>http://yoshilounge.wordpress.com/2008/06/11/n-tier-web-applications-using-aspnet-20/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 16:17:57 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://yoshilounge.wordpress.com/?p=15</guid>
		<description><![CDATA[When .NET Framework was first introduced, it provided excellent features that made the construction of ASP.NET applications a breezy experience. Then the next version of .NET Framework (version 2.0) along with SQL Server 2005 builds on the foundation of the previous versions and introduces some new features that can greatly aid in the design and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=15&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span class="clsBlurb">When .NET Framework was first introduced, it provided excellent features that made the construction of ASP.NET applications a breezy experience. Then the next version of .NET Framework (version 2.0) along with SQL Server 2005 builds on the foundation of the previous versions and introduces some new features that can greatly aid in the design and development of N-Tier ASP.NET 2.0 applications.</span></p>
<p><strong><span class="clsTitle">Introduction</span></strong></p>
<p><span class="clsBlurb">Designing N-Tier client/server architecture is no less complex than developing two-tier architecture, however the N-Tier architecture, produces a far more flexible and scalable client/server environment. In two-tier architecture, the client and the server are the only layers. In this model, both the presentation layer and the middle layer are handled by the client. N-Tier architecture has a presentation layer and three separate layers &#8211; a business logic layer and a data access logic layer and a database layer. The next section discusses each of these layers in detail.</span></p>
<p><strong><span class="clsTitle">Different Layers of an N-Tier application</span></strong></p>
<p><span class="clsBlurb">In a typical N-Tier environment, the client implements the presentation logic (thin client). The business logic and data access logic are implemented on an application server(s) and the data resides on database server(s). N-tier architecture is typically thus defined by the following layers:</p>
<ul>
<li>Presentation Layer: This is a front-end component, which is responsible for providing portable presentation logic. Since the client is freed of application layer tasks, which eliminates the need for powerful client technology. The presentation logic layer consists of standard ASP.NET web forms, ASP pages, documents, and Windows Forms, etc. This layer works with the results/output of the business logic layer and transforms the results into something usable and readable by the end user.</li>
<li>Business Logic Layer: Allows users to share and control business logic by isolating it from the other layers of the application. The business layer functions between the presentation layer and data access logic layers, sending the client&#8217;s data requests to the database layer through the data access layer.</li>
<li>Data Access Logic Layer: Provides access to the database by executing a set of SQL statements or stored procedures. This is where you will write generic methods to interface with your data. For example, you will write a method for creating and opening a SqlConnection object, create a SqlCommand object for executing a stored procedure, etc. As the name suggests, the data access logic layer contains no business rules or data manipulation/transformation logic. It is merely a reusable interface to the database.</li>
<li>Database Layer: Made up of a RDBMS database component such as SQL Server that provides the mechanism to store and retrieve data.</li>
</ul>
<p></span><br />
<span class="clsBlurb"><img class="alignnone size-full wp-image-17" src="http://yoshilounge.files.wordpress.com/2008/06/architecture.jpg?w=510&#038;h=382" alt="" width="510" height="382" /></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/yoshilounge.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/yoshilounge.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=15&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/06/11/n-tier-web-applications-using-aspnet-20/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>

		<media:content url="http://yoshilounge.files.wordpress.com/2008/06/architecture.jpg" medium="image" />
	</item>
		<item>
		<title>Artificial Intelligence with PHP</title>
		<link>http://yoshilounge.wordpress.com/2008/05/23/artificial-intelligence-with-php/</link>
		<comments>http://yoshilounge.wordpress.com/2008/05/23/artificial-intelligence-with-php/#comments</comments>
		<pubDate>Fri, 23 May 2008 07:24:25 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[artificial intelligence]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://yoshilounge.wordpress.com/?p=11</guid>
		<description><![CDATA[Humans have long been fascinated with Artificial Intelligence. Online artificial intelligence, often called bots, are all measured against the mother of all online intelligence, A.L.I.C.E. Standing for &#8220;Artificial Linguistic Internet Computer Entity,&#8221; A.L.I.C.E is a chat bot developed in the mid 90s that is capable of holding intelligent conversation, and giving relevant answers. A.L.I.C.E. and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=11&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Humans have long been fascinated with Artificial Intelligence. Online artificial intelligence, often called bots, are all measured against the mother of all online intelligence, A.L.I.C.E. Standing for &#8220;Artificial Linguistic Internet Computer Entity,&#8221; <a href="http://www.alicebot.org/History.html">A.L.I.C.E</a> is a chat bot developed in the mid 90s that is capable of holding intelligent conversation, and giving relevant answers.</p>
<p>A.L.I.C.E. and variations of her, respond to the language <a href="http://www.alicebot.org/aiml.html">AIML</a> (Artificial Intelligence Markup Language) to get instruction about how to &#8220;think.&#8221; There are several implementations of this in languages such as Java, Ruby, Perl, Python, etc, including one in PHP called <a href="http://www.alicebot.org/downloads/programs.html">Program E</a>.</p>
<p><strong><a href="http://sourceforge.net/projects/programe/" target="_blank">Program E</a></strong><br />
Program E is a platform for running artificial intelligence robots. It is written in PHP and uses MySQL for its backend database. Program E runs bots that are written in Artificial Intelligence Markup Language or AIML.</p>
<p>Paul Rydell was the original author of Program E.   It has since been worked on by Anne Kootstra and Icomsec.   You can find <a href="http://sourceforge.net/projects/programe/" target="_blank"> Program E on Sourceforge</a></p>
<p>Try to chat with <a href="http://www.pandorabots.com/pandora/talk?botid=f5d922d97e345aa1">A. L. I. C. E.</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/yoshilounge.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/yoshilounge.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=11&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/05/23/artificial-intelligence-with-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>
	</item>
		<item>
		<title>Compiled PHP Script</title>
		<link>http://yoshilounge.wordpress.com/2008/05/21/compiled-php-script/</link>
		<comments>http://yoshilounge.wordpress.com/2008/05/21/compiled-php-script/#comments</comments>
		<pubDate>Wed, 21 May 2008 08:10:08 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://yoshilounge.wordpress.com/?p=9</guid>
		<description><![CDATA[PHP script are usually naked, but sometimes we need to capsulating out script for security reason or commercial. There is many way to hide our script, we can use Base 64 Encoding combined with Inflate Compression function and other PHP function that can be reversed. This is the only reason why we need to avoid [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=9&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>PHP script are usually naked, but sometimes we need to capsulating out script for security reason or commercial. There is many way to hide our script, we can use Base 64 Encoding combined with Inflate Compression function and other PHP function that can be reversed. This is the only reason why we need to avoid encrypt the code using PHP function. Every encrypted script need to decrypt first before they run. What should we do is just set a tricky scenario to encrypt and or decrypt back.</p>
<p>I&#8217;ve try to using compiled PHP script. I use <a href="http://www.bambalam.se/bamcompile/" target="_blank">Bambalam PHP EXE Compiler/Embedder</a>, a light and fast compiler to bundling our PHP script including library, CSS, and external file, except image, sound, and other multimedia file.</p>
<p>There is many way to invoking our compiled script. We can put them into CGI or just execute them using PHP shell execution function (read the <a href="http://www.php.net/docs.php" target="_blank">PHP Documentation</a>).</p>
<p><img class="alignnone" src="http://yoshilounge.files.wordpress.com/2008/05/webexearch.jpg?w=398&#038;h=64" alt="Web Server PHP EXE Achitecture" width="398" height="64" /></p>
<p>We should design a n-Tier PHP application, then assuming we have a web server with PHP, an application server, and a database server. In this case, an application server is used to put our compiled PHP script and external library. Classes wrote in PHP script that we&#8217;ve compiled. Some of our class is used to accessing database server and then compiled class script sent back to web server to displaying the result. So here, a web server is used to show user interface.</p>
<p>I think this way is secure enough to hide our PHP script.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/yoshilounge.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/yoshilounge.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=9&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/05/21/compiled-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>

		<media:content url="http://yoshilounge.files.wordpress.com/2008/05/webexearch.jpg" medium="image">
			<media:title type="html">Web Server PHP EXE Achitecture</media:title>
		</media:content>
	</item>
		<item>
		<title>Recognize Text &amp; Objects in Graphical Images with PHP</title>
		<link>http://yoshilounge.wordpress.com/2008/05/21/ocrphp/</link>
		<comments>http://yoshilounge.wordpress.com/2008/05/21/ocrphp/#comments</comments>
		<pubDate>Wed, 21 May 2008 06:58:23 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://yoshilounge.wordpress.com/?p=8</guid>
		<description><![CDATA[An OCR with PHP ? it doesn&#8217;t sounds very common topic for PHP developers, but Andrey Kucherenko from Ukraine have made a very interesting project to realize the first phpOCR. His classes can recognize text in monochrome graphical images after a training phase. The training phase is necessary to let the class build recognition data [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=8&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>An OCR with <acronym title="PHP (Personal Home Pages) Hypertext Preprocessor">PHP</acronym> ? it doesn&#8217;t sounds very common topic for <acronym title="PHP (Personal Home Pages) Hypertext Preprocessor">PHP</acronym> developers, but Andrey Kucherenko from Ukraine have made a very interesting project to realize the first <a href="http://www.phpclasses.org/browse/package/2874.html">phpOCR</a>. His classes can recognize text in monochrome graphical images after a training phase. The training phase is necessary to let the class build recognition data structures from images that have known characters. The training data structures are used during the recognition process to attempt to identify text in real images using the corner algorithm.</p>
<p><a href="http://www.phpclasses.org/browse/package/2874.html">PHPOCR</a> have win the PHPClasses innovation awards of march 2006, and it shows the power of what could be implemented with PHP5.</p>
<blockquote><p>Certain types of applications require reading text from documents that are stored as graphical images. That is the case of scanned documents.</p>
<p>An OCR (Optical Character Recognition) tool can be used to recover the original text that is written in scanned documents. These are sophisticated tools that are trained to recognize text in graphical images.</p>
<p>This class provides a base implementation for an OCR tool. It can be trained to learn how to recognize each letter drawn in an image. Then it can be used to recognize longer texts in real documents.</p></blockquote>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/yoshilounge.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/yoshilounge.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=8&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/05/21/ocrphp/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>
	</item>
		<item>
		<title>Telur Palsu</title>
		<link>http://yoshilounge.wordpress.com/2008/05/02/telur-palsu/</link>
		<comments>http://yoshilounge.wordpress.com/2008/05/02/telur-palsu/#comments</comments>
		<pubDate>Fri, 02 May 2008 07:27:55 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[Indonesian]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[healthy]]></category>
		<category><![CDATA[indonesia]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://yoshilounge.wordpress.com/?p=4</guid>
		<description><![CDATA[Beware &#8211; Telur Palsu dari Cina sudah merambah di JABODETABEK ? TELUR PALSU DI KERETA API JABODETABEK Pengalaman pribadi nih, kejadiannya baru tadi malam, Kamis 17 April 2008 Semalem gw naek kereta jabodetabek, dikereta ekonomi, ada yang jual telor rebus masih hanget&#8230;.harganya itu lho yang ga nyangka.. Murrah banget satu butir telur rebus ditengah inflasi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=4&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://yoshilounge.files.wordpress.com/2008/05/telurpalsu14.jpg"><img class="alignleft alignnone size-medium wp-image-5" style="float:left;" src="http://yoshilounge.files.wordpress.com/2008/05/telurpalsu14.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a>Beware &#8211; Telur Palsu dari Cina sudah merambah di JABODETABEK ? TELUR PALSU DI KERETA API JABODETABEK Pengalaman pribadi nih, kejadiannya baru tadi malam, Kamis 17 April 2008 Semalem gw naek kereta jabodetabek, dikereta ekonomi, ada yang jual telor rebus masih hanget&#8230;.harganya itu lho yang ga nyangka.. Murrah banget satu butir telur rebus ditengah inflasi kayak begini cuma 500 perak aja&#8230;., padahal telur mentah aja di pasar, udah sekitar 1000 perak sontak gw inget, artikel setahun lalu, bahwa di China, sudah pernah heboh soal industri rumah tangga mbikin telur palsu&#8230;<br />
<a href="http://yoshilounge.files.wordpress.com/2008/05/telurpalsu02.jpg"><img class="alignleft size-medium wp-image-6" style="float:left;margin:20px;" src="http://yoshilounge.files.wordpress.com/2008/05/telurpalsu02.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a>Penasaran, gw beli 2000 perak, gw dapet 4 butir, bapak2 sebelah gw beli 5000 perak, dapet 10 butir telur rebus , katanya buat anak2nya dirumah Mas-mas disebelahnya beli juga sekitar 3 ribu, dia langsung kupas dan makan satu buah, katanya enak kok, rasanya ga busuk&#8230;dia tadi khawatir itu telur busuk( hmm dasar orang lapar semua juga dibilang enak) Walaupun gw masih agak ragu, tapi gw cicip juga sedikit, untuk sekedar membuktikan bahwa itu bener2 telur palsu, ternyata rasa dan aromanya mirip sekali, walaupun buat orang yang &#8216;Ahli Telur&#8217; seperti gw, jelas sekali terasa berbeda.. putih telurnya itu lebih keras seperti Jelly Nata Decoco, kuning telurnya tidak bulat, cuma sekilas mirip seperti adonan kue, walaupun aromanya mirip telur&#8230;.dan semua telur yang gw kupas, posisi kuning telurnya itu sama semua, dan tidak ada yang bulat, alias seperti cetakan.</p>
<p>Makanan Palsu China Menjadi Sorotan di Korea.<br />
Anda sulit membedakan keasliannya! Seorang pekerja tidur di atas krat-krat telur di sebuah pasar grosiran di Beijing China. Beberapa media utama di Korea telah memberitakan proses pembuatan telur-telur tiruan di China, yang mana telah menggemparkan dan menyebabkan kekhawatiran besar di antara penduduk Korea. Baru-baru ini, produk-produk tiruan China telah menjadi sorotan di Korea.</p>
<p>Beberapa media arus utama Korea telah memberitakan proses pembuatan telur-telur tiruan di China , yang telah menggemparkan dan menyebabkan kekhawatiran besar di antara penduduk Korea. Pada 1-2 September lalu, Munhwa Broadcasting Corporation (MBC) menayangkan sebuah dokumenter berjudul, &#8220;Hidup tanpa produk-produk buatan China.&#8221;</p>
<p>Acara tersebut menelusuri kehidupan tiga keluarga di Korea Selatan , AS , dan Jepang yang menolak menggunakan produk-produk buatan China. Tayangan ini juga berbicara mengenai telur-telur buatan yang merajalela di China, acara ini telah menarik perhatian publik Korea. Menyusul acara tersebut, koran nomor satu Korea, Chosun Ilbo, telah menerbitkan sebuah artikel berjudul &#8220;MBC Special mengekspos telur-telur tiruan buatan China&#8221;, melaporkan secara rinci bagaimana telur-telur tiruan itu dibuat. Dong-A Ilbo, koran Korea lainnya, pada 14 Agustus 2007 juga telah menerbitkan sebuah laporan berjudul &#8220;Telur-telur buatan dari China dibuat dari bahan-bahan kimia telah muncul di pasaran&#8221;. Sepersepuluh Harga Menurut laporan dari Chosun Ilbo, karena peningkatan tajam harga-harga makanan di China, telur-telur buatan, yang dibuat hanya dari bahan kimia tanpa bahan alami, telah muncul di Kota Zhengzhou, Provinsi Henan. Mr. Wang, yang menjalankan sebuah perusahaan yang membuat bahan tambahan makanan, menjelaskan bagaimana telur-telur tiruan itu dibuat. &#8216;Putih telur&#8217; dibuat dengan melarutkan sodium alginate dalam air. Larutan tersebut akan terlihat seperti cairan bening yang kental dan sulit membedakannya dengan putih telur yang sebenarnya. &#8216;Kuning telur&#8217; dibuat dengan menyekop suatu carian dengan pigmen kuning dan memadatkan serokan cairan tersebut ke dalam larutan kalsium klorida. Akhirnya, &#8216;putih telur&#8217; dan &#8216;kuning telur&#8217; dibungkus ke dalam &#8216;kulit telur&#8217; yang dibuat dari kalsium karbonat. &#8220;Jika ditambahkan tepung kanji atau bubuk kuning telur pada &#8216;kuning telur&#8217; tersebut, tekstur dari sebuah telur buatan setelah dimasak hampir identik dengan telur yang sebenarnya.&#8221;</p>
<p>Wang mengatakan hanya menghabiskan 0,55 yuan (0,07 dolar AS) untuk membuat lebih dari 2 butir telur, kurang dari sepersepuluh harga telur yang sebenarnya di pasaran (0,8 dolar AS.) Bahan utama dalam telur-telur buatan tersebut adalah bahan tambahan makanan, getah damar, kanji, pengeras, dan pigmen-pigmen. Konsumsi yang berlebihan atas bahan-bahan tersebut akan merusak perut dan menyebabkan gejala-gejala seperti kehilangan ingatan dan keterlambatan mental, dll. Korea Dikecewakan Dokumenter khusus dan laporan berita tersebut telah menuai perhatian dan kegemparan di tengah penduduk Korea . Banyak orang Korea menyatakan bahwa meskipun produk-produk buatan China seperti pakaian, elektronik, dan lain-lainnya terbilang murah dan telah membawa kenyamanan bagi hidup mereka, kualitas dan keamanannya sungguh mengkhawatirkan. Belum lama ini, berbagai mainan buatan China telah ditarik dari rak-rak supermarket karena cat pada mainan tersebut mengandung sejumlah logam berat yang sangat tinggi dan dapat mengancam keselamatan anak-anak.</p>
<p>Kursus Membuat Telur Buatan Diiklankan Secara Online di China Fakta telur buatan bukanlah hal baru di China. Kursus-kursus latihan untuk &#8220;membuat telur buatan&#8221; tersebar luas di Beijing, Provinsi Henan, Shandong, Hebei dan Guangdong. Seorang wartawan Epoch Times telah melakukan pencarian di Internet dan menemukan banyak iklan seperti itu. Kelas-kelas dilakukan dari satu sampai dua hari dan biayanya berkisar antara 300 sampai 800 yuan (40-100 dolar AS). Sebuah pusat latihan tertentu di Kota Shangqiu mengajarkan teknik pembuatan telur buatan dan memberikan cetakan gratis dalam kursus tersebut. Pusat latihan tersebut menjamin bahwa &#8220;Anda sulit dapat membedakan bentuk dan rasa antara produk kami dengan telur yang sebenarnya.&#8221;</p>
<p><em>sumber: milis anonimus</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/yoshilounge.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/yoshilounge.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=4&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/05/02/telur-palsu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>

		<media:content url="http://yoshilounge.files.wordpress.com/2008/05/telurpalsu14.jpg?w=300" medium="image" />

		<media:content url="http://yoshilounge.files.wordpress.com/2008/05/telurpalsu02.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://yoshilounge.wordpress.com/2008/05/02/hello-world/</link>
		<comments>http://yoshilounge.wordpress.com/2008/05/02/hello-world/#comments</comments>
		<pubDate>Fri, 02 May 2008 02:35:40 +0000</pubDate>
		<dc:creator>yoshi</dc:creator>
				<category><![CDATA[WriteWroteWritten]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is a formal &#8220;Hello World&#8221;. Finally i&#8217;m back to write something useful to share. Happy bluffing!! Hahahahaa..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=1&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a formal &#8220;Hello World&#8221;.<br />
Finally i&#8217;m back to write something useful to share.<br />
Happy bluffing!! Hahahahaa..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/yoshilounge.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/yoshilounge.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yoshilounge.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yoshilounge.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yoshilounge.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yoshilounge.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yoshilounge.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yoshilounge.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yoshilounge.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yoshilounge.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yoshilounge.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yoshilounge.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yoshilounge.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yoshilounge.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yoshilounge.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yoshilounge.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yoshilounge.wordpress.com&amp;blog=3626991&amp;post=1&amp;subd=yoshilounge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yoshilounge.wordpress.com/2008/05/02/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/73dc7eb5b1ab02d3f22ffc3efe9777d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yoshi</media:title>
		</media:content>
	</item>
	</channel>
</rss>
