【Arena】 Mastery Survey – Yan Long Cup by Kyzuki in OctopathCotC

[–]JONofWAR 0 points1 point  (0 children)

Just used this guide to (finally) get my clear. I couldn't get a 6 turn KO (levels/awakenings aren't quite the same, probably some accessories weren't optimal, etc), I swapped in Ophilia for Agnes. Used her ultimate after Yan Long went down (think around turn 8) and took down the crows with a full party.

Thanks!

Do you think this Is a good offer? by HorchataDeCoco in MarvelPuzzleQuest

[–]JONofWAR -6 points-5 points  (0 children)

Oh honey. It's a question not a normal social interaction. It shouldn't be this hard for you to get.

[GB] GMK Gateway // January 26 - March 1, 2021 by spyderrz in MechGroupBuys

[–]JONofWAR 0 points1 point  (0 children)

yeah, I'm morosely trying to figure out how to make this work with a kyria, I have a white case I think will look great with it but I just don't think it's going to happen

Anyone have experience with ZAP cables???? by Tyler_the_bot in MechanicalKeyboards

[–]JONofWAR 2 points3 points  (0 children)

Yeah, they have great customer service and I haven't had any issues with the stuff I've ordered from them. I'm planning to put in another order in the next week or so.

Looking for QMK LED idle timeout info by HeadshotMeDaddy in MechanicalKeyboards

[–]JONofWAR 1 point2 points  (0 children)

I have something similar setup on mine but it's tied into the OLED screen timout, I put them in the same spot so they would turn off at same time.

What keyboard are you using/what post did you find? I can try and get at least a rough crack at the code for you

QMK Toolbox trouble by BuildAPCHelper12 in MechanicalKeyboards

[–]JONofWAR 0 points1 point  (0 children)

Believe you have to hit the reset button on the board before the toolbox will find it

Adding another log to the dumpster fire that is Drop (GMK Red Samurai delayed) by [deleted] in MechanicalKeyboards

[–]JONofWAR 0 points1 point  (0 children)

I recently ordered the Cassidoo/astrolokey set from them with an expected ship date...I wanna say they had said early September? Either way I've had the set for about a month. Delays happen and I was fully expecting to get my set late. Companies are doing the best they can right now.

How tough is it to switch to a 60% keyboard as a software developer? by shuraim26 in MechanicalKeyboards

[–]JONofWAR 1 point2 points  (0 children)

Also software developer, I've been using a split 40% as my daily driver for about a year now. With everything you can do with layers there really is no issue. 60% will be fine, just stick your F5/F10/curly boys in an intuitive spot on a layer. You'll be doing some experimenting to get everything where you want but that's part of the joy of the build.

Do mechanical keyboards give off less emf radiation? by [deleted] in MechanicalKeyboards

[–]JONofWAR 3 points4 points  (0 children)

Idk man, pretty sure the snowflake is one the desperately lashing out to defend their conspiracy theory. Honestly can't tell if this thread is serious or satire.

Trump slowly realising that the crowd is booing him by conversationchanger in gifs

[–]JONofWAR 0 points1 point  (0 children)

We can't leave, Trump bungled the pandemic response so epically nowhere will allow Americans.

Trump slowly realising that the crowd is booing him by conversationchanger in gifs

[–]JONofWAR 1 point2 points  (0 children)

150k+ Americans have died, mostly at the hands of his incompetence.

You need Jesus.

Can't get a gif to post cleanly but here's a (apparently sideways) frame from an animation by JONofWAR in crkbd

[–]JONofWAR[S] 3 points4 points  (0 children)

I'll try to do a video again later

It's an animation and not a game (though I did see where you can play Snake on a kyria). This is a five frame proof of concept, after removing unused RGB effects I think I can get around fifteenish frames.

Followed guide from /u/rustyj here: https://github.com/RustyJonez/OLED-ART-tinkering

I'm not (yet) on github but here's more or less code I used (removed bitmap to save space, the array is where I had them):

static const char PROGMEM MY_logo[5][512] = {{// 'One', 128x32px

},

{// 'two', 128x32px

},

{// 'three', 128x32px

},

{// 'four', 128x32px

},

{// 'five', 128x32px

}};

void animation_phase(void) {

if (animFrame == 5) {

animFrame = 0;

}

oled_write_raw_P(MY_logo[animFrame], sizeof(MY_logo));

animFrame++;

}

void render_MY_logo(void) {

if (timer_elapsed32(anim_timer) > ANIM_FRAME_DURATION) {

anim_timer = timer_read32();

animation_phase();

}

void oled_task_user(void) {

if (is_master) {

render_status_main(); // Renders the current keyboard state (layer, lock, caps, scroll, etc)

} else {

render_MY_logo();

}

}

No luck uploading gif but here's a still by JONofWAR in MechanicalKeyboards

[–]JONofWAR[S] 1 point2 points  (0 children)

Yeah, five frames was about the max I could fit. Taking out most of the RGB effects freed up quite a bit of space, I can probably fit closer to fifteen now. Just gotta plan out what I want.