diff options
author | 2013-05-27 18:18:20 -0400 | |
---|---|---|
committer | 2013-05-27 18:18:20 -0400 | |
commit | cf21bb3d7fc33a60bade0ba5f109ed8e30ec9c6c (patch) | |
tree | d52c5bc1d82d5c5722692b9067b16603cae23f8d /doc/design | |
parent | 82d5865479c791b6f82b70bd53d7f02e1cd276d5 (diff) |
blog for the da
Diffstat (limited to 'doc/design')
-rw-r--r-- | doc/design/assistant/blog/day_276__fuzzing_continues.mdwn | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/design/assistant/blog/day_276__fuzzing_continues.mdwn b/doc/design/assistant/blog/day_276__fuzzing_continues.mdwn new file mode 100644 index 000000000..57f26bc35 --- /dev/null +++ b/doc/design/assistant/blog/day_276__fuzzing_continues.mdwn @@ -0,0 +1,12 @@ +The fuzz testing found a file descriptor leak in the XMPP git push code. +The assistant seems to hold up under fuzzing for quite a while now. + +Have started trying to workaround some versions of Android not letting +the `am` command be used by regular users to open a web browser on an url. +Here is my current crazy plan: Hack the terminal emulator's title setting +code, to get a new escape sequence that requests an url be opened. This +assumes I can just use `startActivity()` from inside the app and it will +work. This may sound a little weird, but it avoids me needing to set up a +new communications channel from the assistant to the java app. Best of all, +I have to write very little Java code. I last wrote Java code in 1995, so +writing much more is probably a good thing to avoid. |