walfie

Results 12 comments of walfie

Looks like the same issue as [last time](https://github.com/walfie/gbf-raidfinder/issues/136), where twitter suspended the account I was using to stream the tweets. I still haven't heard back from Twitter from last time...

Twitter suspended the account that was used to access the streaming API so the main raidfinder (gbf-raidfinder.aikats.us) stopped working. I've submitted an appeal, but kinda doubt I'll hear back from...

a bunch of extra bosses are now showing up with names like: ``` Lv120 ゴッドガード・ブローディア2 Lv150 フロネシス .. Lv150 フロネシス 2222 Lv150 フロネシス 3 Lv150 フロネシス. Lv150 フロネシス.. Lvl 200...

As you can probably tell by the lack of commit activity on the repo, I haven't worked on this project in a long time -- a lot of the code...

Dang. Well for now you can manually start using the https version at https://gbf-raidfinder.aikats.us , which I hope works. Unfortunately, localStorage can't be shared between them, so you'd have to...

Hmm I could probably define an empty function in global scope, like: ```js // Maybe not exactly this, but something similar. // Basically some way to install custom on-click callbacks....

Sorry this has been left open for so long! I don't know how well it reacts to changes in window size (either resizing on desktop or caused by rotations, etc),...

Yeah unfortunately as you mentioned, I don't think there's a good way for me to fix this without having to download the images at build time, or having some kind...

I found out that you can set outputs with newlines, if you replace newlines with the literal characters `%0A` e.g., `echo "::set-output name=my_output::hello%0Aworld%0A!"` Presumably also works with `::set-env` although I...

I had a case which was something like: ```rust struct Worker { service: S } impl Worker where S: Service, S::Error: std::error::Error + Send + Sync + 'static, { async...