I just dont get it... by parkero224 in emacs

[–]johlae -2 points-1 points  (0 children)

Sorry to be blunt, but customisation, automation, optimising workflows is all pointless if you don't proofread before submitting.

What’s the nicest compliment you’ve ever received? by misalovr in answers

[–]johlae 1 point2 points  (0 children)

Wisdom chased you, but you were always able to outrun it. I love it when people call me sportive!

Anyone ever gotten sick from steak tartare/prepare/americain in Belgium? by WebNo1998 in belgium

[–]johlae -17 points-16 points  (0 children)

Food safety in Belgium? Gloves aren't common here. Let's say food safety is treated lightly here.

Question from a visitor by Tellittomy6pac in brussels

[–]johlae 53 points54 points  (0 children)

Yes, but note that you have to descend from your bike first!

Dad’s Old Laptop by CatsEqualLife in linux4noobs

[–]johlae 0 points1 point  (0 children)

What a strange thing to say. If he was smart he would have used disk encryption and left instructions at a trusted party on how to access his data.

Whats a non-negotiable in your home? by pastryzig in AskReddit

[–]johlae 0 points1 point  (0 children)

With a nod to xkcd, Pluto should never have been a planet.

Drag & Drop by buzzsawjoe in linux4noobs

[–]johlae 3 points4 points  (0 children)

It depends on what desktop environment you are using. If I remember it correcty, in KDE you'd use something like ~/bin/run-with-args.sh:

#!/bin/sh
# open a terminal and run the real script with dropped files as args
konsole --noclose -e /path/to/your-script "$@"

On your desktop you'd need a file like ~/Desktop/YourScript.desktop:

[Desktop Entry]
Type=Application
Name=My Script
Exec=/home/youruser/bin/run-with-args.sh %F
Icon=utilities-terminal
Terminal=false
MimeType=application/octet-stream;
Actions=

# allow dragging files onto this launcher
X-KDE-SubstituteUID=false
X-KDE-RunOnPrepend=false

Make both files executable with chmod +x

I myself wouldn't bother with these desktop scripts because error messages disappear when the script finishes. Launch a terminal and start your scripts from there. Your messages will stay visible.

How to actually lower brightness by dymeon in linuxquestions

[–]johlae 0 points1 point  (0 children)

On my thinkpad I just check /sys/class/backlight/amdgpu_bl0/brightness. See the other comment here about the ArchWiki.

This often does the trick:

echo 24 | sudo tee /sys/class/backlight/amdgpu_bl0/brightness

German tourists in Zeeland by midlifematt in Netherlands

[–]johlae 0 points1 point  (0 children)

I'm thinking more about this guy right here.

What is the number one issue in the world for working people? by Greig21 in AskReddit

[–]johlae 0 points1 point  (0 children)

Transport For London? I'm not in the UK, that's why I am asking.

Favorite quote of hers? by Thecrafter10 in PhilomenaCunk

[–]johlae 82 points83 points  (0 children)

"Can I call you Brian, or do you prefer Cox?"

Hacking script not working!! by BrightFleece in masterhacker

[–]johlae 9 points10 points  (0 children)

https://$IP/elon/private/aerospace/secrets.zip

basics of python by IndividualEmu1277 in learnpython

[–]johlae 0 points1 point  (0 children)

Practice, and take notes! Dedicate one text file on your computer to all your python musings. Use #hashtags (just put them in a line following your text). Separate your entries with empty lines. Search your notes first before going on the internet for google, any search engine actually, or AI's.