Hacker Newsnew | past | comments | ask | show | jobs | submit | kayge's commentslogin

And for anyone who is nervous about clicking that video link at work: BBC in this context stands for British Broadcasting Corporation, which is a fairly well respected news group.

No one was nervous. That might be just you. You might want to spend a little less time online.

The new pyramid looks like a decent step in the right direction, and as other commenters have already mentioned: better definitions of "highly processed" vs "real food" might be helpful (but I think most of us probably have a fairly clear idea of what they mean).

Two more things I think should be considered:

1. Change the Nutrition Facts labels to say "Lipids" instead of "Fats". Seems like no matter how many times "fat doesn't make you fat" is repeated, many people are still scared of consuming fat.

2. Reconsider or recalculate the old 2000 calorie per day guidance. I have no actual data to support this — fitness and nutrition self-experimentation is just a hobby of mine — but I have a feeling that the "Average American" (which may also need to be defined somewhere) probably only needs around 1500 calories per day to maintain a healthy weight. There is obviously a wide range of needs depending on height, activity level, occupation, etc. but I feel like if someone is considering a 500 calorie treat, it would be more helpful if they thought "wow this is 1/3 of my daily calories... maybe I should split it with a friend" instead of "meh this is only 25% of my daily calories <chomp>"


Counterpoint: I've been using em dashes and bulleted lists in my writing (especially in work emails) since around 2015. There are dozens of us! Or maybe I'm just an LLM in a meat suit — who knows at this point.

> 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');
        };
    })();


Cannot stand robot code. Thanks for the genuinely cool thing though. I hope you don't mind me rewriting, if only for my own satisfaction.

  {
    const s = window.scroller = {}
    const press = (key, code) => () =>
      document.dispatchEvent(new KeyboardEvent('keydown', {
        key: key, keyCode: code,
        which: key, code: code, bubbles: true
      }));
    const step = () => {
      const div = document.querySelector('.animal-name')
      const name = div?.textContent.trim()
      if (name === 'Pando Clone') s.dir = s.left
      if (name === 'DNA') s.dir = s.right
      s.dir()
    }
    s.left = press(37, 'ArrowLeft')
    s.right = s.dir = press(39, 'ArrowRight')
    s.start = (ms) => s.ival = setInterval(step, ms)
    s.stop = () => clearInterval(s.ival)
  }
  scroller.start(5000)


I don't mind at all, your rewrite looks much more elegant. Thanks!


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.


If you want to skip to December 31st, you can enter the following into your browser console to make all the tiles/doors openable:

  const elements = document.querySelectorAll(".countdown-calendar__door");
  elements.forEach(element => {
    element.classList.add("will-open");
  });


I think it was more than 2 though... en few? En feux.


Also a great read-through of this by H. Jon Benjamin (Archer / Bob's Burgers) and Maeve Higgins: https://www.youtube.com/watch?v=5usXhX0zaO4


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.

[0] https://www.youtube.com/watch?v=sIAnQwiCpRc


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]

[0] https://www.youtube.com/watch?v=_88Qg8FGrqY [1] https://www.youtube.com/watch?v=8gFKREP3gPg


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: