<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by Straike</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Tue, 09 Jun 2026 13:19:49 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Cookies</title>
            <link>http://forum.lowyat.net/topic/4240140</link>
            <description>&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;HttpCookie myCookie = new HttpCookie&amp;#40;&amp;#34;myCookie &amp;#34;&amp;#41;;&lt;br /&gt;myCookie.Values&amp;#91;&amp;#34;UserEmail&amp;#34;&amp;#93; = Session&amp;#91;&amp;#34;user&amp;#34;&amp;#93;.ToString&amp;#40;&amp;#41;;&lt;br /&gt;myCookie.Values&amp;#91;&amp;#34;ProductName&amp;#34;&amp;#93; = product_name;&lt;br /&gt;myCookie.Values&amp;#91;&amp;#34;ProductQuantity&amp;#34;&amp;#93; = quantityTxtBox.Text;&lt;br /&gt;myCookie.Values&amp;#91;&amp;#34;TotalPrice&amp;#34;&amp;#93; = totalPrice.ToString&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt;myCookie .Expires = DateTime.Now.AddHours&amp;#40;1&amp;#41;;&lt;br /&gt;&lt;br /&gt;Response.Cookies.Add&amp;#40;myCookie&amp;#41;;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Hi guys, I have this chunk of code that adds cookies with values, such as UserEmail, ProductName, ProductQuantity and TotalPrice. How do I append a new cookie to the existing cookie without deleting the old ones? Please advise, thanks&amp;#33;</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Tue, 28 Mar 2017 12:54:59 +0800</pubDate>
        </item>
        <item>
            <title>Password Reset Link</title>
            <link>http://forum.lowyat.net/topic/4224948</link>
            <description>Hi, how do I generate a password reset link? Any help and guidance is appreciated.</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Thu, 16 Mar 2017 17:51:38 +0800</pubDate>
        </item>
        <item>
            <title>C# DB Login Fail</title>
            <link>http://forum.lowyat.net/topic/4215189</link>
            <description>Hi, I am facing this problem the whole day. How do I fix this? Please help me..</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Mon, 06 Mar 2017 18:01:47 +0800</pubDate>
        </item>
        <item>
            <title>Google reCaptcha</title>
            <link>http://forum.lowyat.net/topic/4212059</link>
            <description>Hi, does anyone knows how to use the Google reCaptcha? I have successfully implemented the Google I Am Not A Robot reCaptcha in my registration page (C#). However, when I have successfully validated that I Am Not A Robot and I press the submit button, the error &amp;quot;Captcha validation failed&amp;quot; appeared.. Below is my piece of code: &lt;br /&gt;&amp;#60;script type=&amp;quot;text/javascript&amp;quot; src=&amp;#39;https://www.google.com/recaptcha/api.js&amp;#39;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;    &amp;#60;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;https://www.google.com/recaptcha/api.js?onload=onloadCallback&amp;amp;render=explicit&amp;quot; async defer&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;    &amp;#60;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;        var onloadCallback = function () {&lt;br /&gt;            grecaptcha.render(&amp;#39;dvCaptcha&amp;#39;, {&lt;br /&gt;                &amp;#39;sitekey&amp;#39;: &amp;#39;&amp;lt;%=ReCaptcha_Key %&amp;gt;&amp;#39;,&lt;br /&gt;                &amp;#39;callback&amp;#39;: function (response) {&lt;br /&gt;                    &amp;#036;.ajax({&lt;br /&gt;                        type: &amp;quot;POST&amp;quot;,&lt;br /&gt;                        url: &amp;quot;Default.aspx/VerifyCaptcha&amp;quot;,&lt;br /&gt;                        data: &amp;quot;{response: &amp;#39;&amp;quot; + response + &amp;quot;&amp;#39;}&amp;quot;,&lt;br /&gt;                        contentType: &amp;quot;application/json; charset=utf-8&amp;quot;,&lt;br /&gt;                        dataType: &amp;quot;json&amp;quot;,&lt;br /&gt;                        success: function ® {&lt;br /&gt;                            var captchaResponse = jQuery.parseJSON(r.d);&lt;br /&gt;                            if (captchaResponse.success) {&lt;br /&gt;                                &amp;#036;(&amp;quot;[id*=txtCaptcha]&amp;quot;).val(captchaResponse.success);&lt;br /&gt;                                &amp;#036;(&amp;quot;[id*=rfvCaptcha]&amp;quot;).hide();&lt;br /&gt;                            } else {&lt;br /&gt;                                &amp;#036;(&amp;quot;[id*=txtCaptcha]&amp;quot;).val(&amp;quot;&amp;quot;);&lt;br /&gt;                                &amp;#036;(&amp;quot;[id*=rfvCaptcha]&amp;quot;).show();&lt;br /&gt;                                var error = captchaResponse[&amp;quot;error-codes&amp;quot;][0];&lt;br /&gt;                                &amp;#036;(&amp;quot;[id*=rfvCaptcha]&amp;quot;).html(&amp;quot;RECaptcha error. &amp;quot; + error);&lt;br /&gt;                            }&lt;br /&gt;                        }&lt;br /&gt;                    });&lt;br /&gt;                }&lt;br /&gt;            });&lt;br /&gt;        };&lt;br /&gt;    &amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt;[attachmentid=8546643]</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Thu, 02 Mar 2017 17:20:33 +0800</pubDate>
        </item>
        <item>
            <title>Encrypt &amp;amp; Decrypt password</title>
            <link>http://forum.lowyat.net/topic/4206302</link>
            <description>Hi, I got this encrypting password method from the net, but I tried to create a method to decrpyt password. Anybody knows how to &lt;b&gt;decrypt a password&lt;/b&gt;? The purpose of decrypting a password is for the user to view his password in the user update profile. Not only that, how to &lt;b&gt;SALT &lt;/b&gt;a password? Please teach me how, thank you very much in advance&amp;#33; &lt;br /&gt;&lt;br /&gt;Encrypting password: &lt;br /&gt;byte[] data = System.Text.Encoding.ASCII.GetBytes(passwordTxtBox.Text);&lt;br /&gt;data = new System.Security.Cryptography.SHA256Managed().ComputeHash(data);&lt;br /&gt;String encryptedPassword = System.Text.Encoding.ASCII.GetString(data);&lt;br /&gt;</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Fri, 24 Feb 2017 18:58:59 +0800</pubDate>
        </item>
        <item>
            <title>C# Send email error</title>
            <link>http://forum.lowyat.net/topic/4198785</link>
            <description>Hi, I have encountered this error in my code and I dont know how to fix it. Anybody can guide me? &lt;br /&gt;[attachmentid=8493179]&lt;br /&gt;&lt;br /&gt;Code: &lt;br /&gt;&lt;br /&gt;MailMessage mail = new MailMessage();&lt;br /&gt;SmtpClient client = new SmtpClient(&amp;quot;&lt;i&gt;smtp.google.com&lt;/i&gt;&amp;quot;, &lt;i&gt;25&lt;/i&gt;);&lt;br /&gt;&lt;br /&gt;mail.From = new MailAddress(&amp;quot;&lt;i&gt;abc@gmail.com&lt;/i&gt;&amp;quot;);&lt;br /&gt;mail.To.Add(&amp;quot;&lt;i&gt;abc@hotmail.com&lt;/i&gt;&amp;quot;);&lt;br /&gt;mail.Subject = &amp;quot;&lt;i&gt;Testing&lt;/i&gt;&amp;quot;;&lt;br /&gt;mail.Body = &amp;quot;&lt;i&gt;Testing 123&lt;/i&gt;&amp;quot;;&lt;br /&gt;&lt;br /&gt;client.Credentials = new System.Net.NetworkCredential(&amp;quot;&lt;i&gt;from mail&lt;/i&gt;&amp;quot;, &amp;quot;&lt;i&gt;password&lt;/i&gt;&amp;quot;);&lt;br /&gt;client.UseDefaultCredentials = true;&lt;br /&gt;client.DeliveryMethod = SmtpDeliveryMethod.Network;&lt;br /&gt;client.EnableSsl = true;&lt;br /&gt;&lt;br /&gt;client.Send(mail);</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Thu, 16 Feb 2017 17:31:54 +0800</pubDate>
        </item>
        <item>
            <title>C# DB Error</title>
            <link>http://forum.lowyat.net/topic/4197920</link>
            <description>Hi, I encountered these errors. Can anybody please help me? Stuck with these errors for hours..</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Wed, 15 Feb 2017 17:01:47 +0800</pubDate>
        </item>
        <item>
            <title>Mail has been BLACKLISTED by Google&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/4050610</link>
            <description>Dear all, &lt;br /&gt;&lt;br /&gt;[URGENT]&lt;br /&gt;&lt;br /&gt;Good evening, I would like to request for assistance due to my company mail has been blacklisted by Google (Gmail). Any kind soul have any ways to contact Google Support? Any email address or contact number? &lt;br /&gt;&lt;br /&gt;This is how it happened: &lt;br /&gt;&lt;br /&gt;1. Last month, some spammer used the company email domain &amp;quot;aaa@abc.com.my&amp;quot; (example of email) and act like one of the staffs in the company and sent emails to all staffs, suppliers, customers and maybe to other countries. As a result, spam mails are flooding inboxes and people have reported to Google (Gmail), causing Google (Gmail) to block the email domain. &lt;br /&gt;&lt;br /&gt;2. Last month, Ransomware attacked the company&amp;#39;s server and is removed from the server, but we have no guaranteed that the virus has been 100% completely removed or not. &lt;br /&gt;&lt;br /&gt;Please help. Any help is appreciated&amp;#33;&amp;#33;</description>
            <author>Straike</author>
            <category>Technical Support</category>
            <pubDate>Thu, 08 Sep 2016 18:25:27 +0800</pubDate>
        </item>
        <item>
            <title>iOS FB Share error (XCODE)</title>
            <link>http://forum.lowyat.net/topic/3443973</link>
            <description>Hi all, &lt;br /&gt;There&amp;#39;s a page I created myself in my app with a custom button &amp;quot;POST&amp;quot;, however, when I shared my post fro my app, I got this error: &lt;br /&gt;&amp;quot;FBSession: It is not valid to reauthorize while a previous reauthorize call has not yet completed.&amp;quot; &lt;br /&gt;Can I know what am I missing?</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Wed, 17 Dec 2014 18:15:55 +0800</pubDate>
        </item>
        <item>
            <title>iOS FB Share error (XCODE)</title>
            <link>http://forum.lowyat.net/topic/3443970</link>
            <description>Hi all, &lt;br /&gt;There&amp;#39;s a page I created myself in my app with a custom button &amp;quot;POST&amp;quot;, however, when I shared my post from my app, I got this error: &lt;br /&gt;&amp;quot;FBSession: It is not valid to reauthorize while a previous reauthorize call has not yet completed.&amp;quot; &lt;br /&gt;Can I know what am I missing?</description>
            <author>Straike</author>
            <category>Mobile Computing</category>
            <pubDate>Wed, 17 Dec 2014 18:15:11 +0800</pubDate>
        </item>
        <item>
            <title>WTS Girl&amp;#39;s Generation (SNSD) Star Cards</title>
            <link>http://forum.lowyat.net/topic/3231744</link>
            <description>Item(s): Girl&amp;#39;s Generation Star Cards&lt;br /&gt;&lt;br /&gt;Package includes: Girl&amp;#39;s Generation Star Cards&lt;br /&gt;&lt;br /&gt;Price: Cheap&lt;br /&gt;&lt;br /&gt;Warranty: Check On The Spot.&lt;br /&gt;&lt;br /&gt;Dealing method: COD/ Postage.&lt;br /&gt;&lt;br /&gt;Location of seller: Anywhere near KL and Subang (preferable Subang)&lt;br /&gt;&lt;br /&gt;Contact method/details: PM&lt;br /&gt;&lt;br /&gt;Age of item: Since 2010 onwards&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;Item(s) conditions: New as it is protected&lt;br /&gt;&lt;br /&gt;Picture: Below &lt;br /&gt;&lt;br /&gt;Reason for sale: Clearance sale as it took up some space in my room. Selling cheaply&amp;#33;&amp;#33;&amp;#33;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2238_zpsae5b08b8.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2238_zpsae5b08b8.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2236_zpsaafd84c6.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2236_zpsaafd84c6.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2235_zps5a02cf86.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2235_zps5a02cf86.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2233_zpsd9060856.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2233_zpsd9060856.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2231_zpsab0771a6.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2231_zpsab0771a6.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2229_zps28715ff2.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2229_zps28715ff2.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2227_zps94b1fdc6.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2227_zps94b1fdc6.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2224_zpsda08eb8b.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2224_zpsda08eb8b.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2222_zps89395357.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2222_zps89395357.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2221_zps91a8563d.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2221_zps91a8563d.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;</description>
            <author>Straike</author>
            <category>Garage Sales Archive</category>
            <pubDate>Wed, 21 May 2014 10:04:40 +0800</pubDate>
        </item>
        <item>
            <title>WTS Yu Gi Oh cards&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/3231731</link>
            <description>Item(s): Yu Gi Oh Cards.  &lt;br /&gt;&lt;br /&gt;Package includes: Yu Gi Oh Cards.  &lt;br /&gt;&lt;br /&gt;Price: Offer Me, selling cheap&lt;br /&gt;&lt;br /&gt;Warranty: Check On The Spot.&lt;br /&gt;&lt;br /&gt;Dealing method: COD/ Postage.&lt;br /&gt;&lt;br /&gt;Location of seller: Anywhere near KL and Subang (preferable Subang)&lt;br /&gt;&lt;br /&gt;Contact method/details: PM&lt;br /&gt;&lt;br /&gt;Age of item: Since 2010 onwards&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;Item(s) conditions: New as it is protected&lt;br /&gt;&lt;br /&gt;Picture: Below &lt;br /&gt;&lt;br /&gt;Reason for sale: Selling to the players cheaply as I am not playing anymore. &lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2194_zpsb9942dc0.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2194_zpsb9942dc0.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2192_zps42278d80.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2192_zps42278d80.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2191_zpsd48ca120.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2191_zpsd48ca120.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2189_zps8fd82af4.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2189_zps8fd82af4.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2188_zps6dbb1544.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2188_zps6dbb1544.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2187_zpscdf42721.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2187_zpscdf42721.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2185_zpsb4601975.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2185_zpsb4601975.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2184_zps8ff6ecf4.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2184_zps8ff6ecf4.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2183_zps62f3be47.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2183_zps62f3be47.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://s1291.photobucket.com/user/Straike25/media/IMG_2182_zpsa885d197.jpg.html' target='_blank'&gt;&lt;img src='http://i1291.photobucket.com/albums/b558/Straike25/IMG_2182_zpsa885d197.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>Straike</author>
            <category>Garage Sales Archive</category>
            <pubDate>Wed, 21 May 2014 09:54:51 +0800</pubDate>
        </item>
        <item>
            <title>WTS Yu Gi Oh cards&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/3230530</link>
            <description>read the rules&amp;#33;</description>
            <author>Straike</author>
            <category>Hobbies, Collectibles and Model Kits</category>
            <pubDate>Tue, 20 May 2014 10:34:13 +0800</pubDate>
        </item>
        <item>
            <title>WTB &amp;gt;&amp;gt; Pokemon cards</title>
            <link>http://forum.lowyat.net/topic/3178782</link>
            <description>WTB&amp;gt;&amp;gt;&lt;br /&gt;&lt;br /&gt;Base Set: &lt;br /&gt;1. Charmander (http://bulbapedia.bulbagarden.net/wiki/Charmander_(Base_Set_46))&lt;br /&gt;2. Squirtle (http://bulbapedia.bulbagarden.net/wiki/Squirtle_(Base_Set_63))&lt;br /&gt;3. Bulbasaur (http://bulbapedia.bulbagarden.net/wiki/Bulbasaur_(Base_Set_44))&lt;br /&gt;&lt;br /&gt;Jungle&lt;br /&gt;1. Jolteon (http://bulbapedia.bulbagarden.net/wiki/Jolteon_(Jungle_20))&lt;br /&gt;2. Scyther (http://bulbapedia.bulbagarden.net/wiki/Scyther_(Jungle_10))&lt;br /&gt;&lt;br /&gt;Neo Revelation&lt;br /&gt;1. Entei (http://bulbapedia.bulbagarden.net/wiki/Entei_(Neo_Revelation_6))&lt;br /&gt;2. Ho-Oh (http://bulbapedia.bulbagarden.net/wiki/Ho-Oh_(Neo_Revelation_7))&lt;br /&gt;3. Suicune (http://bulbapedia.bulbagarden.net/wiki/Suicune_(Neo_Revelation_27))&lt;br /&gt;4. Ho-Oh (http://bulbapedia.bulbagarden.net/wiki/Ho-Oh_(Neo_Revelation_18))&lt;br /&gt;&lt;br /&gt;Neo Destiny&lt;br /&gt;1. Dark Typhlosion (http://bulbapedia.bulbagarden.net/wiki/Dark_Typhlosion_(Neo_Destiny_10))&lt;br /&gt;2. Dark Tyranitar (http://bulbapedia.bulbagarden.net/wiki/Dark_Tyranitar_(Neo_Destiny_11))&lt;br /&gt;3. Dark Feraligatr (http://bulbapedia.bulbagarden.net/wiki/Dark_Feraligatr_(Neo_Destiny_5))&lt;br /&gt;4. Dark Espeon (http://bulbapedia.bulbagarden.net/wiki/Dark_Espeon_(Neo_Destiny_4))&lt;br /&gt;5. Light Dragonite (http://bulbapedia.bulbagarden.net/wiki/Light_Dragonite_(Neo_Destiny_14))&lt;br /&gt;&lt;br /&gt;Aquapolis&lt;br /&gt;1. Tyranitar (http://bulbapedia.bulbagarden.net/wiki/Tyranitar_(Aquapolis_H28))&lt;br /&gt;&lt;br /&gt;EX Emerald &lt;br /&gt;1. Kyogre (http://bulbapedia.bulbagarden.net/wiki/Kyogre_(EX_Emerald_6))&lt;br /&gt;&lt;br /&gt;EX Unseen Forces&lt;br /&gt;1. Flareon (http://bulbapedia.bulbagarden.net/wiki/Flareon_(EX_Unseen_Forces_5))&lt;br /&gt;2. Jolteon (http://bulbapedia.bulbagarden.net/wiki/Jolteon_(EX_Unseen_Forces_8))&lt;br /&gt;3. Vaporeon (http://bulbapedia.bulbagarden.net/wiki/Vaporeon_(EX_Unseen_Forces_19))&lt;br /&gt;&lt;br /&gt;EX Delta Species &lt;br /&gt;1. Dragonite (http://bulbapedia.bulbagarden.net/wiki/Dragonite_%CE%B4_(EX_Delta_Species_3))&lt;br /&gt;2. Rayquaza (http://bulbapedia.bulbagarden.net/wiki/Rayquaza_%CE%B4_(EX_Delta_Species_13))&lt;br /&gt;3. Tyranitar (http://bulbapedia.bulbagarden.net/wiki/Tyranitar_%CE%B4_(EX_Delta_Species_16))&lt;br /&gt;4. Jolteon (http://bulbapedia.bulbagarden.net/wiki/Jolteon_%CE%B4_(EX_Delta_Species_7))&lt;br /&gt;5. Vaporeon (http://bulbapedia.bulbagarden.net/wiki/Vaporeon_%CE%B4_(EX_Delta_Species_18))&lt;br /&gt;6. Espeon (http://bulbapedia.bulbagarden.net/wiki/Espeon_%CE%B4_(EX_Delta_Species_4))&lt;br /&gt;7. Umbreon (http://bulbapedia.bulbagarden.net/wiki/Umbreon_%CE%B4_(EX_Delta_Species_17))&lt;br /&gt;&lt;br /&gt;EX Dragon Fronteirs &lt;br /&gt;1. Feraligatr (http://bulbapedia.bulbagarden.net/wiki/Feraligatr_%CE%B4_(EX_Dragon_Frontiers_2))&lt;br /&gt;2. Meganium (http://bulbapedia.bulbagarden.net/wiki/Meganium_%CE%B4_(EX_Dragon_Frontiers_4))&lt;br /&gt;&lt;br /&gt;EX Holon Phantoms &lt;br /&gt;1. Deoxys Speed Forme (http://bulbapedia.bulbagarden.net/wiki/Deoxys_%CE%B4_(EX_Holon_Phantoms_6))&lt;br /&gt;2. Deoxys Normal Forme (http://bulbapedia.bulbagarden.net/wiki/Deoxys_%CE%B4_(EX_Holon_Phantoms_5))&lt;br /&gt;3. Deoxys Defense Forme (http://bulbapedia.bulbagarden.net/wiki/Deoxys_%CE%B4_(EX_Holon_Phantoms_4))&lt;br /&gt;4. Gyrados (http://bulbapedia.bulbagarden.net/wiki/Gyarados_%CE%B4_(EX_Holon_Phantoms_8))&lt;br /&gt;5. Latios (http://bulbapedia.bulbagarden.net/wiki/Latios_%CE%B4_(EX_Holon_Phantoms_12))&lt;br /&gt;&lt;br /&gt;Mysterious Treasures&lt;br /&gt;1. Tyranitar (http://bulbapedia.bulbagarden.net/wiki/Tyranitar_(Mysterious_Treasures_17))&lt;br /&gt;2. Time Space Distortion (http://bulbapedia.bulbagarden.net/wiki/Time-Space_Distortion_(Mysterious_Treasures_124))&lt;br /&gt;&lt;br /&gt;Secret Wonders&lt;br /&gt;1. Ho-Oh (http://bulbapedia.bulbagarden.net/wiki/Ho-Oh_(Secret_Wonders_10))&lt;br /&gt;&lt;br /&gt;Majestic Dawn&lt;br /&gt;1. Zapdos (http://bulbapedia.bulbagarden.net/wiki/Zapdos_(Majestic_Dawn_14))&lt;br /&gt;2. Articuno (http://bulbapedia.bulbagarden.net/wiki/Articuno_(Majestic_Dawn_1))&lt;br /&gt;&lt;br /&gt;Legends Awakened &lt;br /&gt;1. Giratina (http://bulbapedia.bulbagarden.net/wiki/Giratina_(Legends_Awakened_4))&lt;br /&gt;&lt;br /&gt;Rising Rivals&lt;br /&gt;1. Darkrai G (http://bulbapedia.bulbagarden.net/wiki/Darkrai_G_(Rising_Rivals_3)) &lt;br /&gt;2. Fan Rotom (http://bulbapedia.bulbagarden.net/wiki/Fan_Rotom_(Rising_Rivals_RT1))&lt;br /&gt;&lt;br /&gt;Supreme Victors &lt;br /&gt;1. Blaziken FB (http://bulbapedia.bulbagarden.net/wiki/Blaziken_FB_(Supreme_Victors_2))&lt;br /&gt;2. Rayquaza C (http://bulbapedia.bulbagarden.net/wiki/Rayquaza_C_(Supreme_Victors_8))&lt;br /&gt;3. Rayquaza C LV. X (http://bulbapedia.bulbagarden.net/wiki/Rayquaza_C_LV.X_(Supreme_Victors_146))&lt;br /&gt;&lt;br /&gt;Arceus&lt;br /&gt;1. Charizard (http://bulbapedia.bulbagarden.net/wiki/Charizard_(Arceus_1))&lt;br /&gt;2. Arceus LX. X (http://bulbapedia.bulbagarden.net/wiki/Arceus_LV.X_(Arceus_95))&lt;br /&gt;3. Arceus LV. X (http://bulbapedia.bulbagarden.net/wiki/Arceus_LV.X_(Arceus_94))&lt;br /&gt;&lt;br /&gt;Undaunted&lt;br /&gt;1. Espeon (http://bulbapedia.bulbagarden.net/wiki/Espeon_(Undaunted_2))&lt;br /&gt;&lt;br /&gt;Unleashed&lt;br /&gt;1. ALPH LITO 2 (http://bulbapedia.bulbagarden.net/wiki/Alph_Lithograph_(Unleashed_TWO))&lt;br /&gt;&lt;br /&gt;Call of Legends (preferably Reverse Holo)&lt;br /&gt;1. Deoxys (http://bulbapedia.bulbagarden.net/wiki/Deoxys_(Call_of_Legends_2))&lt;br /&gt;2. Kyogre (http://bulbapedia.bulbagarden.net/wiki/Kyogre_(Call_of_Legends_12))&lt;br /&gt;&lt;br /&gt;HeartGold SoulSilver&lt;br /&gt;1. Feraligatr (http://bulbapedia.bulbagarden.net/wiki/Feraligatr_(HeartGold_%26_SoulSilver_20))&lt;br /&gt;2. Meganium (http://bulbapedia.bulbagarden.net/wiki/Meganium_(HeartGold_%26_SoulSilver_26))&lt;br /&gt;3. Typhlosion (http://bulbapedia.bulbagarden.net/wiki/Typhlosion_(HeartGold_%26_SoulSilver_32))&lt;br /&gt;&lt;br /&gt;Triumphant&lt;br /&gt;1. Celebi Prime (http://bulbapedia.bulbagarden.net/wiki/Celebi_(Triumphant_92))&lt;br /&gt;2. Mew Prime (http://bulbapedia.bulbagarden.net/wiki/Celebi_(Triumphant_92))&lt;br /&gt;&lt;br /&gt;LEGENDS Cards&lt;br /&gt;1. Darkrai &amp;amp; Cresselia LEGEND&lt;br /&gt;2. Palkia &amp;amp; Dialga LEGEND&lt;br /&gt;3. Entei &amp;amp; Raikou LEGEND&lt;br /&gt;4. Raikou &amp;amp; Suicune LEGEND&lt;br /&gt;5. Suicune &amp;amp; Entei LEGEND&lt;br /&gt;6. Lugia LEGEND&lt;br /&gt;7. Ho-Oh LEGEND&lt;br /&gt;8. Kyogre &amp;amp; Groudon LEGEND&lt;br /&gt;9. Rayquaza &amp;amp; Deoxys LEGEND&lt;br /&gt;&lt;br /&gt;Promo &lt;br /&gt;1. Charizard G LV. X (http://bulbapedia.bulbagarden.net/wiki/File:CharizardGLVXDPPromo45.jpg)&lt;br /&gt;2. Rayquaza C LV. X (http://bulbapedia.bulbagarden.net/wiki/File:RayquazaCLVXDPPromo47.jpg)&lt;br /&gt;&lt;br /&gt;Please PM me the offer as well as the pictures of your cards.. Thanks  &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;</description>
            <author>Straike</author>
            <category>Garage Sales Archive</category>
            <pubDate>Mon, 31 Mar 2014 22:58:50 +0800</pubDate>
        </item>
        <item>
            <title>PHP Question</title>
            <link>http://forum.lowyat.net/topic/2335354</link>
            <description>Hi guys, I want to know if I have a login page for both registered user and admin to login. &lt;br /&gt;After logged in, the user will see his/hers details while the admin will see a list of the registered user. &lt;br /&gt;If the admin clicks on 1 of the names in the list, the details of the name will show, such as phone number and address will show up. &lt;br /&gt;I wonder the page for viewing the details of the person is the same or different? &lt;br /&gt;&lt;br /&gt;login.php ---&amp;#62; view_details.php   (for registered user)&lt;br /&gt;login.php ---&amp;#62; list.php ---&amp;#62; &lt;span style='color:blue'&gt;view_details.php or view_details_admin.php&lt;/span&gt;    (for admin)</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Sun, 06 May 2012 21:11:59 +0800</pubDate>
        </item>
        <item>
            <title>Wifi Connection</title>
            <link>http://forum.lowyat.net/topic/1923729</link>
            <description>Hi guys, can somebody please help me solve this problem? I just reformatted my old old laptop, probably 5 or 6 years into Mandriva and it is running smoothly. However, the only problem that I encounter is I cannot connect to the Wifi in my house even the password/encryption key is correct&amp;#33;&amp;#33;&amp;#33; I have tried to connect to using LAN cable and it works&amp;#33;&amp;#33;&amp;#33; can somebody please tell me what is wrong??? Thanks&amp;#33;&amp;#33;&amp;#33;</description>
            <author>Straike</author>
            <category>Linux &amp;amp; Open Source Software</category>
            <pubDate>Sun, 19 Jun 2011 00:19:10 +0800</pubDate>
        </item>
        <item>
            <title>Video format</title>
            <link>http://forum.lowyat.net/topic/1897601</link>
            <description>Hi guys, I just wanted to know what is the difference between &lt;br /&gt;.ts format&lt;br /&gt;.tp format&lt;br /&gt;mp4 format&lt;br /&gt;avi format&lt;br /&gt;&lt;br /&gt;Thank you.</description>
            <author>Straike</author>
            <category>Software</category>
            <pubDate>Sun, 29 May 2011 22:14:57 +0800</pubDate>
        </item>
        <item>
            <title>Wierd things</title>
            <link>http://forum.lowyat.net/topic/1833784</link>
            <description>Hi, recently i found out that when I right click my mouse on a jpg picture, it shows a list, showing preview, open, ....... till the last, which is properties. Within the list, there is 1 word called Play To. When I click on that, it shows my xxx-pc... I wonder what is it? virus? or anything else? harmful? neutral(not harmful)?</description>
            <author>Straike</author>
            <category>Technical Support</category>
            <pubDate>Wed, 13 Apr 2011 11:43:05 +0800</pubDate>
        </item>
        <item>
            <title>HTML</title>
            <link>http://forum.lowyat.net/topic/1831005</link>
            <description>Hi, I was coding a code using HTML. However, I have a problem in loading video in the browsers. When I open my project in Google Chrome, it loads normally, but when I open my project in other browsers, such as Firefox and Opera, not only it doesn&amp;#39;t load, the video also disappears. I wonder who knows how to solve this problem?&lt;br /&gt;Thank You&lt;br /&gt;&lt;br /&gt;Straike</description>
            <author>Straike</author>
            <category>Codemasters</category>
            <pubDate>Mon, 11 Apr 2011 13:50:56 +0800</pubDate>
        </item>
        <item>
            <title>MKV</title>
            <link>http://forum.lowyat.net/topic/1796206</link>
            <description>Hi, I wonder what other players can view MKV file? I used vlc before, but when I watch it using vlc, the video will become narrower and thin, and also got lines on the video... When i use Media Player Classic, it doesn&amp;#39;t produce any sound... So, I don&amp;#39;t know what problems in in...&lt;br /&gt;&lt;br /&gt;[attachmentid=2101553]&lt;br /&gt;&lt;br /&gt;[attachmentid=2101552]&lt;br /&gt;&lt;br /&gt;these are the examples of the video... it is a HD video...&lt;br /&gt;&lt;br /&gt;Please help... Thanks...</description>
            <author>Straike</author>
            <category>Technical Support</category>
            <pubDate>Thu, 17 Mar 2011 23:00:02 +0800</pubDate>
        </item>
    </channel>
</rss>
