MIDNIGHT BYTE
Software • AI • Web Development
Creating modern websites, automation tools, AI solutions,
and custom software with a futuristic design philosophy.
About Me
Replace this with your story, experience,
what technologies you specialize in,
and why clients should choose Midnight Byte.
Services
🌐 Website Development
Modern responsive websites for businesses and personal brands.
🤖 AI Solutions
Custom AI tools, chatbots, and intelligent automation.
⚡ Automation
Save time by automating repetitive tasks and workflows.
💻 Software Development
Desktop applications, utilities, and custom programming.
const canvas=document.getElementById("stars");
const ctx=canvas.getContext("2d");
canvas.width=window.innerWidth;
canvas.height=window.innerHeight;
const stars=[];
for(let i=0;i<250;i++){ stars.push({ x:Math.random()*canvas.width, y:Math.random()*canvas.height, r:Math.random()*2, v:Math.random()*0.6 }); } function animate(){ ctx.clearRect(0,0,canvas.width,canvas.height); ctx.fillStyle="white"; stars.forEach(s=>{
ctx.beginPath();
ctx.arc(s.x,s.y,s.r,0,Math.PI*2);
ctx.fill();
s.y+=s.v;
if(s.y>canvas.height){
s.y=0;
s.x=Math.random()*canvas.width;
}
});
requestAnimationFrame(animate);
}
animate();