tab

Results 41 comments of tab

I tried a few combinations myself, it seems to vary a lot between the 4 (+ custom) as far as what can be read vs written by root and non...

For hfsfuse it's just something for convenience to rebuild without specifying options to make every time. It can be created with `make config`, there's some info on how it gets...

These should do it https://github.com/0x09/hfsfuse/commit/9a8ff0b7598604741d0615d98372f3ebc686a4b3 / https://github.com/0x09/hfsfuse/commit/5fe04ec66bccd8eeef7ab477b06b86b1af55c6d0. ```shell make XATTR_NAMESPACE=namespace. ``` or the same setting in config.mak now changes this for all xattrs. Defaults to empty on macOS and `user.`...

After experimenting with some more involved ways of displaying these on the filesystem, I decided to go with the simplest and just add an option to mount with symlinks as...

@hoehrmann does this do what you're looking for? https://gist.github.com/0x09/53eaf9eee7da7d90cb54814dce4596a6 It allows you to write `select create_function("foo_function", "expr");` to define an SQL function using an expression. The hypotenuse example from the...

@hoehrmann that makes sense. I think that function creation is sort of out of scope for what I'd like the module to do (especially since the behavior/treatment of function calls...

Hi, This can actually be done with a small bit of scripting if you have the imagemagick CLI installed and resdet+spec in your `PATH`: ```shell #!/usr/bin/env bash image=$1 output=$2 read...

@BuyMyMojo I put together a version of this script with a few more options that I think would be good to add to the repo, but let me know if...

Cool then I've added this under src/visualize.sh in https://github.com/0x09/resdet/commit/5210c715e24dc762103b3b90e5f6cb29ba605bb9. The usage is like `./visualize.sh input.png output.png`, but there are also some options to set the line length and color and...

@BuyMyMojo were there other options that would be useful to add to the script or can this be closed?