> any value over 2^31 seems to give random results.
Wow he really lucked out... On his way to perfecting a fully functioning and performant Even/Odd Detector, he stumbled upon a fully functioning and performant Coin Flip Simulator!
If anyone wants to set this up to auto-run all the way to the right and then all the way back to the left, here is a vibe-coded (sorry) browser console script. Makes a great "screen-saver" if you kick off the script and then put your browser in full screen mode :)
(function() {
let direction = 'right'; // Start by going right
let intervalId;
function getCurrentAnimalName() {
const animalDiv = document.querySelector('.animal-name');
return animalDiv ? animalDiv.textContent.trim() : '';
}
function pressKey(keyCode) {
const event = new KeyboardEvent('keydown', {
key: keyCode === 37 ? 'ArrowLeft' : 'ArrowRight',
keyCode: keyCode,
code: keyCode === 37 ? 'ArrowLeft' : 'ArrowRight',
which: keyCode,
bubbles: true
});
document.dispatchEvent(event);
}
function autoScroll() {
const currentName = getCurrentAnimalName();
if (direction === 'right') {
pressKey(39); // Right arrow
if (currentName === 'Pando Clone') {
console.log('Reached Pando Clone, switching to left');
direction = 'left';
}
} else {
pressKey(37); // Left arrow
if (currentName === 'DNA') {
console.log('Reached DNA, switching to right');
direction = 'right';
}
}
}
// Start the interval
intervalId = setInterval(autoScroll, 3000);
// Log start message and provide stop function
console.log('Auto-scroll started! To stop, call: stopAutoScroll()');
// Expose stop function globally
window.stopAutoScroll = function() {
clearInterval(intervalId);
console.log('Auto-scroll stopped');
};
})();
You could try posting both at the LLM and ask it to explain the stuff I changed, if you're interested in learning more Javascript. Assuming you aren't already deep in the JS trenches and only vibed bc you couldn't be bothered.
I wonder if the AI correctly identified it as a bag of Doritos, but was also trained on the commercial[0] where the bag appears to beat up a human (his fault for holding on too tight) and then it destroys an alien spacecraft.
As a big fan of Chris Cornell I went through the same stream of emotions with their Motown version of Like a Stone[0]. And if you can get past the thumbnail, check out the 2000s Rock version of Many Men[1]
Yep! Nothing worth sharing/publishing from me, but quite a few mini projects that are specific to my position at a small non-tech company I work for. For example we send data to a client on a regular basis, and they send back an automated report with any data issues (missing fields, invalid entries, etc) in a human-unfriendly XML format. So I one-shotted a helper script to parse that data and append additional information from our environment to make it super easy for my coworkers to find and fix the data issues.
Wow he really lucked out... On his way to perfecting a fully functioning and performant Even/Odd Detector, he stumbled upon a fully functioning and performant Coin Flip Simulator!
reply