HackerTrans
TopNewTrendsCommentsPastAskShowJobs

kayge

no profile record

Submissions

AI Can Write Code, but Can It Build Software?

twitter.com
1 points·by kayge·3 bulan yang lalu·1 comments

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

weforum.org
4 points·by kayge·5 bulan yang lalu·0 comments

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

axios.com
2 points·by kayge·5 bulan yang lalu·0 comments

Microsoft Releases Statement as Office, Teams, 365 Outages Continue

newsweek.com
6 points·by kayge·6 bulan yang lalu·2 comments

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

kotaku.com
3 points·by kayge·10 bulan yang lalu·0 comments

comments

kayge
·12 hari yang lalu·discuss
Exponentials... that's the one with Sylvester Stallone and Jason Statham, right?
kayge
·bulan lalu·discuss
Do you think the models are ready for the next level? I believe that would be: Pelican feeding Spaghetti to Will Smith.
kayge
·3 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
And for doctors appointments... micuerpo!
kayge
·5 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
Was it maybe called Surround? Try looking up Atari catalog # CX2641 and see if it brings back any more memories :)
kayge
·6 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
> 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 bulan yang lalu·discuss
I don't mind at all, your rewrite looks much more elegant. Thanks!
kayge
·7 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
I think it was more than 2 though... en few? En feux.
kayge
·8 bulan yang lalu·discuss
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