ryanerwin

Results 50 comments of ryanerwin

Seems that group messages to `staff`, `admins`, `moderators`, and `system` work a bit differently from the rest of the group messages.... Or maybe just that messages from `system` need to...

One of the errors that comes up on short replies appears to be from `lib/validators/post_validator.rb` ``` def raw_quality(post) sentinel = TextSentinel.body_sentinel(post.raw, private_message: private_message?(post)) post.errors.add(:raw, I18n.t(:is_invalid)) unless sentinel.valid? end ``` I...

This is a JavaScript UI thing where I really have zero clue... Is there a book you would recommend for this? JavaScript UI I really don't know where to begin......

It's different, but minimize / restore still doesn't really work... Hopefully this summarizes it well... Basically the text input box "moves" location moves based on window.innerHeight (window.innerHeight reports one value...

Just to be clear, your most recent change did prevent the keyboard from popping up automatically... But the real Android issue is not whether or not whether or not the...

@frolovia Looking through the code for: ISRELA() ``` #define ISRELA(s) (s[0] == '+' || s[0] == '-') ``` I believe that if the string begins with a "+" or a...

You can get some windows to move relatively with `xdotool`. For example, move the active window 10px left: ``` xdotool getactivewindow windowmove --sync --relative -- "-10" "0" ``` Unfortunately, this...

Completely agree with this sentiment. I understand the desire of the original author for a completely pristine development environment... When you spent a few hours debugging an issue only to...

I'm getting the same sort of issue... Lots of docsets not generated... For example I have: ``` GOPATH="/home/ryan/go" ``` And inside of the GOPATH folder I have: ``` /home/ryan/go/src/github.com/k0kubun /home/ryan/go/src/github.com/k0kubun/pp...

To actually use the Filter feature on the CEF page, just enter `83.3.9` and the builds of `CEF 83.3.9+ged43e55+chromium-83.0.4103.61` can be located. ![image](https://user-images.githubusercontent.com/2156415/92292181-0a6ebc80-ef46-11ea-838f-ea46704bc02c.png) Unfortunately for me though, after downloading `CEF...