Steven Karas

Results 8 comments of Steven Karas

The [docs][kramdown-katex] seem to indicate that the KaTeX engine is intended for untrusted user input. Of course, the PR as it stands now would also allow the `sskatex` engine, which...

Here's the output of `pyflame -v` for the build that originally exited early: ``` Pyflame 1.5.7 (commit e9c6b7a) linux-gnu x86_64 (ABI list: 26 34) ``` I rebuilt it to only...

looking at `/proc/45512/maps`, these are some of the relevant page allocations ``` 7f5d126f4000-7f5d128f4000 ---p 00017000 08:01 262158 /lib/x86_64-linux-gnu/libresolv-2.19.so 7f5d14049000-7f5d18000000 ---p 00000000 00:00 0 7f5d18e1f000-7f5d1901e000 ---p 0000a000 08:01 266284 /lib/x86_64-linux-gnu/libnss_files-2.19.so ```

This is a regular Python 2.7.6 process. Here's the backtrace: ``` #0 pyflame::PtracePeek (pid=pid@entry=45512, addr=addr@entry=80) at ptrace.cc:156 #1 0x000000000040d402 in pyflame::py26::FollowFrame (pid=pid@entry=45512, frame=140024926446528, stack=stack@entry=0x7fffffffe1d0) at ./frob.cc:229 #2 0x000000000040d4f3 in pyflame::py26::FollowFrame...

If you're willing to hardcode the path to asdf in the bootstrap script, this is feasible. However, I'm not aware of a way to determine the script location of a...

I'm not aware of a POSIX way to get the location of the current script, so this assumes the `.asdf` folder is in `$HOME/.asdf`: [asdf.posix.sh](https://gist.github.com/stevenkaras/65c56b86cfc0bcbd79cb0f50d282390a)

I just hit this as well, and wanted to report that the suggested firewall whitelisting worked, but only with the physical path to puma-dev (homebrew sets a symlink from `/usr/local/bin/puma-dev`...

Dashing doesn't support PCRE. It supports golang regexp - which in turn is based on re2, which does not [support lookaround][0]. I've hit something similar and worked around it by...