

We only know if we’re at the top of the curve if we keep pushing the frontier of what is possible. Seeing exciting paths is what motivates people to try to get the improvements and efficiencies.
I do agree that the AI companies are pushing a ridiculous message, as if LLMs are going to replace people next quarter. I too am very pessimistic on that outcome, I don’t think we’re going to see LLMs replacing human workers anytime soon. Nor do I think GitHub should make this a feature tomorrow.
But, machine learning is a developing field and so we don’t know what efficiencies are possible. We do know that you can create intelligence out of human brains so it seems likely that whatever advancements we make in learning would be at least in the direction of the efficiency of human intelligence.
If that’s the case I don’t feel like having hundreds and hundreds of false security reports creates the mental arena that allows for researchers to actually spot the non-false report among all the slop.
It could very well be that you can devise a system which can verify hundreds of false security reports easier than a human can audit the same codebase. The author didn’t explore how he did this but he seems to have felt that it was worth his time.:
What is different, is that for the first time the chance of getting correct results is sufficiently high that it is worth your time and and your effort to try to use it on real problems.
You’d need to write a script, for example:
#!/bin/bash # Set the directory where screenshots will be saved SCREENSHOT_DIR=~/Pictures/Screenshots # Create the directory if it doesn't exist mkdir -p "$SCREENSHOT_DIR" # Get the current date and time in the format MM-DD-YYYY_HH:MM:SS DATETIME=$(date +"%m-%d-%Y_%H-%M-%S") # Build the filename using the datetime FILENAME="screenshot_$DATETIME.png" # Take a fullscreen screenshot, save it to the specified directory, and copy it to the clipboard spectacle -f -b -c -o "$SCREENSHOT_DIR/$FILENAME" # Optional: Notify the user (requires notify-send) notify-send "Screenshot taken" "$FILENAME saved to $SCREENSHOT_DIR"
You can change the -f to change the screenshot mode. From spectacle --help:
-f, --fullscreen Capture the entire desktop (default) -m, --current Capture the current monitor -a, --activewindow Capture the active window -u, --windowundercursor Capture the window currently under the cursor, including parents of pop-up menus -t, --transientonly Capture the window currently under the cursor, excluding parents of pop-up menus -r, --region Capture a rectangular region of the screen
Save the script somewhere. It’s safest to make it owned by root and put somewhere like /usr/scripts so random user-access programs can’t edit the script. Use chmod +x to make it executable.
Then go to Plasma -> Settings -> Keyboard -> Shortcuts, Click ‘Add New’ -> Command or Script. For the command, give it the path to your script, give it a name click Add and then set a hotkey by clicking the Add butoon.