how smart is your preferred AI?

StudioOne Repo -

after all, is it really smart ?

here’s an intelligence test, all of them we tried failed miserably, telling them you screwed something up and “out of nothing” both lines which hold $size_slug return “undefined index”

the problem was real, we just made it happen, just for test purpose

then the winner was the “super CN smartie” who came up with a whole html page and style sheet suggesting that it would be “the final solution” . . . but Altman’s intelligence, Gates’s, Suckerberg’s even Copilot dived from their altitude in Kamikaze speed to crash fully right in front of us on our table

here the test code snippet

<select ass=”adm_selects” ame=”default_values[size_slug]”>
<?php
$sizes = get_img_sizes();
asort($sizes);
$max_width = max($sizes);
$max_digits = strlen((string) $max_width);
foreach ($sizes as $slug => $width) {
    $label = str_pad(“{$width}px”, $max_digits + 4, ‘ ‘, STR_PAD_LEFT) . ” – {$slug}”;
    echo ‘<option value=”‘ . esc_attr($slug) . ‘” ‘ . selected($options[‘size_slug’], $slug, false) . ‘>’ . esc_html($label) . ‘</option>’;
                       }
    echo ‘<option value=”full” ‘ . selected($options[‘size_slug’], ‘full’, false) . ‘>’;
    echo str_pad(‘original’, $max_digits, ‘ ‘, STR_PAD_LEFT) . ‘ – full’;
    echo ‘</option>’;
?>
</select>



other answers also where quite wild and without entering their individual stupidity, final verdict is: FULL CRAP and none of them got it . . .

do you?

here it is, first line: ass and ame is the key to heaven or to hell

so then, check it out, have fun! :)


hakka quote … Every bug is just a feature in disguise… some are better at hiding than others.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *