Active Notices

AI Photo - Prompt

High Active
Sep 13, 2025 - 9:42 PM Expires: Mar 13, 2027
Refer to this video : https://youtu.be/yhWpimCxZfk

Photo-realistic 8K full-body portrait of the man in the reference image, leaning casually against a clean light-blue wall. He is wearing a white V-neck T-shirt, olive oil color jeans, black socks, and black sneakers with white soles. Hands in pockets, one leg crossed over the other, in a relaxed, confident pose.

On the wall beside him, create a bold black-and-white stylized vector portrait of the same man with modern geometric elements. Below the vector art, add clean bold text:

Dilshan Andaramana

Facebook: @MrDilshanAndaramana (Software Developer)

Also include the website name “dilshanandaramana.com” and the phone number “077 144 7888” in a neat, professional way.

Lighting should be bright, clean, and studio-quality, giving a modern, minimalistic, premium personal-branding aesthetic.

Include an orange cat near him for added personality.

Click Game

Medium Active HTML
Nov 15, 2025 - 2:51 PM Expires: Jan 17, 2032
<!DOCTYPE html>
<html>
<head>
<title>Mini Click Game</title>
<style>
body { margin: 0; background: #eee; } /* 1 */
#gameBox { /* 2 */
position: absolute;
width: 50px;
height: 50px;
background-color: red;
cursor: pointer;
border-radius: 8px;
}
</style>
</head>
<body>
<div id="score">Score: 0</div>
<div id="gameBox"></div> <script>
let score = 0;
const box = document.getElementById('gameBox');
const scoreDisplay = document.getElementById('score');

// 4. කොටුව නව තැනකට ගෙන යාම
function moveBox() {
const maxX = window.innerWidth - 50;
const maxY = window.innerHeight - 50;
box.style.left = Math.random() * maxX + 'px';
box.style.top = Math.random() * maxY + 'px';
}

// 5. ක්ලික් කළ විට
box.onclick = function() {
score++;
scoreDisplay.textContent = 'Score: ' + score;
moveBox();
};

// 6. ගේම් එක පටන් ගත් විට
moveBox();
</script>
</body>
</html>

Add New Notice

Notice Management

AI Photo - Prompt
High Active Sep 13, 2025
Edit
Click Game HTML
Medium Active Nov 15, 2025
Edit