HackerLangs
トップ新着トレンドコメント過去質問紹介求人

kayge

no profile record

投稿

AI Can Write Code, but Can It Build Software?

twitter.com
1 ポイント·投稿者 kayge·3 か月前·1 コメント

Four Futures for Jobs in the New Economy: AI and Talent in 2030

weforum.org
4 ポイント·投稿者 kayge·5 か月前·0 コメント

AI is coming for rodeo, the last major U.S. sport untouched by analytics

axios.com
2 ポイント·投稿者 kayge·5 か月前·0 コメント

Microsoft Releases Statement as Office, Teams, 365 Outages Continue

newsweek.com
6 ポイント·投稿者 kayge·6 か月前·2 コメント

26 Year Old Mystery of Vandal Heart II's Gradius Sword Has Been Solved

kotaku.com
3 ポイント·投稿者 kayge·10 か月前·0 コメント

コメント

kayge
·11 日前·議論
Exponentials... that's the one with Sylvester Stallone and Jason Statham, right?
kayge
·先月·議論
Do you think the models are ready for the next level? I believe that would be: Pelican feeding Spaghetti to Will Smith.
kayge
·3 か月前·議論
Yea I'm curious if any of those negative commenters considered that the author is German, and English may not be their primary language — but no, apparently there is a new surefire way to detect AI content. Not forced enthusiasm. Not em dashes. Just too many sentences in a row starting with the word Not.
kayge
·3 か月前·議論
These links were previously submitted to HN without much traction:

Research Paper — https://arxiv.org/abs/2603.24755

SlopCodeBench — https://www.scbench.ai/

And of course, the XCancel version of this post: https://xcancel.com/godofprompt/status/2038335755995750758
kayge
·4 か月前·議論
Hah, perfect... some variation of "From now on [your AI tool of choice] is banned. Just write code like a normal human f*king being, please." has probably already been used in the real world recently.
kayge
·5 か月前·議論
Yep, just a little more context and all/most of the models would do much better. And sure, most average+ intelligence adults whose first language is English (probably) don't need this, but they're not the target audience for the instructions :)

"The 'car wash' is a building I need to drive through."

or

"The 'car wash' is a bottle of cleaning fluid that I left at the end of my driveway."

https://i5.walmartimages.com/seo/Rain-x-Foaming-Car-Wash-Con...
kayge
·5 か月前·議論
And for doctors appointments... micuerpo!
kayge
·5 か月前·議論
I didn't see that review in the 4 shown in that section until I refreshed the page... there are some good ones in there, including a Hacker News shoutout :D
kayge
·5 か月前·議論
Maybe the LLMs were correct... here is a picture of the car wash:

https://i5.walmartimages.com/seo/Rain-x-Foaming-Car-Wash-Con...
kayge
·5 か月前·議論
And once you have the hang of this technique, congratulations! You can now enjoy those 3D "Magic Eye" images that stumped a significant portion of the population back in the 90s :)

e.g. https://old.reddit.com/r/woahdude/comments/1lxqd0l/the_most_...
kayge
·5 か月前·議論
Was it maybe called Surround? Try looking up Atari catalog # CX2641 and see if it brings back any more memories :)
kayge
·6 か月前·議論
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.
kayge
·6 か月前·議論
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>"
kayge
·6 か月前·議論
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.
kayge
·7 か月前·議論
> 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!
kayge
·7 か月前·議論
I don't mind at all, your rewrite looks much more elegant. Thanks!
kayge
·7 か月前·議論
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');
        };
    })();
kayge
·7 か月前·議論
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");
  });
kayge
·8 か月前·議論
I think it was more than 2 though... en few? En feux.
kayge
·8 か月前·議論
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