<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[StucxTeam Forum - Other languages]]></title>
		<link>https://stucxteam.my/</link>
		<description><![CDATA[StucxTeam Forum - https://stucxteam.my]]></description>
		<pubDate>Sun, 02 Aug 2026 06:30:55 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Password Strength Checker with JS]]></title>
			<link>https://stucxteam.my/Thread-source-code-password-strength-checker-with-js</link>
			<pubDate>Sat, 28 Feb 2026 15:38:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://stucxteam.my/member.php?action=profile&uid=13">Carlos1337</a>]]></dc:creator>
			<guid isPermaLink="false">https://stucxteam.my/Thread-source-code-password-strength-checker-with-js</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function checkPassword(pw){<br />
    let score = 0;<br />
    if(pw.length &gt;=8) score++;<br />
    if(/[A-Z]/.test(pw)) score++;<br />
    if(/[0-9]/.test(pw)) score++;<br />
    if(/[^A-Za-z0-9]/.test(pw)) score++;<br />
    return ["Very Weak","Weak","Moderate","Strong","Very Strong"][score];<br />
}<br />
<br />
console.log(checkPassword("Hello123!")); </code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function checkPassword(pw){<br />
    let score = 0;<br />
    if(pw.length &gt;=8) score++;<br />
    if(/[A-Z]/.test(pw)) score++;<br />
    if(/[0-9]/.test(pw)) score++;<br />
    if(/[^A-Za-z0-9]/.test(pw)) score++;<br />
    return ["Very Weak","Weak","Moderate","Strong","Very Strong"][score];<br />
}<br />
<br />
console.log(checkPassword("Hello123!")); </code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Draw a Heart Using Loops]]></title>
			<link>https://stucxteam.my/Thread-source-code-draw-a-heart-using-loops</link>
			<pubDate>Sat, 28 Feb 2026 15:29:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://stucxteam.my/member.php?action=profile&uid=13">Carlos1337</a>]]></dc:creator>
			<guid isPermaLink="false">https://stucxteam.my/Thread-source-code-draw-a-heart-using-loops</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>for i in range(6):<br />
    print(" "*(5-i) + "*"*(i*2+1))<br />
for i in range(5,0,-1):<br />
    print(" "*(6-i) + "*"*(i*2-1))</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>for i in range(6):<br />
    print(" "*(5-i) + "*"*(i*2+1))<br />
for i in range(5,0,-1):<br />
    print(" "*(6-i) + "*"*(i*2-1))</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Guess the Number Game in 5 Lines]]></title>
			<link>https://stucxteam.my/Thread-source-code-guess-the-number-game-in-5-lines</link>
			<pubDate>Sat, 28 Feb 2026 15:27:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://stucxteam.my/member.php?action=profile&uid=13">Carlos1337</a>]]></dc:creator>
			<guid isPermaLink="false">https://stucxteam.my/Thread-source-code-guess-the-number-game-in-5-lines</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>import random<br />
num = random.randint(1,10)<br />
guess = int(input("Guess 1-10: "))<br />
print("Correct!" if guess==num else f"Wrong! It was {num}")</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>import random<br />
num = random.randint(1,10)<br />
guess = int(input("Guess 1-10: "))<br />
print("Correct!" if guess==num else f"Wrong! It was {num}")</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Saya penat dituduh hensem tapi saya suka fitnah seperti ini]]></title>
			<link>https://stucxteam.my/Thread-source-code-saya-penat-dituduh-hensem-tapi-saya-suka-fitnah-seperti-ini</link>
			<pubDate>Sat, 28 Feb 2026 15:19:23 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://stucxteam.my/member.php?action=profile&uid=13">Carlos1337</a>]]></dc:creator>
			<guid isPermaLink="false">https://stucxteam.my/Thread-source-code-saya-penat-dituduh-hensem-tapi-saya-suka-fitnah-seperti-ini</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Soul() {<br />
    import dreams<br />
    let whispers = ["you", "me", "forever"]<br />
    echo whispers.join(" ~ ")<br />
}<br />
<br />
Time.flow = "slowly"<br />
Memory.catch("your laughter")<br />
Heart.run(forever=True)</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Soul() {<br />
    import dreams<br />
    let whispers = ["you", "me", "forever"]<br />
    echo whispers.join(" ~ ")<br />
}<br />
<br />
Time.flow = "slowly"<br />
Memory.catch("your laughter")<br />
Heart.run(forever=True)</code></div></div>]]></content:encoded>
		</item>
	</channel>
</rss>