Posts

AI projects built with Claude Image comparison tool https://claude.site/artifacts/a49309c9-49ec-4888-a790-891894001525 Rubics cube simulator https://claude.site/artifacts/0a4a1e14-85d8-4169-b251-6ceebda740cb Bloom filter visualization https://claude.site/artifacts/2e673219-d056-44b8-9642-b0bbee928c54 Self playing snake game https://claude.site/artifacts/5574c1eb-ea43-4e20-9d89-c96b9d4cf1de Reddit thread formatter https://claude.site/artifacts/6892d6ff-5f2e-4731-bb52-14fd3ec781db Bitcoin game https://claude.site/artifacts/cf93dea8-1b44-4c44-8ff3-a2eef2a7d8cd Music drum pad https://claude.site/artifacts/091a4c98-f9fc-4601-ae3d-29e3382cd5a3 TDEE, Macronutrient, and BMI Calculator https://claude.site/artifacts/bab072fe-4873-4a5f-b626-a076341c2d76 Stock Option Call Analyzer https://claude.site/artifacts/cd452263-d93a-4506-94b6-6dcb9681512f Flappy bird game https://x.com/NickADobos/status/1803837860635627558 Sudoku solver https://claude.site/artifacts/22a509b7-5f6a-478a-b56c-298898c3cba6 Pyt...

diwali

Image
Happy Diwali - Special Wishes for You Happy Diwali Greetings की ओर से Happy Diwali IN ADVANCE May the light of Diwali fill your home with happiness and joy. We wish you a Diwali full of brightness, positivity, and success. की ओर से HAPPY Diwali IN ADVANCE Wishing you a Diwali that's filled with the warmth of love, the joy of sharing, and the glow of divine blessings. May you have a sparkling Diwali! ...

text to speech

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Text to Speech Generator</title>     <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">     <link href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" rel="stylesheet">     <style>         body {             background-color: #f0f4f8;             padding: 20px;         }         .header {             text-align: center;             margin-bottom: 20px;         }         .voice-buttons {            ...

Create Table in Functions

  function tbles ( n ){     for ( let i = n ; i <= n * 10 ; i += n ){         console . log ( i );     } } tbles ( 7 )

how to find average no in function

  function caAvg ( a , b , c ) {     let avg = ( a + b + c ) / 3     console . log ( avg ); } caAvg ( 2 , 4 , 7 )

Guess The Number Game Js

  let max = prompt ( "enter the number" ) console . log ( max ); const random = Math . floor ( Math . random () * 5 ) let guess = prompt ( "enter the correct number" ) while ( true ){     if ( guess == "quit" ){         console . log ( "user quit" );         break ;     }     if ( guess == random ){         console . log ( "you are write" );         break ;     }     else if ( guess < random ){         guess = prompt ( "your guess was to small" )     }         else {         guess = prompt ( "your guess was to Large" )       }     // else {     //     guess = prompt("your guess was wrong please try again")     // } }