ClemaX

joined 2 years ago
[–] [email protected] 16 points 1 week ago

Eval is bad for security boundaries and the string based approach is a pain to develop and maintain. An alternative that is equally bad for security but better for development would be dynamic imports using importlib.

If you want to support custom scripts while enforcing security boundaries, you could use an embeddable interpreter like lua, or create your own.

[–] [email protected] 10 points 1 week ago
[–] [email protected] 9 points 1 month ago* (last edited 1 month ago)

It all makes sense when you think about the way it will be parsed. I prefer to use newlines instead of semicolons to show the blocks more clearly.

for file in *.txt
do
    cat "$file"
done

The do and done serve as the loop block delimiters. Such as { and } in many other languages. The shell parser couldn't know where stuff starts/ends.

Edit: I agree that the then/fi, do/done case/esac are very inconsistent.

Also to fail early and raise errors on uninitialized variables, I recommend to add this to the beginning of your bash scripts:

set -euo pipefail

Or only this for regular sh scripts:

set -eu

-e: Exit on error

-u: Error on access to undefined variable

-o pipefail: Abort pipeline early if any part of it fails.

There is also -x that can be very useful for debugging as it shows a trace of every command and result as it is executed.

[–] [email protected] 2 points 1 month ago

Rust is special regarding references but Kotlin reads similarly.

[–] [email protected] 2 points 2 months ago (1 children)

What are you missing on Firebase?

[–] [email protected] 5 points 3 months ago* (last edited 3 months ago) (1 children)

The quieter you become, the more you are able to hear – Rumi

[–] [email protected] 4 points 4 months ago

This + node_exporter.

[–] [email protected] 3 points 5 months ago* (last edited 5 months ago)

I don't think that browsers do that. There is HSTS but I think that it only checks if the connection is using TLS.

[–] [email protected] 2 points 5 months ago (1 children)

I think you may want to use for device in /dev/disk/by-uuid/*

That doesn't explain why you aren't seeing messages. I see there is a shebang at the start of the script. Can you confirm that the script has the executable bit set for the root user?

[–] [email protected] 2 points 6 months ago* (last edited 6 months ago)

It works with USB interfaces using passthrough. But yeah doesn't make a lot of sense.

[–] [email protected] 10 points 8 months ago (1 children)

You wouldn't download a car‽

view more: next ›