Cameron Lonsdale

Results 22 comments of Cameron Lonsdale

Hi @wangyan-dlut I encountered this problem recently. I'm not sure if this is the correct fix, but try using the type attribute `fixed-type`. This should fill out the schema for...

Hey @Mak3yrM0v3 , looks like you might be using Python 2.7. MTP only works for python 3.7 and newer. Try using a virtual environment when installing and see if that...

The issue has been documented here: https://github.com/urwid/urwid/issues/322 I think the best solution going forward would be to encode or prevent unprintable characters from being rendered. Since the scope of MTP...

Yeah I believe it would. Really, it would be nice to be able to specify a transformation function for the data, with the default being your escape function. I've sub...

Here's what I implemented: ```python for row in self._format_rows(rows, options): header, value = row lines.append( f""" {header} {value} """ ) ``` You've gotta have the `tr` and `th` around the...

Does that command still work? Debug trace on latest shows 404 on `https://api.github.com/orgs/cameronlonsdale/repos?per_page=100` for my account for example. The URL seems to need to be `https://api.github.com/users/cameronlonsdale/repos?per_page=100` with /users instead.

Would be nice, I have a jank wrapper which SHA256s the secret and checks if its in a list of hashes I maintain for secrets which are fine to ignore...

@ahrav Either I tend to already have the repo cloned (so no need to clone it again), or I prefer to have the cloning step be done ahead of time...

Yes please, would be great to specify --depth=1 which is passed to the git clone command. For the more continuous scans which don't need to go through the entire commit...

Not entirely sure why this might be. Are you installing with `pip3 install mtp` and using the script via `mtp examples/sample.ciphertexts` for example?