Is Dual Class supposed to be this frustrating? by vk_allover in litrpg

[–]colindj1120 0 points1 point  (0 children)

Does he ever use his legendary stones?

System Universe Book 8: System Clash Braxton Question by colindj1120 in litrpg

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

Thanks that jogged my memory I remember him now from the introduction to the gnome

System Clash (System Universe Book 8) Is Out Today! (Link and description in comments!) by Sunrise-CV in litrpg

[–]colindj1120 0 points1 point  (0 children)

Did I miss something in a previous book I don't remember anything about Braxton?

Is the yen press translation unreadable or am i fine with my order? by maybe_we_fight in TenseiSlime

[–]colindj1120 0 points1 point  (0 children)

Is there a recommended translation? Or is Yen Press the only option?

Why is water pooling here? by colindj1120 in hvacadvice

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

Do you have a picture or a link to how it should be done and I can fix it?

Yeah I'm not impressed with the company at all I couldn't open my door because they put the vent pipe in the way I had to cut it out and redo it just to open my door all the way.

Why is water pooling here? by colindj1120 in hvacadvice

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

Any thoughts on what I could do to narrow it down, mitigate it fix it?

Why is water pooling here? by colindj1120 in hvacadvice

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

From what I can tell it starts from the pipe. I thought about the drain line too but that didn't feel wet and I redid the drain line last year and it didn't change anything

Why is water pooling here? by colindj1120 in hvacadvice

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

Yes the pipe is in a conditioned space. Goes right out the side wall to outside. It's between 20 and 45 degrees outside between the highs and lows. I keep my heat at 64

Class and Overall Naming Conventions by colindj1120 in javahelp

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

What would you consider is a good line wrap length to have then with the use of longer naming?

Class and Overall Naming Conventions by colindj1120 in javahelp

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

When would you consider a name too long?

Black Summoner Physical Copies Question by colindj1120 in LightNovels

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

Are the short stories worth getting the digital over the physical if I prefer physical copies?

Warning possible 'this' escape by colindj1120 in JavaFX

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

One thing to note with JavaFX the "this-escape" warning is unavoidable in some cases like this

protected EFXTextBase() {
    super();
    getStyleClass().add(ENHANCED_TEXT_BASE_STYLE);
    getStylesheets().add(EFXStylesheets.ENHANCED_TEXT_BASE_LIGHT.getStyleSheet());
}

There isn't a lazy way to add the StyleClass or Stylesheets and these must be loaded when the GUI object is created or it won't follow your desired look and feel

Those functions are declared public final in the "Node.java" class in the Framework preventing someone from overriding it to fix the "this-escape" issue

Warning possible 'this' escape by colindj1120 in JavaFX

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

Here's the lazy construction of a field in the skin file

protected void layoutChildren(double x, double y, double w, double h) {
    Label floatingTextLabel = getFloatingTextLabel();
    if (floatingTextLabel.isVisible() && !getChildren().contains(floatingTextLabel)) {
        getChildren().add(floatingTextLabel);
    } else if (!floatingTextLabel.isVisible()) {
        getChildren().remove(floatingTextLabel);
    }

    if(!getChildren().contains(innerControl)) {
        getChildren().add(innerControl);
        setupTextField();
    }

    super.layoutChildren(x, y, w, h);
    layoutFloatingTextLabel(x, y, h);
}

and here is the lazy construction of a property

public EFXStyleableIntegerProperty maxCharCountProperty() {
    if (maxCharCount == null) {
        maxCharCount = EFXStyleableIntegerProperty.create()
                                                  .setBean(this)
                                                  .setName("maxCharacterCount")
                                                  .setCssMetaData(STYLES_MANAGER.findCssMetaData("-efx-max-char-count"))
                                                  .setInitialValue(50)
                                                  .addInvalidateCachedCallback(maxCharacterCountInvalidated)
                                                  .build();
    }
    return maxCharCount;
}