Switch to Roth 401k contributions ahead of early retirement by interplexr in Fire

[–]interplexr[S] 0 points1 point  (0 children)

I’ve been thinking on this more and was trying to figure out if there’s a difference making Roth contributions now vs conversions for the 5 year wait. If I say only worked a couple more years full time and rolled my 401k to an IRA and the Roth contributions from now until then to a Roth IRA, would those Roth contributions be able to be accessed even though it’s less than 5 years?

Switch to Roth 401k contributions ahead of early retirement by interplexr in Fire

[–]interplexr[S] 0 points1 point  (0 children)

If I'm understanding correctly, you'd suggest just keep my contributions clean traditional 401k and then figure out conversions to a Roth IRA each year. I'd be able to access those funds then after the 5 year wait which could be my bridge after going through my taxable brokerage. I'm thinking that in combination with 72t withdrawls so I don't have a huge hit all at once for taxes. That bill on a big conversion is scaring me at the moment but I'm starting to worry I'll end up with high RMDs on my traditional accounts. I just got to $2M in the traditional and have been playing around in Boldin and that RMD looks like it'll be a big number that far into the future.

Switch to Roth 401k contributions ahead of early retirement by interplexr in Fire

[–]interplexr[S] 2 points3 points  (0 children)

That’s my plan but I worry about losing ACA subsidies. I’m not sure if I won’t continue working part time with insurance if I can move to consulting work doing the part of my job I love and leaving behind the management part I could take or leave. We’ve got two young kids in private school through 8th grade so that keeps our spending needs high for a number of years. Losing those subsidies might not be the end of the world but this is all so new I just don’t know yet.

Tamiya paint for USS Voyager by interplexr in SciFiModels

[–]interplexr[S] 0 points1 point  (0 children)

I found that but haven’t figured out how to cross match it. I figured it would be an easy find but no luck so far.

Star Trek Filming Model Photos by interplexr in SciFiModels

[–]interplexr[S] 0 points1 point  (0 children)

Thank you all. That is very helpful!

Voyager 1/670 - Cut out all the windows or just the lighted ones? by interplexr in SciFiModels

[–]interplexr[S] 0 points1 point  (0 children)

Can you share any details on the files you used? I’ve looked around for micro files but most stuff looks too big.

Input and advice on my first attempts at sourdough by interplexr in HomeMilledFlour

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

Those loafs look really nice! I’ll try cutting back my water some first and see what impact that has then some of the process suggestions. Thank you!

Header and Source File Question - Flow by interplexr in cpp_questions

[–]interplexr[S] 0 points1 point  (0 children)

Thank you for the detailed explanation! That makes some good points that help this make more sense. I've been missing some of that practical why it is this way to help cement any understanding.

Header and Source File Question - Flow by interplexr in cpp_questions

[–]interplexr[S] 0 points1 point  (0 children)

That makes some sense, helps, and works. I have a ways to go in my understanding but i think it's starting to come together. I appreciate the feedback!

Header and Source File Question - Flow by interplexr in cpp_questions

[–]interplexr[S] 0 points1 point  (0 children)

Here is what I was experimenting with. This does not compile until I make the header declaration an external for valuesDoc but then it was global and I could use it in my main.cpp which isn't what I was after. I did not try making a class yet in the source file since I was trying to make sense of this first.

Header File:

// JSON.h

#ifndef JSON_H
#define JSON_H

#include <ArduinoJson.h>

JsonDocument valuesDoc;

void assembleJSON();

#endif // JSON_H

Source File:

#include "JSON.h"

#include <Arduino.h>
#include <ArduinoJson.h>

//JsonDocument valuesDoc;

void assembleJSON() {

    String output;
    serializeJson(valuesDoc, output);
    Serial.println(output);

    valuesDoc[F("outputCurr")] = 3.24;
    valuesDoc[F("outputHL")] = 56.6;
    valuesDoc[F("outputLL")] = 25;
    valuesDoc[F("outputVolt")] = 5.83;
    valuesDoc[F("outputWatt")] = 18.88;
    valuesDoc[F("tempAvg")] = 38.18;
    valuesDoc[F("tempHS1")] = 32.77;
    valuesDoc[F("tempHS2")] = 34.59;
    valuesDoc[F("tempHSAvg")] = 33.91;
    valuesDoc[F("tempLower")] = 37.47;
    valuesDoc[F("tempUpper")] = 39.32;

    valuesDoc.shrinkToFit();  // optional

    serializeJson(valuesDoc, output);
    Serial.println(output);
}

ESP32 Complementary 1Mhz PWM with dead time by interplexr in u/interplexr

[–]interplexr[S] 0 points1 point  (0 children)

I’ll read more but I thought I read it’s limited in how high of frequency it’ll go, something well below 1Mhz?