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