|
To achieve 10x you need to learn exactly how lazy you can be and get the same results :P me: html select list of orderings: fifo, random, rr, lifo GPT-4: To create an HTML select list with different orderings, such as FIFO (First In, First Out), Random, RR (Round Robin), and LIFO (Last In, First Out), you can use the following HTML code: <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Select List of Orderings</title>
</head>
<body>
<form>
<label for="orderings">Choose an ordering method:</label>
<select name="orderings" id="orderings">
<option value="fifo">FIFO (First In, First Out)</option>
<option value="random">Random</option>
<option value="rr">RR (Round Robin)</option>
<option value="lifo">LIFO (Last In, First Out)</option>
</select>
<button type="submit">Submit</button>
</form>
</body>
</html>
This code creates a simple HTML page with a form containing a select list. The user can choose one of the ordering methods from the list, and the selected value can be submitted with the form.--- OK not exactly the same but just wanted to GPT-golf it. When lazymaxing for real, I just try to keep in mind that ChatGPT is already fine-tuned to include certain things, like following proper conventions, explaining its steps, commenting code. And that most of the time it'll make an educated guess rather than looking at me going "huh?" if it's unsure - so if there's really only 1 reasonable interpretation of terse instructions, I can drop the human-friendly cruft text. |