Rabu, 09 April 2025

Ghibli

 Kunjungi :https://chatgpt.com/

Upload foto :


Ketik prompt Ghibli

Hasil :



Chatgpt

 Kunjungi : https://chatgpt.com/

Upload Foto ini ;


Tulis prompt nya :

Create a toy of the person in the photo. Let it be an action figure. Next to the figure, there should be the toy’s equipment, each in its individual blisters. 1) a book called “Geografi”. 2) a a book called “RPP”. 3) Map. 4) compass. 5) Quadcopter. Don’t repeat the equipment under any circumstances. The card holding the blister should be a background of Alaska. Also, on top of the box, write ‘Dudi Gunawan’ and underneath it, ‘Guru Geografi’. Add a warning sticker at the bottom: “Hayu diajar Geografi!”. The figure and equipment must all be inside blisters. Visualize this in a realistic way.


Hasilnya :



Senin, 10 Maret 2025

Jumat, 07 Maret 2025

random

 





sin tan






 

cos tan




 

sin cos




 

Kata2 sales marketing

 Raffiné

Sublime Somptueux ⚡️ 𝗜𝗹𝗹𝘂𝘀𝘁𝗿𝗲𝗿 𝗹'𝗶𝗺𝗽𝗮𝗰𝘁 𝗲𝘁 𝗹𝗮 𝘁𝗿𝗮𝗻𝘀𝗳𝗼𝗿𝗺𝗮𝘁𝗶𝗼𝗻 Bouleversant Détonnant Extraordinaire Incroyable Irréversible Transformateur Radical Renversant Spectaculaire Époustouflant 🚀 𝗘𝘅𝗽𝗿𝗶𝗺𝗲𝗿 𝗹𝗮 𝘀𝗶𝗺𝗽𝗹𝗶𝗰𝗶𝘁𝗲́ 𝗲𝘁 𝗹𝗮 𝗿𝗮𝗽𝗶𝗱𝗶𝘁𝗲́ Accessible Actionnable Clair Ergonomique Express Facile Instantané Intuitif Prêt à l'emploi Pratique Rapide Simplifié 🙏  𝗜𝗻𝗰𝗮𝗿𝗻𝗲𝗿 𝗹𝗮 𝗳𝗶𝗮𝗯𝗶𝗹𝗶𝘁𝗲́ 𝗲𝘁 𝗹𝗮 𝘀𝗲́𝗿𝗲́𝗻𝗶𝘁𝗲́ Apaisant Fiable Infaillible Protégé Rassurant Sans effort Simple Simplifié(e) Serein Sécurisé Zéro risque ✨ 𝗦𝘁𝗶𝗺𝘂𝗹𝗲𝗿 𝗹𝗮 𝗰𝗿𝗲́𝗮𝘁𝗶𝘃𝗶𝘁𝗲́ 𝗲𝘁 𝗹'𝗶𝗺𝗮𝗴𝗶𝗻𝗮𝘁𝗶𝗼𝗻 Audacieux Éblouissant Évocateur Exaltant Fantastique Imaginatif Ingénieux Lumineux Original Visionnaire En vente, comme en amour : Le cœur a ses raisons que parfois la raison ne connait pas. Moralité : Que tes contenus soient des as de pique qui touchent les cœurs et les esprits.

10 Ai Animation

4,6 Mb


11 Mb



 Open Ai

Claude Ai

 Copilot

Deepseek

Grok

Midjourney

Perplexity

Mistral Ai

Gemini Ai

 Meta Ai



 

Rabu, 05 Maret 2025

9 Ai animation




<html>
<head>
<style>
.container{background:white;}

.imgContainer img{position:fixed;width:60px;height:60px}
</style>
</head>
<script>
var radius = 220;
var offsetX = 300;
var offsetY = 200;
var offsetA = 0;

setInterval(updateSpin, 20);


updateSpin();

function updateSpin(){  
  var imgs = document.querySelectorAll( '#imgContainer img' );
  

    // Evenly distribute images around circle
  slice = 360.0 / imgs.length; 


    imgs.forEach((e,index) => {
    // Convert angle to radians
    radians = (slice*index + offsetA) * (Math.PI/180);
    
    // Some simple pythagora geometry
    x = offsetX + Math.cos(radians) * radius;
    y = offsetY + Math.sin(radians) * radius;
    
    // Update image position
    e.style.top  = y+60+'px';
    e.style.left = x+40+'px';
  });

    // Increment angle to images rotate on next update
    offsetA += 0.5;
}
</script>
<body>
<div class="container">
  <div class="inner">
    <div class="imgContainer" id="imgContainer">
      <img src="1.png">
      <img src="2.png">
      <img src="3.png">
      <img src="4.png">
      <img src="5.png">
      <img src="6.png">
      <img src="7.png">
 <img src="8.png">
<img src="9.png">
    </div>
  </div>
</div>
</body>
</html>


 









Selasa, 04 Maret 2025

Animasi Image Rotation with Javascript


Image capture with Licecap
https://www.cockos.com/licecap/

source code :

<html>
<head>
<style>
.container{background:white;}

.imgContainer img{position:fixed;width:100px;height:80px}
</style>
</head>
<script>
var radius = 220;
var offsetX = 300;
var offsetY = 200;
var offsetA = 0;

setInterval(updateSpin, 30);


updateSpin();

function updateSpin(){  
  var imgs = document.querySelectorAll( '#imgContainer img' );
  

    // Evenly distribute images around circle
  slice = 360.0 / imgs.length; 


    imgs.forEach((e,index) => {
    // Convert angle to radians
    radians = (slice*index + offsetA) * (Math.PI/180);
    
    // Some simple pythagora geometry
    x = offsetX + Math.cos(radians) * radius;
    y = offsetY + Math.sin(radians) * radius;
    
    // Update image position
    e.style.top  = y+60+'px';
    e.style.left = x+40+'px';
  });

    // Increment angle to images rotate on next update
    offsetA += 0.5;
}
</script>
<body>
<div class="container">
  <div class="inner">
    <div class="imgContainer" id="imgContainer">
      <img src="chatgpt.png">
      <img src="deepseek.png">
      <img src="claude.png">
      <img src="mistral.png">
      <img src="midjourney.png">
      <img src="meta.png">
      <img src="grok.png">
    </div>
  </div>
</div>
</body>
</html>


 

My books Excel

 


My books of python

 Beli Buku diskon di sopi gramedia diskon



Sabtu, 01 Maret 2025

Ai

 Chatgpt

Mistral

Grok

Copilot

Deepseek

Alpha signal

Generation ai

Llm

Nlp

Imagen

Openai

Faster, smarter, and more adaptable—Claude 3.7 Sonnet is here to redefine AI.

Me on Google Maps